user1
2024-06-28 c7b33fe92cf6d4449ca5919353c15611ae9ad410
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
<template>
    <div class="chapter" num="5">
        <!-- 第四单元 -->
        <!-- 58 -->
        <div class="page-box" page="64">
            <div class="bodystyle" v-if="showPageList.indexOf(64) > -1">
                <h1 id="a005">
                    <img class="img-0" alt="" src="../../assets/images/dy4.jpg" />
                </h1>
                <p class="img"></p>
                <p><b>This unit will help you to:</b></p>
                <p>➢ Learn words and expressions to describe hi-tech products</p>
                <p>➢ Review the rules for the comparative and superlative degree of adjectives and adverbs</p>
                <p>➢ Get knowledge of the impact of science and technology on the way of life</p>
                <p>➢ Be able to write a sales letter to introduce a new product</p>
                <p>➢ Get inspired by the spirit of scientists</p>
                <p class="center">
                    <img class="img-0" alt="" src="../../assets/images/0068-1.jpg" />
                </p>
                <p class="img"></p>
            </div>
        </div>
        <!-- 59 -->
        <!-- <div class="page-box" page="65">
            <div v-if="showPageList.indexOf(65) > -1">
 
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
            
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b013"><img class="img-0" alt="" src="../../assets/images/dy4-le1.jpg" /></h2>
                        <h3 id="c028"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Ⅰ.Put the expressions in the box below on the corresponding answer line under each
                                picture.</b></p>
                        <div class="bk-wh">
                            <p>robot floor cleaner self-balancing scooter camera drone smartwatch fingerprint door
                                lock VR headset</p>
                        </div>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0069-1.jpg" /></p>
                        <p class="center">1._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0069-2.jpg" /></p>
                        <p class="center">2._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0069-3.jpg" /></p>
                        <p class="center">3._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0069-4.jpg" /></p>
                        <p class="center">4._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0069-5.jpg" /></p>
                        <p class="center">5._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0069-6.jpg" /></p>
                        <p class="center">6._____________________</p>
                        <p><b>Ⅱ.Read the following descriptions of the items in the above pictures,and then put the
                                number of the corresponding picture in the blanks.</b></p>
                        <p class="center"><img class="img-0" alt="" src="../../assets/images/0069-7.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">59</span>
                </div>
            </div>
        </div> -->
        <!-- 60 -->
        <!-- <div class="page-box" page="66">
            <div v-if="showPageList.indexOf(66) > -1">
        
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
 
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c029"><span class="bjh3">Listening</span></h3>
                        <p><b>Listen to the conversation between Tony and Zhang Ping and match the sentence halves.</b>
                        </p>
                        <audio :src="resource.listenOne" controls controlslist="noplaybackrate nodownload" class="audio"
                            @play="audioPlay"></audio>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0070-2.jpg" /></p>
                        <h3 id="c030"><span class="bjh3">Reading</span></h3>
                        <audio :src="resource.listenOne" controls controlslist="noplaybackrate nodownload" class="audio"
                            @play="audioPlay"></audio>
                        <p>1.Technology is all around us.What images spring to your mind when you hear the word “robot”?
                        </p>
                        <p>2.How can robots help humans today in daily life and work?</p>
                        <p class="center"><b>Robots in Action</b></p>
                        <p>Robots are on the rise! Today they can be found working in hotels and stores.Machines will
                            soon be used to study sea creatures up close.These robots can blend right in with underwater
                            habitats.Robots take on tasks to make our life easier and safer.Scientists keep coming up
                            with jobs that machines can do.Sometimes,the machines can do a better job than humans.Take a
                            look at the latest robots.</p>
                        <p><b>Super Swimmer</b></p>
                        <p>The Octobot is perfectly named.Its design is based on the octopus.The robot is the size of a
                            shoebox.It can blend in with its underwater surroundings.The Octobot can travel at seven
                            inches per second.That is close to the speed of an octopus.The Octobot moves through water
                            by slowly opening its soft rubber arms and then snapping them shut.During tests,fish swam
                            alongside the Octobot.Researchers can use the robot to study sea creatures.</p>
                        <p class="center"><img class="img-f" alt="" src="../../assets/images/0070-4.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">60</span>
                </div>
            </div>
        </div>
        <!-- 61 -->
        <div class="page-box" page="67">
            <div v-if="showPageList.indexOf(67) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>See Spot Run</b></p>
                        <p>Spot looks and moves much like a real dog.But don’t expect it to play fetch.Boston Dynamics
                            created the four-legged,160-pound mechanical dog.It can climb mountains.It can cross
                            woods.It can go upstairs.Spot can also keep itself from falling over if it loses its
                            balance.In the future,Spot may be used for search-and-rescue missions and to carry heavy
                            facilities.</p>
                        <p class="center"><img class="img-f" alt="" src="../../assets/images/0071-3.jpg" /></p>
                        <p><b>Hotel Helper</b></p>
                        <p class="center"><img class="img-f" alt="" src="../../assets/images/0071-2.jpg" /></p>
                        <p>No towels? No problem! At the Crowne Plaza in the Dishuihu area of Shanghai,Mingo robot is on
                            the job.The three-foot-tall robot has been making deliveries to guest rooms.When a guest
                            asks for an item,a clerk places it in Mingo’s lid and enters the room number onto a
                            screen.Guests are always very excited when Mingo arrives with a delivery.</p>
                        <p><b>Big in Japan</b></p>
                        <p>In Japan,scientists are leading the way in creating humanoid robots.SoftBank introduced
                            Pepper,a four-foot-tall robot who can talk with humans and react to emotions.If you
                            frown,Pepper will try to cheer you up.The robot is being used in stores.But SoftBank has
                            bigger plans for Pepper.It may one day keep humans company and help teach children.</p>
                        <p class="center"><img class="img-f" alt="" src="../../assets/images/0071-1.jpg" /></p>
                        <p class="fl al-cn mt-40">
                            <span class="zt-cs" style="font-size: 20px">Words &amp; Expressions</span>
                            <span class="line-border-box"></span>
                        </p>
                        <p class="center"> <audio :src="resource.listenOne" controls
                                controlslist="noplaybackrate nodownload" class="audio" @play="audioPlay"></audio></p>
                        <p>creature /ˈkriːtʃə(r)/ <i>n.</i> 生物;(尤指) 动物</p>
                        <div class="bkbj">
                            <p><i>a living thing that can move around,such as an animal</i></p>
                        </div>
                        <p>blend /blend/ <i>v.</i> 融合;协调</p>
                        <div class="bkbj">
                            <p><i>to mix harmoniously</i></p>
                        </div>
                        <p>habitat /ˈhæbɪtæt/ <i>n.</i> 栖息地</p>
                        <div class="bkbj">
                            <p><i>the place where a particular type of animal or plant is normally found</i></p>
                        </div>
                        <p>octopus /ˈɒktəpəs/ <i>n.</i> 章鱼</p>
                        <div class="bkbj">
                            <p><i>a sea creature with a soft round body and eight long muscular arms</i></p>
                        </div>
                        <p>rubber /ˈrʌbə(r)/ <i>n.</i> 橡胶</p>
                        <div class="bkbj">
                            <p><i>a strong,waterproof,elastic substance made from the juice of a tropical plant</i></p>
                        </div>
                        <p>snap /snæp/ <i>v.</i> (使啪地) 关上;打开</p>
                        <div class="bkbj">
                            <p><i>to move sth.into a particular position quickly,esp.with a sudden sharp noise</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">61</span>
                </div>
            </div>
        </div>
        <!-- 62 -->
        <div class="page-box" page="68">
            <div v-if="showPageList.indexOf(68) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>fetch /fetʃ/ <i>n.</i> 去取回</p>
                        <div class="bkbj">
                            <p><i>an act of going for sth.and then bringing it back</i></p>
                        </div>
                        <p>mechanical /məˈkænɪkl/ <i>adj.</i> 机械的;机器的</p>
                        <div class="bkbj">
                            <p><i>operated by power from an engine</i></p>
                        </div>
                        <p>balance /ˈbæləns/ <i>n.</i> 平衡</p>
                        <div class="bkbj">
                            <p><i>even distribution of weight</i></p>
                        </div>
                        <p>rescue /ˈreskjuː/ <i>n.</i> 救援;营救</p>
                        <div class="bkbj">
                            <p><i>the act of saving sb./sth.from a dangerous or difficult situation</i></p>
                        </div>
                        <p>mission /ˈmɪʃn/ <i>n.</i> 任务;使命</p>
                        <div class="bkbj">
                            <p><i>an important official job that a person or group of people is given to do</i></p>
                        </div>
                        <p>facility /fəˈsɪləti/ <i>n.</i> 设备;设施</p>
                        <div class="bkbj">
                            <p><i>equipment,buildings,services,etc.that are provided for a particular purpose</i></p>
                        </div>
                        <p>lid /lɪd/ <i>n.</i> 盖子</p>
                        <div class="bkbj">
                            <p><i>a cover over a container that can be removed or opened by turning it or lifting it</i>
                            </p>
                        </div>
                        <p>humanoid /ˈhjuːmənɔɪd/ <i>adj.</i> 像人的;仿人的</p>
                        <div class="bkbj">
                            <p><i>behaving and looking like a human being</i></p>
                        </div>
                        <p>react /riˈækt/ <i>v.</i> 回应;起反应</p>
                        <div class="bkbj">
                            <p><i>to behave in a particular way as a result of or in response to sth.</i></p>
                        </div>
                        <p>frown /fraʊn/ <i>v.</i> 皱眉;蹙额</p>
                        <div class="bkbj">
                            <p><i>to make a serious,angry or worried expression by bringing your eyebrows closer
                                    together</i></p>
                        </div>
                        <p>company /ˈkʌmpəni/ <i>n.</i> 陪伴;做伴</p>
                        <div class="bkbj">
                            <p><i>the fact of being with sb.else and not alone</i></p>
                        </div>
                        <p>in action 在活动;在运转</p>
                        <p>blend in (with sth.) 与(某物) 十分协调</p>
                        <p>on the job 在岗;在工作</p>
                        <p>on the rise 与日俱增</p>
                        <p>cheer sb.up (使某人) 更高兴或更快活</p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Read the passage and complete the summary.</p>
                        <p>Nowadays,there has been a rapid increase in the use of robots in different areas.They make
                            people’s lives 1._________.Sometimes,machines can perform better than humans.There are four
                            examples of the latest robots.Octobot is designed to study 2._________,which can blend in
                            with its underwater surroundings.Spot is a mechanical dog which may</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">62</span>
                </div>
            </div>
        </div>
        <!-- 63 -->
        <div class="page-box" page="69">
            <div v-if="showPageList.indexOf(69) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p> be used for 3._________missions.Mingo could be found in hotels making 4._________.A humanoid
                            robot Pepper has been created to communicate with humans and react to 5._________.</p>
                        <p>B.Match the four types of robots introduced in the passage with the descriptions below.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0073-1.jpg" /></p>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Fill in the blanks with the proper form of the words given below.</p>
                        <div class="bk-wh">
                            <p>facility mission mechanical habitat creature react</p>
                        </div>
                        <p>1.This jellyfish looks like a _______ from outer space.</p>
                        <p>2.The giant panda _______ is commonly known as a bamboo forest.</p>
                        <p>3.China launched its first manned space _______ in 2003.</p>
                        <p>4.E-Theatre is equipped with state-of-the-art audio and video _______ .</p>
                        <p>5.Research shows that video games can help us think and _______ faster.</p>
                        <p>6.Our company has over 10 years of experience in the field of _______ engineering.</p>
                        <p>B.Choose the correct preposition or adverb.</p>
                        <p>1.I have not yet seen the machines <i><span class="u">in / into</span></i> action.</p>
                        <p>2.Technology is <i><span class="u">off / on</span></i> the rise more than ever before.</p>
                        <p>3.The secretary is not willing to take <i><span class="u">up / on</span></i> any extra work.
                        </p>
                        <p>4.Employees are not allowed to smoke while <i><span class="u">on / in</span></i> the job.</p>
                        <p>5.I don’t know how to cheer him <i><span class="u">up / on</span></i> when he found the
                            project was a total failure.</p>
                        <p>C.Translate the following sentences into Chinese.</p>
                        <p>1.While riding your scooter,you should keep your body in balance.</p>
                        <p>__________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">63</span>
                </div>
            </div>
        </div>
        <!-- 64 -->
        <div class="page-box" page="70">
            <div v-if="showPageList.indexOf(71) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>2.The task of the robot is to serve the technicians on the site by fetching supplies from a
                            central store.</p>
                        <p>__________________________________________________</p>
                        <p>3.Not only does our team have professional equipment,but they also have a great amount of
                            rescue experience.</p>
                        <p>__________________________________________________</p>
                        <p>4.Food processors are great tools for blending vegetables and fruits.</p>
                        <p>__________________________________________________</p>
                        <p><b>Ⅲ.Grammar focus:The comparative degree.</b></p>
                        <p>A.Write the comparative form for each word below.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0074-1.jpg" /></p>
                        <p>B.Fill in the blanks with the correct comparatives from the above.</p>
                        <p>1.The new car model may be launched _______ than expected.</p>
                        <p>2.The higher we go above the earth,the _______ the air is.</p>
                        <p>3.What you plant now,you will harvest _______ .</p>
                        <p>4.People come online _______ with smartphones than with any other device.</p>
                        <p>5.The big ball is _______ than the small ball.</p>
                        <p>6.In fact,the summer heat is _______ than lightning.</p>
                        <p>7.Our mission is to create a/an _______ everyday life for the many people.</p>
                        <p>8.I wanted to discuss it _______ ,but we didn’t have time.</p>
                        <h3 id="c031"><span class="bjh3">Mini-project</span></h3>
                        <p>Robots play a bigger role in our life than ever before.Discuss the following questions with
                            your partner.Afterwards,share your thoughts in class.</p>
                        <div class="fieldset">
                            <p>Questions:1.What are the differences between humanoid robots and human beings?</p>
                            <p>   2.List the things that robots can’t do but humans can.</p>
                            <p>   3.If you could design your own robot,what functions would you expect of it?</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">64</span>
                </div>
            </div>
        </div>
        <!-- 65 -->
        <div class="page-box" page="71">
            <div v-if="showPageList.indexOf(71) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0075-1.jpg" /></p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p>physical complex social relationship feeling emotion empathy thought tireless creative
                            </p>
                        </div>
                        <h2 id="b014"><img class="img-0" alt="" src="../../assets/images/dy4-le2.jpg" /></h2>
                        <h3 id="c032"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Work in groups and ask your group members about their interest in science,and then report
                                your findings to the class.</b></p>
                        <div class="fieldset-1">
                            <p class="center"><b>Interest in Science</b></p>
                            <p>1. Do you like science?</p>
                            <p>□ YES (Continue to Question 2) </p>
                            <p>□ NO (Go directly to Question 4)</p>
                            <p>2. What/Who inspired your interest in science?</p>
                            <p>□ Parents/Relatives.</p>
                            <p>□ Film/TV.</p>
                            <p>□ Friends.</p>
                            <p>□ Internet.</p>
                            <p>□ Teachers.</p>
                            <p>□ A special event.</p>
                            <p>□ School or a particular subject.</p>
                            <p>□ I don’t know.</p>
                            <p>□ Books.</p>
                            <p>□ Other.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">65</span>
                </div>
            </div>
        </div>
        <!-- 66 -->
        <div class="page-box" page="72">
            <div v-if="showPageList.indexOf(72) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fieldset-1">
                            <p>3. Why are you interested in studying science?</p>
                            <p>□ I am curious about the world.</p>
                            <p>□ It challenges me intellectually.</p>
                            <p>□ To earn money.</p>
                            <p>□ To get a good job.</p>
                            <p>□ To help others or contribute to society.</p>
                            <p>□ I don’t know.</p>
                            <p>□ To search for answers or make new discoveries.</p>
                            <p>□ Other.</p>
                            <p>4. What are the main reasons that you are not interested in science?</p>
                            <p>□ It’s difficult for me to understand.</p>
                            <p>□ I find it boring.</p>
                            <p>□ Science is not spread to the public effectively.</p>
                            <p>□ I’m too lazy.</p>
                            <p>□ There has been nothing to encourage or inspire me.</p>
                            <p>□ I don’t know.</p>
                            <p>□ I don’t like my science teacher.</p>
                            <p>□ Other.</p>
                        </div>
                        <p>You may start your survey report with the following expressions:</p>
                        <p><i>Most students seem</i>…</p>
                        <p><i>It appears that most students</i>…</p>
                        <p><i>What surprised me is that</i>…</p>
                        <h3 id="c033"><span class="bjh3">Reading</span></h3>
                        <audio :src="resource.listenOne" controls controlslist="noplaybackrate nodownload" class="audio"
                            @play="audioPlay"></audio>
                        <p>1.Are you amazed by the stars in the night sky,wondering what brought life into existence?
                        </p>
                        <p>2.What is your dream about space exploration?</p>
                        <p class="center"><b>Fresh Face of Science</b></p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0076-2.jpg" /></p>
                        <p>According to Zhao Hongzhou,founder of China’s scientometrics,scientists typically make their
                            biggest achievements between the ages of 25 and 45,which is true of the scientists and
                            engineers working on FAST(Five-hundred-meter Aperture Spherical Telescope).Its engineering
                            and operation team has an average age of 39,while its on-site team has an average age of
                            30.Meanwhile,the scientific spirit these young scientists have shown is also moving.</p>
                        <p>As the world’s largest radio telescope,it has been </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">66</span>
                </div>
            </div>
        </div>
        <!-- 67 -->
        <div class="page-box" page="73">
            <div v-if="showPageList.indexOf(73) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>quite helpful in the discovery of around 340 pulsars,since becoming operational in September
                            2016.It has also contributed to helping human beings better understand the origin of fast
                            radio
                            bursts,extremely brief but powerful flashes in the universe.FAST was listed by the journals
                            <i>Nature</i> and<i> Science</i> as one of the biggest scientific discoveries of 2020.
                        </p>
                        <p>The construction of FAST pushed the team to its physical and intellectual limits,including
                            creating new systems to operate the telescope,also known as the “Sky Eye”.At the age of
                            28,Yao Rui,a researcher behind FAST’s feed cabin,was responsible for creating the “pupil” of
                            the “Sky Eye” after joining the team.Some of her most challenging tasks involved downsizing
                            the cabin’s weight from 34 to 30 tons,while keeping most of the systems inside and leaving
                            enough room to fill it with as much complex and sensitive equipment as possible.Yao’s
                            solution was to change the shape of the cabin to a diamond structure.The redesign was
                            daring,but later testing proved that it worked perfectly.“I’m not worried about
                            problems,because wherever there is a problem,there is a chance for further research,” she
                            said.“As a young scientist,I am lucky to associate my personal passions with the needs of
                            the nation,so I can improve and grow together with the country.”</p>
                        <p>Sun Jinghai,a 38-year-old researcher of FAST,was involved in perfecting and protecting the
                            giant machine.Nan Rendong,FAST’s former chief scientist,often stressed that FAST not only
                            needed to be precise and sensitive in its applications,but it should also be beautiful to
                            look at.“He expected nothing less of an instrument of national significance,” Sun said.He
                            spent 15 years on FAST,and,in return,FAST helped him to grow,increased his knowledge,and
                            rewarded him with confidence as he overcame many difficulties and setbacks.</p>
                        <p>The “Sky Eye” is open to the world and offers more observation possibilities to the global
                            scientific community,contributing Chinese wisdom to building a community of a shared future
                            for humanity.</p>
                        <p class="fl al-cn mt-40">
                            <span class="zt-cs" style="font-size: 20px">Words &amp; Expressions</span>
                            <span class="line-border-box"></span>
                        </p>
                        <p class="center"> <audio :src="resource.listenOne" controls
                                controlslist="noplaybackrate nodownload" class="audio" @play="audioPlay"></audio></p>
                        <p>scientometrics /ˈsaɪəntəʊˈmetrɪks/ <i>n.</i> 科学计量学</p>
                        <div class="bkbj">
                            <p><i>the science of measuring and analyzing science</i></p>
                        </div>
                        <p>telescope /ˈtelɪskəʊp/ <i>n.</i> 望远镜</p>
                        <div class="bkbj">
                            <p><i>a piece of equipment shaped like a tube that is used to view distant objects</i></p>
                        </div>
                        <p>pulsar /ˈpʌlsɑː(r)/ <i>n.</i> 脉冲星</p>
                        <div class="bkbj">
                            <p><i>a star that cannot be seen but that sends out regular rapid radio signals</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">67</span>
                </div>
            </div>
        </div>
        <!-- 68 -->
        <div class="page-box" page="74">
            <div v-if="showPageList.indexOf(74) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>origin /ˈɒrɪdʒɪn/ <i>n.</i> 起因;起源</p>
                        <div class="bkbj">
                            <p><i>the cause of sth.or the point from which sth.starts</i></p>
                        </div>
                        <p>burst /bɜːst/ <i>n.</i> 爆裂;爆破</p>
                        <div class="bkbj">
                            <p><i>a sudden brief outbreak or explosion</i></p>
                        </div>
                        <p>universe /ˈjuːnɪvɜːs/ <i>n.</i> 宇宙</p>
                        <div class="bkbj">
                            <p><i>the whole of space and everything in it,including the earth,the planets and the
                                    stars</i></p>
                        </div>
                        <p>intellectual /ˌɪntəˈlektʃuəl/ <i>adj.</i> 智力的;脑力的</p>
                        <div class="bkbj">
                            <p><i>using a person’s ability to think in a logical way and understand things</i></p>
                        </div>
                        <p>cabin /ˈkæbɪn/ <i>n.</i> 舱体;船舱</p>
                        <div class="bkbj">
                            <p><i>a small room on a ship in which you live or sleep</i></p>
                        </div>
                        <p>pupil /ˈpjuːpl/ <i>n.</i> 瞳孔</p>
                        <div class="bkbj">
                            <p><i>the small round black area at the center of the eye</i></p>
                        </div>
                        <p>complex /ˈkɒmpleks/ <i>adj.</i> 复杂的</p>
                        <div class="bkbj">
                            <p><i>made up of (usu.several) closely connected parts</i></p>
                        </div>
                        <p>diamond /ˈdaɪəmənd/ <i>n.</i> 菱形</p>
                        <div class="bkbj">
                            <p><i>a shape with four straight sides of equal length and with angles that are not right
                                    angles</i></p>
                        </div>
                        <p>daring /ˈdeərɪŋ/ <i>adj.</i> (出奇地) 大胆的</p>
                        <div class="bkbj">
                            <p><i>bold in a new or unusual way</i></p>
                        </div>
                        <p>precise /prɪˈsaɪs/ <i>adj.</i> 准确的;精确的</p>
                        <div class="bkbj">
                            <p><i>exact and accurate in all its details</i></p>
                        </div>
                        <p>reward /rɪˈwɔːd/ <i>v.</i> 回报;奖励</p>
                        <div class="bkbj">
                            <p><i>to give sth.to sb.because they have done sth.good or worked hard</i></p>
                        </div>
                        <p>overcome /ˌəʊvəˈkʌm/ <i>v.</i> 克服;解决</p>
                        <div class="bkbj">
                            <p><i>to succeed in dealing with or controlling a problem that has been preventing you from
                                    achieving sth.</i></p>
                        </div>
                        <p>observation /ˌɒbzəˈveɪʃn/ <i>n.</i> 观察;观测</p>
                        <div class="bkbj">
                            <p><i>the act of watching sb./sth.carefully for a period of time</i></p>
                        </div>
                        <p>community /kəˈmjuːnəti/ <i>n.</i> 有共同利益的集体</p>
                        <div class="bkbj">
                            <p><i>a group of people with shared interests</i></p>
                        </div>
                        <p>work on 致力于;从事</p>
                        <p>be responsible for 对……负责</p>
                        <p>in return 作为回报</p>
                        <p>contribute to 有助于;对……有所贡献</p>
                        <p>be involved in 参与;涉及</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">68</span>
                </div>
            </div>
        </div>
        <!-- 69 -->
        <div class="page-box" page="75">
            <div v-if="showPageList.indexOf(75) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="bj-note">
                            <p><b>Notes:</b></p>
                            <p>FAST:全称为Five-hundred-metre Aperture Spherical
                                Telescope。五百米口径射电望远镜位于中国贵州省黔南布依族苗族自治州境内,是具有我国自主知识产权、世界最大单口径、最灵敏的射电望远镜。它被誉为“中国天眼”,大幅拓展了人类的视野,用于探索宇宙的起源和演化。
                            </p>
                            <p>Nan Rendong:南仁东,中国天文学家,“中国天眼”
                                的主要发起者和奠基人,自1994年项目预研究到2016年建成,坚持了22年,在射电天文研究领域、国家重大需求、国际合作等方面做出了重要贡献,被授予“人民科学家” 国家荣誉称号。
                            </p>
                        </div>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Complete the introduction of the FAST team with the numbers in the box.</p>
                        <div class="bk-wh">
                            <p>15 28 30 38 39 340 2016</p>
                        </div>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0079-1.jpg" /></p>
                        <p>B.Decide whether the following statements are true (T) or false (F).</p>
                        <p>( ) 1.According to Zhao Hongzhou’s analysis,scientists usually make their greatest
                            achievements before the age of 45.</p>
                        <p>( ) 2.FAST helps scientists better understand the origin of the universe and find potential
                            life on other planets.</p>
                        <p>( ) 3.Yao Rui is lucky to associate her personal interests with the development of the
                            country.</p>
                        <p>( ) 4.Sun Jinghai encountered many difficulties in the construction of FAST and lost
                            confidence in himself.</p>
                        <p>( ) 5.Young Chinese scientists contribute their wisdom to building a community of a shared
                            future.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">69</span>
                </div>
            </div>
        </div>
        <!-- 70 -->
        <div class="page-box" page="76">
            <div v-if="showPageList.indexOf(76) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Fill in the blanks with the proper words in the passage.The initial letters of the words
                            have been given.</p>
                        <p>1.The o _______ of life is one of the great mysteries in the universe.</p>
                        <p>2.The most c _______ science is biology followed by chemistry and next is physics.</p>
                        <p>3.Years of doing scientific research had made her very p _______ in her working methods.</p>
                        <p>4.The competition is designed to inspire and r _______ the next generation of scientific
                            leaders.</p>
                        <p>5.Learning how to o _______ challenges is a necessary life skill on the road to success.</p>
                        <p>B.Fill in the blanks with the proper form of the expressions given below.</p>
                        <div class="bk-wh">
                            <p>work on in return be responsible for be involved in contribute to</p>
                        </div>
                        <p>1.If we are nice to others,we expect that they will be nice to us _______ .</p>
                        <p>2.We will always remember Yuan Longping who _______ China’s food security.</p>
                        <p>3.The service of food delivery robot is still not satisfactory,but the company say they’re
                            _______ it.</p>
                        <p>4.All drivers _______ their vehicles—even when it’s a self-driving car accident.</p>
                        <p>5.Studies show how customers can _______ innovation development by giving feedback.</p>
                        <p><b>Ⅲ.Grammar focus:The superlative degree.</b></p>
                        <p>Complete the sentences with the superlative form of the words in the brackets.</p>
                        <p>1.He is probably the _______ (creative) designer in our company.</p>
                        <p>2.This automated store offers the _______ (wide) variety of products.</p>
                        <p>3.His ankles hurt badly,but his knees hurt _______ (badly).</p>
                        <p>4.Penicillin is one of the _______ (big) scientific discoveries of all time.</p>
                        <p>5.You can contact me _______ (easily) by email.Here’s my address.</p>
                        <p>6.The light bulb is one of the _______ (helpful) inventions.</p>
                        <p>7.In our office,Zhang Ming works by far the _______ (hard).</p>
                        <p>8.As I live _______ (near) to the station,I’ll go and buy the train tickets for us.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">70</span>
                </div>
            </div>
        </div>
        <!-- 71 -->
        <div class="page-box" page="77">
            <div v-if="showPageList.indexOf(77) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c034"><span class="bjh3">Mini-project</span></h3>
                        <p>A large number of scientists have made major contributions to the advancement of science and
                            technology,the improvement of people’s lives,and the development of the Chinese nation.Work
                            in groups and list some great Chinese scientists and their contributions to the world,and
                            then discuss with your group members about their spirit towards scientific research and
                            innovation.</p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0081-2.jpg" /></p>
                        <h2 id="b015"><img class="img-0" alt="" src="../../assets/images/dy4-le3.jpg" /></h2>
                        <h3 id="c035"><span class="bjh3">Listening</span></h3>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio" @play="audioPlay"></audio>
                        <p><b>Ⅰ.Listen to Nadia talking about her favorite electronic device and mark what she says
                                about it.</b></p>
                        <p>□ 1.What it is</p>
                        <p>□ 2.Where Nadia got it</p>
                        <p>□ 3.How much it is</p>
                        <p>□ 4.What Nadia uses it for</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">71</span>
                </div>
            </div>
        </div>
        <!-- 72 -->
        <div class="page-box" page="78">
            <div v-if="showPageList.indexOf(78) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>□ 5.When Nadia owned it</p>
                        <p>□ 6.Why it is important to Nadia</p>
                        <p><b>Ⅱ.Ms.Zhang is discussing technology trends with her students.Listen to the
                                conversation,and write down the benefits of each App.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0082-1.jpg" /></p>
                        <h3 id="c036"><span class="bjh3">Practical Writing</span></h3>
                        <p>Work with your partner to discuss the following questions.</p>
                        <p>1.What is a sales letter like?</p>
                        <p>2.What are the purposes of a sales letter?</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">72</span>
                </div>
            </div>
        </div>
        <!-- 73 -->
        <div class="page-box" page="79">
            <div v-if="showPageList.indexOf(79) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅰ.Read the following tips and find out how to write an effective sales letter.</b></p>
                        <p>A sales letter is a marketing tool that businesses use to promote products or service.Like
                            any other letter you write,you need to include the basics and convey your messages as
                            clearly as possible.Generally,every sales letter should contain the following elements:</p>
                        <div class="fieldset">
                            <p>♦ <b>A Headline</b>—Grab the reader’s attention and highlight your main purpose.</p>
                            <p>♦ <b>Introduction</b>—Provide the details of your products or service.</p>
                            <p>♦ <b>Body</b>—Build your credibility.Highlight information such as the product’s
                                worth,how it performs compared to similar products,or a list of satisfied customers.</p>
                            <p>♦ <b>Call to Action</b>—Encourage the reader to respond.</p>
                            <p class="center"><img class="img-f" alt="" src="../../assets/images/0083-1.jpg" /></p>
                        </div>
                        <p><b>Ⅱ.As a sales manager,Nadia is writing a letter to introduce a new gardening tool to her
                                clients.Complete the letter by filling in the blanks with the expressions in the box
                                below.</b></p>
                        <div class="bk-wh">
                            <p>take advantage of suffer from limited time easy to handle difference between</p>
                        </div>
                        <div class="fieldset-3">
                            <p class="left">Easyman Hardware Inc.</p>
                            <p class="left">3489 Greene Ave.</p>
                            <p class="left">Olympia, WA</p>
                            <p class="left">Subject: Home Gardening Made Easy</p>
                            <p class="left">Dear Mr. Smith,</p>
                            <p class="left">Gardening can be back-breaking work when you are not using the right tools.
                                Almost 90% of homeowners injure their backs just by simply raking (耙) the leaves in
                                their back yards. If you are like them and 1._________ a sore back after gardening, then
                                you need to use our new easy rake leaf blower.</p>
                            <p class="left">What is the 2.________ raking and blowing leaves:</p>
                            <p class="left">  ●No bending over, so less back pain</p>
                            <p class="left">  ●3.________ and your arms do not ache</p>
                            <p class="left">  ●Powerful motor blows leaves right where you want them</p>
                            <p class="left">  ●Durable and easy to store in your garage</p>
                            <p class="left">  ●4._________ 20% discount with every purchase</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">73</span>
                </div>
            </div>
        </div>
        <!-- 74 -->
        <div class="page-box" page="80">
            <div v-if="showPageList.indexOf(80) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fieldset-3">
                            <p class="left">To 5.________ this offer, just come into our store on the corner of Main and
                                Front Streets between 8 a.m. and 5 p.m. and see what this leaf blower can do for you.
                            </p>
                            <p class="left">Sincerely,</p>
                            <p class="left">Nadia Jones</p>
                            <p class="left">Sales Manager</p>
                        </div>
                        <p><b>Ⅲ.Translate the Chinese in the brackets into English to complete the sentences.</b></p>
                        <p>1.Are you having trouble cleaning your house?__________________ (我们有解决方案).</p>
                        <p>2.__________ (我们刚刚推出一款新产品) —modern sweeper XSweep.</p>
                        <p>3.With XSweep,you can do it straight from the ground and______________ (它的长度可达4英尺).</p>
                        <p>4.How much will this cost you?___________________ (含运费只要19.99美元).</p>
                        <p>5.__________________ (如果您感兴趣或想了解更多信息),you can call us directly at 493-201-2018.</p>
                        <p>6.__________________ (欢迎您来试用我们的新产品) and we assure you that you will love it.</p>
                        <p>Ⅳ<b>.Wang Qiang,Nadia's client,is planning to have a thorough housecleaning.Nadia wants to
                                seize the chance to introduce their new sweeper XSweep to him.Work with your partner and
                                write a sales letter of the new sweeper.</b></p>
                        <div class="fieldset-4">
                            <p class="left">Wang Qiang</p>
                            <p class="left">2398 Red Street</p>
                            <p class="left">Salem, MA 34588</p>
                            <p class="left">Subject: A Household Cleaning Tool You Need</p>
                            <p class="left"><br /></p>
                            <p class="left">Dear Mr. Wang,</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">74</span>
                </div>
            </div>
        </div>
        <!-- 75 -->
        <div class="page-box" page="81">
            <div v-if="showPageList.indexOf(81) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit4">MODULE 4</span>
                        <span class="chapter-right-bc-unit4 fw-bl chapter-right-cl-unit4">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fieldset-4">
                            <p class="left">_________________________________________</p>
                            <p class="left">Sincerely,</p>
                            <p class="left">Nadia Jones</p>
                            <p class="left">Sales Manager</p>
                        </div>
                        <div class="un-h2">
                            <h2 id="b016">Unit Project</h2>
                        </div>
                        <p class="center"><img class="img-f" alt="" src="../../assets/images/0085-1.jpg" /></p>
                        <p>Youth are pushing the world forward and shaping the world’s future.The annual innovation and
                            entrepreneurship competition (创新创业大赛) is coming.All the participants are required to create
                            “Fit
                            for Future” products and solve the world’s problems through innovation.Work in groups and
                            find
                            ways to make a product or solutions and sign up for the competition.</p>
                        <p><b>Working steps:</b></p>
                        <p>➢ Form groups of five</p>
                        <p>➢ Each group thinks of a product they want to create(either invent a new product,or create a
                            variation on the basis of a product you know)</p>
                        <p>➢ Develop the details of your product by answering the questions in the box below</p>
                        <div class="fieldset-5">
                            <p>What functions does your product have?</p>
                            <p>Who will buy your product? Why will they buy it?</p>
                            <p>What advantages does your product have?</p>
                            <p>Why is your product superior to other products?</p>
                            <p>How much will your product cost?</p>
                        </div>
                        <p>➢ Draft a sales letter to introduce your product to potential customers</p>
                        <p>➢ Make a presentation in front of the class</p>
                        <p>➢ Vote for the best product</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">75</span>
                </div>
            </div>
        </div>
        <!-- 76 -->
        <div class="page-box" page="82">
            <div v-if="showPageList.indexOf(82) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit4 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit4">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit4">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <div class="fieldset-4">
                            <p class="left">Harrison Allen</p>
                            <p class="left">ABC Textiles</p>
                            <p class="left">435 Celina, Texas</p>
                            <p><br /></p>
                            <p class="left">Dear Mr. Allen,</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">_________________________________________</p>
                            <p class="left">Sincerely,</p>
                            <p class="left">Lin Yi</p>
                            <p class="left">Marketing Manager</p>
                        </div>
                        <div class="fieldset-4">
                            <p class="center"><b>Useful Expressions</b></p>
                            <p>I am really excited about showing you …</p>
                            <p>I am going to show you …</p>
                            <p>This is one of our latest designs.</p>
                            <p>It is made of/from/in …</p>
                            <p>You can use it to …</p>
                            <p>These … are designed by …</p>
                            <p>The package includes …</p>
                            <p>It has/contains …</p>
                            <p>This kind of … is practical and economical for the needs of …</p>
                            <p>Our products are of superb quality and reasonable price.</p>
                            <p>We can very well compete against … in price.</p>
                            <p>… are the best-selling products of this kind.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">76</span>
                </div>
            </div>
        </div> -->
    </div>
