闫增涛
2024-07-19 710affa2699995639cf506d2de772c6b88db9bed
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
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
<template>
    <div class="chapter" num="6">
        <!-- 第五单元 -->
        <!-- 77 -->
        <div class="page-box" page="83">
            <div class="bodystyle" v-if="showPageList.indexOf(83) > -1">
                <h1 id="a005">
                    <img class="img-0" alt="" src="../../assets/images/dy5.jpg" />
                </h1>
                <p class="img">
                <p>➢ Learn words and expressions about environmental topics</p>
                <p>➢ Review the structure of the present perfect tense and the usage of the infinitive</p>
                <p>➢ Be able to express your concern on environmental issues</p>
                <p>➢ Be able to compose a business memo</p>
                <p>➢ Understand the significance of environmental protection</p>
                </p>
                <p class="center">
                    <img class="img-0" alt="" src="../../assets/images/0087-2.jpg" />
                </p>
                <p class="img"></p>
            </div>
        </div>
        <!-- 78 -->
        <div class="page-box" page="84">
            <div v-if="showPageList.indexOf(84) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b017"><img class="img-0" alt="" src="../../assets/images/dy5-le1.jpg" /></h2>
                        <h3 id="c037"><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>plastic waste problem water pollution global warming oil spill air
                                pollution deforestation</p>
                        </div>
 
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0088-1.jpg" /></p>
                        <p class="center">1._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0088-2.jpg" /></p>
                        <p class="center">2._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0088-3.jpg" /></p>
                        <p class="center">3._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0088-4.jpg" /></p>
                        <p class="center">4._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0088-5.jpg" /></p>
                        <p class="center">5._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0088-6.jpg" /></p>
                        <p class="center">6._____________________</p>
                        <p><b>Ⅱ.What other environmental issues do you know?</b></p>
                        <p>_____________________________________________</p>
                        <h3 id="c038"><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>Nature is sending warnings to human beings.Watch the video and answer the following
                                questions.</b></p>
                        <p class="center">
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">What have humans done to the
                                    planet?</td>
                                <td class="tl-cn">What did "lce" do to warn
                                    humans?</td>
                                <td class="tl-cn">How do humans respond to the
                                    warning?</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.one"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">78</span>
                </div>
            </div>
        </div>
        <!-- 79 -->
        <div class="page-box" page="85">
            <div v-if="showPageList.indexOf(85) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c039"><span class="bjh3">Reading</span></h3>
                        <p class="center"> <audio :src="resource.readingOne" controls
                                controlslist="noplaybackrate nodownload" class="audio" @play="audioPlay"></audio></p>
                        <p>1.Plastic never biodegrades,so every piece ever made lasts forever! It has posed a serious
                            threat to our health and future generations.What do you use plastic for in daily life?</p>
                        <p>2.Can you think of some ways to reduce the use of plastic? Share your ideas with the class.
                        </p>
                        <p class="center"><b>A Better Path for Plastic</b></p>
                        <p>Plastic plays an important role in modern life,serving as building blocks for everything from
                            packaging to medical equipment.This useful material has undeniable upsides—but far too much
                            of it ends up in landfills or in our environment.What can each of us do to be part of the
                            solution?</p>
                        <p>Here’s some inspiration for how you can make a positive impact in your community and the
                            world.</p>
                        <p>1)_________________</p>
                        <p>Initiatives that encourage repair,reuse,and recycling to reduce plastic waste come from every
                            part of the society and from every corner of the world.In India,some shops have begun
                            treating recyclable things as a form of exchangeable currency for groceries.In the
                            U.S.,Phoenix—once branded the world’s least sustainable city—now has set an ambitious goal
                            to be zero-waste by 2050,and other cities are setting their own zero-waste targets.</p>
                        <p>2)_________________</p>
                        <p>Solving big challenges requires leadership from our elected officials,from businesses,and
                            from each one of us.As parents or mentors,we can teach and encourage positive behaviors.In
                            our work,we can drive changes within our own companies.And as everyday citizens,we can share
                            what matters to us in conversations and on social media.</p>
                        <p>3)_________________</p>
                        <p>Waste is a problem that is growing right before our eyes.Making decisions about what types of
                            products to buy—or whether to purchase them at all—can feel intense.Start by asking
                            questions about the products that you’re using.What is it made of? How long will it last? Is
                            it recyclable or compostable in your area? Is there an alternative? Then look for products
                            that contain recycled materials and are designed from the start with circularity in mind.
                        </p>
                        <p>4)_________________</p>
                        <p>Placing recyclable and compostable items in their appropriate bins whenever you can is very
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">79</span>
                </div>
            </div>
        </div>
        <!-- 80 -->
        <div class="page-box" page="86">
            <div v-if="showPageList.indexOf(86) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>important—but that’s not all you can do.Consider ways to buy less and reuse more,such as by
                            choosing refillable packaging.See if your community offers more repair workshops as a way to
                            keep items working longer.Neighborhood groups and thrift stores are a great way to pass on
                            what you no longer need and pick up basic essentials without buying new things.</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>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio" @play="audioPlay"></audio>
                        <p>undeniable /ˌʌndɪˈnaɪəbl/ <i>adj.</i> 不可否定的;无可争辩的</p>
                        <div class="bkbj">
                            <p><i>that cannot be denied</i></p>
                        </div>
                        <p>upside /ˈʌpsaɪd/ <i>n.</i> (糟糕局面的) 好的一面;正面</p>
                        <div class="bkbj">
                            <p><i>the more positive aspect of a situation that is generally bad</i></p>
                        </div>
                        <p>landfill /ˈlændfɪl/ <i>n.</i> 废物填埋场</p>
                        <div class="bkbj">
                            <p><i>an area of land where large amounts of waste materials are buried under the earth</i>
                            </p>
                        </div>
                        <p>initiative /ɪˈnɪʃətɪv/ <i>n.</i> 倡议;新方案</p>
                        <div class="bkbj">
                            <p><i>a new plan for dealing with a particular problem or for achieving a particular
                                    purpose</i></p>
                        </div>
                        <p>recycling /ˌriːˈsaɪklɪŋ/ <i>n.</i> 回收利用</p>
                        <div class="bkbj">
                            <p><i>the process of processing things that have already been used so that they can be used
                                    again</i></p>
                        </div>
                        <p>currency /ˈkʌrənsi/ <i>n.</i> 货币</p>
                        <div class="bkbj">
                            <p><i>the system of money that a country uses</i></p>
                        </div>
                        <p>exchangeable /ɪksˈtʃeɪndʒəbl/ <i>adj.</i> 可兑换的;可交换的</p>
                        <div class="bkbj">
                            <p><i>that can be exchanged for money or goods</i></p>
                        </div>
                        <p>sustainable /səˈsteɪnəbl/ <i>adj.</i> (对自然资源和能源的利用) 不破坏生态平衡的,合理利用的</p>
                        <div class="bkbj">
                            <p><i>involving the use of natural products and energy in a way that does not harm the
                                    environment</i></p>
                        </div>
                        <p>ambitious /æmˈbɪʃəs/ <i>adj.</i> 宏伟的;远大的</p>
                        <div class="bkbj">
                            <p><i>determined to be successful,rich,powerful,etc.</i></p>
                        </div>
                        <p>zero-waste <i>adj.</i> 零废弃的</p>
                        <div class="bkbj">
                            <p><i>having no waste</i></p>
                        </div>
                        <p>mentor /ˈmentɔː(r)/ <i>n.</i> 导师;顾问</p>
                        <div class="bkbj">
                            <p><i>an experienced person who advises and helps sb.with less experience over a period of
                                    time</i></p>
                        </div>
                        <p>intense /ɪnˈtens/ <i>adj.</i> 十分强烈的</p>
                        <div class="bkbj">
                            <p><i>very strong</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">80</span>
                </div>
            </div>
        </div>
        <!-- 81 -->
        <div class="page-box" page="87">
            <div v-if="showPageList.indexOf(87) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>compostable [kəmˈpɒstəbl] <i>adj.</i> 可用作堆肥的</p>
                        <div class="bkbj">
                            <p><i>capable of being used as compost</i></p>
                        </div>
                        <p>alternative /ɔːlˈtɜːnətɪv/ <i>n.</i> 可供替代的事物</p>
                        <div class="bkbj">
                            <p><i>a thing that you can choose to replace sth.else</i></p>
                        </div>
                        <p>circularity /ˌsɜːkjəˈlærəti/ <i>n.</i> 循环</p>
                        <div class="bkbj">
                            <p><i>moving through a space,circuit or system,returning to the starting point</i></p>
                        </div>
                        <p>refillable /ˌriːˈfɪləbl/ <i>adj.</i> 适于再装的</p>
                        <div class="bkbj">
                            <p><i>able to be filled again</i></p>
                        </div>
                        <p>essential /ɪˈsenʃl/ <i>n.</i> 必需品</p>
                        <div class="bkbj">
                            <p><i>fundamentally necessary thing</i></p>
                        </div>
                        <p>building blocks组成部分;构成要素</p>
                        <p>thrift store二手商店</p>
                        <p>end up最终;结果</p>
                        <p>pass on传递;继续</p>
                        <p>pick up发现;找到</p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Choose one proper subtitle from the following for paragraph 2-5.There is one subtitle which
                            you don’t need.</p>
                        <p>a.Stay Curious</p>
                        <p>b.Change Your Lifestyle</p>
                        <p>c.Solutions in Action</p>
                        <p>d.Be Responsible</p>
                        <p>e.Be a Community Leader</p>
                        <p>B.Read the passage and answer the following questions.</p>
                        <p>1.What is the use of plastic in modern life?</p>
                        <p>____________________________________________________</p>
                        <p>2.Which city in the U.S.has set a goal to be zero-waste by 2050?</p>
                        <p>____________________________________________________</p>
                        <p>3.Who should lead the campaign against plastic pollution?</p>
                        <p>____________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">81</span>
                </div>
            </div>
        </div>
        <!-- 82 -->
        <div class="page-box" page="88">
            <div v-if="showPageList.indexOf(88) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</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 from the passage.The initial letters of the words
                            have been given.</p>
                        <p>1.They hope to raise consumers’ awareness and avoid recyclable packaging ending up in
                            l________sites.</p>
                        <p>2.The Belt and Road I________has won a warm welcome from the international community.</p>
                        <p>3.The children were taught to flatten the empty milk cartons and r________them.</p>
                        <p>4.Many coffee shops started to offer paper straws or ones made of c________plastic.</p>
                        <p>5.Do your bit for the planet by switching to r________sports bottles.They’re kind to your
                            body too!</p>
                        <p>B.Fill in the blanks with the proper form of the expressions given below.</p>
                        <div class="bk-wh">
                            <p>building blocks end up thrift store pass on pick up</p>
                        </div>
                        <p>1.If our planet is seriously polluted,what’s left there to _______ to future generations?</p>
                        <p>2.Single words are the _______ of language.</p>
                        <p>3.I buy clothes in the _______ instead of noting the brand names.</p>
                        <p>4.Every student is responsible for _______ their own litter in the classroom.</p>
                        <p>5.Large amounts of plastic waste _______ littered on the streets,or worse,in our oceans.</p>
                        <p>C.Translate the following sentences into Chinese.</p>
                        <p>1.China has set ambitious targets to reach a carbon peak by 2030 and achieve carbon
                            neutrality by 2060.</p>
                        <p>____________________________________________________</p>
                        <p>2.Consumers are encouraged to use reusable grocery bags instead of plastic bags,which helps
                            to achieve the zero-waste target.</p>
                        <p>____________________________________________________</p>
                        <p>3.Electric cars help to reduce greenhouse gas emissions(排放),making it a great alternative to
                            gas-only cars.</p>
                        <p>____________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">82</span>
                </div>
            </div>
        </div>
        <!-- 83 -->
        <div class="page-box" page="89">
            <div v-if="showPageList.indexOf(89) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.The Beijing 2022 Winter Olympics is in line with its concept of delivering a green and
                            sustainable Games.</p>
                        <p>____________________________________________________</p>
                        <p><b>Ⅲ.Grammar focus:The present perfect tense.</b>
                            <span class="btn-box" @click="showAnswer('showImg')">
                                <svg t="1717037443722" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                    xmlns="http://www.w3.org/2000/svg" p-id="30864"
                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                    <path
                                        d="M387.2 471.152l-154.768 258.72v103.488h515.792V626.384l-149.12 103.488z m283.712-51.744a77.632 77.632 0 1 0 77.392 77.616 77.504 77.504 0 0 0-77.472-77.616zM640 0H160.72A96.736 96.736 0 0 0 64 96.72V927.36a96.736 96.736 0 0 0 96.72 96.64h702.56A96.704 96.704 0 0 0 960 927.36V298.016z m7.808 94.736l226.544 211.008h-146.544a80.08 80.08 0 0 1-80-80zM896 927.36a32.688 32.688 0 0 1-32.72 32.64h-702.56A32.704 32.704 0 0 1 128 927.36V96.72A32.752 32.752 0 0 1 160.72 64l423.088 0.384v161.44a144.176 144.176 0 0 0 144 143.92H896z"
                                        p-id="30865"></path>
                                </svg>
                            </span>
                        </p>
                        <div class="openImgBox" v-if="showImg">
                            <img class="w100" :src="imgThirteen" />
                        </div>
                        <p>A.Mark the correct form of the words in the brackets.</p>
                        <p>1.Some shops in India have (begin,began,begun) to exchange recyclable things for groceries.
                        </p>
                        <p>2.In the U.S.,Phoenix now has (set,sets,setting) an ambitious goal to be zero-waste by 2050.
                        </p>
                        <p>3.The temperature increase has (cause,causes,caused) melting glaciers and drought.</p>
                        <p>4.Destruction of forests has (lead,leads,led) to the extinction of some animal species.</p>
                        <p>5.A nationwide waste sorting policy has been (adopt,adopted,adopting) to protect the
                            environment.</p>
                        <p>6.We need to be aware that some natural resources have (run,ran,running) out.</p>
                        <p>B.Fill in each blank with the present perfect form of the verb in the brackets.</p>
                        <p>1.I__________up my mind to live a zero-waste lifestyle to help our planet.(make)</p>
                        <p>2.Solar power__________more and more popular for domestic use.(become)</p>
                        <p>3.New energy vehicle industry__________rapid development in the past few years.(experience)
                        </p>
                        <p>4.While waste sorting may sound simple,it__________harder to do in practice.(prove)</p>
                        <p>5.Light pollution__________human health and animal behavior.(affect)</p>
                        <h3 id="c040"><span class="bjh3">Mini-project</span></h3>
                        <p>Nature is speaking with a furious tone telling us that she’s been through a very difficult
                            time while humans do nothing but make it worse.Search online for the causes and effects of
                            environmental issues,and finish the worksheet,and then prepare a report to the class.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">83</span>
                </div>
            </div>
        </div>
        <!-- 84 -->
        <div class="page-box" page="90">
            <div v-if="showPageList.indexOf(90) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>Nature is speaking with a furious tone telling us that she’s been through a very difficult
                            time while humans do nothing but make it worse.Search online for the causes and effects of
                            environmental issues,and finish the worksheet,and then prepare a report to the class.</p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="wh-no tl-cn">Environmental issues</td>
                                <td class="tl-cn">Causes</td>
                                <td class="tl-cn">Effects</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="">Plastic Pollution</td>
                                <td class="tl-lf">
                                    Because plastie is affordable and durable, it has been overused, Most plastic
                                    is thrown away even after a single use, which ends up in landfills or in the oceans.
                                </td>
                                <td class="tl-lf">
                                    Plastie takes hundreds of years to decompose. Therefore plastie waste has posed a
                                    serious threat to the safety of land, oceans, humans and animals.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.four"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.five"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.six"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.seven"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.eight"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.nine"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.ten"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.eleven"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twelve"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p class="dl-box">
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'smog')">smog</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'greenhouse gases')">greenhouse gases</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'unusual temperature')">unusual temperature</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'rising sea levels')">rising sea levels</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'melting glaciers')">melting glaciers</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'frequent drought')">frequent drought</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'heavier rainstorms')">heavier rainstorms</span>
                                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'soil degradation')">soil degradation</span>
                            </p>
                        </div>
                        <div class="resource-primary-border" style="padding: 8px; margin: 5% 0%">
                            <div class="banshi openImgBox">
                                <div class="swiper-container swiper_ppt">
                                    <div class="swiper-wrapper">
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_01.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_02.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_03.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_04.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_05.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_06.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_07.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_08.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_09.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_10.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_11.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_12.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_13.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_14.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_15.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_16.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_17.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_18.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_19.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_20.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_21.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_22.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_23.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_24.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_25.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_26.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_27.png" />
                                            </div>
                                        </div>
                                    </div>
                                    <div class="swiper-button-next"></div>
                                    <div class="swiper-button-prev"></div>
                                    <div class="pageBox"></div>
                                </div>
                                <!-- 显示当前页和总页数的元素 -->
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">84</span>
                </div>
            </div>
        </div>
        <!-- 85 -->
        <div class="page-box" page="91">
            <div v-if="showPageList.indexOf(91) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b018"><img class="img-0" alt="" src="image/dy5-le1.jpg" /></h2>
                        <h3 id="c041"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Nature is calling for help! Everyone has a part to play in this everlasting planet-saving
                                mission.Are you environmentally conscious? Complete the following questionnaire and
                                check the results.</b></p>
                        <p class="center"><b>How Green Are You?</b></p>
                        <div class="fieldset-6">
                            <p>1.Do you sort your household waste into corresponding categories?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>2.Do you use your own shopping bags?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>3.Do you recycle light bulbs and used batteries?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>4.Do you switch off the lights when you leave a room?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>5.Do you switch off the TV and computer before you go to sleep?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>6.Do you put on warmer clothes on a cold day instead of turning on the heating?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>7.Do you keep the tap closed while you are brushing your teeth?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>8.Do you use public transport or a bike when possible?</p>
                            <p>a.Yes,always. b.Sometimes. c.Never.</p>
                            <p>Check the number of the points you have got and see if you are GREEN!</p>
                            <p>a.2 points b.1 point c.0 point</p>
                            <div class="fieldset-61">
                                <p>From 12 to 16</p>
                                <p>Congratulations! You are definitely environmentally conscious.Thank you for helping
                                    save our planet!</p>
                            </div>
                            <div class="fieldset-61">
                                <p>From 6 to 11</p>
                                <p>Well,you should improve and live a greener life.Remember to take environment
                                    protection as priority.</p>
                            </div>
                            <div class="fieldset-61">
                                <p>Below 5</p>
                                <p>You should do a lot more to leave a favorable environment to your children and
                                    grandchildren.</p>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">85</span>
                </div>
            </div>
        </div>
        <!-- 86 -->
        <div class="page-box" page="92">
            <div v-if="showPageList.indexOf(92) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c042"><span class="bjh3">Reading</span></h3>
                        <p>1.“You are what you eat.” How do you understand this saying?</p>
                        <p>2.What is a climate-friendly diet?</p>
                        <p class="center"><b>Your Dinner Has a Carbon Footprint</b></p>
                        <p class="center"> <audio :src="resource.listenOne" controls
                                controlslist="noplaybackrate nodownload" class="audio" @play="audioPlay"></audio></p>
                        <p>Every morning,I wake up,and just moments after my feet hit this floor,I’m reaching for a
                            sports bra and tying my shoelaces.It’s time to go running.</p>
                        <p>Sometimes,I’m alone.Other times,I’m with a friend.I’m a runner,and for me,there’s nothing
                            better than a
                            <span class="word-bc" @click="saveWord($event, 'crisp')">crisp</span>
                            morning,when the air is fresh,the sun is
                            <span class="word-bc" @click="saveWord($event, 'peak')"> peak</span>
                            ing over the
                            <span class="word-bc" @click="saveWord($event, 'horizon')">horizon</span>
                            ,and my
                            legs are light.But some days,when an air quality warning shows on my phone,I know running
                            outdoors will be unpleasant.
                        </p>
                        <p>Most of us would love to cut our carbon footprints in half—I know I would—but it just isn’t
                            convenient.We want to drive in cars,fly in planes,and eat fruits that only grow on the other
                            side of the world.I’m lucky enough to live in a city with great public transportation and a
                            wealth of
                            <span class="word-bc" @click="saveWord($event, 'ecofriendly')">ecofriendly </span> &nbsp;
                            <span class="word-bc" @click="saveWord($event, 'ride-sharing')">ride-sharing </span>
                            options.But actually,not all of us have these choices.
                        </p>
                        <p>So,if we can’t take millions of cars off the road,what can we do right now,on an individual
                            level,to reduce our carbon footprint?</p>
                        <p>Well,everybody eats.We eat to celebrate,to grow,and to
                            <span class="word-bc" @click="saveWord($event, 'survive')">survive</span>
                            .We also eat
                            <span class="word-bc" @click="saveWord($event, 'selectively')">selectively</span>
                            .It
                            seems like everyone has a
                            <span class="word-bc" @click="saveWord($event, 'dietary')">dietary</span> &nbsp;
                            <span class="word-bc" @click="saveWord($event, 'restriction')">restriction</span>
                            these days.Most of the dietary choices are
                            made for personal,health-related reasons,but what I’ve learned recently is that the food we
                            eat doesn’t just impact us; it impacts the planet big time.
                        </p>
                        <p>Just this summer,a group of researchers in the UK published a study comparing the carbon
                            footprints connected with different diets:meat-eaters,fish-eaters,and
                            <span class="word-bc" @click="saveWord($event, 'vegans')">vegans</span>
                            .It turns out
                            that
                            <span class="word-bc" @click="saveWord($event, 'eliminat')">eliminat</span>
                            ing meat from your diet can reduce your carbon
                            <span class="word-bc" @click="saveWord($event, 'emissions')">emissions</span>
                            by half.A vegan diet
                            was connected with the least amount of greenhouse gas emissions—99 percent to 102 percent
                            less than meateaters—but even switching from meat to fish can reduce your dietary emissions
                            by 50 percent.
                        </p>
                        <p>Before learning about this study,I never thought about how my diet impacted anyone but
                            myself.I always
                            <span class="word-bc" @click="saveWord($event, 'figured')">figured</span>
                            that what I put into my body was a personal decision,but it’s a
                            public concern.
                        </p>
                        <p>Every night before sleeping,I lay there for a moment,reflecting on the day,and thinking about
                            my next meatless meal.As I close my eyes,I hope for a crisp morning with fresh air,the sun
                            peaking over the horizon,a lightness in my legs.I am looking forward to the next day’s run.
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">86</span>
                </div>
            </div>
        </div>
        <!-- 87 -->
        <div class="page-box" page="93">
            <div v-if="showPageList.indexOf(93) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <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>
                        <audio :src="resource.listenOne" controls controlslist="noplaybackrate nodownload" class="audio"
                            @play="audioPlay"></audio>
                        <p>crisp /krɪsp/ <i>adj.</i> (指空气、天气) 干冷的;凉爽的</p>
                        <div class="bkbj">
                            <p><i>(of the air or the weather) pleasantly dry and cold</i></p>
                        </div>
                        <p>peak /piːk/ <i>v.</i> 达到高峰</p>
                        <div class="bkbj">
                            <p><i>to reach the highest point</i></p>
                        </div>
                        <p>horizon /həˈraɪzn/ <i>n.</i> 地平线</p>
                        <div class="bkbj">
                            <p><i>the furthest that you can see,where the sky seems to meet the land or the sea</i></p>
                        </div>
                        <p>eco-friendly <i>adj.</i> 环保的</p>
                        <div class="bkbj">
                            <p><i>not harmful to the environment</i></p>
                        </div>
                        <p>ride-sharing <i>adj.</i> 拼车的</p>
                        <div class="bkbj">
                            <p><i>sharing rides</i></p>
                        </div>
                        <p>survive /səˈvaɪv/ <i>v.</i> 生存;存活</p>
                        <div class="bkbj">
                            <p><i>to continue to live or exist</i></p>
                        </div>
                        <p>selectively /sɪ’lektɪvli/ <i>adv.</i> 有选择地</p>
                        <div class="bkbj">
                            <p><i>in a selective manner</i></p>
                        </div>
                        <p>dietary /ˈdaɪətəri/ <i>adj.</i> 饮食的</p>
                        <div class="bkbj">
                            <p><i>of or relating to the diet</i></p>
                        </div>
                        <p>restriction /rɪˈstrɪkʃn/ <i>n.</i> 限制;约束</p>
                        <div class="bkbj">
                            <p><i>the act of limiting or controlling sb./sth.</i></p>
                        </div>
                        <p>vegan /ˈviːɡən/ <i>n.</i> 严格素食主义者</p>
                        <div class="bkbj">
                            <p><i>a person who does not eat any animal products such as meat,milk or eggs</i></p>
                        </div>
                        <p>eliminate /ɪˈlɪmɪneɪt/ <i>v.</i> 清除;消除</p>
                        <div class="bkbj">
                            <p><i>to remove or get rid of sb./sth.</i></p>
                        </div>
                        <p>emission /iˈmɪʃn/ <i>n.</i> (光、热、气等的) 排放</p>
                        <div class="bkbj">
                            <p><i>the production or sending out of light,heat,gas,etc.</i></p>
                        </div>
                        <p>figure /ˈfɪɡə(r)/ <i>v.</i> 认为</p>
                        <div class="bkbj">
                            <p><i>to think</i></p>
                        </div>
                        <p>carbon footprint 碳足迹</p>
                        <p>big time 大范围地;很大程度地</p>
                        <p>reflect on 回想</p>
                        <p>reach for sth.伸出(手) 以抓到或拿到某物</p>
                        <p>turn out 结果是</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">87</span>
                </div>
            </div>
        </div>
        <!-- 88 -->
        <div class="page-box" page="94">
            <div v-if="showPageList.indexOf(94) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Mark the suggestions given by the author on how to reduce carbon footprints.</p>
                        <p>Ways to reduce carbon footprints</p>
                        <p>   □ Driving to work in cars</p>
                        <p>   □ Carpooling to work</p>
                        <p>   □ Eating much meat</p>
                        <p>   □ Having a meatless meal</p>
                        <p>   □ Eating vegetables</p>
                        <p>   □ Eating imported fruits</p>
                        <p>B.Decide whether the following statements are true (T) or false (F).</p>
                        <p>( ) 1.It’s convenient to cut our carbon footprints in half.</p>
                        <p>( ) 2.People eat for different purposes and have different eating habits.</p>
                        <p>( ) 3.Carbon footprints have nothing to do with people’s diets.</p>
                        <p>( ) 4.The more meat people eat,the fewer carbon emissions are produced.</p>
                        <p>( ) 5.People’s personal diets have a huge influence on the planet.</p>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Replace the words or expression,in italics with the exact words in the passage and change
                            the form if necessary.</p>
                        <p>1.The air was thin and <i>fresh</i>,filled with hazy sunshine and frost._________</p>
                        <p>2.Few can <i>live</i> more than a week without water._________</p>
                        <p>3.People should be prohibited from using plastic bags to <i>get rid of</i> white
                            pollution._________</p>
                        <p>4.<i>Discharge</i> of greenhouse gases contributes to global warming._________</p>
                        <p>5.She <i>thought</i> that both she and Ned had learned a lot from the experience._________
                        </p>
                        <p>B.Fill in the blanks with the proper form of the expressions given below.</p>
                        <div class="bk-wh">
                            <p>carbon footprint big time turn out reflect on reach for</p>
                        </div>
                        <p>1.We need to take some time to ________ what we have done to nature.</p>
                        <p>2.Human activities affect the environment ________ .</p>
                        <p>3.She ________ the luggage when she was required to show the ticket.</p>
                        <p>4.We all need to look for ways to reduce our ________ .</p>
                        <p>5.It ________ that bamboo can replace plastic in items like tableware,toothbrushes and so on.
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">88</span>
                </div>
            </div>
        </div>
        <!-- 89 -->
        <div class="page-box" page="95">
            <div v-if="showPageList.indexOf(95) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅲ.Grammar focus:The infinitive.</b>
                            <span class="btn-box" @click="showAnswer('showImgOne')">
                                <svg t="1717037443722" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                    xmlns="http://www.w3.org/2000/svg" p-id="30864"
                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                    <path
                                        d="M387.2 471.152l-154.768 258.72v103.488h515.792V626.384l-149.12 103.488z m283.712-51.744a77.632 77.632 0 1 0 77.392 77.616 77.504 77.504 0 0 0-77.472-77.616zM640 0H160.72A96.736 96.736 0 0 0 64 96.72V927.36a96.736 96.736 0 0 0 96.72 96.64h702.56A96.704 96.704 0 0 0 960 927.36V298.016z m7.808 94.736l226.544 211.008h-146.544a80.08 80.08 0 0 1-80-80zM896 927.36a32.688 32.688 0 0 1-32.72 32.64h-702.56A32.704 32.704 0 0 1 128 927.36V96.72A32.752 32.752 0 0 1 160.72 64l423.088 0.384v161.44a144.176 144.176 0 0 0 144 143.92H896z"
                                        p-id="30865"></path>
                                </svg>
                            </span>
                        </p>
                        <div class="openImgBox" v-if="showImgOne">
                            <img class="w100" :src="imgThirteenOne" />
                        </div>
                        <p>Rewrite the following sentences using the infinitive symbol “to”.</p>
                        <p>1.We work hard.</p>
                        <p>We want to make a better life.</p>
                        <p>___________________________________________________</p>
                        <p>2.I’m sorry.</p>
                        <p>I sent the urgent email to a wrong person.</p>
                        <p>___________________________________________________</p>
                        <p>3.I was shocked.</p>
                        <p>I heard the news that temperatures at North Pole were more than 50°F warmer than average.</p>
                        <p>___________________________________________________</p>
                        <p>4.The 70-year-old grandma was warm-hearted.</p>
                        <p>She cleaned 52 beaches in one year.</p>
                        <p>___________________________________________________</p>
                        <p>5.Miss Li was environmentally conscious.</p>
                        <p>She switched off all the lights after each class.</p>
                        <p>___________________________________________________</p>
                        <h3 id="c043"><span class="bjh3">Mini-project</span></h3>
                        <p>Nature needs to be heard,understood and assisted.Let’s start with waste sorting.</p>
                        <p>“What kind of trash are you? I mean,what kind of the trash are you taking?” There have been
                            such funny chats among neighbours ever since each household was strictly required to sort
                            its waste into four categories (recyclable waste,hazardous waste,kitchen waste and residual
                            waste),and put them into proper bins.</p>
                        <p><b>Ⅰ.Classify the following waste and put the number of the waste into proper bins.</b></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">89</span>
                </div>
            </div>
        </div>
        <!-- 90 -->
        <div class="page-box" page="96">
            <div v-if="showPageList.indexOf(96) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>1.books 2.paints 3.dust 4.eggshells 5.plastic bottles 6.fruit peels</p>
                        <p>7.batteries 8.hair 9.leftovers 10.newspapers 11.tin cans 12.expired medicine</p>
                        <p>13.broken ceramics 14.used tissue 15.fish bones 16.nail polish remover</p>
                        <p class="center"><img class="img-b" alt="" src="../../assets/images/0100-1.jpg" /></p>
                        <p><b>Ⅱ.Work in groups.Ask your group members how they deal with the household waste every
                                day.Finish the worksheet and prepare a report to the class.</b></p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Names</td>
                                <td class="wh-no tl-cn">Ways of Sorting Daily Household Waste</td>
                                <td class="wh-no tl-cn">Right or Wrong</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn">Li Ming</td>
                                <td class="tl-lf">He puts glass bottles and tin cans into recyclable waste bins,
                                    puts batteries and bulbs into harmful waste bins, puts apple cores and leftovers
                                    into
                                    kitchen waste bins, and puts used tissues and dirty plastie bags into other waste
                                    bins.</td>
                                <td class="wh-no">
                                    Right
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.thirteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.fourteen"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.fifteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.sixteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.seventeen"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.eighteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.nineteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twenty"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyOne"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.twentyTwo"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyThree"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyFour"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        <div class="resource-primary-border" style="padding: 8px; margin: 5% 0%">
                            <div class="banshi openImgBox">
                                <div class="swiper-container swiper_ppt">
                                    <div class="swiper-wrapper">
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_01.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_02.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_03.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_04.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_05.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_06.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_07.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_08.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_09.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_10.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_11.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_12.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_13.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_14.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_15.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_16.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_17.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_18.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_19.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_20.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_21.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_22.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_23.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_24.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_25.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_26.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_27.png" />
                                            </div>
                                        </div>
                                    </div>
                                    <div class="swiper-button-next"></div>
                                    <div class="swiper-button-prev"></div>
                                    <div class="pageBox"></div>
                                </div>
                                <!-- 显示当前页和总页数的元素 -->
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">90</span>
                </div>
            </div>
        </div>
        <!-- 91 -->
        <div class="page-box" page="97">
            <div v-if="showPageList.indexOf(97) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b019"><img class="img-0" alt="" src="../../assets/images/dy5-le3.jpg" /></h2>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio" @play="audioPlay"></audio>
                        <h3 id="c044"><span class="bjh3">Listening</span></h3>
                        <p><b>Ⅰ.Every one of us should have a clear sense of how important Nature means to mankind.Watch
                                the video and fill in the blanks with what you hear.</b></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="wh-no tl-cn">Redwood Sapling</td>
                                <td class="tl-cn">Ways of Sorting Daily Household Waste</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">How come you're so smart?</td>
                                <td class="tl-lf">
                                    Our kind has been around a really long time, longer than just about anything. I've
                                    seen just about everything.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    What have you seen?
                                </td>
                                <td>
                                    I've seen all kinds of l.<input :disabled="testData.isComplete" type="text"
                                        class="input-bottom-border input-bc-t" style="width: 60px"
                                        v-model="testData.in.one" @change="setTestData" />
                                    <span>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0)
                                        " t="1716986419862" class="icon" viewBox="0 0 1820 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0) == false
                                        " t="1716987085767" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>,bugs and 2.<input :disabled="testData.isComplete" type="text"
                                        class="input-bottom-border input-bc-t" style="width: 60px"
                                        v-model="testData.in.one" @change="setTestData" />
                                    <span>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0)
                                        " t="1716986419862" class="icon" viewBox="0 0 1820 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0) == false
                                        " t="1716987085767" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>,mice andrats, rabbits and bears, and skuhks. But things have been changed
                                    ever since humans came.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    What did the humans do?
                                </td>
                                <td>
                                    They changed wolves into dogs, rivers into lakes, and us into 3.<input
                                        :disabled="testData.isComplete" type="text"
                                        class="input-bottom-border input-bc-t" style="width: 60px"
                                        v-model="testData.in.one" @change="setTestData" />
                                    <span>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0)
                                        " t="1716986419862" class="icon" viewBox="0 0 1820 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0) == false
                                        " t="1716987085767" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>They started using the 4.<input :disabled="testData.isComplete" type="text"
                                        class="input-bottom-border input-bc-t" style="width: 60px"
                                        v-model="testData.in.one" @change="setTestData" />
                                    <span>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0)
                                        " t="1716986419862" class="icon" viewBox="0 0 1820 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0) == false
                                        " t="1716987085767" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>like it was put there just for them, Actlike they've got an extra one.
                                </td>
 
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    Why do they do that?
                                </td>
                                <td>
                                    I don't know, If they don't figure put that they're part of 5.<input
                                        :disabled="testData.isComplete" type="text"
                                        class="input-bottom-border input-bc-t" style="width: 60px"
                                        v-model="testData.in.one" @change="setTestData" />
                                    <span>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0)
                                        " t="1716986419862" class="icon" viewBox="0 0 1820 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="
                                            testData.isComplete &&
                                            isTextRight(testData.in.answer, testData.in.one, 0) == false
                                        " t="1716987085767" class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                    rather than just using it, they probably won't be around to see you grow up.
                                </td>
                            </tr>
                        </table>
                        <p><b>Ⅱ.The four people below are all concerned with the increasingly serious environmental
                                issues.Listen to the recording and decide which website they use to search for the
                                information they need.</b></p>
                        <p class="center"><img class="img-b" alt="" src="../../assets/images/0101-3.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-tr-bc">
                                <td class="tl-lf ">
                                    <p class="table-p">
                                        <b>a. oneworld.org</b>
                                    </p>
                                    <p class="table-p">
                                        There’s lots of environmental information here, whether you’re just starting to
                                        explore
                                        the subject, or wanting to find out about the latest research.
                                    </p>
                                </td>
                                <td style="width: 50%;">
                                    <p class="table-p">
                                        <b>b. eco.org</b>
                                    </p>
                                    <p class="table-p">
                                        There’s lots of environmental information here, whether you’re just starting to
                                        explore
                                        the subject, or wanting to find out about the latest research.
                                    </p>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn">
                                    <p class="table-p">
                                        <b>c. planetmatters.org</b>
                                    </p>
                                    <p class="table-p">
                                        There’s a recycling section in this website — find different uses for things
                                        that you
                                        might otherwise put in the bin.
                                    </p>
                                </td>
                                <td style="width: 50%;">
                                    <p class="table-p">
                                        <b>d. ourworld.org</b>
                                    </p>
                                    <p class="table-p">
                                        If you prefer working things out for yourself, you can find experiments to do in
                                        this
                                        website, like making your own power using sunlight!
                                    </p>
                                </td>
                            </tr>
                        </table>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">91</span>
                </div>
            </div>
        </div>
        <!-- 92 -->
        <div class="page-box" page="98">
            <div v-if="showPageList.indexOf(98) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c045"><span class="bjh3">Practical Writing</span></h3>
                        <p>Work with your partner to discuss the following questions.</p>
                        <p>1.Who is the memo written to?</p>
                        <p>2.What is the purpose of memo writing?</p>
                        <p><b>Ⅰ.Read the following tips for writing a memo and find out how you can improve your
                                memo.</b></p>
                        <p>A memo,also known as memorandum,is a short message used for internal communication in a
                            business.It is written to inform the staff about new information like some internal
                            changes,upcoming events,meeting schedules,etc.</p>
                        <p>Sample:</p>
                        <p class="center"><img class="img-0" alt="" src="../../assets/images/0102-1.jpg" /></p>
                        <p>The following are some tips that will help you write a clear,concise,and effective business
                            memo.</p>
                        <div class="fieldset">
                            <p>◆ Keep it brief and to the point.</p>
                            <p>◆ Get the tone right.</p>
                            <p>◆ Maintain a professional style.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">92</span>
                </div>
            </div>
        </div>
        <!-- 93 -->
        <div class="page-box" page="99">
            <div v-if="showPageList.indexOf(99) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅱ.Translate the following sentences into Chinese.</b></p>
                        <p>1.Please note that the company will start the office recycling program on May 15.</p>
                        <p>___________________________________________________</p>
                        <p>2.I’d like to have your report by 10 a.m.tomorrow.</p>
                        <p>___________________________________________________</p>
                        <p>3.This memo will present the decisions made at the meeting.</p>
                        <p>___________________________________________________</p>
                        <p>4.Please contact the HR department for more detailed information.</p>
                        <p>___________________________________________________</p>
                        <p>5.Thank you for your support.</p>
                        <p>___________________________________________________</p>
                        <p><b>Ⅲ.Complete the memo with the sentences given below.</b></p>
                        <div class="fieldset-5">
                            <p>a.In addition,we would like to encourage everyone to participate by turning off the
                                lights at home during the event</p>
                            <p>b.Our company will join together with millions of people across the globe celebrating
                                Earth Hour</p>
                            <p>c.I’d appreciate your cooperation during this time</p>
                            <p>d.Join us in the Earth Hour Movement</p>
                            <p>e.Help us make sure the lights do actually go out at 8.30 p.m.on March 26</p>
                        </div>
                        <div class="fieldset-4">
                            <p class="center"><b>MEMO</b></p>
                            <p>To:All employees</p>
                            <p>From:Ryan Black,CEO</p>
                            <p>Date:March 23,2023</p>
                            <p>Subject:1.___________________</p>
                            <p>2.___________________,the world’s largest grassroots movement for the environment.</p>
                            <p>3.___________________,by switching off all non-essential office lights and unplugging
                                non-essential equipment before leaving the building if you happen to be there on
                                Friday,March 25,the day before Earth Hour.4._________________ .</p>
                            <p>5.______________.Small actions can make a big difference to the planet,our home.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">93</span>
                </div>
            </div>
        </div>
        <!-- 94 -->
        <div class="page-box" page="100">
            <div v-if="showPageList.indexOf(100) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>Ⅳ<b>.Your company recognizes the importance of running its offices sustainably and strives to
                                adopt best green office practices.Help Steven White,CEO,write a memo to explain the new
                                Green Office Policy to all the employees.</b></p>
                        <p>1.The policy will start on December 20.</p>
                        <p>2.Employees should reduce paper use,avoid the use of disposable items,sort the waste into
                            corresponding bins,keep the AC temperature no lower than 26°C in summer and no higher than
                            20°C in winter,and switch off all lights and office equipment before leaving the office.</p>
                        <p>3.For more information,email at OFFICE@company.com.</p>
                        <div class="fieldset-1">
                            <p class="center"><b>Expressions for Reference</b></p>
                            <p>Please note that ...</p>
                            <p>Please notice that ...</p>
                            <p>If you have any questions,please contact me at ...</p>
                            <p>Thank you for ...</p>
                            <p>We would appreciate it if you ...</p>
                        </div>
                        <div class="fieldset-4">
                            <p class="center"><b>MEMO</b></p>
                            <p class="left">To:______________</p>
                            <p class="left">From:___________</p>
                            <p class="left">Date:____________</p>
                            <p class="left">Subject:__________</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">94</span>
                </div>
            </div>
        </div>
        <!-- 95 -->
        <div class="page-box" page="101">
            <div v-if="showPageList.indexOf(101) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit5">MODULE 5</span>
                        <span class="chapter-right-bc-unit5 fw-bl chapter-right-cl-unit5">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="un-h2">
                            <h2 id="b020">Unit Project</h2>
                        </div>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio" @play="audioPlay"></audio>
                        <p>The 26th Conference of the Parties to the United Nations Framework Convention on Climate
                            Change (COP26) kicked off on November 1,2021,in Glasgow,Scotland.CGTN reporter Xu Jinhui
                            also did her part by joining the 7-day No Plastic Challenge.Let’s watch her vlog and see
                            what a single person can do to bring about positive changes to the world we live in.</p>
                        <p>Next,engage yourself in the 7-day No Plastic Challenge just like what Ms.Xu did in her vlog
                            and finish the worksheet below.Here is the instructions on how to conduct the challenge.</p>
                        <p>Step 1:Decide on the form(s) of documenting.It can be vlogs,photos,journals or other creative
                            means.</p>
                        <p>Step 2:Document how you avoid plastic use during the 7-day No Plastic Challenge.</p>
                        <p>Step 3:Post your experience of the 7-day No Plastic Challenge on social media platforms.</p>
                        <p>Step 4:Share your experiences as well as your thoughts on how to reduce personal carbon
                            footprints in the class.</p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn" colspan="8">The 7-day No PlastigChallenge</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="wh-no tl-cn">Form(s) of Documenting</td>
                                <td class="tl-cn" colspan="1"><input type="checkbox" name="ball1"
                                        :disabled="testData.isComplete" value="Language" id="1"
                                        v-model="testData.check.value" @change="setTestData" />vlogs</td>
                                <td class="tl-cn" colspan="2"><input type="checkbox" name="ball1"
                                        :disabled="testData.isComplete" value="Language" id="1"
                                        v-model="testData.check.value" @change="setTestData" />photos</td>
                                <td class="tl-cn" colspan="2"><input type="checkbox" name="ball1"
                                        :disabled="testData.isComplete" value="Language" id="1"
                                        v-model="testData.check.value" @change="setTestData" />journals</td>
                                <td class="tl-cn" colspan="2"><input type="checkbox" name="ball1"
                                        :disabled="testData.isComplete" value="Language" id="1"
                                        v-model="testData.check.value" @change="setTestData" />other<input
                                        :disabled="testData.isComplete" type="text"
                                        class="input-bottom-border input-bc-t" style="width: 60px"
                                        v-model="testData.in.one" @change="setTestData" />
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    Social Media Platform(s)
                                </td>
                                <td colspan="7">
                                    <textarea v-model="questionData.table.twentyFive"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td rowspan="2" class="tl-cn">
                                    Challenges
                                </td>
                                <td>
                                    DAY 1
                                </td>
                                <td>
                                    DAY 2
                                </td>
                                <td>
                                    DAY 3
                                </td>
                                <td>
                                    DAY 4
                                </td>
                                <td>
                                    DAY 5
                                </td>
                                <td>
                                    DAY 6
                                </td>
                                <td>
                                    DAY 7
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.twentySix"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentySeven"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyEight"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyNine"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirty"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyOne"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyTwo"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn">
                                    Reflections
                                </td>
                                <td colspan="7">
                                    <textarea v-model="questionData.table.thirtyThree"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        <div class="fieldset-4">
                            <p class="center"><b>Useful Expressions</b></p>
                            <p>In response to the national call for plastic reduction, I decide to engage in the 7-day
                                No Plastic Challenge.</p>
                            <p>I will document the challenge in the form of …</p>
                        </div>
                        <div class="resource-primary-border" style="padding: 8px; margin: 5% 0%">
                            <div class="banshi openImgBox">
                                <div class="swiper-container swiper_ppt">
                                    <div class="swiper-wrapper">
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_01.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_02.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_03.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_04.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_05.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_06.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_07.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_08.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_09.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_10.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_11.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_12.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_13.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_14.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_15.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_16.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_17.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_18.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_19.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_20.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_21.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_22.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_23.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_24.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_25.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_26.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_27.png" />
                                            </div>
                                        </div>
                                    </div>
                                    <div class="swiper-button-next"></div>
                                    <div class="swiper-button-prev"></div>
                                    <div class="pageBox"></div>
                                </div>
                                <!-- 显示当前页和总页数的元素 -->
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">95</span>
                </div>
            </div>
        </div>
        <!-- 96 -->
        <div class="page-box" page="102">
            <div v-if="showPageList.indexOf(102) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit5 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit5">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit5">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="continued">continued</p>
                        <div class="fieldset-4">
                            <p>I will post my experience on …</p>
                            <p>I will use eco-friendly bags for grocery shopping.</p>
                            <p>I will carry a stainless steel container for my lunch.</p>
                            <p>I succeeded in the challenge. On the first day, I …</p>
                            <p>I failed the challenge, because …</p>
                            <p>Everyone can do small things at will to prevent environmental issues, such as …</p>
                            <p>We can make a huge difference if we come together and act now.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">96</span>
                </div>
            </div>
        </div>
    </div>
