-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
923 lines (884 loc) · 35.6 KB
/
index.html
File metadata and controls
923 lines (884 loc) · 35.6 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
<!DOCTYPE html>
<!-- saved from url=(0049)https://hackhtu.pages.dev/tools/fake-maker/fake1/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style>body {transition: opacity ease-in 0.2s; }
body[unresolved] {opacity: 0; display: block; overflow: hidden; position: relative; }
</style><script src="chrome-extension://jlpcnoohcpfgpbalhlggdhjocgnlgafn/assets/main-world.ts-4ed993c7.js" type="module"></script>
<title>笨笨狗逃了の假条伪造站</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no, viewport-fit=cover">
<link href="./bootstrap.min.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
<!-- 新增CDN方式引入Line Awesome图标库,确保图标显示 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/line-awesome/1.3.0/line-awesome/css/line-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no, viewport-fit=cover">
<link href="./bootstrap.min.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
<!-- 保留原有本地引用,防止样式丢失 -->
<link rel="stylesheet" href="./line-awesome-nob.min.css">
<link rel="stylesheet" href="./font-awesome.css">
<script src="./jquery-1.12.4.min.js"></script><input type="hidden" id="_o_dbjbempljhcmhlfpfacalomonjpalpko" data-inspect-config="7"><script type="text/javascript" src="chrome-extension://dbjbempljhcmhlfpfacalomonjpalpko/scripts/inspector.js"></script>
<script src="./mui.min.js"></script>
<script src="./app.js"></script>
<link rel="stylesheet" href="./helper.css">
<link rel="stylesheet" href="./main_vue.css">
<style>
.fixed-header,
.fixed-header+header.row.m-0,
.e-bg-primary {
background: linear-gradient(135deg, rgb(0, 180, 201) 5%, rgb(59, 108, 254) 100%) !important;
}
.border-primary,
.e-border-primary {
border-color: #009688 !important;
}
.e-primary {
color: rgb(0, 150, 136) !important;
}
@media (max-width: 800px) {
.layui-header {
background: linear-gradient(135deg, rgb(0, 180, 201) 5%, rgb(59, 108, 254) 100%) !important;
}
}
</style>
<style>
/* 伪导航栏样式(来自 head.html,避免与现有样式冲突进行了前缀化) */
.fake-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px; /* 减小内边距以匹配下方栏高度 */
/* 不设置背景色,使用浏览器默认颜色 */
color: inherit;
height: 44px; /* 与下方蓝色栏高度一致 */
}
.fake-header > div { /* 子项基线设置 */
display: flex;
align-items: center;
}
.fake-center { /* 中间区域:两行纵向居中 */
flex: 1;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.fake-close {
font-size: 28px;
cursor: pointer;
color: #000; /* 纯黑色,与请假条一致 */
width: 44px; /* 左侧固定宽度 */
justify-content: flex-start;
font-weight: 300; /* 细长样式,轻量字体 */
font-family: Helvetica, Arial, sans-serif; /* 默认字体,不受系统个性化影响 */
line-height: 1;
}
.fake-title {
font-size: 18px;
font-weight: 900; /* 加黑,与请假条黑度一致 */
color: #000; /* 纯黑色,与请假条一致 */
line-height: 1.1;
}
.fake-header > div:last-child { /* 右侧区域固定宽度 */
width: 44px;
justify-content: flex-end;
text-align: right;
}
.fake-more { /* 右侧更多按钮容器 */
line-height: 1;
}
.fake-icon {
width: 28px;
height: 28px;
display: block;
}
.fake-more .fake-icon {
width: 16px; /* 进一步缩小更多按钮图标尺寸 */
height: 16px;
}
.fake-sub-title { /* 同容器内的小字副标题 */
margin-top: 2px;
color: #666;
font-size: 12px;
line-height: 1;
/* 不设置背景色,使用浏览器默认颜色 */
}
</style>
</head>
<!-- 这里可以放入另一个网页的内容 -->
<body class="color-theme-blue push-content-right theme-light ">
<div class="wrapper">
<div class="sidebar sidebar-left" id="leftmenuarea"></div>
<div class="page vue-loading" style="position: absolute;overflow-y: auto">
<div id="content">
<!-- 伪导航栏(与内容同容器,宽度一致) -->
<div class="fake-header">
<div class="fake-close"><img class="fake-icon" alt="close"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><line x1='8' y1='8' x2='20' y2='20' stroke='%23000' stroke-width='2' stroke-linecap='round'/><line x1='20' y1='8' x2='8' y2='20' stroke='%23000' stroke-width='2' stroke-linecap='round'/></svg>" /></div>
<div class="fake-center">
<div class="fake-title">河南师大智慧学工用户中心</div>
<div class="fake-sub-title">htu.g8n.cn</div>
</div>
<div class="fake-more"><img class="fake-icon" alt="more"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><circle cx='3' cy='14' r='3' fill='%23000'/><circle cx='14' cy='14' r='3' fill='%23000'/><circle cx='25' cy='14' r='3' fill='%23000'/></svg>" /></div>
</div>
<header class="row m-0 fixed-header">
<div class="left">
<a href="笨笨狗の代码.html">
<i class="la la-arrow-left"></i>
</a>
</div>
<div class="col center">
<a href="javascript:void(0);" class="logo">出示假条</a>
</div>
<div class="right auto">
<a href="javascript:" "="">
<i class=" la la-qrcode font-22"></i> 出示假条核验码
</a>
</div>
</header>
<div class="page-content">
<div style="padding:0 15px;">
<div id="qrcode_box2_area" class="text-center my-20 hide">
<div id="qrcode_box2" class="mt-10 ">
<div id="qrcode_img2"></div>
<div style="color: red;font-size: 12px;">只能使用专用核验工具扫码</div>
</div>
</div>
<div class="card mt-15">
<div class="card-body ">
<div class="card-text relative text-dark">
<p class="h2 text-center text-dark font-weight-light">请假条</p>
<p style="text-align: center;color: red" contenteditable="true">河南师范大学 某某某学院</p>
<img id="approved_icon" src="./approved.png" alt="" style="animation: 0.3s ease-in 0s 1 normal none running stamp; display: inline;">
<div class="row mt-30 mb-20">
<div class="col d-flex flex-column justify-content-center align-items-center">
<figure class="figure mb-0">
<img class="figure-img img-fluid rounded" src="./picture.png" alt="点击上传比例为2:3的照片">
</figure>
</div>
<div class="col d-flex flex-column justify-content-center pl-0">
<p class="h5 mb-15 mt-5 text-dark" contenteditable="true"><span class="h6">姓名:</span>自定义</p>
<p class="h6 mb-10 font-weight-normal" contenteditable="true">性别:男</p>
<p class="h6 mb-10 font-weight-normal" contenteditable="true">院系:0000级</p>
<p class="h6 mb-10 font-weight-normal" contenteditable="true">学号:0000000000
</p>
</div>
</div>
<div id="qrcode_box" class="mv-20 text-center relative" style="display: none">
<div id="qrcode_img"></div>
<div id="qrcode_loading"><i class="la la-refresh la-spin"></i></div>
<div class="mt-10 text-danger font-12">
有效期5分钟,到期后请
<a href="javascript:" onclick="refreshQrCode()"><i class="la la-refresh"></i>刷新</a>
</div>
</div>
<p class="h6 font-weight-normal">请假时间</p>
<table class="table time-table text-center">
<tbody><tr>
<th>起</th>
<td>
<p class="h3 font-weight-light text-dark" contenteditable="true">
2024-01-01 00:00</p>
</td>
<th><span class="invisible">起</span></th>
</tr>
<tr>
<th>至</th>
<td>
<p class="h3 font-weight-light text-dark" contenteditable="true">
2024-01-01 00:00</p>
</td>
<th><span class="invisible">至</span></th>
</tr>
</tbody></table>
<script>
// 页面加载后,将“起/至”自动填充为当天 08:00 / 22:00
document.addEventListener('DOMContentLoaded', function () {
var rows = document.querySelectorAll('.time-table tbody tr');
if (!rows || rows.length < 2) return;
var now = new Date();
var y = now.getFullYear();
var m = String(now.getMonth() + 1).padStart(2, '0');
var d = String(now.getDate()).padStart(2, '0');
var startText = y + '-' + m + '-' + d + ' 08:00';
var endText = y + '-' + m + '-' + d + ' 22:00';
var startP = rows[0].querySelector('p');
var endP = rows[1].querySelector('p');
if (startP) startP.textContent = startText;
if (endP) endP.textContent = endText;
// 同步“批准时间”为当天 08:00
var approveRow = Array.prototype.find.call(
document.querySelectorAll('.bottom-table tr'),
function (tr) {
var th = tr.querySelector('th');
return th && th.textContent && th.textContent.indexOf('批准时间') > -1;
}
);
if (approveRow) {
var approveTd = approveRow.querySelector('td.text-dark');
if (approveTd) approveTd.textContent = startText;
}
});
</script>
<div class="text-center text-success mt-20 mb--10 font-24">不离校</div>
<div class="text-center">
<table class="table bottom-table table-sm table-borderless mt-30">
<tbody><tr>
<th>审批人:</th>
<td class="text-dark" contenteditable="true">某某某</td>
</tr>
<tr>
<th>批准时间:</th>
<td class="text-dark" contenteditable="true">2024-01-01 00:00</td>
</tr>
</tbody></table>
</div>
<div id="watermark" style="top: 63%;">2025/4/28 23:00:10</div>
</div>
</div>
</div>
<div class="text-center mt-20 mb-30">
<a href="javascript:" class="link p-10" "="">点击返校<i class=" la la-angle-right"></i></a>
</div>
<style>
.top {
position: relative;
z-index: 1;
text-align: center;
background-color: rgb(236, 236, 235);
}
.top p {
color: rgb(21, 21, 21);
line-height: 47px;
font-size: 18px;
position: relative;
left: -14px;
}
.close {
position: relative;
float: left;
height: 22px;
top: 14px;
left: 15px;
}
.other {
position: relative;
float: right;
height: 30px;
top: -52px;
right: 15px;
}
.time-table th,
.bottom-table th {
font-weight: normal;
color: #666;
text-align: right;
vertical-align: middle;
}
.time-table td {
width: 220px;
}
.time-table p {
margin-bottom: 0 !important;
}
.time-table {
border-bottom: 1px solid #dee2e6;
}
.bottom-table {
width: auto;
font-size: 16px;
text-align: left;
margin: 0 auto;
}
#approved_icon {
position: absolute;
right: -15px;
top: -15px;
width: 110px;
z-index: -1;
display: none;
}
.bg-light-danger {
background-color: rgba(255, 0, 0, 0.15);
}
.bg-light-success {
background-color: #c5ffc5;
}
@keyframes stamp {
from {
right: -90px;
width: 200px;
opacity: 0.5;
}
to {
right: -15px;
width: 110px;
opacity: 1;
}
}
#watermark {
position: absolute;
font-size: 5em;
font-weight: bold;
text-align: center;
line-height: 1.2em;
top: 57%;
left: 50%;
transform: translate(-50%, -50%);
z-index: -1;
color: rgba(0, 0, 0, 0.08);
}
</style>
<script>
document.querySelector('.figure-img').addEventListener('click', function () {
var input = document.createElement('input');
input.type = 'file';
input.accept = 'image/*';
input.addEventListener('change', function (e) {
var file = e.target.files[0];
var reader = new FileReader();
reader.onload = function (e) {
document.querySelector('.figure-img').src = e.target.result;
}
reader.readAsDataURL(file);
});
input.click();
});
</script>
<script>
$('#approved_icon').css({
animation: '0.3s ease-in stamp'
}).show();
var $w = $('#watermark'); // 这行代码使用了 jQuery
var $wt = 57;
var $ws = 1;
function updateWatermark() {
var d = new Date(); // 获取客户端当前时间
var t = d.toLocaleString(); // 转换为本地时间字符串
$w.html(t).css({ // 更新 id="watermark" 元素的内容
top: $wt + '%'
});
if ($wt > 75) {
$ws = -1;
} else if ($wt < 57) {
$ws = 1;
}
$wt += $ws;
}
updateWatermark(); // 页面加载时首次更新
setInterval(updateWatermark, 1000); // 每秒更新一次
</script>
</div>
</div>
</div>
</div>
</div>
<script>document.addEventListener('plusready', function () {
var webview = plus.webview.currentWebview();
plus.key.addEventListener('backbutton', function () {
webview.canBack(function (e) {
if (e.canBack) {
webview.back();
} else {
//webview.close(); //hide,quit
//plus.runtime.quit();
mui.plusReady(function () {
//首页返回键处理
//处理逻辑:1秒内,连续两次按返回键,则退出应用;
var first = null;
plus.key.addEventListener('backbutton', function () {
//首次按键,提示‘再按一次退出应用’
if (!first) {
first = new Date().getTime();
mui.toast('再按一次退出应用');
setTimeout(function () {
first = null;
}, 1000);
} else {
if (new Date().getTime() - first < 1500) {
plus.runtime.quit();
}
}
}, false);
});
}
})
});
});
//不需要mui.js版本
document.addEventListener('plusready', function () {
var webview = plus.webview.currentWebview();
plus.key.addEventListener('backbutton', function () {
webview.canBack(function (e) {
if (e.canBack) {
webview.back();
} else {
//webview.close(); //hide,quit
//plus.runtime.quit();
//首页返回键处理
//处理逻辑:1秒内,连续两次按返回键,则退出应用;
var first = null;
plus.key.addEventListener('backbutton', function () {
//首次按键,提示‘再按一次退出应用’
if (!first) {
first = new Date().getTime();
console.log('再按一次退出应用');
setTimeout(function () {
first = null;
}, 1000);
} else {
if (new Date().getTime() - first < 1500) {
plus.runtime.quit();
}
}
}, false);
}
})
});
});</script>
<!-- Cloudflare Pages Analytics --><script defer="" src="./beacon.min.js" data-cf-beacon="{"token": "5fbc97c3749e49bb941fd647928394b3"}"></script><!-- Cloudflare Pages Analytics -->
<yd-mg-icon style="position: fixed; z-index: 2147483647;"><template shadowrootmode="open"><style>
.item {
display: flex;
justify-content: center;
align-items: center;
}
.all {
direction: ltr;
}
.all > * {
direction: rtl;
}
.hidden {
display: none;
transition: width 0.3s linear;
}
.container:hover .hidden {
width: var(--131b0bc3);
height: var(--367772ca);
display: flex;
}
.container {
position: fixed;
top:var(--8b7ed71a);
right:var(--2c4e45ba);
width: var(--b2ad46e2);
height: var(--14b33b7e);
background-color: #fff;
border-radius: var(--e55f886a);
box-shadow: 0 0 10px #b3b5b8;
transition: width 0.3s linear;
display: flex;
justify-content: center;
align-items: center;
}
.container:hover {
width: var(--301156d1);
border-radius: var(--e55f886a);
justify-content: space-around;
}
.icon {
width: var(--131b0bc3);
height: var(--367772ca);
cursor: pointer;
user-select: none;
}
.icon:hover {
}
.yd-translate-loader {
border: 2px solid #f3f3f3;
border-top: 2px solid #3498db;
border-radius: 50%;
height: var(--367772ca);
width: var(--131b0bc3);
animation: spin 0.5s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
@keyframes append-animate {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.popup {
animation: popup 0.3s forwards;
}
@keyframes popup {
0% {
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
</style><div class="all" style="position: fixed; z-index: 2147483647; --131b0bc3: 20px; --367772ca: 20px; --8b7ed71a: 454.3251008987427px; --2c4e45ba: 1032.0260314941406px; --b2ad46e2: 24px; --14b33b7e: 24px; --e55f886a: 12px; --301156d1: 72px;"><!----></div></template></yd-mg-icon><yd-mg-block-icon><template shadowrootmode="open"><style>
/* 设置文档字符编码为UTF-8 */
@charset "UTF-8";
.disabled-element[data-v-d3135d60] {
cursor: not-allowed;
}
.all[data-v-d3135d60] {
position: absolute;
z-index: 1;
}
.all .container[data-v-d3135d60] {
width: var(--5a3ced10);
height: var(--58dc89c6);
display: flex;
justify-content: center;
align-items: center;
}
.all .container .yd-line[data-v-d3135d60] {
display: block;
position: absolute;
height: var(--c03ec7f0);
top: var(--7808ebd8);
left: var(--891c21b0);
}
.all .container .yd-line .orignal[data-v-d3135d60] {
padding: 1px;
background-color: #E4E7F3;
height: var(--5934d8d6);
}
.all .container .yd-line .yd[data-v-d3135d60] {
padding: 1px;
background-color: #FF939E;
height: var(--4d327ada);
}
.all .container .yd-line .llm[data-v-d3135d60] {
padding: 1px;
background-color: #2485FF;
height: var(--18678bd3);
}
.all .container .tooltip-container[data-v-d3135d60] {
display: inline-block;
position: absolute;
top: var(--147b79a2);
left: var(--7afb4d26);
}
.all .container .tooltip-container .icon[data-v-d3135d60] {
width: var(--5a3ced10);
height: var(--58dc89c6);
background-image: var(--4a440a69);
border-radius: 5px;
cursor: pointer;
}
.all .container .tooltip-container .icon[data-v-d3135d60]::before {
content: var(--4809e853);
display: none;
}
.all .container .tooltip-container .icon[data-v-d3135d60]:hover {
box-shadow: 0px 4px 10px rgba(56, 112, 200, 0.16);
transition: width 0.3s linear;
background-image: var(--4809e853);
cursor: pointer;
}
.all .container .tooltip-container .llmIcon[data-v-d3135d60] {
width: var(--5a3ced10);
height: var(--58dc89c6);
background-image: var(--4a440a69);
border-radius: 5px;
}
.all .container .tooltip-container .llmIcon[data-v-d3135d60]:hover {
width: var(--5a3ced10);
height: 48px;
background-image: var(--11da4116);
border-radius: 5px;
}
.all .container .tooltip-container .tooltip[data-v-d3135d60] {
position: absolute;
top: var(--523390c5);
/* 放在元素的上方 */
left: var(--178a82d2);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
background-color: #F9FBFF;
padding: 8px;
width: 150px;
height: 40px;
border-radius: 8px;
box-sizing: border-box;
border: 1px solid rgba(216, 217, 219, 0.5);
box-shadow: 0px 1.2px 3.6px 0px rgba(0, 0, 0, 0.1), 0px 2px 20px 0px rgba(27, 19, 98, 0.08);
font-family: PingFang SC;
font-size: 16px;
font-weight: normal;
line-height: 150%;
text-align: center;
letter-spacing: 0em;
user-select: none;
color: #2A2B2E;
}
.all .container .tooltip-container .llmTooltip[data-v-d3135d60] {
position: absolute;
top: var(--523390c5);
/* 放在元素的上方 */
left: var(--178a82d2);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
background-color: #F9FBFF;
padding: 8px;
width: 200px;
height: 40px;
border-radius: 8px;
box-sizing: border-box;
border: 1px solid rgba(216, 217, 219, 0.5);
box-shadow: 0px 1.2px 3.6px 0px rgba(0, 0, 0, 0.1), 0px 2px 20px 0px rgba(27, 19, 98, 0.08);
font-family: PingFang SC;
font-size: 16px;
font-weight: normal;
line-height: 150%;
text-align: center;
letter-spacing: 0em;
user-select: none;
color: #2A2B2E;
}
.all .container .yd-translate-loader-block[data-v-d3135d60] {
position: absolute;
top: var(--147b79a2);
left: var(--7afb4d26);
width: var(--5a3ced10);
height: var(--5a3ced10);
background-image: var(--3fa19693);
/* 确保这里是正确的图片路径 */
background-repeat: no-repeat;
background-size: cover;
box-shadow: 0px 4px 10px rgba(56, 112, 200, 0.16);
overflow: hidden;
/* 保持子元素的圆角效果 */
}
.all .container .yd-translate-loader-block[data-v-d3135d60]::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 5px;
border: 1px solid transparent;
background: linear-gradient(to left bottom, rgba(38, 132, 255, 0.6), rgba(120, 85, 250, 0.6));
-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
}
.all .container .tip[data-v-d3135d60] {
background-color: #F9FBFF;
padding: 8px;
border-radius: 8px;
height: 400px;
border: 1px solid #D8D9DB;
}</style><div data-v-d3135d60="" class="all notranslate" style="--5a3ced10: 24px; --58dc89c6: 24px; --c03ec7f0: 0px; --7808ebd8: 0px; --891c21b0: 0px; --5934d8d6: 0px; --4d327ada: 0px; --18678bd3: 0px; --147b79a2: -16px; --7afb4d26: -44px; --4a440a69: url(chrome-extension://jlpcnoohcpfgpbalhlggdhjocgnlgafn/block.svg); --4809e853: url(chrome-extension://jlpcnoohcpfgpbalhlggdhjocgnlgafn/block-h.svg); --11da4116: url(chrome-extension://jlpcnoohcpfgpbalhlggdhjocgnlgafn/block-h-llm.svg); --523390c5: undefined; --178a82d2: undefined; --3fa19693: url(chrome-extension://jlpcnoohcpfgpbalhlggdhjocgnlgafn/block-l.gif);"><!----></div></template></yd-mg-block-icon><yd-image-ocr style="z-index: 2147483647;"><template shadowrootmode="open"><style>@charset "UTF-8";
.modal-overlay[data-v-04ce0a75] {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
.modal-content[data-v-04ce0a75] {
background-color: white;
padding: 20px;
border-radius: 10px;
display: flex;
gap: 20px;
width: 800px;
height: 500px;
flex-direction: column;
position: relative;
}
.modal-header[data-v-04ce0a75] {
display: flex;
justify-content: flex-end;
height: 24px;
}
.modal-body[data-v-04ce0a75] {
display: flex;
flex-grow: 1;
flex-direction: row;
}
.modal-body .imageContainer[data-v-04ce0a75] {
flex: 2;
justify-content: center;
}
.modal-body .img[data-v-04ce0a75] {
position: relative;
background-size: contain;
background-position: center;
height: 600px;
background-repeat: no-repeat;
}
.modal-body .img .box[data-v-04ce0a75] {
position: absolute;
border: #333 3px solid;
}
.modal-body .text-content[data-v-04ce0a75] {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
/* 根据需要调整文本内容的样式 */
}
.modal-body .text-content .text[data-v-04ce0a75] {
overflow-y: auto;
height: 450px;
}
.modal-body .text-content .toolbar[data-v-04ce0a75] {
height: 36px;
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
}
.close-button[data-v-04ce0a75] {
background-color: transparent;
/* 透明背景 */
border: none;
/* 去除边框 */
cursor: pointer;
/* 鼠标悬停时显示指针 */
outline: none;
/* 去除焦点轮廓 */
position: absolute;
/* 绝对定位 */
top: 10px;
/* 距顶部的距离 */
right: 10px;
/* 距右边的距离 */
font-size: 24px;
/* 字体大小 */
line-height: 24px;
/* 行高,以确保垂直居中 */
color: #333;
/* 字体颜色 */
font-weight: bold;
/* 字体加粗 */
}
.close-button[data-v-04ce0a75]:hover {
color: #666;
/* 鼠标悬停时的颜色变化 */
}
.line[data-v-04ce0a75], .redline[data-v-04ce0a75] {
font-family: Arial, Helvetica, sans-serif;
/* 使用无衬线字体 */
font-size: 16px;
/* 设置合适的字体大小 */
line-height: 24px;
color: #333;
/* 文字颜色 */
padding: 3px 3px 3px 6px;
/* 内边距 */
margin-top: 5px;
cursor: pointer;
transition: background-color 0.3s, border-left-color 0.3s;
/* 背景色和边框颜色变化的过渡效果 */
border-left: 3px solid #ddd;
/* 设置灰色的左边框 */
}
.redline[data-v-04ce0a75] {
border-left-color: #e53935;
/* 鼠标悬停时边框颜色变为红色 */
background-color: #f5f5f5;
}
.button[data-v-04ce0a75] {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background-color: #FB4A3E;
/* 一个明亮但不饱和的红色 */
color: white;
/* 文本颜色为白色 */
padding: 5px 10px;
/* 按钮内边距 */
border: none;
/* 无边框 */
border-radius: 5px;
/* 轻微的圆角 */
font-size: 10px;
text-transform: uppercase;
/* 文本大写 */
cursor: pointer;
/* 鼠标悬停时的指针样式 */
transition: background-color 0.3s;
/* 背景颜色变化的过渡效果 */
}
.button[data-v-04ce0a75]:hover {
background-color: #d32f2f;
/* 鼠标悬停时的背景颜色稍暗 */
}
.button[data-v-04ce0a75]:active {
background-color: #c62828;
/* 鼠标点击时的背景颜色更暗 */
}
.button[data-v-04ce0a75]:disabled {
background-color: #ef9a9a;
/* 禁用状态的按钮颜色更亮,更少饱和度 */
cursor: default;
/* 禁用状态的鼠标样式 */
}
.loading-indicator[data-v-04ce0a75] {
/* 添加你的样式,比如居中显示、动画等 */
position: absolute;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.5em;
/* ...其他样式 */
}
.message[data-v-04ce0a75] {
position: absolute;
top: 50%;
/* 定位到父元素的中间 */
left: 50%;
/* 定位到父元素的中间 */
transform: translate(-50%, -50%);
/* 使用 transform 实现精确居中 */
padding: 10px;
background-color: white;
/* 设置背景颜色为白色 */
border: 1px solid blue;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
/* 添加阴影效果 */
text-align: center;
z-index: 100;
/* 确保提示信息在其他元素上方 */
}
.loader[data-v-04ce0a75] {
border: 5px solid #f3f3f3;
/* 浅灰色边框 */
border-top: 5px solid #3498db;
/* 蓝色边框 */
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin-04ce0a75 2s linear infinite;
margin-bottom: 20px;
}
@keyframes spin-04ce0a75 {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}</style><!----></template></yd-image-ocr></body></html>