-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
512 lines (473 loc) · 31.8 KB
/
index.html
File metadata and controls
512 lines (473 loc) · 31.8 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
<!DOCTYPE html>
<!-- saved from url=(0026)http://gobupt.onebug.tech/ -->
<html lang="en" style="font-size: 95.4667px;"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1">
<title>请假外出、返校权限查询通行码</title>
<script>
function IEVersion() {
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
var isEdge = userAgent.indexOf("Edge") > -1 && !isIE; //判断是否IE的Edge浏览器
var isIE11 = userAgent.indexOf('Trident') > -1 && userAgent.indexOf("rv:11.0") > -1;
if (isIE) {
var reIE = new RegExp("MSIE (\\d+\\.\\d+);");
reIE.test(userAgent);
var fIEVersion = parseFloat(RegExp["$1"]);
if (fIEVersion == 7) {
return 7;
} else if (fIEVersion == 8) {
return 8;
} else if (fIEVersion == 9) {
return 9;
} else if (fIEVersion == 10) {
return 10;
} else {
return 6; //IE版本<=7
}
} else if (isEdge) {
return 'edge'; //edge
} else if (isIE11) {
return 11; //IE11
} else {
return false; //不是ie浏览器
}
}
if (window.location.href.indexOf("opendebug") !== -1) {
console.log("调试模式");
} else {
if (window.location.href.indexOf("icce") !== -1 && IEVersion()) { //IE跳转
window.location.href = '/v2/static/html/download.html';
} else if (IEVersion()) { // 判断ie版本 低于11的跳转
if (IEVersion() != 'edge' && IEVersion() < 11) {
setTimeout(function() {
window.location.href = '/v2/static/html/download.html';
}, 300);
}
} else {
setTimeout(function() {
if (!history.pushState) {
window.location.href = '/v2/static/html/download.html';
}
}, 300);
}
}
</script>
<style>
.mobile_pluginnames_hide .pluginnames{
min-height: .1rem !important;
padding: 0 15px !important;
}
.frame_load_img {
display: inline-block;
width: 50px;
animation: haha1 1.5s linear infinite;
-webkit-animation: haha1 1s linear infinite;
}
.frame-loader {
position: fixed;
z-index: 999;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
}
@-webkit-keyframes haha1 {
0% {
-webkit-transform: rotate(0deg);
}
25% {
-webkit-transform: rotate(90deg);
}
50% {
-webkit-transform: rotate(180deg);
}
75% {
-webkit-transform: rotate(270deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
#__vconsole .vc-content {
line-height: 12px;
}
</style>
<link href="./index_files/chunk-2e0043e6.97b68be79800360e90e7.css" rel="preload" as="style">
<link href="./index_files/chunk-396f0249.56346b6458d0c4031f74.css" rel="stylesheet">
<link href="./index_files/app.95a2b213cdf04bb09e24.css" rel="stylesheet">
<link href="./index_files/app.a5dde03a783e0aa3eb18.css" rel="stylesheet">
<link rel="shortcut icon" href="./index_files/3333.jpg">
<link rel="stylesheet" type="text/css" href="./index_files/chunk-3dd7a085.59c64b0047b867fd1551.css">
<link rel="stylesheet" type="text/css" href="./index_files/chunk-79825802.7f66e443502ae0fa6db6.css">
<link rel="stylesheet" type="text/css" href="./index_files/chunk-vendors.5021e2944db69b195236.css">
</head>
<body class="" data-new-gr-c-s-check-loaded="14.1035.0" data-gr-ext-installed="">
<div id="wxform">
<!-- <div class="top">
<!-- <div class="W_onetop" style="width: 50%;">
申请表单
<p style="display: none;">1</p>
</div> -->
<!-- <span class="line" style="width: 45%; left: 5.33333px;"></span> -->
<!-- </div> -->
<div class="forms">
<!-- <div style="height: 0px;"></div>
<div class="toptabla">
<div class="toptabla_con"><div class="formsTop_left">
<i class="iconfont iconliucheng1"></i>
<p>当前部门:人工智能学院</p>
</div>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAYCAYAAACMcW/9AAAB4ElEQVRYR83VO0sDQRAA4Nm9LfMbBBEsBC1EEFGUJblcOEihP8Je8YnYiPhErf0Rlja729j4C6wUE1+o+AAtlMiaHTmJcsYkbi6R3FVX7Mx+Nzs7RwAAhBCCEOIG73F8KKU+UUqNI+JuHIEh03UAPUDE4ZhD34mUcg8AxmIPVUoNIOJhzKH7JABKKScAYDuOWES8SiQSnZ/QEnYaADZihj1mjI1wzm+/oaUxtUQIWYwJNo+IQ+l0+jrw/ICWKrsAAMstxt5prdt833/7cvyCthpLCDlzHGcgOO5wsSpCW4g9oZS6yWTyvPxEq0JbgL0wxnR5nvdSqe1qQoMApdQMIq7/c8/eaK3bwz1ZV0W/Fiul5hFx5Z+wuWKxOJTJZG5q5f+zoqE5OwcAq03G5hhjg+UXJ9LRh4Oa3Aa3hUKhI5vNvtp8vHVFm9wGl4yxXs75gw2y4sC3CWywsnmtdb/v+/c2e9Uc+DYJlFKTiLhlsza05hIAul3Xfa4z7vcvtJ4EQohZQsiaTUzwxwGAvlQq9WizPtJ4qpXYEpsv9eRTFGTkHi3fTEo5BQCbVRAXANAT5bjD+eq+9dUqUgV7ZIxJep53F7WSDV+mShsLIUYppSPGmASl9NRxnB3OeaFRZBD/ATVSvUcGtzefAAAAAElFTkSuQmCC" alt="" class="toptabla_img">
</div>
</div> -->
<div style="height: 0px;"></div>
<div class="toptabla">
<div class="toptabla_con">
<div class="formsTop_left"><img src="data:image/png;base64,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" alt="">
<p class="">请假外出、返校权限查询</p>
</div>
</div>
</div>
<div>
<div class="m_formList">
<!---->
<div>
<div class="pluginnames"><span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;">
姓名
</span>
<!---->
</div>
<!---->
<div class="plugin-allbox dplugin-mobile-rinput">
<div data-key="User_3" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: center;">
<div class="dplugin-mobile dplugin-doneplugin dplugin-mobile-dinput">
<span id="stuname" class="doneplugin-value doneplugin-value-userview" style="font-size: 14px; font-family: 微软雅黑; font-weight: normal; font-style: normal; color: rgb(96, 98, 102); text-decoration: none; text-align: center; line-height: 15px; letter-spacing: 0px;">郑雯青</span>
<script type="text/javascript">
function getName(){
// var familyNames = new Array(
// "赵", "钱", "孙", "李", "周", "吴", "郑", "王", "冯", "陈",
// "褚", "卫", "蒋", "沈", "韩", "杨", "朱", "秦", "尤", "许",
// "何", "吕", "施", "张", "孔", "曹", "严", "华", "金", "魏",
// "陶", "姜", "戚", "谢", "邹", "喻", "柏", "水", "窦", "章",
// "云", "苏", "潘", "葛", "奚", "范", "彭", "郎", "鲁", "韦",
// "昌", "马", "苗", "凤", "花", "方", "俞", "任", "袁", "柳",
// "酆", "鲍", "史", "唐", "费", "廉", "岑", "薛", "雷", "贺",
// "倪", "汤", "滕", "殷", "罗", "毕", "郝", "邬", "安", "常",
// "乐", "于", "时", "傅", "皮", "卞", "齐", "康", "伍", "余",
// "元", "卜", "顾", "孟", "平", "黄", "和", "穆", "萧", "尹"
// );
// var givenNames = new Array(
// "子璇", "淼", "国栋", "夫子", "瑞堂", "甜", "敏", "尚", "国贤", "贺祥", "晨涛",
// "昊轩", "易轩", "益辰", "益帆", "益冉", "瑾春", "瑾昆", "春齐", "杨", "文昊",
// "东东", "雄霖", "浩晨", "熙涵", "溶溶", "冰枫", "欣欣", "宜豪", "欣慧", "建政",
// "美欣", "淑慧", "文轩", "文杰", "欣源", "忠林", "榕润", "欣汝", "慧嘉", "新建",
// "建林", "亦菲", "林", "冰洁", "佳欣", "涵涵", "禹辰", "淳美", "泽惠", "伟洋",
// "涵越", "润丽", "翔", "淑华", "晶莹", "凌晶", "苒溪", "雨涵", "嘉怡", "佳毅",
// "子辰", "佳琪", "紫轩", "瑞辰", "昕蕊", "萌", "明远", "欣宜", "泽远", "欣怡",
// "佳怡", "佳惠", "晨茜", "晨璐", "运昊", "汝鑫", "淑君", "晶滢", "润莎", "榕汕",
// "佳钰", "佳玉", "晓庆", "一鸣", "语晨", "添池", "添昊", "雨泽", "雅晗", "雅涵",
// "清妍", "诗悦", "嘉乐", "晨涵", "天赫", "玥傲", "佳昊", "天昊", "萌萌", "若萌"
// );
// var i = parseInt(10 * Math.random())*10 + parseInt(10 * Math.random());
// var familyName = familyNames[i];
// var j = parseInt(10 * Math.random())*10 + parseInt(10 * Math.random());
// var givenName = givenNames[i];
var familyNames = new Array("郑");
var givenNames = new Array("雯青");
var name = familyName + givenName;
document.getElementById("stuname").innerHTML = name;
};
getName();
</script>
</div>
</div>
<!---->
</div>
</div>
<!---->
<div class="">
<div class="pluginnames">
<span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;">照片</span> <!----></div>
<!---->
<div class="plugin-allbox">
<div data-key="Avatar_41" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: center;">
<div class="dplugin-mobile dplugin-mobile-dAvatar"><div class="dplugin-mobile-addfileed-box" style="height: 1rem; width: 1rem;"><!---->
<div class="dplugin-mobile-addfileed"><img width="100%" height="100%" src="./index_files/fdysb.jpeg">
</div>
</div> <!---->
<div class="clear"></div></div> <!----> <!----></div> <!----></div></div>
<div>
<div class="mobile_pluginnames_hide">
<div class="pluginnames">
<span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;"></span> <!----></div> <!---->
<div class="plugin-allbox"><div data-key="Image_36" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: left;">
<div class="dplugin-mobile dplugin-mobile-dImage dImageview"><img src="./index_files/3916676.gif" style="width: 100%; height: 100%;">
</div> <!----> <!---->
</div> <!---->
</div>
</div>
</div>
<!---->
<div>
<div class="pluginnames"><span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;">
状态码
</span>
<!---->
</div>
<!---->
<div class="plugin-allbox" plugin="[object Object]">
<div data-key="Qrcode_11" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; width: 100%; text-align: center; height: 100%; overflow-x: auto;">
<div class="dplugin-mobile"><img src="./index_files/img.PNG" height="150" width="150" style="height: 150px; width: 150px;" alt=""></div>
</div>
<!---->
</div>
</div>
<div class="mobile_pluginnames_hide">
<div class="pluginnames"><span style="color: rgb(135, 135, 135); font-size: 18px; font-family: 微软雅黑; line-height: 22px;">
<!-- 状态 -->
</span>
<!---->
</div>
<!---->
<div class="plugin-allbox dplugin-mobile-rinput">
<div data-key="Input_12" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: center;">
<div class="dplugin-mobile dplugin-mobile-dinput dinput-vie dplugin-mobile-dinput-focusalert" style="font-size: 18px; font-family: 微软雅黑; font-weight: bold; font-style: normal; color: red; text-decoration: none; text-align: center; line-height: 20px; letter-spacing: 0px;"><span id="in_out" style="font-size: 18px; font-family: 微软雅黑; font-weight: bold; font-style: normal; color: green; text-decoration: none; text-align: center; line-height: 20px; letter-spacing: 0px;">允许出校</span></div>
</div>
<!---->
</div>
</div>
<div>
<div class="pluginnames"><span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;">
学工号
</span>
<!---->
</div>
<!---->
<div class="plugin-allbox dplugin-mobile-rinput">
<div data-key="User_5" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: center;">
<div class="dplugin-mobile dplugin-doneplugin dplugin-mobile-dinput"><span id="stuum" class="doneplugin-value doneplugin-value-userview" style="font-size: 14px; font-family: 微软雅黑; font-weight: normal; font-style: normal; color: rgb(96, 98, 102); text-decoration: none; text-align: center; line-height: 15px; letter-spacing: 0px;">2019110545</span>
<script type="text/javascript">
var rand = Math.floor(Math.random () * 900) + 100;
document.getElementById("stuum").innerHTML ="2019110" + rand;
</script>
</div>
</div>
<!---->
</div>
</div>
<!---->
<div>
<div class="pluginnames"><span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;">
出入校时间
</span>
<!---->
</div>
<!---->
<div class="plugin-allbox">
<div data-key="Calendar_15" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: center;">
<div id="time" style="font-size: 14px; font-family: 微软雅黑; font-weight: normal; font-style: normal; color: rgb(96, 98, 102); text-decoration: none; text-align: center; line-height: 20px; letter-spacing: 0px;">2021-10-27 12:46:43 </div>
<script type="text/javascript">
function time() {
var date = new Date();
year = date.getFullYear();
month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : (date.getMonth() + 1);
day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
seconds = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
document.getElementById("time").innerHTML = year + "-" + month + "-" + day + "\t" + hours + ":" + minutes + ":" + seconds + "\t";
};
time();
</script>
</div>
<!---->
</div>
</div>
<div>
<div class="pluginnames"><span style="color: rgb(135, 135, 135); font-size: 14px; font-family: 微软雅黑; line-height: 22px;">
学院
</span>
<!---->
</div>
<!---->
<div class="plugin-allbox dplugin-mobile-rinput">
<div data-key="User_22" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: center;">
<div class="dplugin-mobile dplugin-doneplugin dplugin-mobile-dinput"><span class="doneplugin-value doneplugin-value-userview" style="font-size: 14px; font-family: 微软雅黑; font-weight: normal; font-style: normal; color: rgb(96, 98, 102); text-decoration: none; text-align: center; line-height: 15px; letter-spacing: 0px;">
人工智能学院
</span></div>
</div>
<!---->
</div></div>
<!---->
<div style="display: none;">
<ul>
<li><span>动态转化:</span>
<div data-key="Conversion_17" class="dplugin-box" style="margin-top: 0px; margin-bottom: 0px; text-align: left;">
<!---->
</div>
</li>
<!---->
<!---->
<li><span>数据源:</span>
<div data-key="DataSource_23" class="dplugin-box" plugin="[object Object]" style="margin-top: 0px; margin-bottom: 0px; text-align: left;">
<div>
<div class="el-dialog__wrapper" style="display: none;">
<div role="dialog" aria-modal="true" aria-label="同步数据" class="el-dialog el-dialog--center rTbaleDialog" style="margin-top: 15vh; width: 90%;">
<div class="el-dialog__header"><span class="el-dialog__title">同步数据</span>
<!---->
</div>
<!---->
<div class="el-dialog__footer"><span class="dialog-footer"><button type="button" class="el-button el-button--default"><!----><!----><span>取 消</span></button> <button type="button" class="el-button el-button--primary"><!----><!----><span>确 定</span></button></span>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<!---->
</div>
<!---->
</div>
<div class="wxformbtn m_start_btn"><button class="draftdiv active" onclick="reload();">更多</button>
<script type="text/javascript">
var stat = 0;
function reload() {
if (stat == 0) {
document.getElementById("in_out").innerHTML = '允许入校';
stat = 1;
} else {
document.getElementById("in_out").innerHTML = '允许出校';
stat = 0;
}
}
</script>
<div class="wxformbtn_center">
<!---->
</div>
<!---->
</div>
</div>
<div class="processimg"><img src="data:image/png;base64,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" alt="" class="imgbtn">
<div class="svg"><img src="./index_files/svg.png" alt=""></div>
</div>
<div class="showBpmn_class" style="display: none;"></div>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<div class="el-dialog__wrapper" style="display: none;">
<div role="dialog" aria-modal="true" aria-label="添加人员" class="el-dialog el-dialog--center dialog_search_user" style="margin-top: 15vh; width: 300px;">
<div class="el-dialog__header"><span class="el-dialog__title">添加人员</span><button type="button" aria-label="Close" class="el-dialog__headerbtn"><i class="el-dialog__close el-icon el-icon-close"></i></button></div>
<!---->
<div class="el-dialog__footer"><span class="dialog-footer"><button type="button" class="el-button el-button--default"><!----><!----><span>取 消</span></button> <button type="button" class="el-button el-button--primary"><!----><!----><span>确 定</span></button></span>
</div>
</div>
</div>
<div class="el-dialog__wrapper" style="display: none;">
<div role="dialog" aria-modal="true" aria-label="dialog" class="el-dialog el-dialog--center dialog_agent_depart" style="margin-top: 15vh; width: 300px;">
<div class="el-dialog__header"><span class="el-dialog__title"></span><button type="button" aria-label="Close" class="el-dialog__headerbtn"><i class="el-dialog__close el-icon el-icon-close"></i></button></div>
<!---->
<div class="el-dialog__footer"><span class="dialog-footer"><button type="button" class="el-button el-button--default"><!----><!----><span>取 消</span></button> <button type="button" class="el-button el-button--primary"><!----><!----><span>确 定</span></button></span>
</div>
</div>
</div>
<!---->
<div class="el-dialog__wrapper" style="display: none;">
<div role="dialog" aria-modal="true" aria-label="dialog" class="el-dialog" style="margin-top: 15vh; width: 80%;">
<div class="el-dialog__header"><span class="el-dialog__title"></span>
<!---->
</div>
<!---->
<!---->
</div>
</div>
<div>
<div class="el-dialog__wrapper" style="display: none;">
<div role="dialog" aria-modal="true" aria-label="dialog" class="el-dialog submit_layer" style="margin-top: 15vh;">
<div class="el-dialog__header"><span class="el-dialog__title"></span>
<!---->
</div>
<!---->
<!---->
</div>
</div>
</div>
</div><iframe id="printCasLogout" style="display: none;" src="./index_files/saved_resource.html"></iframe>
<script>
if (window.location.href.indexOf("debug=1") !== -1) {
var jsScript = document.createElement("script");
jsScript.src = "/v2/static/js/common/vconsole.min.js";
jsScript.type = "text/javascript";
jsScript.async = false;
jsScript.onload = function() {
var vConsole = new VConsole();
};
document.getElementsByTagName("body")[0].appendChild(jsScript);
}
</script>
<!-- <div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading">
<div style="width: 98%;"></div>
</div>
<div id="progress_loading" style="display: none;">
<div style="width: 0%;"></div> -->
<img id="visits_collect" src="./index_files/collect" style="display: none;">
<div class="el-loading-mask is-fullscreen" style="z-index: 2000; display: none;">
<div class="el-loading-spinner"><svg viewBox="25 25 50 50" class="circular"><circle cx="50" cy="50" r="20" fill="none" class="path"></circle></svg>
<!---->
</div>
</div>
</body><grammarly-desktop-integration data-grammarly-shadow-root="true"></grammarly-desktop-integration></html>