</template>
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapter-Five",
    components: { matching },
    props: {
        showPageList: {
            type: Array,
        },
    },
    data() {
        return {
            imgThirteen: require("../../assets/images/grammar5-1.png"),
            imgThirteenOne: require("../../assets/images/grammar5-2.png"),
            showAnswerOne: false,
            showAnswerTwo: false,
            showAnswerThree: false,
            showAnswerFour: false,
            showAnswerFive: false,
            showImg: false,
            showImgOne: 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: "",
                    eight: "",
                    nine: "",
                    ten: "",
                    eleven: "",
                    twelve: "",
                    thirteen: "",
                    fourteen: "",
                    fifteen: "",
                    sixteen: "",
                    seventeen: "",
                    eighteen: "",
                    nineteen: "",
                    twenty: "",
                    twentyOne: "",
                    twentyTwo: "",
                    twentyThree: "",
                    twentyFour: "",
                    twentyFive: "",
                    twentySix: "",
                    twentySeven: "",
                    twentyEight: "",
                    twentyNine: "",
                    thirty: "",
                    thirtyOne: "",
                    thirtyTwo: "",
                    thirtyThree: "",
                    thirtyFour: "",
                    thirtyFive: "",
                    thirtySix: "",
                    thirtySeven: "",
                    thirtyEight: "",
                    thirtyNine: "",
                    forty: "",
                    fortyOne: "",
                    fortyTwo: "",
 
                },
            },
            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;
            } else if (type == "showImgOne") {
                this.showImgOne = !this.showImgOne;
            }
            setTimeout(() => { this.$emit("initViewer", "") }, 500)
        },
        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;
}
 
.select-border {
    border: 0;
    border-bottom: 1px solid #767676;
 
    &:focus {
        outline: none;
    }
}
</style>