-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh5test.html_20200626.html
2180 lines (1736 loc) · 235 KB
/
h5test.html_20200626.html
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
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0064)http://m.eqxiu.com/s/YzKCHdYr?from=groupmessage&isappinstalled=0 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>心理学行为实验</title>
<link rel="shortcut icon" type="image/x-icon"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="baidu-site-verification" content="2MKKT6mbuL">
<meta name="viewport" id="viewport" content="width=320, initial-scale=1.171875, maximum-scale=1.171875, user-scalable=no"><meta name="keywords" content="易企秀,免费,免费H5页面应用制作,移动场景应用制作与自营销管家,移动场景自营销管家,移动H5页面自营销工具,活动自营销管家,场景展示,免费的H5报名页面,
收集潜在客户,二次营销,轻CRM,提高H5页面场景应用营销效果,">
<meta name="description" content="欢迎您来参加我们的阅读能力测评!">
<meta name="renderer" content="webkit">
<meta name="robots" content="index, follow">
<meta name="format-detection" content="telephone=no">
<!-- no cache --><meta http-equiv="cache-control" content="max-age=0"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0"><meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT"><meta http-equiv="pragma" content="no-cache">
<!--<link rel="stylesheet" href="//lib.eqh5.com/iconfonts/1.0.5/iconfonts.min.css">-->
<script type="text/javascript">
</script>
<link rel="stylesheet" href="__PUBLIC__/h5test/css/view-72b4c69.min.css">
<link rel="stylesheet" href="__PUBLIC__/h5test/css/add.css">
<link rel="stylesheet" href="__PUBLIC__/h5test/css/buttons.css">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="__PUBLIC__/h5test/js/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script type="text/javascript" src="__PUBLIC__/h5test/js/dist/recorder.js"></script>
</head>
<body style="padding: 0px;">
<div id="ppitest" style="width:1in;visible:hidden;padding:0px"></div>
<div class="p-index main" id="con" style="">
<div class="nr" id="nr" style="position: relative; width: 100%; height: 100%;">
<!-- <div id="loading" class="loading" style="display: none;">
<div class="loadbox">
<div class="loadlogo"></div>
<div class="loadbg"></div>
</div>
<div class="loading-tip">欢迎制作易企秀</div>
</div> -->
<!--<div class="eqx-progress-bar">-->
<!--<span style="width: 320px;">-->
<!--</span>-->
<!--<em class="page-tip">29/29</em>-->
<!--</div>-->
<section class="main-page"><div class="m-img" id="page0" _tracker_view_="_tracker_view_"></div></section>
<section class="main-page"><div class="m-img" id="page1" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524808640" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background#{id}" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff"></div></div>
<section class="layer" id="layer:2168797861" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325529" num="4" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 4; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-207-t-430-w-100-h-30" eqx-id="9701325529">
<div class="element-box" style="width: 100%; height: 100%; top: 430px; left: 207px; z-index: 4; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325529" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">下一页</span></div></div>
</li>
<li id="inside_9701325515" num="3" ctype="7" class="jieshao_content item item-comp" style="position: absolute; z-index: 3; opacity: 1; height: 274px; left: 11px; transform: rotateZ(0deg); display: none;" abs-pos="l-11-t-118-w-300-h-274" eqx-id="9701325515">
<div class="element-box" style="width: 100%; height: 100%; top: 118px; left: 11px; z-index: 3; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; font-weight: normal; text-decoration: none; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325515" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 20px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
我们将从基本水平、字、句水平对您的阅读能力进行评估,测评时长约为10分钟。<br>
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
请您在<span style="font-weight: bold;">安静</span>的环境中完成本测评。<br>
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
测试完成后,您将获得适当报酬、得到专业反馈,并有机会加入我们的项目!<br>
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
*请解除手机屏幕方向锁定,旋转手机进行<span style="font-weight: bold;">横屏测试</span>。<br>
</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325514" num="2" ctype="7" class="title page item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 62px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-30-w-300-h-92" eqx-id="9701325514">
<div class="element-box" style="width: 100%; height: 100%; top: 30px; left: 10px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325514" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 28px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"> 欢迎您来参加我们的阅读能力测评!<br> <br> </span>
</div>
</div>
</div>
</li>
<!--<li id="inside_2133140853" num="1" ctype="4" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 375px; height: 620px; top: -59px; left: -85px; transform: rotateZ(0deg); display: none;" abs-pos="l--85-t--59-w-375-h-620" eqx-id="2133140853"><div class="element-box" style="width: 100%; height: 100%; top: -59px; left: -85px; z-index: 1; color: rgb(103, 103, 103); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; line-height: 1; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;"><img id="2133140853" ctype="4" class="element comp_image editable-image" style="display: block; width: 375px; height: 620px; margin-left: 0px; margin-top: 0px;" draggable="false" src="./imgs/FhONEb4-AOyDdHeuhCLZ0eD9H5h8" _tracker_click_="_tracker_click_"></div></div></li>-->
</ul>
</div>
</section></div></div>
<!-- <section class="u-arrow-bottom" style="bottom: 30px;"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<section class="main-page" style=""><div class="m-img" id="page2" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524818117" style="position: relative; z-index: 1"><div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1"><div id="wrapper-background9701325513" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff"></div></div><section class="layer" id="layer:5920024572" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325528" num="5" ctype="p" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 5; opacity: 1; width: 50px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-187-t-364-w-100-h-30" eqx-id="9701325528"><div class="element-box" style="width: 100%; height: 100%; top: 364px; left: 187px; z-index: 5; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325528" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">否</span></div>
</div>
</li>
<li id="inside_9701325527" num="4" ctype="l" class="jieshao_next_button item item-comp" style="right: 87px;position: absolute; z-index: 4; opacity: 1; width: 50px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-41-t-366-w-100-h-30" eqx-id="9701325527">
<div class="element-box" style="width: 100%; height: 100%; top: 366px; left: 41px; z-index: 4; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325527" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">是</span>
</div>
</div>
</li>
<li id="inside_9701325518" num="3" ctype="7" class="title item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 323px; height: 61px; transform: rotateZ(0deg); display: none;" abs-pos="l--2-t-42-w-323-h-61" eqx-id="9701325518">
<div class="element-box" style="width: 100%; height: 100%; top: 42px; left: -2px; z-index: 3; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325518" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 32px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">知情通知书</span></div></div></div></li>
<li id="inside_9701325517" num="2" ctype="7" class="jieshao_content item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 274px; left: 20px; transform: rotateZ(0deg); display: none;" abs-pos="l-20-t-68-w-300-h-274" eqx-id="9701325517">
<div class="element-box" style="width: 100%; height: 100%; left: 20px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325517" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 20px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p>
1. 本次测评信息将被严格保密;
</p>
<p>
2. 本测评为在线评估,仅具备基础筛选作用,不具有诊断作用;
</p>
<p>
3. 本测评需朗读文字,为评估阅读准确性,需对您朗读的内容进行录音。请允许本程序访问“麦克风”;
</p>
<p>
4. 最后,我们将结合录音评估您的整体正确率、反应时间等指标,并以此来确定劳务报酬的发放数额;
</p>
<p>
5. 您是否同意进行本次测评:
</p>
</div>
</div>
</div>
</li>
<!--<li id="inside_9701325512" num="1" ctype="4" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 375px; height: 620px; top: -56px; left: 55px; transform: rotateZ(0deg); display: none;" abs-pos="l-55-t--56-w-375-h-620" eqx-id="9701325512">-->
<!--<div class="element-box" style="width: 100%; height: 100%; top: -56px; left: 55px; z-index: 1; color: rgb(103, 103, 103); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; line-height: 1; margin-top: 0px; margin-bottom: 0px;">-->
<!--<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">-->
<!--<img id="9701325512" ctype="4" class="element comp_image editable-image" style="display: block; width: 375px; height: 620px; margin-left: 0px; margin-top: 0px;" draggable="false" src="./imgs/FhONEb4-AOyDdHeuhCLZ0eD9H5h8" _tracker_click_="_tracker_click_">-->
<!--</div>-->
<!--</div>-->
<!--</li>-->
</ul>
</div>
</section></div></div>
<!--
<section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<section class="main-page" style="">
<div class="m-img" id="page3" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524811575" style="position: relative; z-index: 1">
<!--<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">-->
<!--<div id="wrapper-background9701325503" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">-->
<!---->
<!--</div>-->
<!--</div>-->
<section class="layer" id="layer:6681292136" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div >
<span>请填写以下信息:</span>
</div>
<div style="height:100%;">
<form class="needs-validation" novalidate>
<div class="form-check form-inline">
<label class="form-check-label" for="exampleInputEmail1">性别:</label>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio1" value="option1" required>
<label class="form-check-label" for="inlineRadio1">女</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2" required>
<label class="form-check-label" for="inlineRadio2">男</label>
</div>
<div class="invalid-feedback">
您的性别.
</div>
</div>
<div class="form-check form-inline">
<label class="form-check-label" for="yearold">年龄:</label>
<input type="number" class="form-check-input" name='yearold' id="yearold" placeholder="" required>
<div class="invalid-feedback">
请填写正确的年龄.
</div>
</div>
<div class="form-check form-inline">
<label class="form-check-label" for="phonenum">手机:</label>
<input type="number" class="form-check-input" name="phonenum" id="phonenum" placeholder="" required>
<div class="invalid-feedback">
请提供手机号.
</div>
</div>
<div class="form-check form-inline">
<label class="form-check-label" for="wechat">微信:</label>
<input type="text" class="form-check-input" name='wechat' id="wechat" placeholder="" required>
<div class="invalid-feedback">
请提供微信.
</div>
</div>
<div class="form-check form-inline">
<label class="form-check-label" for="alipay">支付宝:</label>
<input type="text" class="form-check-input" name='alipay' id="alipay" placeholder="" required>
<div class="invalid-feedback">
请提供支付宝.
</div>
</div>
<div class="form-check form-inline">
<label class="form-check-label" for="email">邮箱:</label>
<input type="email" class="form-control" name='email' id="email" placeholder="" aria-describedby="emailHelp" required>
<div class="invalid-feedback">
请提供邮箱.
</div>
</div>
<div class="form-check form-inline">
<label class="form-check-label" for="">18岁之前主要居住城市:</label>
<input type="text" class="form-check-input col" id="inputProvince" required>
<label for="inputProvince">省</label>
<input type="text" class="form-check-input col" id="inputCity" required>
<label for="inputCity">市</label>
<input type="text" class="form-check-input col-md-2" id="inputZone" required>
<label for="inputZone">区(县)</label>
<div class="invalid-feedback">
请填写正确的省市区.
</div>
</div>
<div>
<span style="">注:我们将通过设定相关问题了解您的认真程度,并发放相应金额的被试费。为避免费用发放出现问题,请务必确定您的联系方式真实有效!</span>
</div>
<!--<div class="invalid-feedback">-->
<!--请完善信息,谢谢。-->
<!--</div>-->
<!--<button type="submit" class="btn btn-primary">提交</button>-->
<div style="position:absolute;bottom: 20px;right: 27px;height:50px;width:100px; float:right;">
<button type="submit" class=" btn btn-primary" style="background-color: rgb(89, 199, 249);bottom: 5px;right: 27px;">提交</button>
</div>
</form>
</div>
</section>
</div>
</div>
<!-- <section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<section class="main-page" style="">
<div class="m-img" id="page4" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524812598" style="position: relative; z-index: 1">
<!--<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">-->
<!--<div id="wrapper-background9701325505" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">-->
<!---->
<!--</div>-->
<!--</div>-->
<section class="layer" id="layer:3309991846" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9915586958" num="4" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 4; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-201-t-424-w-100-h-30" eqx-id="9915586958">
<div class="element-box" style="width: 100%; height: 100%; top: 424px; left: 201px; z-index: 4; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9915586958" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">下一页</span></div></div>
</li>
<li id="inside_9701325544" num="3" ctype="7" class="item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 300px; height: 244px; top: 53px; left: 10%; transform: rotateZ(0deg); display: none;" abs-pos="l-9-t-53-w-300-h-244" eqx-id="9701325544"><div class="element-box" style="width: 100%; height: 100%; top: 53px; left: 9px; z-index: 3; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325544" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 10px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
下面将进行基础、单字、句子三种水平阅读测试的操作简介。
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
为保证顺利完成测评,<span style="font-weight: bold;">请仔细阅读以下任务简介</span>。
</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325543" num="2" ctype="7" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 40px; top: 17px; left: 12px; transform: rotateZ(0deg); display: none;" abs-pos="l-12-t-17-w-300-h-40" eqx-id="9701325543">
<div class="element-box" style="width: 100%; height: 100%; top: 17px; left: 12px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325543" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 18px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">测评流程:</span></div></div>
</div>
</li>
</ul>
</div>
</section>
</div>
</div>
</section>
<section class="main-page" style="">
<div class="m-img" id="page5" _tracker_view_="_tracker_view_"><div class="edit_wrapper" data-scene-id="1524812875" style="position: relative; z-index: 1"><div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1"><div id="wrapper-background9701325507" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff"></div></div><section class="layer" id="layer:2217373585" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325556" num="11" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 11; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-209-t-439-w-100-h-30" eqx-id="9701325556">
<div class="element-box" style="width: 100%; height: 100%; top: 439px; left: 209px; z-index: 11; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325556" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">下一页</span>
</div>
</div>
</li>
<li id="inside_9701325555" num="10" ctype="7" class="item item-comp" style="position: absolute; z-index: 10; opacity: 1; width: 300px; height: 92px; top: 280px; left: 12px; transform: rotateZ(0deg); display: none;" abs-pos="l-12-t-280-w-300-h-92" eqx-id="9701325555"><div class="element-box" style="width: 100%; height: 100%; top: 280px; left: 12px; z-index: 10; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325555" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 13px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">参考文献:Qian, Y., Bi, H., Bi, Y., Wang, X., & Zhang, Y. (2016). Visual dorsal stream is associated with chinese reading skills: A resting-state fMRI study. Brain and Language, 160, 42-49.</span></div></div></div>
</li>
<li id="inside_9701325554" num="9" ctype="4" class="item item-comp" style="position: absolute; z-index: 9; opacity: 1; width: 131px; height: 31px; top: 222px; left: 6px; transform: rotateZ(0deg); display: none;" abs-pos="l-6-t-222-w-131-h-31" eqx-id="9701325554"><div class="element-box" style="width: 100%; height: 100%; top: 222px; left: 6px; z-index: 9; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325554" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 131px; height: 31px;" draggable="false" src="__PUBLIC__/h5test/imgs/pic_demo.png" _tracker_click_="_tracker_click_"></div></div>
</li>
<li id="inside_9701325553" num="8" ctype="7" class="item item-comp" style="position: absolute; z-index: 8; opacity: 1; width: 132px; height: 98px; top: 194px; left: 181px; transform: rotateZ(0deg); display: none;" abs-pos="l-181-t-194-w-132-h-98" eqx-id="9701325553">
<div class="element-box" style="width: 100%; height: 100%; top: 194px; left: 181px; z-index: 8; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325553" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"><span style="font-weight: bold;">快速读图</span>: <br>要求<span style="color:red;">快速且准确朗读</span>屏幕呈现的图画。
</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325552" num="7" ctype="7" class="item item-comp" style="position: absolute; z-index: 7; opacity: 1; width: 126px; height: 95px; top: 94px; left: 181px; transform: rotateZ(0deg); display: none;" abs-pos="l-181-t-94-w-126-h-95" eqx-id="9701325552">
<div class="element-box" style="width: 100%; height: 100%; top: 94px; left: 181px; z-index: 7; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325552" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"><span style="font-weight: bold;">快速读数</span>: <br>要求<span style="color:red;">快速且准确朗读</span>屏幕呈现的数字。</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325551" num="6" ctype="7" class="item item-comp" style="position: absolute; z-index: 6; opacity: 1; width: 300px; height: 35px; top: 56px; left: 6px; transform: rotateZ(0deg); display: none;" abs-pos="l-6-t-56-w-300-h-35" eqx-id="9701325551"><div class="element-box" style="width: 100%; height: 100%; top: 56px; left: 6px; z-index: 6; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325551" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">基础水平:</span></div></div></div>
</li>
<li id="inside_9701325550" num="5" ctype="7" class="item item-comp" style="position: absolute; z-index: 5; opacity: 1; width: 300px; height: 55px; top: 0px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-0-w-300-h-55" eqx-id="9701325550"><div class="element-box" style="width: 100%; height: 100%; top: 0px; left: 10px; z-index: 5; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325550" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 28px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">评估内容介绍</span></div></div></div></li>
<li id="inside_9701325549" num="4" ctype="4" class="item item-comp" style="position: absolute; z-index: 4; opacity: 1; width: 44px; height: 38px; top: 222px; left: 142px; transform: rotateZ(0deg); display: none;" abs-pos="l-142-t-222-w-44-h-38" eqx-id="9701325549">
<div class="element-box" style="width: 100%; height: 100%; top: 222px; left: 142px; z-index: 4; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;"><img id="9701325549" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 44px; height: 38px;" draggable="false" src="__PUBLIC__/h5test/imgs/jiantou.png" _tracker_click_="_tracker_click_">
</div>
</div>
</li>
<li id="inside_9701325548" num="3" ctype="4" class="item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 41px; height: 34px; top: 132px; left: 143px; transform: rotateZ(0deg); display: none;" abs-pos="l-143-t-132-w-41-h-34" eqx-id="9701325548"><div class="element-box" style="width: 100%; height: 100%; top: 132px; left: 143px; z-index: 3; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325548" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 41px; height: 34px;" draggable="false" src="__PUBLIC__/h5test/imgs/jiantou.png" _tracker_click_="_tracker_click_">
</div>
</div>
</li>
<li id="inside_9701325547" num="2" ctype="7" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 118px; height: 50px; top: 120px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-120-w-118-h-50" eqx-id="9701325547"><div class="element-box" style="width: 100%; height: 100%; top: 120px; left: 10px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325547" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 12px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">2 7 6 9 4 7 6 9 4 2<br>6 9 4 2 7 9 4 2 7 6</span></div></div></div></li>
<!--<li id="inside_9701325506" num="1" ctype="4" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 375px; height: 620px; top: -77px; left: -73px; transform: rotateZ(0deg); display: none;" abs-pos="l--73-t--77-w-375-h-620" eqx-id="9701325506">-->
<!--<div class="element-box" style="width: 100%; height: 100%; top: -77px; left: -73px; z-index: 1; color: rgb(103, 103, 103); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; line-height: 1; margin-top: 0px; margin-bottom: 0px;">-->
<!--<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">-->
<!--<img id="9701325506" ctype="4" class="element comp_image editable-image" style="display: block; width: 375px; height: 620px; margin-left: 0px; margin-top: 0px;" draggable="false" src="./imgs/FhONEb4-AOyDdHeuhCLZ0eD9H5h8" _tracker_click_="_tracker_click_">-->
<!--</div>-->
<!--</div>-->
<!--</li>-->
</ul>
</div>
</section></div></div>
<!--
<section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<section class="main-page" style="">
<div class="m-img" id="page6" _tracker_view_="_tracker_view_"><div class="edit_wrapper" data-scene-id="1524893717" style="position: relative; z-index: 1"><div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1"><div id="wrapper-background9701325558" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff"></div></div><section class="layer" id="layer:8316088583" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style=""><li id="inside_9701325567" num="8" ctype="7" class="item item-comp" style="position: absolute; z-index: 8; opacity: 1; width: 300px; height: 118px; top: 196px; left: 9px; transform: rotateZ(0deg); display: none;" abs-pos="l-9-t-196-w-300-h-118" eqx-id="9701325567"><div class="element-box" style="width: 100%; height: 100%; top: 196px; left: 9px; z-index: 8; color: rgb(104, 59, 17); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325567" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">参考文献:Zhao, J., Kwok, R., Liu, M., Liu, H., & Huang, C. (2017). Underlying skills of oral and silent reading fluency in chinese: Perspective of visual rapid processing. Frontiers in Psychology,</span></div></div></div></li>
<li id="inside_9701325581" num="7" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 7; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-204-t-428-w-100-h-30" eqx-id="9701325581">
<div class="element-box" style="width: 100%; height: 100%; top: 428px; left: 204px; z-index: 7; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325581" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">下一页</span></div>
</div></li>
<li id="inside_9701325569" num="6" ctype="4" class="item item-comp" style="position: absolute; z-index: 6; opacity: 1; width: 135px; height: 31px; top: 133px; left: 5px; transform: rotateZ(0deg); display: none;" abs-pos="l-5-t-133-w-135-h-31" eqx-id="9701325569">
<div class="element-box" style="width: 100%; height: 100%; top: 133px; left: 5px; z-index: 6; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325569" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 135px; height: 31px;" draggable="false" src="__PUBLIC__/h5test/imgs/hanzi_demo.png" _tracker_click_="_tracker_click_">
</div>
</div>
</li>
<li id="inside_9701325564" num="5" ctype="7" class="item item-comp" style="position: absolute; z-index: 5; opacity: 1; width: 139px; height: 98px; top: 95px; left: 182px; transform: rotateZ(0deg); display: none;" abs-pos="l-182-t-95-w-139-h-98" eqx-id="9701325564">
<div class="element-box" style="width: 100%; height: 100%; top: 95px; left: 182px; z-index: 5; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325564" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"><span style="font-weight: bold;">快速读字表</span>: <br>要求<span style="color:red;">快速且准确朗读</span>屏幕呈现的汉字,并点击特定汉字。</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325563" num="4" ctype="7" class="item item-comp" style="position: absolute; z-index: 4; opacity: 1; width: 300px; height: 35px; top: 70px; left: 14px; transform: rotateZ(0deg); display: none;" abs-pos="l-14-t-70-w-300-h-35" eqx-id="9701325563">
<div class="element-box" style="width: 100%; height: 100%; top: 70px; left: 14px; z-index: 4; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325563" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">字水平:</span>
</div></div></div></li>
<li id="inside_9701325562" num="3" ctype="7" class="item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 300px; height: 55px; top: 0px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-0-w-300-h-55" eqx-id="9701325562"><div class="element-box" style="width: 100%; height: 100%; top: 0px; left: 10px; z-index: 3; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325562" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 28px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">评估内容介绍</span></div></div></div></li>
<li id="inside_9701325560" num="2" ctype="4" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 41px; height: 34px; top: 132px; left: 143px; transform: rotateZ(0deg); display: none;" abs-pos="l-143-t-132-w-41-h-34" eqx-id="9701325560">
<div class="element-box" style="width: 100%; height: 100%; top: 132px; left: 143px; z-index: 2; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325560" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 41px; height: 34px;" draggable="false" src="__PUBLIC__/h5test/imgs/jiantou.png" _tracker_click_="_tracker_click_">
</div>
</div>
</li>
<!--<li id="inside_9701325557" num="1" ctype="4" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 375px; height: 620px; top: -52px; left: 8px; transform: rotateZ(0deg); display: none;" abs-pos="l-8-t--52-w-375-h-620" eqx-id="9701325557">-->
<!--<div class="element-box" style="width: 100%; height: 100%; top: -52px; left: 8px; z-index: 1; color: rgb(103, 103, 103); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; line-height: 1; margin-top: 0px; margin-bottom: 0px;">-->
<!--<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">-->
<!--<img id="9701325557" ctype="4" class="element comp_image editable-image" style="display: block; width: 375px; height: 620px; margin-left: 0px; margin-top: 0px;" draggable="false" src="./imgs/FhONEb4-AOyDdHeuhCLZ0eD9H5h8" _tracker_click_="_tracker_click_">-->
<!--</div>-->
<!--</div>-->
<!--</li>-->
</ul>
</div>
</section></div></div>
<!-- <section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section><section class="main-page" style=""><div class="m-img" id="page7" _tracker_view_="_tracker_view_"><div class="edit_wrapper" data-scene-id="1524902115" style="position: relative; z-index: 1"><div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1"><div id="wrapper-background9701325571" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff"></div></div><section class="layer" id="layer:8849258492" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325582" num="9" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 9; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-207-t-439-w-100-h-30" eqx-id="9701325582">
<div class="element-box" style="width: 100%; height: 100%; top: 439px; left: 207px; z-index: 9; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325582" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">下一页</span>
</div></div></li>
<li id="inside_9701325580" num="8" ctype="7" class="item item-comp" style="position: absolute; z-index: 8; opacity: 1; width: 300px; height: 118px; top: 249px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-249-w-300-h-118" eqx-id="9701325580">
<div class="element-box" style="width: 100%; height: 100%; top: 249px; left: 10px; z-index: 8; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325580" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">参考文献:Zhao, J., Liu, M., Liu, H., & Huang, C. (2018). The visual attention span deficit in chinese children with reading fluency difficulty. Research in Developmental Disabilities, 73, 76-86.</span></div></div></div>
</li>
<li id="inside_9701325579" num="7" ctype="4" class="item item-comp" style="position: absolute; z-index: 7; opacity: 1; width: 130px; height: 76px; top: 111px; left: 9px; transform: rotateZ(0deg); display: none;" abs-pos="l-9-t-111-w-130-h-76" eqx-id="9701325579">
<div class="element-box" style="width: 100%; height: 100%; top: 111px; left: 9px; z-index: 7; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325579" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 130px; height: 76px;" draggable="false" src="__PUBLIC__/h5test/imgs/sentence-demo.png" _tracker_click_="_tracker_click_">
</div></div>
</li>
<li id="inside_9701325576" num="6" ctype="7" class="item item-comp" style="position: absolute; z-index: 6; opacity: 1; width: 300px; height: 56px; top: 206px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-206-w-300-h-56" eqx-id="9701325576">
<div class="element-box" style="width: 100%; height: 100%; top: 206px; left: 10px; z-index: 6; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325576" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">在每类句子测试后均会提出两个<span style="font-weight: bold;">评估问题</span>,用于检测您在测试中的认真程度。</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325575" num="5" ctype="7" class="item item-comp" style="position: absolute; z-index: 5; opacity: 1; width: 139px; height: 118px; top: 94px; left: 175px; transform: rotateZ(0deg); display: none;" abs-pos="l-175-t-94-w-139-h-118" eqx-id="9701325575">
<div class="element-box" style="width: 100%; height: 100%; top: 94px; left: 175px; z-index: 5; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325575" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"><span style="font-weight: bold;">快速读句子</span>: <br>要求<span style="color:red;">快速且准确朗读或默读</span>屏幕呈现的句子并对句子的合理性作出正误判断。</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325574" num="4" ctype="7" class="item item-comp" style="position: absolute; z-index: 4; opacity: 1; width: 300px; height: 35px; top: 70px; left: 14px; transform: rotateZ(0deg); display: none;" abs-pos="l-14-t-70-w-300-h-35" eqx-id="9701325574"><div class="element-box" style="width: 100%; height: 100%; top: 70px; left: 14px; z-index: 4; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325574" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">句子水平:</span></div></div></div>
</li>
<li id="inside_9701325573" num="3" ctype="7" class="item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 300px; height: 55px; top: 0px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-0-w-300-h-55" eqx-id="9701325573"><div class="element-box" style="width: 100%; height: 100%; top: 0px; left: 10px; z-index: 3; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325573" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 28px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">评估内容介绍</span>
</div></div></div>
</li>
<li id="inside_9701325572" num="2" ctype="4" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 41px; height: 34px; top: 137px; left: 136px; transform: rotateZ(0deg); display: none;" abs-pos="l-136-t-137-w-41-h-34" eqx-id="9701325572">
<div class="element-box" style="width: 100%; height: 100%; top: 137px; left: 136px; z-index: 2; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325572" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 41px; height: 34px;" draggable="false" src="__PUBLIC__/h5test/imgs/jiantou.png" _tracker_click_="_tracker_click_"></div></div></li>
<!--<li id="inside_9701325570" num="1" ctype="4" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 375px; height: 620px; top: -37px; left: 109px; transform: rotateZ(0deg); display: none;" abs-pos="l-109-t--37-w-375-h-620" eqx-id="9701325570">-->
<!--<div class="element-box" style="width: 100%; height: 100%; top: -37px; left: 109px; z-index: 1; color: rgb(103, 103, 103); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; line-height: 1; margin-top: 0px; margin-bottom: 0px;">-->
<!--<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">-->
<!--<img id="9701325570" ctype="4" class="element comp_image editable-image" style="display: block; width: 375px; height: 620px; margin-left: 0px; margin-top: 0px;" draggable="false" src="./imgs/FhONEb4-AOyDdHeuhCLZ0eD9H5h8" _tracker_click_="_tracker_click_">-->
<!---->
<!--</div></div>-->
<!--</li>-->
</ul>
</div>
</section></div></div>
<!-- <section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<section class="main-page" style="">
<div class="m-img" id="page8" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524812911" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background9701325509" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">
</div>
</div>
<section class="layer" id="layer:1180781314" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325584" num="3" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-206-t-430-w-100-h-30" eqx-id="9701325584">
<div class="element-box" style="width: 100%; height: 100%; top: 430px; left: 206px; z-index: 3; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325584" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">下一页</span>
</div>
</div>
</li>
<li id="inside_9701325583" num="2" ctype="l" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 224px; height: 68px; top: 121px; left: 54px; transform: rotateZ(0deg); display: none;" abs-pos="l-54-t-121-w-224-h-68" eqx-id="9701325583">
<div class="element-box" style="width: 100%; height: 100%; top: 121px; left: 54px; z-index: 2; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325583" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">点击设置,允许测验访问麦</span></div></div>
</li>
<!--<li id="inside_9701325508" num="1" ctype="4" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 375px; height: 620px; top: -67px; left: -27px; transform: rotateZ(0deg); display: none;" abs-pos="l--27-t--67-w-375-h-620" eqx-id="9701325508">-->
<!--<div class="element-box" style="width: 100%; height: 100%; top: -67px; left: -27px; z-index: 1; color: rgb(103, 103, 103); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; line-height: 1; margin-top: 0px; margin-bottom: 0px;">-->
<!--<div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">-->
<!--<img id="9701325508" ctype="4" class="element comp_image editable-image" style="display: block; width: 375px; height: 620px; margin-left: 0px; margin-top: 0px;" draggable="false" src="./imgs/FhONEb4-AOyDdHeuhCLZ0eD9H5h8" _tracker_click_="_tracker_click_">-->
<!--</div>-->
<!--</div>-->
<!--</li>-->
</ul>
</div>
</section>
</div>
</div>
</section>
<section class="main-page" style="">
<div class="m-img" id="page9" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524920887" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background9701325586" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">
</div>
</div>
<section class="layer" id="layer:1822030331" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325607" num="2" ctype="l" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-112-t-287-w-100-h-30" eqx-id="9701325607">
<div class="element-box" style="width: 100%; height: 100%; top: 287px; left: 112px; z-index: 2; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="9701325607" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">开始</span>
</div>
</div>
</li>
<li id="inside_9701325514extend2" num="2" ctype="7" class="title page item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 62px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-30-w-300-h-92" eqx-id="9701325514">
<div class="element-box" style="width: 100%; height: 100%; top: 30px; left: 10px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325514extend2" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 28px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">快速读数(一)</span>
</div>
</div>
</div>
</li>
<li id="inside_9701325606" num="1" ctype="7" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 301px; height: 194px; top: 77px; left: 10px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-77-w-301-h-194" eqx-id="9701325606">
<div class="element-box" style="width: 100%; height: 100%; top: 77px; left: 10px; z-index: 1; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325606" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 16px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"> 
请由第一行开始从左至右<span style="font-weight:bold;">快速朗读</span>数字,限时10秒。
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"> 
时间截止时,会呈现提示,请您如实点击刚才所读的最后一个数字。
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"> 
请按下方开始键进入测试。
</p>
</div>
</div>
</div>
</li>
</ul>
</div>
</section></div></div>
</section>
<section class="main-page" style=""><div class="m-img" id="page20" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524812935" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background9701325511" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">
</div></div>
<section class="layer" id="layer:6119693128" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325640" num="3" ctype="l" class="item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 100px; height: 30px; top: 257px; left: 45%; transform: rotateZ(0deg); display: none;" abs-pos="l-113-t-257-w-100-h-30" eqx-id="9701325640">
<div class="element-box" style="width: 100%; height: 100%; top: 257px; left: 113px; z-index: 3; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="modu-test" id="9701325640" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">读完</span>
</div>
</div>
</li>
<li id="inside_9701325639" num="2" ctype="7" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 40px; left: 10px; top:30%;transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-180-w-300-h-40" eqx-id="9701325639"><div class="element-box" style="width: 100%; height: 100%; top: 180px; left: 10px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; text-align: center; line-height: 1.5; font-weight: bold; transform: none; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325639" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 18px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span id="modu-test-content" style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">这只鸵鸟飞的很高</span>
</div></div></div>
</li>
</ul>
</div>
</section>
</div>
</div>
</section>
<section class="main-page" style="">
<div class="m-img" id="page32" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524812935" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background9701325511" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">
</div></div>
<section class="layer" id="layer:6119693128" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325640" num="3" ctype="l" class="item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 100px; height: 30px; top: 257px; left: 45%; transform: rotateZ(0deg); display: none;" abs-pos="l-113-t-257-w-100-h-30" eqx-id="9701325640">
<div class="element-box" style="width: 100%; height: 100%; top: 257px; left: 113px; z-index: 3; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="modu-test" id="9701325640" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">读完</span>
</div>
</div>
</li>
<li id="inside_9701325639" num="2" ctype="7" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 40px; left: 10px; top:30%;transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-180-w-300-h-40" eqx-id="9701325639">
<div class="element-box" style="width: 100%; height: 100%; top: 180px; left: 10px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; text-align: center; line-height: 1.5; font-weight: bold; transform: none; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325639" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 18px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span id="langdu-test-content" style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">这只鸵鸟飞的很高</span>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
</div>
</div>
</section>
<!--这一页是为了显示用的-->
<section class="main-page" style="">
<div class="m-img" id="page10" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524925047" style="position: relative; z-index: 1">
<section class="layer" id="layer:1388561212" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<div class="row" id="inTest">
<div id="numbersddddd" class="numbers col-sm-12 col-lg-12 col-md-12" style="height:100%;display:block;text-align:center; cursor:default;font-family:Times New Roman;">
<table style="font-size:22px;font-family: Times New Roman;width:100%;border-collapse:separate; border-spacing:10px;">
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<!--这一页的目的是为了供点选用的。-->
<section class="main-page" style="">
<div class="m-img" id="page101" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524925047" style="position: relative; z-index: 1">
<section class="layer" id="layer:13885612122" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<div class="element-box go-next-page" style="position:absolute;float:left;z-index:999;width: 100px; height: 30px; top: 0px; right: 21px; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; ">
<span id="99155869528" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;justify-content: center; align-items:center; " data-event="1120601">下一页</span>
</div>
<div class="element-box" style="position:absolute;float:left;left:35%;z-index:999; height: 30px; top: 0px; font-size: 14px; background-color: rgb(89, 199, 249); color: red; transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; ">
<span id="99155869528" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;justify-content: center; align-items:center; " data-event="1120601">时间到,请点击您最后读到的数字</span>
</div>
<div class="row" style="height: 100%;z-index:2;">
<div id="numbersddddd2" class="numbers_click col-sm-12 col-lg-12 col-md-12" style="height:100%;display:block;text-align:center; cursor:default;font-family:Times New Roman;">
<table style="font-size:22px;font-family: Times New Roman;width:100%;border-collapse:separate; border-spacing:10px;">
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<section class="main-page" style="">
<div class="m-img" id="page13" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1525919780" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background9915586959" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">
</div>
</div>
<section class="layer" id="layer:3893928363" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<div class="row" id="inTest">
<div id="numbers333333" class="numbers col-sm-12 col-lg-12 col-md-12" style="height:100%;display:block;text-align:center; cursor:default;font-family:Times New Roman;">
<table style="font-size:22px;font-family: Times New Roman;width:100%;border-collapse:separate; border-spacing:10px;">
<tbody>
<!-- <tr> <td numberid="0">4</td>
<td numberid="1">5</td>
<td numberid="2">1</td>
<td numberid="3">5</td>
<td numberid="4">2</td>
<td numberid="5">7</td>
-->
</tbody>
</table>
</div>
</div>
</div>
</section></div></div>
<!-- <section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<!--这一页的目的是为了供点选用的。-->
<section class="main-page" style="">
<div class="m-img" id="page131" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524925047" style="position: relative; z-index: 1">
<section class="layer" id="layer:13885612122" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<div class="element-box go-next-page" style="position:absolute;float:left;z-index:999;width: 100px; height: 30px; top: 0px; right: 21px; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; ">
<span id="99155869528" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;justify-content: center; align-items:center; " data-event="1120601">下一页</span>
</div>
<div class="element-box" style="position:absolute;float:left;left:35%;z-index:999; height: 30px; top: 0px; font-size: 14px; background-color: rgb(89, 199, 249); color: red; transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; ">
<span id="99155869528" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;justify-content: center; align-items:center; " data-event="1120601">时间到,请点击您最后读到的数字</span>
</div>
<div class="row" style="height: 100%;z-index:2;">
<div id="numbersddddd2" class="numbers_click col-sm-12 col-lg-12 col-md-12" style="height:100%;display:block;text-align:center; cursor:default;font-family:Times New Roman;">
<table style="font-size:22px;font-family: Times New Roman;width:100%;border-collapse:separate; border-spacing:10px;">
<tbody></tbody>
</table>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<section class="main-page" style="">
<div class="m-img" id="page11" _tracker_view_="_tracker_view_">
<div class="edit_wrapper" data-scene-id="1524925125" style="position: relative; z-index: 1">
<div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1">
<div id="wrapper-background9701325600" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff">
</div>
</div>
<section class="layer" id="layer:8048885531" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box">
<ul id="edit_area" class="layer-items edit_area weebly-content-area weebly-area-active" style="">
<li id="inside_9701325620" num="13" ctype="7" class="item item-comp" style="position: absolute; z-index: 13; opacity: 1; width: 49px; height: 35px; top: 191px; left: 221px; transform: rotateZ(0deg); display: none;" abs-pos="l-221-t-191-w-49-h-35" eqx-id="9701325620"><div class="element-box" style="width: 100%; height: 100%; top: 191px; left: 221px; z-index: 13; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325620" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">=鞋</span></div></div></div>
</li>
<li id="inside_9701325619" num="12" ctype="7" class="item item-comp" style="position: absolute; z-index: 12; opacity: 1; width: 45px; height: 35px; top: 191px; left: 109px; transform: rotateZ(0deg); display: none;" abs-pos="l-109-t-191-w-45-h-35" eqx-id="9701325619"><div class="element-box" style="width: 100%; height: 100%; top: 191px; left: 109px; z-index: 12; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325619" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">=书</span></div></div></div>
</li>
<li id="inside_9701325618" num="11" ctype="7" class="item item-comp" style="position: absolute; z-index: 11; opacity: 1; width: 55px; height: 35px; top: 134px; left: 244px; transform: rotateZ(0deg); display: none;" abs-pos="l-244-t-134-w-55-h-35" eqx-id="9701325618"><div class="element-box" style="width: 100%; height: 100%; top: 134px; left: 244px; z-index: 11; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325618" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">=手</span></div></div></div>
</li>
<li id="inside_9701325617" num="10" ctype="7" class="item item-comp" style="position: absolute; z-index: 10; opacity: 1; width: 38px; height: 35px; top: 132px; left: 164px; transform: rotateZ(0deg); display: none;" abs-pos="l-164-t-132-w-38-h-35" eqx-id="9701325617"><div class="element-box" style="width: 100%; height: 100%; top: 132px; left: 164px; z-index: 10; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325617" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">=狗</span></div></div></div>
</li>
<li id="inside_9701325616" num="9" ctype="7" class="item item-comp" style="position: absolute; z-index: 9; opacity: 1; width: 37px; height: 35px; top: 134px; left: 58px; transform: rotateZ(0deg); display: none;" abs-pos="l-58-t-134-w-37-h-35" eqx-id="9701325616"><div class="element-box" style="width: 100%; height: 100%; top: 134px; left: 58px; z-index: 9; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%"><div id="9701325616" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;"><span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">=花</span></div></div></div>
</li>
<li id="inside_9701325615" num="8" ctype="4" class="item item-comp" style="position: absolute; z-index: 8; opacity: 1; width: 33px; height: 31px; top: 134px; left: 212px; transform: rotateZ(0deg); display: none;" abs-pos="l-212-t-134-w-33-h-31" eqx-id="9701325615">
<div class="element-box" style="width: 100%; height: 100%; top: 134px; left: 212px; z-index: 8; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;">
<img id="9701325615" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 33px; height: 31px;" draggable="false" src="__PUBLIC__/h5test/imgs/img5.png" _tracker_click_="_tracker_click_"></div></div>
</li>
<li id="inside_9701325614" num="7" ctype="4" class="item item-comp" style="position: absolute; z-index: 7; opacity: 1; width: 36px; height: 36px; top: 186px; left: 186px; transform: rotateZ(0deg); display: none;" abs-pos="l-186-t-186-w-36-h-36" eqx-id="9701325614"><div class="element-box" style="width: 100%; height: 100%; top: 186px; left: 186px; z-index: 7; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;"><img id="9701325614" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 36px; height: 36px;" draggable="false" src="__PUBLIC__/h5test/imgs/img4.png" _tracker_click_="_tracker_click_"></div></div>
</li>
<li id="inside_9701325613" num="6" ctype="4" class="item item-comp" style="position: absolute; z-index: 6; opacity: 1; width: 33px; height: 34px; top: 133px; left: 24px; transform: rotateZ(0deg); display: none;" abs-pos="l-24-t-133-w-33-h-34" eqx-id="9701325613"><div class="element-box" style="width: 100%; height: 100%; top: 133px; left: 24px; z-index: 6; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;"><img id="9701325613" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 33px; height: 34px;" draggable="false" src="__PUBLIC__/h5test/imgs/img3.png" _tracker_click_="_tracker_click_"></div></div>
</li>
<li id="inside_9701325612" num="5" ctype="4" class="item item-comp" style="position: absolute; z-index: 5; opacity: 1; width: 34px; height: 35px; top: 188px; left: 67px; transform: rotateZ(0deg); display: none;" abs-pos="l-67-t-188-w-34-h-35" eqx-id="9701325612"><div class="element-box" style="width: 100%; height: 100%; top: 188px; left: 67px; z-index: 5; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;"><img id="9701325612" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 34px; height: 35px;" draggable="false" src="__PUBLIC__/h5test/imgs/img2.png" _tracker_click_="_tracker_click_"></div></div>
</li>
<li id="inside_9701325611" num="4" ctype="4" class="item item-comp" style="position: absolute; z-index: 4; opacity: 1; width: 38px; height: 37px; top: 133px; left: 131px; transform: rotateZ(0deg); display: none;" abs-pos="l-131-t-133-w-38-h-37" eqx-id="9701325611"><div class="element-box" style="width: 100%; height: 100%; top: 133px; left: 131px; z-index: 4; transform: none; color: rgb(103, 103, 103); text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;"><div class="element-box-contents" style="width: 100%; height: 100%; overflow: hidden;"><img id="9701325611" ctype="4" class="element comp_image editable-image" style="display: block; margin-top: 0px; margin-left: 0px; width: 38px; height: 37px;" draggable="false" src="__PUBLIC__/h5test/imgs/img1.png" _tracker_click_="_tracker_click_"></div></div>
</li>
<li id="inside_9701325610" num="3" class="jieshao_next_button item item-comp" style="position: absolute; z-index: 3; opacity: 1; width: 100px; height: 30px; transform: rotateZ(0deg); display: none;" abs-pos="l-113-t-393-w-100-h-30" eqx-id="9701325610">
<div class="element-box" style="width: 100%; height: 100%; top: 393px; left: 113px; z-index: 3; font-size: 14px; background-color: rgb(89, 199, 249); color: rgb(255, 255, 255); transform: none; text-align: left; border-width: 0px; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<span id="up_luyin1" class="element eqx-link editable-text" style="cursor: default; width: 100%; height: 100%; display: flex;
justify-content: center; align-items:center; padding: 0 8px" data-event="1120601">开始</span>
</div>
</div>
</li>
<li id="inside_9701325609" num="2" ctype="7" class="item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 304px; height: 140px; top: 243px; left: 11px; transform: rotateZ(0deg); display: none;" abs-pos="l-11-t-243-w-304-h-140" eqx-id="9701325609">
<div class="element-box" style="width: 100%; height: 100%; top: 243px; left: 11px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325609" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">请由第一行开始从左至右<span style="font-weight:bold;">快速“朗读”</span> 图,限时20秒。
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
时间截止提示呈现时,请您如实点击刚才所“读”的最后一幅图。
</p>
<p style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto">
请按下方开始键进入测试。
</p>
</div>
</div>
</div>
</li>
<li id="inside_9701325514extend3" num="2" ctype="7" class="title page item item-comp" style="position: absolute; z-index: 2; opacity: 1; width: 300px; height: 62px; transform: rotateZ(0deg); display: none;" abs-pos="l-10-t-30-w-300-h-92" eqx-id="9701325514">
<div class="element-box" style="width: 100%; height: 100%; top: 30px; left: 10px; z-index: 2; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: center; line-height: 1.5; font-weight: bold; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325514extend3" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 28px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"> 快速读图(一)
</span>
</div>
</div>
</div>
</li>
<li id="inside_9701325608" num="1" ctype="7" class="item item-comp" style="position: absolute; z-index: 1; opacity: 1; width: 300px; height: 74px; top: 59px; left: 14px; transform: rotateZ(0deg); display: none;" abs-pos="l-14-t-59-w-300-h-74" eqx-id="9701325608">
<div class="element-box" style="width: 100%; height: 100%; top: 59px; left: 14px; z-index: 1; color: rgb(0, 0, 0); border-width: 0px; transform: none; text-align: left; line-height: 1.5; border-style: solid; border-color: rgb(0, 0, 0); border-radius: 0px; padding-bottom: 0px; padding-top: 0px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px; margin-top: 0px; margin-bottom: 0px;">
<div class="element-box-contents" style="width: 100%; height: 100%">
<div id="9701325608" ctype="7" class="element" style="padding: 5px; width: 100%; height: 100%; font-size: 14px; cursor: default; min-height: inherit; letter-spacing: 0em;">
<span style="display: block;margin-top: 0px;margin-bottom: 0px;color: inherit;-ms-word-wrap: break-word;word-wrap: break-word; -webkit-user-select: auto"> 图片-名称对应关系如下:<br> <br>
</span>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
</div></div>
<!-- <section class="u-arrow-bottom"><div class="pre-wrap-bottom"><div class="pre-box1"><div class="pre1"></div></div><div class="pre-box2"><div class="pre2"></div></div></div></section> -->
</section>
<!-- 图片 -->
<section class="main-page" style="">
<div class="m-img" id="page12" _tracker_view_="_tracker_view_"><div class="edit_wrapper" data-scene-id="1524925197" style="position: relative; z-index: 1"><div style="width: 100%; height: 100%; overflow: hidden;position: absolute;z-index: -1"><div id="wrapper-background9701325602" class="eqx-bg" style="width: 100%; height: 100%; background-color: #ffffff"></div></div><section class="layer" id="layer:2857537142" style="position: absolute; width: 100%; height: 100%; z-index: 1; display: block;">
<div class="layer-box" id="imgs">
<div id="numbersdddddddddsdf" class="numbers col-sm-12 col-lg-12 col-md-12" style="height:100%;display:block;text-align:center; cursor:default;font-family:Times New Roman;">
<table style="font-size:22px;font-family: Times New Roman;width:100%;border-collapse:separate; border-spacing:10px;">
<tbody>
<tr>
<td numberid="0">
</td>
<td numberid="1">5</td>
<td numberid="2">1</td>
<td numberid="3">5</td>
<td numberid="4">2</td>
<td numberid="5">7</td>
<td numberid="6">5</td>
<td numberid="7">6</td>
<td numberid="8">4</td>
<td numberid="9">2</td>
</tr>
<tr>
<td numberid="10">4</td>
<td numberid="11">5</td>
<td numberid="12">4</td>
<td numberid="13">6</td>
<td numberid="14">3</td>
<td numberid="15">9</td>
<td numberid="16">4</td>
<td numberid="17">0</td>
<td numberid="18">9</td>
<td numberid="19">8</td>
</tr>