zhongshujie
2024-07-12 02ab5b03eba1f1f628ff6b5e9e6e19539928a168
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
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
<template>
  <div class="chapter" num="3">
    <!-- 19 -->
    <div class="page-box" page="25">
      <div class="bodystyle" v-if="showPageList.indexOf(25) > -1">
        <h1 id="a005">
          <img class="img-0" alt="" src="../../assets/images/dy2.jpg" />
        </h1>
        <p class="img"></p>
        <p><b>This unit will help you to:</b></p>
        <p>➢ Learn words and expressions about different cultures</p>
        <p>
          ➢ Review the usage of “it” as formal subject and active and passive
          voice
        </p>
        <p>
          ➢ Be able to express differences and similarities among cultural
          groups
        </p>
        <p>➢ Be able to make an event schedule effectively and properly</p>
        <p>➢ Develop cross-cultural understanding in the workplace</p>
        <p class="center">
          <img class="img-0" alt="" src="../../assets/images/0029-1.jpg" />
        </p>
        <p class="img"></p>
      </div>
    </div>
    <!-- 20 -->
    <div class="page-box" page="26">
      <div v-if="showPageList.indexOf(26) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <h2 id="b005">
              <img class="img-0" alt="" src="../../assets/images/dy2-le1.jpg" />
            </h2>
            <h3 id="c010"><span class="bjh3">Warm-up</span></h3>
            <p>
              <b>Ⅰ.Draw a line to connect each country with its cultural
                features and facts.</b>
            </p>
            <p class="center">
              <img class="img-a" alt="" src="../../assets/images/0030-1.jpg" />
            </p>
            <div class="fl bor-g">
              <div class="w45">
                <div>
                  France
                  <span>
                    123
          <!-- <select :disabled="testOneData.isComplete" v-model="testOneData.dropdownChoiceData.one.value"
                  style="width: 8%">
                  <option v-for="(item, index) in testOneData.dropdownChoiceData.dropDownListChoice" :key="index"
                    :value="item">
                    {{ item }}
                  </option>
                </select> -->
                  </span>
                  <span>
                    456
                    <!-- <select :disabled="testOneData.isComplete" v-model="testOneData.dropdownChoiceData.one.value"
                  style="width: 8%">
                  <option v-for="(item, index) in testOneData.dropdownChoiceData.dropDownListChoice" :key="index"
                    :value="item">
                    {{ item }}
                  </option>
                </select> -->
                  </span>
                </div>
                <div>
                  China
                </div>
              </div>
              <div class="w45">
                <div>
                  ltaly
                </div>
                <div>
                  Brazil
                </div>
              </div>
            </div>
            <p>
              <b>Ⅱ.What are the customs and cultures of other countries you
                know? Work with your partner to complete the table below.</b>
            </p>
            <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
              <tr class="table-th-bc">
                <td class="tl-cn">Countries</td>
                <td class="tl-cn">Customs and Cultures</td>
              </tr>
 
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.one" class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.two"
                    class="w100 table-tr-bc b0 table-textarea textarea-box-right" @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.three" class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.four"
                    class="w100 table-tr-bc b0 table-textarea textarea-box-right" @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.five" class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.six"
                    class="w100 table-tr-bc b0 table-textarea textarea-box-right" @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 textarea-box-right" @change="setBookQuestion"></textarea>
                </td>
              </tr>
            </table>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">20</span>
        </div>
      </div>
    </div>
    <!-- 21 -->
    <div class="page-box" page="27">
      <div v-if="showPageList.indexOf(27) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <h3 id="c011" class="fl al-cn">
              <span class="bjh3">Listening</span>
              <!--controlslist="noplaybackrate nodownload"后面的音频框加入这个-->
              <audio :src="resource.listenOne" controls controlslist="noplaybackrate nodownload" class="audio"></audio>
            </h3>
            <p>
              <b>Four people are sharing their experiences of working with their
                colleagues.Listen to the recording and mark the true statements
                according to the speaker.</b>
            </p>
            <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
              <!-- 第一行 -->
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc" rowspan="2">Speaker 1</td>
                <td class="bor-b-n">
                  <input type="radio" name="ball"
                    value="A. I can understand my foreign colleagues because they are straightforward." id="1"
                    v-model="testData.check" /> A. I can
                  understand my foreign colleagues because they are straightforward.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="bor-t-n">
                  <input type="radio" name="ball"
                    value="B. My foreign colleagues just nod and agree with me when we have a discussion." id="1"
                    v-model="testData.check" /> B. My foreign
                  colleagues just nod and agree with me when we have a discussion.
                </td>
              </tr>
              <!-- 第二行 -->
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc" rowspan="2">Speaker 2</td>
                <td class="bor-b-n">
                  <input type="radio" name="ballOne"
                    value="A. My foreign boss closely oversees our work and criticizes us for our mistakes." id="1"
                    v-model="testData.check" /> A. My foreign
                  boss closely oversees our work and criticizes us for our mistakes.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="bor-t-n">
                  <input type="radio" name="ballOne"
                    value="B. My foreign boss is very hands-off and gives us a lot freedom to do things." id="1"
                    v-model="testData.check" /> B. My foreign
                  boss is very hands-off and gives us a lot freedom to do things.
                </td>
              </tr>
              <!-- 第三行 -->
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc" rowspan="2">Speaker 3</td>
                <td class="bor-b-n">
                  <input type="radio" name="ballTwo"
                    value="A. My Chinese colleagues always stay late in the ofice or bring work home." id="1"
                    v-model="testData.check" /> A. My Chinese
                  colleagues always stay late in the ofice or bring work home.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="bor-t-n">
                  <input type="radio" name="ballTwo"
                    value="B. My Chinese colleagues manage to get their work done during working hours." id="1"
                    v-model="testData.check" /> B. My Chinese
                  colleagues manage to get their work done during working hours.
                </td>
              </tr>
              <!-- 第四行 -->
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc" rowspan="2">Speaker 4</td>
                <td class="bor-b-n">
                  <input type="radio" name="ballThree"
                    value="A. My Chinese colleagues deal with issues more objectively" id="1"
                    v-model="testData.check" /> A. My Chinese
                  colleagues deal with issues more objectively
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="bor-t-n">
                  <input type="radio" name="ballThree"
                    value="B. My Chinese colleagues are likely to take things personally" id="1"
                    v-model="testData.check" /> B. My Chinese
                  colleagues are likely to take things personally
                </td>
              </tr>
            </table>
            <h3 id="c012"><span class="bjh3">Reading</span></h3>
            <p>
              1.Culture shock is a normal part of the life when moving somewhere
              new,such as travelling abroad,or studying abroad.So,what’s the
              definition of culture shock?
              <span class="btn-box" @click="showAnswerOne = !showAnswerOne">
                <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                    d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                    transform="translate(-3327.144 15329)" />
                </svg>
              </span>
            </p>
            <textarea v-model="questionData.reading.one" placeholder="请输入内容" rows="6"
              style="margin-left: 40px; width: 92%" class="fz-16 fm-son" @change="setBookQuestion"></textarea>
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerOne">
              答案:Culture shock is a normal process of adapting to a new culture" ltis a time when a person becomes aware
              of the differences orconflicts in values and customs between their home culture andthe new culture they
              are in,Common feelings may be anxiety,confusion, homesickness or anger.
            </p>
            <p>
              2.Can you offer some examples of culture shock in regard to
              different languages,different table manners or different food
              customs?
              <span class="btn-box" @click="showAnswerTwo = !showAnswerTwo">
                <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                    d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                    transform="translate(-3327.144 15329)" />
                </svg>
              </span>
            </p>
            <textarea v-model="questionData.reading.two" placeholder="请输入内容" rows="6"
              style="margin-left: 40px; width: 92%" class="fz-16 fm-son" @change="setBookQuestion"></textarea>
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerTwo">
              答案:(1)In Japanese culture, using the wrong levelDolitene5saddress1ng5omeone can beenconsidered rude or
              disrespectful
              (2)German tends to be a more direct language, while English speakers often use indirectlanguage for
              opinions. For instance, in German, one might say "Close the window", whereas inEnglish, it could be "could
              you please close the window?" The directness in German mightcome across as rude to some English speakers.
              (3)Mandarin Chinese has four different tones, and the meaning of a word can change entirelydepending on
              the tone used, Mispronouncing tones can lead to misunderstanding
            </p>
            <p class="center"><b>Challenges of Working Across Cultures</b></p>
            <p class="center">
              <audio :src="resource.readingOne" controls class="audio" @play="audioPlay"></audio>
            </p>
 
            <p>
              It is not a secret that a company’s success is heavily based on
              its people.An employee is defined by his/her talents,knowledge and
              abilities.This is the “visible” side of an employee.The
              “hidden”side,which is also important,is the cultural identity.The
              culture of an employee impacts his/her views on life,work,business
              relationships and how they handle challenges.There are some issues
              that may arise when working in a cross-cultural environment.
            </p>
            <p>
              When your colleagues speak different languages,it is easy to
              misunderstand each other.When I applied for the position at an
              international trade company,during the interview,my
              interviewer,who is from Egypt,was saying “quote”,but to me,it
              sounded like “court”.It took me a while to
            </p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">21</span>
        </div>
      </div>
    </div>
    <!-- 22 -->
    <div class="page-box" page="28">
      <div v-if="showPageList.indexOf(28) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>
              understand what he meant,and I still remember how confused I felt
              when I had to reply without knowing what he was asking about.You
              may feel uncomfortable to ask your conversation partner to repeat
              the sentence.However,it will save you from making mistakes and
              show your partner that you are really trying your best to
              understand him.
            </p>
            <p>
              Things that are normal or routine in one culture can be totally
              unacceptable in another culture.In my home country of Latvia,it is
              a normal practice not to expect replies by email after normal
              working hours and I will only disturb a colleague if the matter is
              very serious.However,in other countries,like Russia and Egypt,the
              tendency is to work 24/7 in response to the industry needs.Get
              familiar with the behavior patterns accepted in your colleagues’
              countries,and learn about their traditions,you will finally find
              the best way to respectfully communicate.
            </p>
            <p>
              Language and cultural barriers can cause frustration.Don’t let
              emotions take over.Think about the objective you want to
              reach,make an effort to understand the other person and use the
              most appropriate means for it.For example,email does not convey
              the speaker’s emotions and limits the possibility to ask
              questions.Calling someone on the phone and hearing his/her tone
              can make the communication more smooth,and you will be surprised
              by the level of understanding you will receive in return.
            </p>
            <p>
              Working with colleagues from other countries or cultures can at
              times be challenging,but it is so rewarding when you can learn
              from each other and open your eyes to other ways of life.
            </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 class="audio" @play="audioPlay"></audio>
            <p>define /dɪˈfaɪn/ <i>v.</i> 给……下定义</p>
            <div class="bkbj">
              <p><i>to state precisely the meaning of sth.</i></p>
            </div>
            <p>visible /ˈvɪzəbl/ <i>adj.</i> 可见的;明显的</p>
            <div class="bkbj">
              <p><i>that can be seen or obvious enough to be noticed</i></p>
            </div>
            <p>identity /aɪˈdentəti/ <i>n.</i> 特性;身份</p>
            <div class="bkbj">
              <p>
                <i>the characteristics,feelings or beliefs that make people
                  different from others</i>
              </p>
            </div>
            <p>handle /ˈhændl/ <i>v.</i> 处理;应对</p>
            <div class="bkbj">
              <p>
                <i>to deal with a situation,a person,an area of work or a strong
                  emotion</i>
              </p>
            </div>
            <p>arise /əˈraɪz/ <i>v.</i> 出现;产生</p>
            <div class="bkbj">
              <p>
                <i>(esp.of a problem or a difficult situation) to happen</i>
              </p>
            </div>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">22</span>
        </div>
      </div>
    </div>
    <!-- 23 -->
    <div class="page-box" page="29">
      <div v-if="showPageList.indexOf(29) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>quote /kwəʊt/ <i>v.</i> 报(价)</p>
            <div class="bkbj">
              <p><i>to name (an amount) as the price of sth.</i></p>
            </div>
            <p>confused /kənˈfjuːzd/ <i>adj.</i> 糊涂的</p>
            <div class="bkbj">
              <p><i>unable to think clearly</i></p>
            </div>
            <p>routine /ruːˈtiːn/ <i>adj.</i> 平常的</p>
            <div class="bkbj">
              <p><i>usual</i></p>
            </div>
            <p>unacceptable /ˌʌnəkˈseptəbl/ <i>adj.</i> 不能接受的</p>
            <div class="bkbj">
              <p><i>so bad that you think it should not be allowed</i></p>
            </div>
            <p>disturb /dɪˈstɜːb/ <i>v.</i> 打扰;妨碍</p>
            <div class="bkbj">
              <p>
                <i>to interrupt sb.when they are trying to work,sleep,etc.</i>
              </p>
            </div>
            <p>tendency/ˈtendənsi/ <i>n.</i> (人或物呈现的) 倾向;趋势</p>
            <div class="bkbj">
              <p><i>the way a person or thing tends to be or behave</i></p>
            </div>
            <p>tradition /trəˈdɪʃn/ <i>n.</i> 惯例;传统</p>
            <div class="bkbj">
              <p>
                <i>a belief,custom or way of doing sth.that has existed for a
                  long time</i>
              </p>
            </div>
            <p>barrier /ˈbærɪə(r) / <i>n.</i> 障碍;壁垒</p>
            <div class="bkbj">
              <p>
                <i>a problem,rule or situation that prevents sb.from doing
                  sth.,or that makes sth.impossible; hindrance</i>
              </p>
            </div>
            <p>frustration /frʌˈstreɪʃn/ <i>n.</i> (受) 挫;沮丧</p>
            <div class="bkbj">
              <p><i>the feeling of being frustrated</i></p>
            </div>
            <p>appropriate /əˈprəʊprɪət/ <i>adj.</i> 适当的;合适的</p>
            <div class="bkbj">
              <p><i>suitable,right and proper</i></p>
            </div>
            <p>tone /təʊn/ <i>n.</i> 语气;腔调</p>
            <div class="bkbj">
              <p>
                <i>the quality of sb.’s voice,esp.expressing a particular
                  emotion</i>
              </p>
            </div>
            <p>rewarding /rɪˈwɔːdɪŋ/ <i>adj.</i> 值得做的;令人满意的</p>
            <div class="bkbj">
              <p><i>worth doing; satisfying</i></p>
            </div>
            <div style="display: flex">
              <div class="left" style="width: 48%">
                <p>apply for 申请</p>
                <p>get familiar with 熟悉</p>
                <p>make an effort 努力</p>
              </div>
              <div class="right" style="width: 48%">
                <p>at times 有时;偶尔</p>
                <p>in response to 响应;反应</p>
                <p>take over 控制;管理</p>
              </div>
            </div>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">23</span>
        </div>
      </div>
    </div>
    <!-- 24 -->
    <div class="page-box" page="30">
      <div v-if="showPageList.indexOf(30) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <div class="bj-note">
              <p><b>Notes:</b></p>
              <p>
                Latvia:拉脱维亚共和国,简称拉脱维亚。位于东欧平原西部、波罗的海东岸,同爱沙尼亚、俄罗斯、白俄罗斯和立陶宛接壤。国土面积64
                589平方千米。
              </p>
            </div>
            <p><b>Ⅰ.Reading comprehension.</b></p>
            <p>A.Read the passage and complete the following mind map.</p>
            <p class="center">
              <img class="img-b" alt="" src="../../assets/images/0034-1.jpg" />
            </p>
            <p>
              B.Decide whether the following statements are true (T) or false
              (F).
            </p>
            <p>
              (<input :disabled="testData.isComplete" type="text" class="input-no-border" style="width: 20px"
                v-model="testData.in.one" @change="setTestData" />) 1.An employee is usually defined by his/her talents
              and
              abilities.
            </p>
            <p>
              (<input :disabled="testData.isComplete" type="text" class="input-no-border" style="width: 20px"
                v-model="testData.in.one" @change="setTestData" />) 2.During the interview,I didn’t have difficulty in
              understanding my interviewer.
            </p>
            <p>
              (<input :disabled="testData.isComplete" type="text" class="input-no-border" style="width: 20px"
                v-model="testData.in.one" @change="setTestData" />) 3.In Latvia,it is normal to expect replies by email
              after
              normal working hours.
            </p>
            <p>
              (<input :disabled="testData.isComplete" type="text" class="input-no-border" style="width: 20px"
                v-model="testData.in.one" @change="setTestData" />) 4.Learning about your colleagues’ traditions can
              help you
              move forward.
            </p>
            <p>
              (<input :disabled="testData.isComplete" type="text" class="input-no-border" style="width: 20px"
                v-model="testData.in.one" @change="setTestData" />) 5.Email can make the communication more smooth
              because it
              conveys the emotions.
            </p>
            <p>
              (<input :disabled="testData.isComplete" type="text" class="input-no-border" style="width: 20px"
                v-model="testData.in.one" @change="setTestData" />) 6.We can learn a lot from each other when working in
              a
              cross-cultural environment.
            </p>
            <!-- 答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 93%"
              v-if="showLessonOneQuestionAnswer">
              答案: 1.F &nbsp; 2.F &nbsp; 3.F &nbsp; 4.T &nbsp; 5.F &nbsp; 6.T
            </p>
            <p><b>Ⅱ.Language focus.</b></p>
            <p>
              A.Fill in the blanks with the proper form of the words given
              below.
            </p>
            <div class="fieldset">
              <p>reward disturb tradition accept colleague arise</p>
            </div>
            <p>
              1.Working with photographers is one of the most <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /> parts
              of
              my job.
            </p>
            <p>2.All families must have <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" />that they regularly follow.</p>
            <p>3.Being late is <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" />in any working environment.</p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">24</span>
        </div>
      </div>
    </div>
    <!-- 25 -->
    <div class="page-box" page="31">
      <div v-if="showPageList.indexOf(31) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>
              4.Sarah’s
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 70px"
                v-model="testData.in.one" @change="setTestData" />
              Li Lin made her feel welcome on her first day
              at work.
            </p>
            <p>
              5.Problems will <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> from communication between people
              from
              different cultures.
            </p>
            <p>
              6.I’m sorry to <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> you,but can I talk to you for a
              moment?
            </p>
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 93%"
              v-if="showLessonOneQuestionAnswer">
              答案: 1.rewarding &nbsp; 2.traditions &nbsp; 3.unacceptable &nbsp; 4.colleague &nbsp; 5.arise &nbsp;
              6.disturb
            </p>
            <p>
              B.Underline the following expressions in the passage and make
              sentences with them.
            </p>
            <p>1.apply for <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 370px" v-model="testData.in.one" @change="setTestData" /> </p>
            <p>2.in response to <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 370px" v-model="testData.in.one" @change="setTestData" /> </p>
            <p>3.get familiar with<input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 370px" v-model="testData.in.one" @change="setTestData" /></p>
            <p>4.take over<input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 370px" v-model="testData.in.one" @change="setTestData" /></p>
            <p>5.make an effort<input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 370px" v-model="testData.in.one" @change="setTestData" /></p>
            <!-- 例句 -->
            <div class="event-header-text-bc pd-5" style="margin-left: 40px; width: 93%"
              v-if="showLessonOneQuestionAnswer">
              <span>例句:</span>
              <p>1、I would like to apply for the position of sales assistant in your company.</p>
              <p>2、The product was developed in response to customer demand.</p>
              <p>3、It is important to get familiar with the company’s missions and values.</p>
              <p>4、As employees, we shouldn’t let negative thoughts take over.</p>
              <p>5、The company is making an effort to improve its services for local markets.</p>
            </div>
            <p>C.Translate the following sentences into Chinese.</p>
            <p>
              1.When working in a cross-cultural setting,there can be some
              language barriers among employees.
            </p>
            <p><input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" /></p>
            <p>
              2.You could go for a walk or jog to manage your frustration at
              work.
            </p>
            <p><input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <p>
              3.They gave us some advice on how to correctly handle cultural
              differences in the workplace.
            </p>
            <p><input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <p>
              4.Wearing appropriate clothes in the office will make you feel
              comfortable and confident.
            </p>
            <p><input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <!--答案 -->
            <div class="event-header-text-bc pd-5" style="margin-left: 40px; width: 93%"
              v-if="showLessonOneQuestionAnswer">
              <span> 答案:</span>
              <p>1、在跨文化环境中工作,员工之间可能会存在语言障碍。</p>
              <p>2、你可以通过散步或慢跑来调节工作中的沮丧情绪。</p>
              <p>3、他们就如何在工作中正确处理文化差异给了我们一些建议。</p>
              <p>4、在办公室穿着合适的衣服会让你感到舒适和自信。</p>
            </div>
            <p><b>Ⅲ.Grammar focus:“it” as formal subject.</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.Read the example and underline the real subject that “it”
              represents in the following sentences.
            </p>
            <p><b>Example:</b></p>
            <p class="center">
              <img class="img-b" alt="" src="../../assets/images/0035-1.jpg" />
            </p>
            <p>
              1.It is not a secret that a company’s success is heavily based on
              its people.
            </p>
            <p>
              2.It is obvious to all that we should be aware of our body
              language.
            </p>
            <p>3.It can be very different to have a greeting or handshake.</p>
            <p>4.It’s hard to say how long your team meeting should last.</p>
            <p>
              5.It is abnormal to expect replies by email after normal working
              hours.
            </p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">25</span>
        </div>
      </div>
    </div>
    <!-- 26 -->
    <div class="page-box" page="32">
      <div v-if="showPageList.indexOf(32) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>
              B.Read the example and rewrite the following sentences by using
              formal subject “it”.
            </p>
            <p><b>Example:</b></p>
            <div class="fieldset-2">
              <p>
                To misunderstand each other is easy when you speak different
                languages.
              </p>
              <p>
                —It is easy to misunderstand each other when you speak different
                languages.
              </p>
            </div>
            <p>1.To share new ideas with others makes us feel good.</p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
            <p>2.To get along well with colleagues is really important.</p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
            <p>
              3.To have an open mind towards a new culture is necessary in the
              workplace.
            </p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
            <p>
              4.To think twice before acting is always necessary for everyone.
            </p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
            <p>5.You are very kind to help me with my sales report.</p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 470px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
            <!--答案 -->
            <div class="event-header-text-bc pd-5" style="margin-left: 40px; width: 93%"
              v-if="showLessonOneQuestionAnswer">
              <span> 答案:</span>
              <p>1、It makes us feel good to share new ideas with others.</p>
              <p>2、It is really important to get along well with colleagues.</p>
              <p>3、It is necessary to have an open mind towards a new culture in the workplace.</p>
              <p>4、It is always necessary for everyone to think twice before acting.</p>
              <p>5、It’s very kind of you to help me with my sales report.</p>
            </div>
            <!-- 提交按钮 -->
            <div class="w100 fl">
              <ul class="fl ju-ar w100">
                <li>
                  <button class="btn-border btn-w" @click="saveData">
                    提交
                  </button>
                </li>
                <li>
                  <button @click="changeTestData" class="btn-border btn-w">
                    重做
                  </button>
                </li>
                <li>
                  <button @click="showLessonOneQuestionAnswer = !showLessonOneQuestionAnswer" class="parimary-btn">
                    查看答案
                  </button>
                </li>
              </ul>
            </div>
            <h3 id="c013"><span class="bjh3">Mini-project</span></h3>
            <p>
              Most foreigners in China have a hard time keeping up with Chinese
              traditions and culture.In order to get along well with Chinese
              counterparts,it is important for foreign employees to learn
              something about Chinese etiquette.Work in pairs and list the “dos”
              and “don’ts” in Chinese culture.
            </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">Items</td>
                <td class="wh-no tl-cn">Dos</td>
                <td class="tl-cn">Don’ts</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="wh-no tl-cn">Greeting</td>
                <td class="wh-no tl-cn">
                  Start by addressing the senior frst.
                </td>
                <td>
                  Don't try to reach for a hug when you meetsomeone for the
                  first time.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Eye Contact</td>
                <td>
                  <textarea v-model="questionData.table.nine" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.ten" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="wh-no tl-cn">Gift Exchange</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>
              <tr class="table-tr-bc">
                <td class="wh-no tl-cn">Table Manners</td>
                <td>
                  <textarea v-model="questionData.table.thirteen" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fourteen" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
            </table>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">26</span>
        </div>
      </div>
    </div>
    <!-- 27 -->
    <div class="page-box" page="33">
      <div v-if="showPageList.indexOf(34) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p class="continued">continued</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">Items</td>
                <td class="wh-no tl-cn">Dos</td>
                <td class="tl-cn">Don’ts</td>
              </tr>
              <tr class="table-tr-bc" style="width: 40%">
                <td class="wh-no tl-cn">Gift Exchange</td>
                <td class="tl-w-45">
                  <textarea v-model="questionData.table.fifteen" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td class="tl-w-45">
                  <textarea v-model="questionData.table.sixteen" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="wh-no tl-cn">Table Manners</td>
                <td class="tl-w-45">
                  <textarea v-model="questionData.table.seventeen" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td class="tl-w-45">
                  <textarea v-model="questionData.table.eighteen" 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, 'direct')">direct</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'formal')">formal</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'respect')">respect</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'privacy')">privacy</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'hand-shaking')">hand-shaking</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'touch')">touch</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'comfortable')">comfortable</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'toast')">toast</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'chopsticks')">chopsticks</span>
                <span class="word-bc mr-20 dl-span" @click="saveWord($event, 'seating arrangement')">seating
                  arrangement</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>
            <h2 id="b006"><img class="img-0" alt="" src="../../assets/images/dy2-le2.jpg" /></h2>
            <h3 id="c014" class="fl al-cn">
              <span class="bjh3">Warm-up</span>
              <!--controlslist="noplaybackrate nodownload"后面的音频框加入这个-->
              <audio :src="resource.warmOne" controls controlslist="noplaybackrate nodownload" class="audio"></audio>
            </h3>
            <p><b>Appreciate the theme song of the Beijing</b>2022<b> Winter Olympics<i> Together for a Shared
                  Future</i> and fill in the blanks.</b></p>
            <p class="center"><b><i>Together for a Shared Future</i></b></p>
            <p class="center">There’s a twinkle in your eye</p>
            <p class="center">Reflects the snow that gently covers the tiles</p>
            <p class="center">Fly to the 1.<input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /></p>
            <p class="center">See the world’s new coat of crystal white</p>
            <p class="center">This feeling you just can’t 2.<input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /></p>
            <p class="center">Feels as snow as pure as that azure ice</p>
            <p class="center">Fly to the sky</p>
            <p class="center">Ride the 3.<input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" />watch your fears roll by</p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">27</span>
        </div>
      </div>
    </div>
    <!-- 28 -->
    <div class="page-box" page="34">
      <div v-if="showPageList.indexOf(34) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p class="center">When everyone needs 4.<input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /></p>
            <p class="center">Let’s go hand in hand and rise above</p>
            <p class="center">Together for a shared future</p>
            <p class="center">You and I</p>
            <p class="center">We can 5.<input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" />the sky</p>
            <p class="center">We all know how to love</p>
            <p class="center">Open up your 6.<input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" />and
              that’s enough</p>
            <p class="center">Together for a shared future</p>
            <p class="center">You and I</p>
            <p class="center">Together</p>
            <p class="center">We can touch the sky</p>
            <!--答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 93%" v-if="showQuestionAnswer">
              答案:(1)sky &nbsp; (2)deny &nbsp; (3)rainbow &nbsp; (4)love &nbsp; (5)touch &nbsp; (6)heart
            </p>
            <h3 id="c015"><span class="bjh3">Reading</span></h3>
            <p>1.Have you watched the Beijing 2022 Winter Olympics? What did you think of the opening ceremony?</p>
            <p>2.What impressed you most during the Beijing 2022 Winter Olympics?</p>
            <p class="center"><b>From 2008 to 2022:The Road of My Country and My Growth</b></p>
            <p class="center"><audio :src="resource.readingThree" controls style="margin-left: 10px" class="audio"
                @play="audioPlay"></audio></p>
            <p>For an
              <span class="word-bc" @click="saveWord($event, 'individual')">individual</span>
              or a country,a period of 14 years is long enough to become calm,confident and
              <span class="word-bc" @click="saveWord($event, 'mature')">mature</span>
              .On
              the road from 2008 to 2022,I learned to grow up with my country and the Olympics.
            </p>
            <p>In 2008,hosting the Olympics was new to China and I was then new in covering the Olympics as a
              <span class="word-bc" @click="saveWord($event, 'journalist')">journalist</span>
              .Seven years later when we won the right to host the Winter Games,I did not think that Beijing
              would be the world’s first city to host both the Summer and Winter Olympics.Now it was real and I was
              simply enjoying the moment.
            </p>
            <p>Turning up as simple but
              <span class="word-bc" @click="saveWord($event, 'impressive')">impressive</span>
              ,the opening
              <span class="word-bc" @click="saveWord($event, 'ceremony')">ceremony</span>
              lasted for about two hours with less performing
              artists but more
              <span class="word-bc" @click="saveWord($event, 'audio-visual')">audio-visual</span>
              technologies to tell the story of “togetherness” rather than introducing
              “myself” 14 years ago at the same sports field.The
              <span class="word-bc" @click="saveWord($event, 'snowflake')">snowflake</span>
              -shaped Olympic
              <span class="word-bc" @click="saveWord($event, 'cauldron')">cauldron</span>
              ,formed by the smaller
              snowflakes with names of the
              <span class="word-bc" @click="saveWord($event, 'participating')">participating</span>
              countries and regions on them,was lit by two young Chinese
              athletes.
            </p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">28</span>
        </div>
      </div>
    </div>
    <!-- 29 -->
    <div class="page-box" page="35">
      <div v-if="showPageList.indexOf(35) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>As the chief director of the opening ceremony said,2022 would not repeat 2008 though the latter was
              “
              <span class="word-bc" @click="saveWord($event, 'exceptional')">exceptional</span>
              ”,not only because of the
              <span class="word-bc" @click="saveWord($event, 'pandemic')">pandemic</span>
              situation but also a different China now —more confident in
              its culture.
            </p>
            <p>In the summer 14 years ago,I was like a
              <span class="word-bc" @click="saveWord($event, 'festivalgoer')">festivalgoer</span>
              full of energy rushing for work but also making
              errors.I,like many Chinese fellows,cried after Liu Xiang moved away from the
              <span class="word-bc" @click="saveWord($event, 'track')">track</span>
              due to injury.In the
              winter of 2022,I shared my passion in the Olympics in another way —more serious at work,fitter self
              —thanks to regular exercise and a positive view of sports
              <span class="word-bc" @click="saveWord($event, 'competition')">competition</span>
              .
            </p>
            <p>It was like getting over my schoolgirl crush and focusing on learning to love.</p>
            <p>I could not agree more with what a gold medal winner said during an interview.“In 2008 we
              <span class="word-bc" @click="saveWord($event, 'impressed')">impressed</span> the
              world while in 2022 we became people-centered —for athletes and the people.”
            </p>
            <p>I failed to control myself the moments when the Chinese national
              <span class="word-bc" @click="saveWord($event, 'anthem')">anthem</span>
              was played and when images of
              people from all walks of life were displayed during the scene of “Paying Tribute to the People”.It is this
              country and its people that made the Olympics happen.I’m as tearful as usual for now I’m deeply in love.
            </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.readingFour" controls class="audio" @play="audioPlay"></audio>
            <p>individual /ˌɪndɪˈvɪdʒʊəl/ <i>n.</i> 个人;个体</p>
            <div class="bkbj">
              <p><i>a person considered separately rather than as part of a group</i></p>
            </div>
            <p>mature /məˈtʃʊə/ <i>adj.</i> 成熟的;理智的</p>
            <div class="bkbj">
              <p><i>(of a child or young person) behaving in a sensible way,like an adult</i></p>
            </div>
            <p>journalist /ˈdʒɜːnəlɪst/ <i>n.</i> 新闻记者;报纸撰稿人</p>
            <div class="bkbj">
              <p><i>a person whose job is to collect and write news stories for newspapers,magazines,radio,television or
                  online news sites</i></p>
            </div>
            <p>impressive /ɪmˈpresɪv/ <i>adj.</i> (事物或人) 令人赞叹的;令人敬佩的</p>
            <div class="bkbj">
              <p><i>(of things or people) making you feel admiration,because they are very large,good,skillful,etc.</i>
              </p>
            </div>
            <p>ceremony /ˈserəməni/ <i>n.</i> 仪式;典礼</p>
            <div class="bkbj">
              <p><i>a public or religious occasion that includes a series of formal or traditional actions</i></p>
            </div>
            <p>audio-visual <i>adj.</i> 视听的</p>
            <div class="bkbj">
              <p><i>involving both hearing and seeing</i></p>
            </div>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">29</span>
        </div>
      </div>
    </div>
    <!-- 30 -->
    <div class="page-box" page="36">
      <div v-if="showPageList.indexOf(36) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>snowflake /ˈsnəʊfleɪk/ <i>n.</i> 雪花</p>
            <div class="bkbj">
              <p><i>a small soft piece of frozen water that falls from the sky as snow</i></p>
            </div>
            <p>cauldron /ˈkɔːldrən/ <i>n.</i> 大锅</p>
            <div class="bkbj">
              <p><i>a large deep pot for boiling liquids or cooking food over a fire</i></p>
            </div>
            <p>participate /pɑːˈtɪsɪpeɪt/ <i>v.</i> 参加;参与</p>
            <div class="bkbj">
              <p><i>to take part in or become involved in an activity</i></p>
            </div>
            <p>exceptional /ɪkˈsepʃənl/ <i>adj.</i> 非凡的;卓越的</p>
            <div class="bkbj">
              <p><i>unusually good; outstanding</i></p>
            </div>
            <p>pandemic /pænˈdemɪk/ <i>adj</i>./<i>n.</i> 全国或全世界流行的(疾病)</p>
            <div class="bkbj">
              <p><i>a disease that spreads over a whole country or the whole world</i></p>
            </div>
            <p>festivalgoer /ˈfestəvlˌɡəʊə/ <i>n.</i> 参加节日活动者</p>
            <div class="bkbj">
              <p><i>an attender of a festival</i></p>
            </div>
            <p>track /træk/ <i>n.</i> 跑道</p>
            <div class="bkbj">
              <p><i>a piece of ground that is used for races involving running</i></p>
            </div>
            <p>competition /ˌkɒmpəˈtɪʃn/ <i>n.</i> 竞赛;竞争</p>
            <div class="bkbj">
              <p><i>an event in which people compete with each other to find out who is the best at sth.</i></p>
            </div>
            <p>impress /ɪmˈpres/ <i>v.</i> 给予某人深刻印象</p>
            <div class="bkbj">
              <p><i>to have a favourable effect on sb.</i></p>
            </div>
            <p>anthem /ˈænθəm/ <i>n</i>.国歌</p>
            <div class="bkbj">
              <p><i>a song that has a special importance for a country</i></p>
            </div>
            <div style="display: flex">
              <div class="left" style="width: 48%">
                <p>move away 移开</p>
                <p>focus on ...聚焦于……</p>
                <p>pay tribute to ...向……致敬</p>
              </div>
              <div class="right" style="width: 48%">
                <p>due to 由于</p>
                <p>fail to do ...未能做……</p>
              </div>
            </div>
            <p><b>Ⅰ.Reading comprehension.</b></p>
            <p>A.Read the passage and answer the following questions.</p>
            <p>1.What was the theme of the Beijing 2022 Winter Olympics?</p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 400px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
            <p>2.What made the Beijing 2022 Winter Olympics “exceptional”?</p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 400px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">30</span>
        </div>
      </div>
    </div>
    <!-- 31 -->
    <div class="page-box" page="37">
      <div v-if="showPageList.indexOf(37) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>3.How does the author feel about China holding two Olympic Games?</p>
            <p>
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 400px"
                v-model="testData.in.one" @change="setTestData" />.
            </p>
 
            <p>B.Read the author’s opinions of the two Olympics,and put the number of the sentence into the right
              column.</p>
            <p>1.I was full of energy rushing for work but also making errors.</p>
            <p>2.I was more serious at work and my body became fitter.</p>
            <p>3.I cried after Liu Xiang moved away off the track due to injury.</p>
            <p>4.I couldn’t control myself when the Chinese anthem was played.</p>
            <p>5.More audio-visual technologies were used in the opening ceremony.</p>
            <p>6.It focused more on introducing “myself” instead of telling the story of “togetherness”.</p>
            <!-- 表格 -->
            <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
              <tr class="table-th-bc">
                <td class="tl-cn">2008 Olympics</td>
                <td class="tl-cn">2022 Olympics</td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.nineteen"
                    class="w100 table-tr-bc b0 table-textarea textarea-box-center" @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.twenty"
                    class="w100 table-tr-bc b0 table-textarea textarea-box-center" @change="setBookQuestion"></textarea>
                </td>
              </tr>
            </table>
            <p><b>Ⅱ.Language focus.</b></p>
            <p>A.Replace the words or expressions in italics with the exact words in the passage and change the form if
              necessary.</p>
            <p>1.Each <i>person</i> has a particular job within the company.
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 70px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <p>2.Lin Wei showed <i>excellent</i> mechanic skills as an auto technician.
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 70px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <p>3.As a team member,I always <i>take part</i> in the discussions as much as possible.
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 70px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <p>4.She was the winner of the business plan <i>contest</i> in my company.
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 70px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <p>5.He is a good <i>reporter</i> who is curious about new information every time.
              <input :disabled="testData.isComplete" type="text" class="input-bottom-border" style="width: 70px"
                v-model="testData.in.one" @change="setTestData" />
            </p>
            <!-- 答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:(1) individual &nbsp; (2) exceptional &nbsp; (3)participate &nbsp; (4)competition &nbsp; (5) journalist
              &nbsp;
            </p>
            <p>B.Fill in the blanks with the proper form of the expressions given below.</p>
            <div class="bk-wh">
              <p>fail to focus on due to move away pay tribute to</p>
            </div>
            <p>1.The delivery man was praised by us <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /> his
              positive attitude.</p>
            <p>2.The manager basically <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> cost reduction and quality
              improvement.</p>
            <p>3.Li Ming <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> control his emotions when he saw
              the Chinese flag flying at the Olympic Stadium.</p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">31</span>
        </div>
      </div>
    </div>
    <!-- 32 -->
    <div class="page-box" page="38">
      <div v-if="showPageList.indexOf(38) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p>4.The boss <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> what she had done for the
              company.</p>
            <p>5.To be creative,we’d better <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /> from
              traditional ideas at work.</p>
            <!-- 答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:(1) due to &nbsp; (2) focuses on &nbsp; (3)failed to &nbsp; (4)paid tribute to &nbsp; (5) move away
              &nbsp;
            </p>
            <p><b>Ⅲ.Grammar focus:Active and passive voice.</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>Complete the passage using the correct form of the verbs in the brackets.</p>
            <p>Fashion designer Vivienne Tam 1. <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" />
              (name) “Yin Yok” when she was born.She was given her English
              name when she started studying in Hong Kong.Her teacher 2. <input :disabled="testData.isComplete"
                type="text" class="input-bottom-border" style="width: 70px" v-model="testData.in.one"
                @change="setTestData" /> (teach) English at school but she
              spoke Chinese at home.Her parents 3. <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" />
              (tell) her to remember Chinese culture.At the same
              time,Western ideas 4. <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> (introduce) to her since people
              from many cultures were living in Hong
              Kong.This mix of East and West in her life 5. <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" /> (see)
              in her designs even now.Vivienne 6. <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" />
              (move) to New York when she was twenty-five.Her new and interesting designs were liked by important shops
              there,so a lot of orders for her clothing 7 <input :disabled="testData.isComplete" type="text"
                class="input-bottom-border" style="width: 70px" v-model="testData.in.one" @change="setTestData" />
              (place).Today she 8. <input :disabled="testData.isComplete" type="text" class="input-bottom-border"
                style="width: 70px" v-model="testData.in.one" @change="setTestData" /> (sell) East-meets-West
              clothes not only in New York,but also in cities around the world.</p>
            <!-- 答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:(1)was named &nbsp; (2) taught &nbsp; (3)told &nbsp; (4)were introduced &nbsp; (5) is seen &nbsp; (6)
              moved &nbsp; (7) were placed &nbsp; (8) sells
              &nbsp;
            </p>
            <h3 id="c016"><span class="bjh3">Mini-project</span></h3>
            <p>China has a history of over 5,000 years with rich cultural heritage and great achievements that have
              drawn admiration from around the world.There are plenty of good reasons to be proud of her.List the things
              you love about China and explain your reasons.</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">Items</td>
                <td class="tl-cn">Reasons</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Chinses Music</td>
                <td>
                  I am fond of Chinese folk songs. They are inspired by everyday life of Chinese peopleand are passed
                  down from generation to generation.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Chinses Art</td>
                <td>
                  <textarea v-model="questionData.table.twentyOne" class="w100 table-tr-bc b0 table-textarea "
                    @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>
              </tr>
            </table>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">32</span>
        </div>
      </div>
    </div>
    <!-- 33 -->
    <div class="page-box" page="39">
      <div v-if="showPageList.indexOf(39) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p class="mr-rg continued">continued</p>
            <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
              <tr class="table-th-bc">
                <td class="tl-cn">Items</td>
                <td class="tl-cn">Reasons</td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.twentyFour"
                    class="w100 table-tr-bc b0 table-textarea textarea-box" @change="setBookQuestion"></textarea>
                </td>
                <td style="width: 90%;">
                  <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>
                  <textarea v-model="questionData.table.twentyFix"
                    class="w100 table-tr-bc b0 table-textarea textarea-box" @change="setBookQuestion"></textarea>
                </td>
                <td style="width: 90%;">
                  <textarea v-model="questionData.table.twentySeven" class="w100 table-tr-bc b0 table-textarea "
                    @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>
            <h2 id="b007"><img class="img-0" alt="" src="../../assets/images/dy2-le3.jpg" /></h2>
            <h3 id="c017"><span class="bjh3">Listening</span></h3>
            <p><b>Ⅰ.Listen to the introduction to Cultural Diversity Day and fill in the following blanks.</b></p>
            <audio :src="resource.listenTwo" controls class="audio" @play="audioPlay"></audio>
            <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
              <tr class="table-th-bc">
                <td class="tl-cn" colspan="2">Cultural Diversity Day</td>
              </tr>
              <tr class="table-tr-bc">
                <td>When is it?</td>
                <td>1.On<input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" />21st</td>
              </tr>
              <tr class="table-tr-bc">
                <td>Why do we celebrate it?</td>
                <td>Recognizing cultural 2.<input :disabled="testData.isComplete" type="text"
                    class="input-bottom-border input-bc-t" style="width: 70px" v-model="testData.in.one"
                    @change="setTestData" />
                  Understanding the concept of culture.
                  Getting to know each other through the differences in language,3.<input
                    :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t "
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" />race,
                  religion and other elements.
                  Giving people a sense of 4.<input :disabled="testData.isComplete" type="text"
                    class="input-bottom-border input-bc-t" style="width: 70px" v-model="testData.in.one"
                    @change="setTestData" />in their own culture.
                  .Leading to community 5.<input :disabled="testData.isComplete" type="text"
                    class="input-bottom-border input-bc-t" style="width: 70px" v-model="testData.in.one"
                    @change="setTestData" />and personal growth.</td>
              </tr>
            </table>
            <!-- 答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:(1) May &nbsp; (2) differences &nbsp; (3)values &nbsp; (4)pride &nbsp; (5) progress
              &nbsp;
            </p>
            <p><b>Ⅱ.Listen to the conversation and mark the activities when mentioned.</b></p>
            <audio :src="resource.listenThree" controls class="audio" @play="audioPlay"></audio>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />
              Lecture on Ancient Chinese History</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Calligraphy &amp;
              Painting Demonstration</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Traditional Chinese
              Music</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Sichuan Opera</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Chinese Cuisine</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Tea Ceremony</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Tai Chi</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Traditional Chinese
              Medicine</p>
            <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" />Traditional Chinese
              Crafts</p>
            <!-- 答案 -->
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:(1) Lecture on Ancient Chinese History &nbsp; (2)Calligraphy &amp;
              Painting Demonstration &nbsp; (3)Traditional Chinese
              Music &nbsp; (4)Tea Ceremony &nbsp; (5) Tai Chi &nbsp; (6) Traditional Chinese Crafts
              &nbsp;
            </p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">33</span>
        </div>
      </div>
    </div>
    <!-- 34 -->
    <div class="page-box" page="40">
      <div v-if="showPageList.indexOf(40) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <h3 id="c018"><span class="bjh3">Practical Writing</span></h3>
            <p>Work with your partner to discuss the following questions.</p>
            <p>1.Why is a schedule important for everyone attending the event?</p>
            <textarea v-model="questionData.reading.one" placeholder="请输入内容" rows="6"
              style="margin-left: 40px; width: 92%" class="fz-16 fm-son" @change="setBookQuestion"></textarea>
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:(1)Save time and stress &nbsp; (2)Organize all detail &nbsp; (3) Meet your objectives &nbsp; (4)Manage
              time for extra tasks
            </p>
            <p>2.What are the elements of a schedule?</p>
            <textarea v-model="questionData.reading.one" placeholder="请输入内容" rows="6"
              style="margin-left: 40px; width: 92%" class="fz-16 fm-son" @change="setBookQuestion"></textarea>
            <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerThree">
              答案:It includes dates, locations, programming start and end time.
            </p>
 
            <p><b>Ⅰ.Read the following tips for making a schedule of an event and find out how you can improve your
                schedule.</b></p>
            <p>An event schedule is a document that organizers provide for the attendees and participants.It usually
              includes the general direction and landmarks of the event venue,which helps people figure out where and
              when they are going.</p>
            <div class="fieldset">
              <p>◆ Use a table for your schedule to keep your content organized.</p>
              <p>◆ Make it short and specific.</p>
              <p>◆ Be realistic about how much you want to accomplish in one day.</p>
              <p>◆ Add a time allowance to your plans for unexpected events.</p>
              <p class="center"><img class="img-h" alt="" src="../../assets/images/0044-1.jpg" /></p>
            </div>
            <p><b>Ⅱ.Read the schedule of Chinese Culture Week</b>2023<b> and fill in the blanks by translating the
                Chinese in the brackets.</b></p>
            <p class="center"><img class="img-a" alt="" src="../../assets/images/0044-2.jpg" /></p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">34</span>
        </div>
      </div>
    </div>
    <!-- 35 -->
    <div class="page-box" page="41">
      <div v-if="showPageList.indexOf(41) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <p><b>Ⅲ.Malaysian student Andy writes an email to his Chinese friend Wang Hua about his trip to
                China.Complete the schedule of his visit to Chengdu with the information from the email.</b></p>
            <p class="center"><img class="img-0" alt="" src="../../assets/images/0045-2.jpg" /></p>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">35</span>
        </div>
      </div>
    </div>
    <!-- 36 -->
    <div class="page-box" page="42">
      <div v-if="showPageList.indexOf(42) > -1">
        <!-- 头部 -->
        <div class="w100 mb-20" style="padding-right: 20px">
          <div class="event-header-bc-unit2 fl al-end" style="height: 100px; padding-left: 40px">
            <div class="preface-header-box event-header-text-bc-unit2">
              <span class="l-text">新标准通用职场英语</span>
              <span class="g-text event-text-color-unit2">基础模块一</span>
            </div>
          </div>
        </div>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
              <tr class="table-th-bc">
                <td class="tl-cn">Day</td>
                <td class="wh-no tl-cn">Events/Activities</td>
                <td class="tl-cn">Place</td>
              </tr>
              <tr class="table-tr-bc">
                <td style="text-wrap: nowrap">
                  1<input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" />
                </td>
                <td>Attend the festival activities</td>
                <td>
                  The International Intangible Cultural Heritage Park
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>Wednesday</td>
                <td>Climb the mountain</td>
                <td>
                  2.<input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" />
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>Thursday</td>
                <td>Visit attractions in the downtown
                  3.<input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" /></td>
                <td>
                  Wuhou Temple & Jinsha Site MuseumShunxing Tea House
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>Friday</td>
                <td> 4.<input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" />Buy souvenirs</td>
                <td>
                  Panda Base 5.
                  <input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" />
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>Saturday</td>
                <td>6.<input :disabled="testData.isComplete" type="text" class="input-bottom-border input-bc-t"
                    style="width: 70px" v-model="testData.in.one" @change="setTestData" /></td>
                <td>
                  Shuangliu International Airport
                </td>
              </tr>
            </table>
            <p>Ⅳ.<b>A delegation from Chiang Mai University is going to visit your college from December</b> 10-12<b> to
                promote Chinese language teaching and cultural exchange in Thailand.Arrange a three-day schedule for the
                delegation including the activities below.</b></p>
            <p>l Visit the college history museum</p>
            <p>l Have a meeting with the director of International Exchange and Cooperation Department</p>
            <p>l Sign an agreement on the student-exchange program</p>
            <p>l Attend a welcome party</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="4">Schedule for Chiang Mai UniversityDelegation's Visit</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Date</td>
                <td class="tl-cn">Time</td>
                <td class="tl-cn">Activities</td>
                <td class="tl-cn">Place</td>
              </tr>
              <tr class="table-tr-bc">
                <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>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.thirtyTwo" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.thirtyThree" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.thirtyFour" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.thirtyFive" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.thirtySix" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.thirtySeven" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.thirtyEight" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.thirtyNine" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
            </table>
          </div>
        </div>
        <div class="preface-bottom">
          <span class="contet-num-box">36</span>
        </div>
      </div>
    </div>
    <!-- 37 -->
    <div class="page-box" page="43">
      <div v-if="showPageList.indexOf(43) > -1">
        <!-- 头部 -->
        <ul class="preface-odd-header w100 fl ju-bt">
          <li class=""></li>
          <li class="fz-18">
            <span class="chapter-left-bc-unit2">MODULE 2</span>
            <span class="chapter-right-bc-unit2 fw-bl chapter-right-cl-unit2">GOING GLOBAL</span>
          </li>
        </ul>
        <!-- 内容 -->
        <div class="padding-93">
          <div class="bodystyle">
            <div class="un-h2">
              <h2 id="b008">Unit Project</h2>
            </div>
            <p>International Sister City Week will be celebrated in your hometown.Participants of sister cities from
              other countries will join the event to promote exchange and expand communication with your
              hometown.Arrange a three-day event schedule for your guests.</p>
            <p>Step 1: Work in groups of five.</p>
            <p>Step 2: Discuss what activities will be held during the event. (For reference: welcome banquet,
              round-table meeting, cultural forum, performances, photo shows,etc.)</p>
            <p>Step 3: Make an event schedule for the participants.</p>
            <p>Step 4: Present your arrangement 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="tl-cn" colspan="4">Schedule</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Date</td>
                <td class="tl-cn">Time</td>
                <td class="tl-cn">Activities</td>
                <td class="tl-cn">Place</td>
              </tr>
              <tr class="table-tr-bc">
                <td rowspan="3">
                  <textarea v-model="questionData.table.forty" class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortyOne" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortyTwo" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortyThree" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.fortyFour" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortyFive" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortySix" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.fortySeven" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortyEight" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fortyNine" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td rowspan="3">
                  <textarea v-model="questionData.table.fifty" class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftyOne" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftyTwo" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftyThree" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.fiftyFour" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftyFive" class="w100 table-tr-bc b0 table-textarea "
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftySix" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.fiftySeven" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftyEight" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.fiftyNine" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td rowspan="3">
                  <textarea v-model="questionData.table.sixty" class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtyOne" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtyTwo" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtyThree" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.sixtyFour" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtyFive" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtySix" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea v-model="questionData.table.sixtySeven" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtyEight" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
                <td>
                  <textarea v-model="questionData.table.sixtyNine" class="w100 table-tr-bc b0 table-textarea"
                    @change="setBookQuestion"></textarea>
                </td>
              </tr>
            </table>
            <div class="fieldset">
              <p class="center"><b>Useful Expressions for Making Arrangements</b></p>
              <p><b>Activities</b>: welcome banquet,round-table meeting,cultural forum,folk culture performances,city
                photos show …</p>
              <p><b>Local highlights</b>:(take Beijing for example) climbing the Great Wall,visiting the Forbidden
                City,tasting Beijing roast duck,enjoying Peking opera,exploring the old alleys …</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">37</span>
        </div>
      </div>
    </div>
  </div>
