闫增涛
2024-07-01 a0bc4f973d5022d92e22e871009764b3da8ef5e3
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
<template>
    <div class="chapter" num="9">
        <!-- 第八单元 -->
        <!-- 135 -->
        <div class="page-box" page="141">
            <div v-if="showPageList.indexOf(141) > -1">
                <h1 id="a012"><img class="img-0" alt="" src="../../assets/images/dy8.jpg" /></h1>
                <p><b>This unit will help you to:</b></p>
                <p>➢ Learn words and expressions to describe jobs</p>
                <p>➢ Review the structure of the simple present &amp; past tense,and the usage of pronouns (it,one)</p>
                <p>➢ Perform properly in a job interview</p>
                <p>➢ Be able to compose a follow-up email after an interview</p>
                <p>➢ Know how to choose the right career</p>
                <p class="center"><img class="img-0" alt="" src="../../assets/images/0145-2.jpg" /></p>
            </div>
        </div>
        <!-- 136 -->
        <div class="page-box" page="142">
            <div v-if="showPageList.indexOf(142) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b029"><img class="img-0" alt="" src="../../assets/images/dy8-le1.jpg" /></h2>
                        <h3 id="c064"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Ⅰ.Figure out what the people in the following pictures do.</b></p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0146-1.jpg" /></p>
                        <p class="center">1._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0146-2.jpg" /></p>
                        <p class="center">2._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0146-3.jpg" /></p>
                        <p class="center">3._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0146-4.jpg" /></p>
                        <p class="center">4._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0146-5.jpg" /></p>
                        <p class="center">5._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0146-6.jpg" /></p>
                        <p class="center">6._____________________</p>
                        <p><b>Ⅱ.What other jobs can you list?</b></p>
                        <p>____________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">136</span>
                </div>
            </div>
        </div>
        <!-- 137 -->
        <div class="page-box" page="143">
            <div v-if="showPageList.indexOf(143) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c065"><span class="bjh3">Listening</span></h3>
                        <p class="center"> <audio :src="resource.listenOne" controls
                                controlslist="noplaybackrate nodownload" class="audio" @play="audioPlay"></audio></p>
                        <p><b>Watch the video and find out how the speakers describe their jobs.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0147-2.jpg" /></p>
                        <h3 id="c066"><span class="bjh3">Reading</span></h3>
                        <p>1.There is a saying that a part-time job can be a way to gain the experience necessary for
                            full-time employment.Do you agree? Why or why not?</p>
                        <p>2.If you’re considering a part-time job,what’s your expectation of it?</p>
                        <p class="center">__________________</p>
                        <p class="center"> <audio :src="resource.listenOne" controls
                                controlslist="noplaybackrate nodownload" class="audio" @play="audioPlay"></audio></p>
                        <p>Everyone’s first job is special.There are a couple of reasons for this:the experience is
                            burned into one’s memory; it gives you the practice needed to fulfill other positions; and
                            it teaches you about the value of money.</p>
                        <p>When I was sixteen years old,I wanted to buy a new speed cube,but I did not have any money.My
                            parents were not the type of people to give money to me out of nowhere,or even for work done
                            at home.I had to find work in order to purchase one.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">137</span>
                </div>
            </div>
        </div>
        <!-- 138 -->
        <div class="page-box" page="144">
            <div v-if="showPageList.indexOf(144) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>So,I inquired as to who could give me work around town.I lived in the town of Woodway,which
                            had enough people,especially elderly people,who needed help in their yards.I went to the
                            oldest person I knew in my neighbourhood,Mrs.Hudson.She was over eighty years old,and could
                            not tend her garden anymore.She had flowers,a grass lawn,and some tomato plants.I knocked on
                            her door,building up enough courage to ask her for work.She answered that indeed she needed
                            help in her garden.</p>
                        <p>My first job was to pull out weeds.I got down on my knees with foam protectors and began to
                            pull out weeds one by one in her front yard and backyard.After this tedious task,I mowed her
                            lawn—front and back.That was it for my first day,and it took me about two hours.I asked her
                            how much I would get paid,and she said,“I will give you $5 an hour.” It was less than I
                            thought I would get paid,but at least I had a job and the money for my cube.</p>
                        <p>I think everyone should get down on one’s knees and pull weeds.I think everyone should feel
                            the burning sun on one’s back as they mow.It seems these experiences harden spirits and
                            resolve.Besides this,a first job like this teaches you the value of money,and as sweat
                            turned into the “cube”,it is something no one can take away.</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.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>fulfill /fʊlˈfɪl/ <i>v.</i> 符合;履行</p>
                        <div class="bkbj">
                            <p><i>to do or have what is required or necessary</i></p>
                        </div>
                        <p>cube /kjuːb/ <i>n.</i>立方体</p>
                        <div class="bkbj">
                            <p><i>a solid or hollow figure with six equal square sides</i></p>
                        </div>
                        <p>inquire /ɪnˈkwaɪə(r)/<i> v.</i> 打听;询问</p>
                        <div class="bkbj">
                            <p><i>to ask sb.for some information</i></p>
                        </div>
                        <p>elderly /ˈeldəli/ <i>adj.</i>年纪较大的</p>
                        <div class="bkbj">
                            <p><i>(of people) used as a polite word for “old”</i></p>
                        </div>
                        <p>neighbourhood /ˈneɪbəhʊd/ <i>n.</i> 所在地;临近的地方</p>
                        <div class="bkbj">
                            <p><i>the area that you are in or the area near a particular place</i></p>
                        </div>
                        <p>weed /wiːd/<i> n.</i> 杂草,野草(尤指庄稼或花园中的)</p>
                        <div class="bkbj">
                            <p><i>a wild plant growing where it is not wanted,esp.among crops or garden plants</i></p>
                        </div>
                        <p>foam /fəʊm/ <i>n.</i>泡沫橡胶</p>
                        <div class="bkbj">
                            <p><i>a soft light rubber material,full of small holes,that is used for
                                    seats,mattresses,etc.</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">138</span>
                </div>
            </div>
        </div>
        <!-- 139 -->
        <div class="page-box" page="145">
            <div v-if="showPageList.indexOf(145) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>tedious /ˈtiːdiəs/ <i>adj.</i>单调乏味的</p>
                        <div class="bkbj">
                            <p><i>lasting or taking too long and not interesting</i></p>
                        </div>
                        <p>mow /məʊ/ <i>v.</i> 刈;割</p>
                        <div class="bkbj">
                            <p><i>to cut grass,etc.using a machine or tool with a special blade</i></p>
                        </div>
                        <p>lawn /lɔːn/ <i>n.</i>草地;草坪</p>
                        <div class="bkbj">
                            <p><i>an area of ground covered in short grass in a garden/yard or park,or used for playing
                                    a game on</i></p>
                        </div>
                        <p>harden /ˈhɑːdn/<i> v.</i> (使) 更坚定,更强硬</p>
                        <div class="bkbj">
                            <p><i>to make sb’s feelings or attitudes more fixed and determined</i></p>
                        </div>
                        <p>resolve /rɪˈzɒlv/ <i>n.</i> 决心;坚定的信念</p>
                        <div class="bkbj">
                            <p><i>strong determination to achieve sth.</i></p>
                        </div>
                        <p>sweat /swet/ <i>n.</i> 汗水</p>
                        <div class="bkbj">
                            <p><i>drops of liquid that appear on the surface of your skin when you are hot,ill or
                                    afraid</i></p>
                        </div>
                        <p>a couple of 几个</p>
                        <p>as to 关于</p>
                        <p>at least 至少</p>
                        <p>take away 剥夺;拿走</p>
                        <p>out of nowhere 莫名其妙地</p>
                        <p>build up 逐步建立</p>
                        <p>supply sb.with sth.为某人提供某物</p>
                        <div class="bj-note">
                            <p><b>Notes:</b></p>
                            <p>speed cube 竞速魔方,对传统魔方内部机件进行了重新设计的一种魔方,它能够让拼图块以更平滑、更快的方式移动。</p>
                        </div>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Read the passage and answer the following questions.</p>
                        <p>1.What job did the author take?</p>
                        <p>____________________________________________________</p>
                        <p>2.How did he describe his job?</p>
                        <p>____________________________________________________</p>
                        <p>3.What can be a proper title for this passage?</p>
                        <p>____________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">139</span>
                </div>
            </div>
        </div>
        <!-- 140 -->
        <div class="page-box" page="146">
            <div v-if="showPageList.indexOf(146) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>B.Put the questions in the right blanks according to the main idea of each paragraph,and then
                            find the answer to each question.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0150-1.jpg" /></p>
                        <p>The answer to each question:</p>
                        <p>1.________________________________________________</p>
                        <p>2.________________________________________________</p>
                        <p>3.________________________________________________</p>
                        <p>4.________________________________________________</p>
                        <p>5.________________________________________________</p>
                        <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>The first job experience is burned into our memories for a c_______of reasons,and Nicholas
                            remembered his well.When he was about 16,he wanted to buy a speed cube.Unfortunately,he had
                            no money,so he decided to take a job and earn enough money for it.He planned to help
                            e________people with their gardens,so he went to Mrs.Hudson who just lived in his n_______.
                            Although his job of pulling out weeds there was t_________, he managed to get the money he
                            needed for his speed cube.And most importantly,that working experience made him realize the
                            v_______of money through his s_________.</p>
                        <p>B.Underline the following expressions in the passage and make sentences with them.</p>
                        <p>1.out of nowhere______________________________</p>
                        <p>2.as to______________________________________</p>
                        <p>3.build up___________________________________</p>
                        <p>4.at least___________________________________</p>
                        <p>5.take away__________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">146</span>
                </div>
            </div>
        </div>
        <!-- 141 -->
        <div class="page-box" page="147">
            <div v-if="showPageList.indexOf(147) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>C.Translate the following sentences into Chinese.</p>
                        <p>1.Wang Jinxi,the “Iron Man”,successfully fulfilled his job under incredible difficulties.</p>
                        <p>____________________________________________________</p>
                        <p>2.Zhang Guimei,a teacher,spent all her money purchasing things needed for the girls in her
                            school.</p>
                        <p>____________________________________________________</p>
                        <p>3.Wu Dajing impressed the whole nation when fighting to supply his teammates with a better
                            position in the lane.</p>
                        <p>____________________________________________________</p>
                        <p>4.Wang Yaping with resolve won her family’s support to be the first woman in China’s new
                            space station.</p>
                        <p>____________________________________________________</p>
                        <p><b>Ⅲ.Grammar focus:The simple present &amp; past tense.</b></p>
                        <p>A.Based on the form of the underlined verbs tell us whether the following sentences are about
                            the past or the present.</p>
                        <p>(present)1.Everyone’s first job <span class="u">is</span> special.</p>
                        <p>(  )2.I <span class="u">wanted</span> to buy a new speed cube.</p>
                        <p>(  )3.I <span class="u">went</span> to the oldest person I knew in my neighborhood.</p>
                        <p>(  )4.It <span class="u">seems</span> these experiences harden our spirits and resolve.</p>
                        <p>(  )5.When I <span class="u">was</span> about sixteen years old, I <span class="u">wanted
                            </span>to buy a new speed cube.</p>
                        <p>(  )6.I <span class="u">think</span> everyone should get down on one’s knees and pull weeds.
                        </p>
                        <p>B.Write the present or the past form of the following verbs.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0151-1.jpg" /></p>
                        <h3 id="c067"><span class="bjh3">Mini-project</span></h3>
                        <p>People do different jobs and hold different ideas about their jobs.You are required to:</p>
                        <p>1.Do a small survey among your family members or relatives and jot down their opinions;</p>
                        <p>2.Finish the worksheet according to your survey;</p>
                        <p>3.Report to the class.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">141</span>
                </div>
            </div>
        </div>
        <!-- 142 -->
        <div class="page-box" page="148">
            <div v-if="showPageList.indexOf(148) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fieldset">
                            <p>Questions:1.Who are you going to talk to?</p>
                            <p>    2.What is his/her job?</p>
                            <p>    3.How does he/she describe his/her job?</p>
                        </div>
                        <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/0152-1.jpg" /></p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p>dangerous demanding dull exciting repetitive risky satisfying stimulating stressful voluntary
                            </p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">142</span>
                </div>
            </div>
        </div>
        <!-- 143 -->
        <div class="page-box" page="149">
            <div v-if="showPageList.indexOf(149) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b030"><img class="img-0" alt="" src="../../assets/images/dy8-le2.jpg" /></h2>
                        <h3 id="c068"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Mostly,the first step to map out your career is to create a career road map for
                                yourself.Work with your partner and figure out what the pictures in the following road
                                maps possibly mean,and then choose the proper expressions to fill in the blanks.</b></p>
                        <p><b>Road map</b>1:</p>
                        <p><b>People often think that career path works like this:</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0153-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">143</span>
                </div>
            </div>
        </div>
        <!-- 144 -->
        <div class="page-box" page="150">
            <div v-if="showPageList.indexOf(150) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Road map</b>2:</p>
                        <p><b>In reality,it looks more like:</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0154-1.jpg" /></p>
                        <h3 id="c069"><span class="bjh3">Reading</span></h3>
 
                        <p>1.Working hard is only the first part of success.Making good choices is the second part.It
                            truly takes both to achieve success at whatever you do.What’s your interpretation of the
                            sentence?</p>
                        <p>2.What’s your suggestion for making the “right” career choice?</p>
                        <p class="center"><b>Choose a Career You Love</b></p>
                        <p class="center"><audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>We spend a large portion of our lives working,so how we spend those years matters.It is
                            beneficial to find a career that will bring satisfaction and happiness rather than find one
                            based on income.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">144</span>
                </div>
            </div>
        </div>
        <!-- 145 -->
        <div class="page-box" page="151">
            <div v-if="showPageList.indexOf(151) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>“Find a job you enjoy doing,and you will never have to work a day in your life,” Mark Twain
                            said.</p>
                        <p>When we have a job that we love,we are more productive and satisfied.There is more passion to
                            get up in the morning and begin working.There are more positive emotions associated with
                            doing something we care about.Sometimes people choose a certain profession because of past
                            experiences.</p>
                        <p>Someone may choose to be an actor because they want others to be happy.Someone may choose to
                            be a doctor because someone they knew was ill.Someone may choose to be a vet because they
                            care about animals.These past experiences may influence a career,and the career may provide
                            more satisfaction and a sense of purpose.</p>
                        <p>We shouldn’t spend a lot of time worrying about where we should be.Things will fall into
                            place as they are meant to.There isn’t one correct path and everyone’s life is different.We
                            may face challenges that bring greater outcomes later on.</p>
                        <p>Some may argue that they need more money to survive and be happy.It is true that we need
                            money to survive,but after a certain amount it doesn’t give us any more happiness.It can
                            provide necessities like food,water,clothes,and shelter.It can also provide luxuries like
                            vacations and going out to eat at a restaurant.But when we enjoy something,the feeling of
                            enjoyment doesn’t last forever.We usually return to our baseline state shortly after.Every
                            individual’s needs are different,but we can sometimes play a part in our emotional
                            state.Having more luxury items and wants doesn’t bring happiness that lasts.</p>
                        <p>Having a career that we are passionate about,one that gives our life a sense of purpose,and
                            one that we are comfortable with is important.Finding a career shouldn’t be based on income
                            or forced.We spend a huge amount of our lives working,so we should spend this time doing
                            something we are passionate about.</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.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>portion /ˈpɔːʃn/ <i>n.</i>部分</p>
                        <div class="bkbj">
                            <p><i>one part of sth.larger</i></p>
                        </div>
                        <p>profession /prəˈfeʃn/ <i>n.</i> 职业</p>
                        <div class="bkbj">
                            <p><i>a type of job that needs special training or skill</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">145</span>
                </div>
            </div>
        </div>
        <!-- 146 -->
        <div class="page-box" page="152">
            <div v-if="showPageList.indexOf(152) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>vet /vet/ <i>n.</i>兽医</p>
                        <div class="bkbj">
                            <p><i>a person who has been trained in the science of animal medicine,whose job is to treat
                                    animals who are sick or injured</i></p>
                        </div>
                        <p>outcome /ˈaʊtkʌm/ <i>n.</i>结果</p>
                        <div class="bkbj">
                            <p><i>the result of an action or event</i></p>
                        </div>
                        <p>necessity /nəˈsesəti/ <i>n.</i> 必需品</p>
                        <div class="bkbj">
                            <p><i>a thing that you must have and cannot manage without</i></p>
                        </div>
                        <p>shelter /ˈʃeltə(r)/ <i>n.</i>居所;住处</p>
                        <div class="bkbj">
                            <p><i>the fact of having a place to live or stay,considered as a basic human need</i></p>
                        </div>
                        <p>luxury /ˈlʌkʃəri/ <i>n.</i>奢侈品</p>
                        <div class="bkbj">
                            <p><i>a thing that is expensive and enjoyable but not essential</i></p>
                        </div>
                        <p>baseline /ˈbeɪslaɪn/<i> n.</i>起点;基础</p>
                        <div class="bkbj">
                            <p><i>a line or measurement that is used as a starting point when comparing facts</i></p>
                        </div>
                        <p>emotional /ɪˈməʊʃənl/ <i>adj.</i> 感情的;情感的;情绪的</p>
                        <div class="bkbj">
                            <p><i>connected with people’s feelings</i></p>
                        </div>
                        <p>passionate /ˈpæʃənət/ <i>adj.</i>热情的;狂热的</p>
                        <div class="bkbj">
                            <p><i>having or showing strong feelings of enthusiasm for sth.</i></p>
                        </div>
                        <p>comfortable /ˈkʌmftəbl/ <i>adj.</i>舒适的;安逸的</p>
                        <div class="bkbj">
                            <p><i>feeling physically relaxed in a pleasant way</i></p>
                        </div>
                        <p>a portion of ...一部分……</p>
                        <p>later on过后;后来</p>
                        <p>be comfortable with ...对……感到舒服的</p>
                        <p>fall into place水到渠成</p>
                        <p>be passionate about ...对……充满热情</p>
                        <div class="bj-note">
                            <p><b>Notes:</b></p>
                            <p>Mark Twain:马克·吐温(1835—1910),美国作家、演说家,代表作品有小说《百万英镑》《哈克贝利·费恩历险记》《汤姆·索亚历险记》等。</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">146</span>
                </div>
            </div>
        </div>
        <!-- 147 -->
        <div class="page-box" page="153">
            <div v-if="showPageList.indexOf(153) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Mark the suggestions given by the author when choosing a career.</p>
                        <p>Deciding on a Career£Income</p>
                        <p>□Education</p>
                        <p>□Experience</p>
                        <p>□Goals</p>
                        <p>□Happiness</p>
                        <p>□Interest</p>
                        <p>□Satisfaction</p>
                        <p>□Skills</p>
                        <p>□Values</p>
                        <p>B.Decide whether the following statements are true (T) or false (F).</p>
                        <p>( ) 1.When we decide on our future career,satisfaction and happiness matter a lot.</p>
                        <p>( ) 2.Positive emotions make us more productive and satisfied in our jobs.</p>
                        <p>( ) 3.Our past experiences have nothing to do with our jobs in the future.</p>
                        <p>( ) 4.There is no need to worry about what career we are going to take.</p>
                        <p>( ) 5.Luxuries will bring enjoyment to us,but that feeling cannot last forever.</p>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Replace the words in italics with the exact words in the passage and change the form if
                            necessary.</p>
                        <p>1.Once you find a desired <i>occupation</i>,you’ll notice a change even in your daily
                            life._____________</p>
                        <p>2.Only a small <i>part</i> of the budget is spent on books._____________</p>
                        <p>3.Happiness itself can help to shape job market <i>results</i> and even firm
                            performance._____________</p>
                        <p>4.Those who are <i>excited</i> about numbers can work in the accounting field._____________
                        </p>
                        <p>5.We need to leave our <i>pleasant</i> zone at work if we want growth
                            opportunities._____________</p>
                        <p>B.Fill in the blanks with the proper form of the expressions given below.</p>
                        <div class="bk-wh">
                            <p>a portion of fall into place be passionate about later on be comfortable with</p>
                        </div>
                        <p>1.Keep your options open and everything will___________.</p>
                        <p>2.You’d better set a long-term goal that you can___________.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">147</span>
                </div>
            </div>
        </div>
        <!-- 148 -->
        <div class="page-box" page="154">
            <div v-if="showPageList.indexOf(154) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>3.Anyone hired into the company must___________the system.</p>
                        <p>4.You must accept___________the blame for this crisis.</p>
                        <p>5.Many people plan to take one job of any kind and consider a new career path___________.</p>
                        <p><b>Ⅲ.Grammar focus:Pronouns (it,one).</b></p>
                        <p>Read the examples and complete the sentences with <i>it</i> or <i>one</i>.</p>
                        <p><b>Examples:</b></p>
                        <div class="fieldset-2">
                            <p>1.It is beneficial to find a career that will bring satisfaction and happiness rather
                                than find one based on income.</p>
                            <p>2.Having a career that we are passionate about,<i>one</i> that gives our life a sense of
                                purpose,and one that we are comfortable with is important.</p>
                        </div>
                        <p>1.Although finding a new job might not be easy,there are many different methods to
                            find_______effectively.</p>
                        <p>2.As you make a decision about your career,_______is important to reflect on your
                            interest,skills and career goals.</p>
                        <p>3.People will usually set a milestone in their career path,_______that they will work for in
                            the next five or ten years.</p>
                        <p>4.A career aptitude test could be helpful,because_______will give you suggestions based on
                            the test of your personal type.</p>
                        <p>5.We all have to work,and for most of us,if you discount weekends and sleep,_______will take
                            up at least half our available time.</p>
                        <h3 id="c070"><span class="bjh3">Mini-project</span></h3>
                        <p>Work in groups.Every one of you will take a job in the future.Ask your group members what job
                            he/she is going to choose and why he/she chooses this job.Jot down some notes,and prepare a
                            report to the class.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">148</span>
                </div>
            </div>
        </div>
        <!-- 149 -->
        <div class="page-box" page="155">
            <div v-if="showPageList.indexOf(155) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</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/0159-1.jpg" /></p>
                        <h2 id="b031"><img class="img-0" alt="" src="../../assets/images/dy8-le3.jpg" /></h2>
                        <h3 id="c071"><span class="bjh3">Listening</span></h3>
                        <p class="center"> <audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p><b>Ⅰ.Derek is talking about his job interview.Listen to the recording and fill in the blanks
                                with what you hear.</b></p>
                        <p>Hi,everyone.I’m Derek Cruise.I landed a job interview the other day.It is a bank
                            1._________that I’ve wanted for a long time.I’m excited you know.The job is quite
                            2._________and I love to play with 3._________.I prepared my 4._________,and bought a
                            suit.My friend reminded me that I should send a follow-up 5._________after the interview.But
                            I feel worried about writing the letter,for I know little about it.Anyway,I am
                            well-prepared,I guess.Now all I’ve got to do is to take that job.Wish me good luck!</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">149</span>
                </div>
            </div>
        </div>
        <!-- 150 -->
        <div class="page-box" page="156">
            <div v-if="showPageList.indexOf(156) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅱ.Susan is interviewing the candidate Derek.Listen to the conversation and write down
                                Susan's questions.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0160-1.jpg" /></p>
                        <h3 id="c072"><span class="bjh3">Practical Writing</span></h3>
                        <p>Work with your partner to discuss the following questions.</p>
                        <p>1.How do you follow up after a job interview?</p>
                        <p>2.How do you write follow-up emails after an interview?</p>
                        <p><b>Ⅰ.Read the following tips,and find out why a follow-up email is needed after an
                                interview.</b></p>
                        <p>A follow-up email is a good way to show your interest in the position and,most important of
                            all,your good manners.Most follow-up emails after an interview have the following features.
                        </p>
                        <div class="fieldset">
                            <p>◆ Subject line</p>
                            <p>◆ Personalized greetings</p>
                            <p>◆ Note of appreciation</p>
                            <p>◆ Recap of your qualifications</p>
                            <p>◆ Prompt to take the next step</p>
                            <p>◆ Contact information</p>
                            <p class="center"><img class="img-f" alt="" src="../../assets/images/0160-2.jpg" /></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">150</span>
                </div>
            </div>
        </div>
        <!-- 151 -->
        <div class="page-box" page="157">
            <div v-if="showPageList.indexOf(157) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅱ.Fill in the blanks with the right expressions from the labels to finish the following-up
                                email.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0161-1.jpg" /></p>
                        <p><b>Ⅲ.Put the following words in right order to make sentences.</b></p>
                        <p>1.thank for me meet taking the time to with yesterday you</p>
                        <p>_______________________________________________</p>
                        <p>2.I appreciate interview me the time to took you</p>
                        <p>_______________________________________________</p>
                        <p>3.I about am excited joining of possibility the very you</p>
                        <p>_______________________________________________</p>
                        <p>4.I about enjoyed position speaking the today with you</p>
                        <p>_______________________________________________</p>
                        <p>5.I am and for forward from hearing in interested look to very working you you</p>
                        <p>_______________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">151</span>
                </div>
            </div>
        </div>
        <!-- 152 -->
        <div class="page-box" page="158">
            <div v-if="showPageList.indexOf(158) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅳ.After his interview Derek wants to send a follow-up email.Work with your partner and
                                write one for him.</b></p>
                        <div class="fieldset-4">
                            <p class="left">From:</p>
                            <p class="left">To:</p>
                            <p class="left">Subject:</p>
                            <p><br /></p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">derekcruise@email.com</p>
                            <p class="left">521-764-8809</p>
                        </div>
                        <div class="un-h2">
                            <h2 id="b032">Unit Project</h2>
                        </div>
                        <p>In the following job ads,there are some job vacancies from different companies.Read carefully
                            and make a decision about the one you are going to apply for.First tell your partner the
                            reason why that job interests you.Then work in pairs,role-playing the interviewer and the
                            interviewee,and then switch your roles.</p>
                        <p><b>* The job ads in the QR code are for reference.Make your own ones if you would like
                                to.</b></p>
                        <p><b>Role 1:Interviewer</b></p>
                        <p>1.Work with your partner and decide what questions you will ask during the
                            interview.2.Complete the worksheet for the interviewer.</p>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio" @play="audioPlay"></audio>
                        <p class="center"></p>
                        <p><b>Role 2:Interviewee</b></p>
                        <p>1.Make a list of the information which might be useful in the interview.2.Finish the
                            follow-up email after the interview.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">152</span>
                </div>
            </div>
        </div>
        <!-- 153 -->
        <div class="page-box" page="159">
            <div v-if="showPageList.indexOf(159) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit8">MODULE 8</span>
                        <span class="chapter-right-bc-unit8 fw-bl chapter-right-cl-unit8">THE FIRST STEP TOWARD A
                            CAREER</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><b>Worksheet for the Interviewer</b></p>
                        <div class="fieldset-5">
                            <p class="left">Name:</p>
                            <p class="left">Phone:</p>
                            <p class="left">Email:</p>
                            <p class="left">Work experience</p>
                            <p><br /></p>
                            <p class="left">Education</p>
                            <p><br /></p>
                            <p class="left">Skills</p>
                            <p><br /></p>
                            <p class="left">Other related information</p>
                            <p><br /></p>
                        </div>
                        <p><b>Follow-up Email for the Interviewee</b></p>
                        <div class="fieldset-4">
                            <p class="left">From:</p>
                            <p class="left">To:</p>
                            <p class="left">Subject:</p>
                            <p><br /></p>
                            <p class="left">____________________________________________</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">153</span>
                </div>
            </div>
        </div>
        <!-- 154 -->
        <div class="page-box" page="160">
            <div v-if="showPageList.indexOf(160) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit8 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit8">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit8">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="bk-14">
                            <p class="center"><b>Useful Expressions</b></p>
                            <p>It was a pleasure speaking with you about ...</p>
                            <p>I just wanted to follow up on ...</p>
                            <p>I’m excited about the opportunity to join ...</p>
                            <p>I’m enthusiastic about the prospect of ...</p>
                            <p>I’m sure you’re still in research mode right now ...</p>
                            <p>Please feel free to contact me if I can provide you with any further information.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">154</span>
                </div>
            </div>
        </div>
    </div>