</template>
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapter-Four",
    components: { matching },
    props: {
        showPageList: {
            type: Array,
        },
    },
    data() {
        return {
            imgThirteen: require("../../assets/images/grammar.jpg"),
            showAnswerOne: false,
            showAnswerTwo: false,
            showAnswerThree: false,
            showAnswerFour: false,
            showAnswerFive: false,
            showImg: false,
            showQuestionAnswer: false,
            rawData: {
                left: [
                    {
                        oldId: "FB34",
                        txt: "Martin    Silk",
                    },
                    {
                        oldId: "64D6",
                        txt: "Jessica  The Great Wall",
                    },
                    {
                        oldId: "2ED4",
                        txt: "Soren  Chinese Food",
                    },
                    {
                        oldId: "44DE",
                        txt: "Chinese    Tea",
                    },
                ],
                right: [
                    {
                        oldId: "64D6",
                        txt: "It is one of China's must-see sights for visitors, which shows thewisdom of Chinese people.",
                    },
                    {
                        oldId: "FB34",
                        txt: "It was first discovered and drank in China and my favorileLongjing tca is praduced near the West Lake in Hangzhou.",
                    },
                    {
                        oldId: "2ED4",
                        txt: "The clothing material is quite popular among Roman women inancient times.",
                    },
                    {
                        oldId: "44DE",
                        txt: "It is very delicious and I like the hot and spicy Sichuan lavor hest.",
                    },
                ],
            },
            value: [],
            question: {
                KnowledgePoint: "123",
                analysis: "123",
                answer: [
                    {
                        id: "FB34",
                        linkValue:
                            "The clothing material is quite popular among Roman women inancient times.",
                        value: "Silk",
                    },
                    {
                        id: "64D6",
                        linkValue:
                            "It is one of China's must-see sights for visitors, which shows thewisdom of Chinese people.",
                        value: "The Great Wall",
                    },
                    {
                        id: "2ED4",
                        linkValue:
                            "It is very delicious and I like the hot and spicy Sichuan lavor hest.",
                        value: "Chinese Food",
                    },
                    {
                        id: "44DE",
                        linkValue:
                            "It was first discovered and drank in China and my favorileLongjing tca is praduced near the West Lake in Hangzhou.",
                        value: "Chinese Tea",
                    },
                ],
                optionStyle: undefined,
                id: 489306,
                options: {
                    linkValues: [
                        {
                            oldId: "64D6",
                            txt: "It is one of China's must-see sights for visitors, which shows thewisdom of Chinese people.",
                        },
                        {
                            oldId: "44DE",
                            txt: "It was first discovered and drank in China and my favoriteLongjing tea is produced near the West Lake in Hangzhou.",
                        },
                        {
                            oldId: "FB34",
                            txt: "The clothing material is quite popular among Roman women inancient times.",
                        },
                        {
                            oldId: "2ED4",
                            txt: "It is very delicious and I like the hot and spicy Sichuan lavor hest.",
                        },
                    ],
                    values: [
                        {
                            oldId: "FB34",
                            txt: "Martin  Silk",
                        },
                        {
                            oldId: "64D6",
                            txt: "The Great Wall",
                        },
                        {
                            oldId: "2ED4",
                            txt: "Chinese Food",
                        },
                        {
                            oldId: "44DE",
                            txt: "Chinese Tea",
                        },
                    ],
                },
                questionType: "matching",
                stem: {
                    stemTxt: "按顺序连线",
                },
                stemStyle: undefined,
                titleDescription: "1",
                userChoise: [],
                value: [],
                answerImg: require("../../assets/images/matching-one.png"),
            },
            questionData: {
                warnUp: {
                    one: {
                        value: "",
                        isRight: null,
                        answer: "Chinese knot",
                    },
                    two: {
                        value: "",
                        isRight: null,
                        answer: "Chinese medicine",
                    },
                    three: {
                        value: "",
                        isRight: null,
                        answer: "Chinese calligraphy",
                    },
                    four: {
                        value: "",
                        isRight: null,
                        answer: "Taichi",
                    },
                    five: {
                        value: "",
                        isRight: null,
                        answer: "sweet dumpling",
                    },
                    six: {
                        value: "",
                        isRight: null,
                        answer: "Chinese chess",
                    },
                    seven: "",
                },
                reading: {
                    one: "",
                    two: "",
                },
                table: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    six: "",
                    seven: "",
                    enight: "",
                    nine: "",
                },
            },
            testData: {
                check: [],
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                line: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                ts: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                },
                gr: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                cm: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
            },
            resource: {
                listenOne: "",
                readingOne: "",
                readingTwo: "",
            },
            dropDownList: [
                "animal rescue and care",
                "blood donation",
                "community clean-ups",
                "language service",
            ],
            dropdownData: {
                one: {
                    value: "",
                    isRight: null,
                    answer: "blood donation",
                },
                two: {
                    value: "",
                    isRight: null,
                    answer: "language service",
                },
                three: {
                    value: "",
                    isRight: null,
                    answer: "community clean-ups",
                },
                four: {
                    value: "",
                    isRight: null,
                    answer: "animal rescue and care",
                },
            },
        };
    },
    mounted() {
        const testData = localStorage.getItem("english-testOne");
        if (testData) {
            this.testData = JSON.parse(testData);
        }
        const bookQuestion = localStorage.getItem("english-book-question-one");
        if (bookQuestion) {
            this.questionData = JSON.parse(bookQuestion);
        }
        const dropdownData = localStorage.getItem("english-dropdown-one");
        if (dropdownData) {
            this.dropdownData = JSON.parse(dropdownData);
        }
        this.getPath();
    },
    methods: {
        saveWord(event, word) {
            this.$emit("saveCharacters", event, word);
        },
        setTestData() {
            localStorage.setItem("english-testOne", JSON.stringify(this.testData));
        },
        changeTestData() {
            localStorage.removeItem("english-testOne");
            this.testData = {
                check: [],
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                line: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                ts: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                },
                gr: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                cm: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
            };
        },
        setBookQuestion() {
            console.log("保存");
            localStorage.setItem(
                "english-book-question-one",
                JSON.stringify(this.questionData)
            );
        },
        async getPath() {
            this.resource.listenOne = await getResourcePath(
                "422139A2EF66EA888C5ED1D550AE23E0"
            );
            this.resource.readingOne = await getResourcePath(
                "3F442B682D84C8AB06C800B29D734920"
            );
            this.resource.readingTwo = await getResourcePath(
                "E8719EC88026BCFB11D292AA999F6D3D"
            );
        },
        showAnswer(type) {
            if (type == "showImg") {
                this.showImg = !this.showImg;
            }
        },
        handleQuestion(type) {
            if (type == "one") {
                this.questionData.warnUp.one.value
                    ? (this.questionData.warnUp.one.isRight =
                        this.questionData.warnUp.one.value == "Chinese knot")
                    : (this.questionData.warnUp.one.isRight = null);
            } else if (type == "two") {
                this.questionData.warnUp.two.value
                    ? (this.questionData.warnUp.two.isRight =
                        this.questionData.warnUp.two.value == "Chinese medicine")
                    : (this.questionData.warnUp.two.isRight = null);
            } else if (type == "three") {
                this.questionData.warnUp.three.value
                    ? (this.questionData.warnUp.three.isRight =
                        this.questionData.warnUp.three.value == "Chinese calligraphy")
                    : (this.questionData.warnUp.three.isRight = null);
            } else if (type == "four") {
                this.questionData.warnUp.four.value
                    ? (this.questionData.warnUp.four.isRight =
                        this.questionData.warnUp.four.value == "Taichi")
                    : (this.questionData.warnUp.four.isRight = null);
            } else if (type == "five") {
                this.questionData.warnUp.five.value
                    ? (this.questionData.warnUp.five.isRight =
                        this.questionData.warnUp.five.value == "sweet dumpling")
                    : (this.questionData.warnUp.five.isRight = null);
            } else if (type == "six") {
                this.questionData.warnUp.six.value
                    ? (this.questionData.warnUp.six.isRight =
                        this.questionData.warnUp.six.value == "Chinese chess")
                    : (this.questionData.warnUp.six.isRight = null);
            }
        },
        handleDropdown(type) {
            const dropdownDatas = this.dropdownData;
            for (let key in dropdownDatas) {
                const item = dropdownDatas[key];
                if (type == "judge") {
                    item.value == item.answer
                        ? (item.isRight = true)
                        : (item.isRight = false);
                    console.log(item.value, item.answer);
                }
            }
            this.dropdownData = dropdownDatas;
        },
        changeDropdown() {
            localStorage.removeItem("english-dropdown-one");
            for (let key in this.dropdownData) {
                const item = this.dropdownData[key];
                item.value = "";
                item.isRight = null;
            }
        },
        setDropdownData() {
            localStorage.setItem(
                "english-dropdown-one",
                JSON.stringify(this.dropdownData)
            );
        },
        saveData() {
            console.log(this.testData);
        },
        audioPlay() {
            this.$emit("closeMiniAudio");
        },
    },
};
</script>
 
<style lang="less" scoped>
p {
    font-size: 16px !important;
}
 
.bodystyle {
    margin: 0 !important;
}
 
.line-border-box {
    margin-left: 10px;
    display: inline-block;
    width: 50%;
    height: 3px;
    background-color: #f9a71b;
}
 
.mr-20 {
    margin-right: 20px;
}
 
.dl-box {
    display: flex;
    flex-wrap: wrap;
 
    .dl-span {
        display: inline-block;
        text-indent: 0;
        margin-bottom: 15px;
        height: 20px;
        line-height: 20px;
    }
}
 
.btn-w {
    font-size: 14px;
    border-width: 1px;
    min-width: 80px;
    height: 30px;
    background-color: #fff;
 
    &:hover {
        background-color: #0bab87;
        color: #fff;
    }
}
 
.banshi {
    position: relative;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    margin: 0 auto;
}
 
.pageBox {
    z-index: 9999999999;
    color: #999;
    position: absolute;
    left: 48%;
    bottom: 0px;
}
 
select {
    height: 24px;
}
 
.mini-audio {
    width: 200px;
    height: 200px;
    position: fixed;
    right: 0;
    background-color: red;
}
</style>