</template>
 
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
  name: "chapter-two",
  components: { matching },
  props: {
    showPageList: {
      type: Array,
    },
  },
  data() {
    return {
      imgThirteen: require("../../assets/images/grammar2-1.png"),
      imgThirteenOne: require("../../assets/images/grammar2-2.png"),
      showAnswerOne: false,
      showAnswerTwo: false,
      showAnswerThree: false,
      showAnswerFour: false,
      showAnswerFive: false,
      showImg: false,
      showImgOne: false,
      showLessonOneQuestionAnswer: 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: "",
          fortyThree: "",
          fortyFour: "",
          fortyFive: "",
          fortySix: "",
          fortySeven: "",
          fortyEight: "",
          fortyNine: "",
          fifty: "",
          fiftyOne: "",
          fiftyTwo: "",
          fiftyThree: "",
          fiftyFour: "",
          fiftyFive: "",
          fiftySix: "",
          fiftySeven: "",
          fiftyEight: "",
          fiftyNine: "",
          sixty: "",
          sixtyOne: "",
          sixtyTwo: "",
          sixtyThree: "",
          sixtyFour: "",
          sixtyFive: "",
          sixtySix: "",
          sixtySeven: "",
          sixtyEight: "",
          sixtyNine: "",
        },
      },
      radio: {
        isRight: null,
        answer: ["", "Date and time", "Address", "Organizer"],
        value: [],
      },
      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: "",
        warmOne: "",
        readingThree: "",
        readingFour: "",
        listenTwo: "",
        listenThree: "",
      },
      dropDownList: [
        "online shopping",
        "facial recognition",
        "electronic payment",
        "intercity train",
        "shared bike",
        "take-away service",
      ],
      dropdownData: {
        one: {
          value: "",
          isRight: null,
          answer: "intercity train",
        },
        two: {
          value: "",
          isRight: null,
          answer: "online shopping",
        },
        three: {
          value: "",
          isRight: null,
          answer: "electronic payment",
        },
        four: {
          value: "",
          isRight: null,
          answer: "shared bike",
        },
        five: {
          value: "",
          isRight: null,
          answer: "take-away service",
        },
        six: {
          value: "",
          isRight: null,
          answer: "facial recognition",
        },
      },
    };
  },
  mounted() {
    const testData = localStorage.getItem("english-testOne");
    if (testData) {
      this.testData = JSON.parse(testData);
    }
    const bookQuestion = localStorage.getItem("english-book-question-one");
    if (bookQuestion) {
      this.questionData = JSON.parse(bookQuestion);
    }
    const dropdownData = localStorage.getItem("english-dropdown-one");
    if (dropdownData) {
      this.dropdownData = JSON.parse(dropdownData);
    }
    this.getPath();
  },
  methods: {
    saveWord(event, word) {
      this.$emit("saveCharacters", event, word);
    },
    setTestData() {
      localStorage.setItem("english-testOne", JSON.stringify(this.testData));
    },
    changeTestData() {
      localStorage.removeItem("english-testOne");
      this.testData = {
        check: [],
        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(
        "D96D6F8082786B037A2B1842860BC0C4 "
      );
      this.resource.readingOne = await getResourcePath(
        "E51F6E052B08F00B19819E4D5504219F"
      );
      this.resource.readingTwo = await getResourcePath(
        "1456A70576E21C0E8C1497916A6E8D57"
      );
      this.resource.warmOne = await getResourcePath(
        "7301D06AC2208C93FE05A9952C8858E7"
      );
      this.resource.readingThree = await getResourcePath(
        "85198824B16CA185AFF073275FC394BE"
      );
      this.resource.readingFour = await getResourcePath(
        "148CD1F30A60DAF665B4E4678755D767"
      );
      this.resource.listenTwo = await getResourcePath(
        "7CE34F30D8440BAE15D4A76479834434"
      );
      this.resource.listenThree = await getResourcePath(
        "D5080B2EEBFE29233A6DB282B1A28D6C"
      );
    },
    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;
}
</style>