</template>
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapterEight",
    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: {
                    isRight: null,
                    answer: ["Culture", "Cuisine", "Landscapes"],
                    value: []
                },
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    isRight: null,
                    answer: 'cuisine,landscapes,civilization,explore,unique'
                },
                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: [
                "online shopping",
                "facial recognition",
                "electronic payment",
                "intercity train",
                "shared bike",
                "take-away service",
            ],
            dropdownData: {
                one: {
                    value: "",
                    isRight: null,
                    answer: "intercity train",
                },
                two: {
                    value: "",
                    isRight: null,
                    answer: "online shopping",
                },
                three: {
                    value: "",
                    isRight: null,
                    answer: "electronic payment",
                },
                four: {
                    value: "",
                    isRight: null,
                    answer: "shared bike",
                },
                five: {
                    value: "",
                    isRight: null,
                    answer: "take-away service",
                },
                six: {
                    value: "",
                    isRight: null,
                    answer: "facial recognition",
                },
            },
        };
    },
    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: {
                    isRight: null,
                    answer: ["Culture", "Cuisine", "Landscapes"],
                    value: []
                },
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    isRight: null,
                    answer: ['uisine', 'andscapes', 'ivilization', 'xplore', 'nique']
                },
                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() {
            const item = this.testData['check']
            const sortedArr1 = item.answer.slice().sort();
            const sortedArr2 = item.value.slice().sort();
            const isRight = sortedArr1.every(
                (value, index) => value === sortedArr2[index]
            );
            const inData = this.testData['in']
            let inString = []
            for (let key in inData) {
                const citem = inData[key];
                if (key != 'answer' && key !== 'isRight') {
                    console.log(key);
                    inString.push(citem)
                }
 
 
            }
            const inRight = inData.answer == inString
            console.log('in', inData.answer, inString);
            this.$set(this.testData['in'], 'isRight', inRight)
            this.$set(this.testData['check'], 'isRight', isRight)
            this.setTestData()
            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;
}
 
.select-border {
    border: 0;
    border-bottom: 1px solid #767676;
 
    &:focus {
        outline: none;
    }
}
</style>