forked from yeasy/tech_writing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path七年级英语深圳语法复习资料与提升计划.html
More file actions
1869 lines (1701 loc) · 145 KB
/
七年级英语深圳语法复习资料与提升计划.html
File metadata and controls
1869 lines (1701 loc) · 145 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>七年级英语(深圳)语法复习资料与提升计划</title>
<style>
/* ========== 全局与打印设置 ========== */
@page {
size: A4;
margin: 18mm 15mm 18mm 15mm;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
font-size: 11pt;
line-height: 1.75;
color: #1a1a2e;
background: #f5f5f5;
max-width: 210mm;
margin: 0 auto;
padding: 10px;
}
/* ========== 打印样式 ========== */
@media print {
body { background: #fff; padding: 0; font-size: 10.5pt; }
.no-print { display: none !important; }
.page-break { page-break-before: always; }
.avoid-break { page-break-inside: avoid; }
h2 { page-break-after: avoid; }
table { page-break-inside: avoid; }
.question { page-break-inside: avoid; }
details[open] .answer-content { page-break-inside: avoid; }
}
/* ========== 封面 ========== */
.cover {
text-align: center;
padding: 60px 20px 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
border-radius: 12px;
margin-bottom: 30px;
}
.cover h1 { font-size: 26pt; margin-bottom: 10px; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.cover .subtitle { font-size: 14pt; opacity: 0.9; margin-bottom: 20px; }
.cover .meta { font-size: 10pt; opacity: 0.75; }
.cover .meta span { margin: 0 10px; }
/* ========== 目录 ========== */
.toc {
background: #fff;
border-radius: 10px;
padding: 25px 30px;
margin-bottom: 30px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.toc h2 { color: #4a4e69; border: none; margin-bottom: 15px; }
.toc ul { list-style: none; padding: 0; }
.toc > ul > li { margin-bottom: 8px; }
.toc > ul > li > a {
font-weight: bold;
font-size: 12pt;
color: #4a4e69;
text-decoration: none;
border-bottom: 2px solid #e8e8e8;
display: block;
padding: 6px 0;
}
.toc > ul > li > a:hover { color: #764ba2; border-color: #764ba2; }
.toc .toc-sub { padding-left: 25px; margin-top: 4px; }
.toc .toc-sub li a {
font-size: 10.5pt;
color: #6c757d;
text-decoration: none;
display: block;
padding: 3px 0;
}
.toc .toc-sub li a:hover { color: #667eea; }
/* ========== 导航栏 ========== */
.nav-bar {
position: fixed;
top: 0; left: 0; right: 0;
background: linear-gradient(90deg, #667eea, #764ba2);
color: #fff;
z-index: 1000;
padding: 8px 20px;
display: flex;
align-items: center;
gap: 15px;
font-size: 9pt;
box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-bar a { color: #e0e0ff; text-decoration: none; white-space: nowrap; }
.nav-bar a:hover { color: #fff; text-decoration: underline; }
@media print { .nav-bar { display: none; } }
/* ========== 章节标题 ========== */
h2 {
font-size: 18pt;
color: #2d3436;
border-left: 5px solid #764ba2;
padding-left: 15px;
margin: 35px 0 20px;
padding-bottom: 8px;
border-bottom: 2px solid #f0f0f0;
}
h3 {
font-size: 14pt;
color: #4a4e69;
margin: 25px 0 12px;
padding-bottom: 5px;
border-bottom: 1px dashed #ddd;
}
h4 {
font-size: 12pt;
color: #6c5ce7;
margin: 18px 0 8px;
}
/* ========== 卡片容器 ========== */
.section-card {
background: #fff;
border-radius: 10px;
padding: 25px;
margin-bottom: 25px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
/* ========== 表格 ========== */
table {
width: 100%;
border-collapse: collapse;
margin: 12px 0 18px;
font-size: 10.5pt;
}
th {
background: linear-gradient(135deg, #667eea, #764ba2);
color: #fff;
padding: 10px 12px;
text-align: left;
font-weight: 600;
}
td {
padding: 8px 12px;
border-bottom: 1px solid #eee;
}
tr:nth-child(even) { background: #f8f9ff; }
tr:hover { background: #f0f2ff; }
/* ========== 重要程度星级 ========== */
.star5 { color: #e74c3c; font-size: 13pt; }
.star4 { color: #e67e22; font-size: 13pt; }
.star3 { color: #f39c12; font-size: 13pt; }
.star2 { color: #27ae60; font-size: 13pt; }
.star1 { color: #3498db; font-size: 13pt; }
/* ========== 提示框 ========== */
.tip-box {
background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
border-left: 4px solid #4caf50;
padding: 15px 18px;
margin: 15px 0;
border-radius: 0 8px 8px 0;
font-size: 10.5pt;
}
.tip-box::before { content: "💡 "; font-size: 12pt; }
/* ========== 错误/易错分析框 ========== */
.error-box {
background: linear-gradient(135deg, #fff3e0, #fff8e1);
border-left: 4px solid #ff9800;
padding: 15px 18px;
margin: 15px 0;
border-radius: 0 8px 8px 0;
font-size: 10.5pt;
}
.error-box::before { content: "⚠️ "; font-size: 12pt; }
/* ========== 正确/错误对比 ========== */
.compare-table {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin: 10px 0;
}
.wrong-example {
background: #ffebee;
border: 1px solid #ef9a9a;
border-radius: 6px;
padding: 10px 14px;
}
.wrong-example::before { content: "✗ "; color: #e53935; font-weight: bold; }
.right-example {
background: #e8f5e9;
border: 1px solid #a5d6a7;
border-radius: 6px;
padding: 10px 14px;
}
.right-example::before { content: "✓ "; color: #2e7d32; font-weight: bold; }
/* ========== 练习题样式 ========== */
.exercise-section { margin-bottom: 30px; }
.exercise-header {
background: linear-gradient(135deg, #667eea, #764ba2);
color: #fff;
padding: 15px 20px;
border-radius: 10px 10px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.exercise-header h3 {
color: #fff;
border: none;
margin: 0;
font-size: 14pt;
}
.exercise-header .badge {
background: rgba(255,255,255,0.25);
padding: 4px 12px;
border-radius: 15px;
font-size: 9pt;
}
.question {
background: #fff;
border: 1px solid #e8e8e8;
border-radius: 8px;
margin: 10px 0;
overflow: hidden;
transition: box-shadow 0.2s;
}
.question:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.1); }
.q-header {
background: #f8f9ff;
padding: 8px 15px;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 1px solid #eee;
font-size: 9pt;
}
.q-num { font-weight: bold; color: #4a4e69; font-size: 10.5pt; }
.q-type {
background: #e8eaf6;
color: #3f51b5;
padding: 2px 8px;
border-radius: 10px;
font-size: 8.5pt;
}
.q-diff {
padding: 2px 8px;
border-radius: 10px;
font-size: 8.5pt;
color: #fff;
}
.difficulty-basic { background: #4caf50; }
.difficulty-medium { background: #ff9800; }
.difficulty-hard { background: #f44336; }
.q-body {
padding: 12px 15px;
font-size: 11pt;
}
.q-body .options { margin: 8px 0 0 20px; }
.q-body .options li { margin: 4px 0; list-style: upper-alpha; }
details.q-answer {
border-top: 1px solid #eee;
}
details.q-answer summary {
padding: 10px 15px;
background: #fafafa;
cursor: pointer;
font-size: 10pt;
color: #667eea;
font-weight: 500;
user-select: none;
}
details.q-answer summary:hover { background: #f0f2ff; }
.answer-content {
padding: 12px 15px;
font-size: 10pt;
border-top: 1px solid #f0f0f0;
}
.answer-content p { margin: 6px 0; line-height: 1.6; }
.correct-answer { color: #2e7d32; }
.wrong-answer { color: #c62828; }
.analysis { color: #1565c0; }
.discrimination { color: #6a1b9a; }
/* ========== 考情分析表格 ========== */
.freq-bar {
display: inline-block;
height: 16px;
border-radius: 3px;
vertical-align: middle;
}
.freq-5 { width: 100px; background: linear-gradient(90deg, #e74c3c, #c0392b); }
.freq-4 { width: 80px; background: linear-gradient(90deg, #e67e22, #d35400); }
.freq-3 { width: 60px; background: linear-gradient(90deg, #f39c12, #e67e22); }
.freq-2 { width: 40px; background: linear-gradient(90deg, #27ae60, #219a52); }
.freq-1 { width: 20px; background: linear-gradient(90deg, #3498db, #2980b9); }
/* ========== 口诀框 ========== */
.rhyme-box {
background: linear-gradient(135deg, #fce4ec, #f3e5f5);
border: 2px dashed #ce93d8;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
text-align: center;
font-size: 12pt;
color: #6a1b9a;
font-weight: bold;
}
/* ========== 规则标签 ========== */
.rule-tag {
display: inline-block;
background: #e8eaf6;
color: #283593;
padding: 2px 10px;
border-radius: 12px;
font-size: 9pt;
margin: 2px;
}
/* ========== SVG 图标样式 ========== */
.icon-svg { width: 20px; height: 20px; vertical-align: middle; margin-right: 5px; }
/* ========== 提升计划时间线 ========== */
.timeline {
position: relative;
padding-left: 30px;
margin: 20px 0;
}
.timeline::before {
content: '';
position: absolute;
left: 10px; top: 0; bottom: 0;
width: 3px;
background: linear-gradient(180deg, #667eea, #764ba2);
}
.timeline-item {
position: relative;
margin-bottom: 15px;
padding: 12px 15px;
background: #fff;
border-radius: 8px;
border: 1px solid #e8e8e8;
}
.timeline-item::before {
content: '';
position: absolute;
left: -25px; top: 15px;
width: 12px; height: 12px;
background: #667eea;
border-radius: 50%;
border: 2px solid #fff;
box-shadow: 0 0 0 2px #667eea;
}
/* ========== 页脚 ========== */
.footer {
text-align: center;
padding: 20px;
color: #999;
font-size: 9pt;
border-top: 1px solid #eee;
margin-top: 30px;
}
/* ========== 全部展开/收起按钮 ========== */
.toggle-all {
background: linear-gradient(135deg, #667eea, #764ba2);
color: #fff;
border: none;
padding: 8px 20px;
border-radius: 20px;
cursor: pointer;
font-size: 10pt;
margin: 10px 0;
transition: opacity 0.2s;
}
.toggle-all:hover { opacity: 0.85; }
/* ========== 打印优化:大标题分页 ========== */
.section-divider {
border: none;
height: 2px;
background: linear-gradient(90deg, #667eea, #764ba2, transparent);
margin: 30px 0;
}
/* ========== 内联高亮 ========== */
.hl { background: #fff9c4; padding: 1px 4px; border-radius: 3px; }
.correct-hl { color: #2e7d32; font-weight: bold; }
.wrong-hl { color: #c62828; text-decoration: line-through; }
.en { font-family: "Times New Roman", Georgia, serif; font-style: italic; }
/* ========== 推荐资源卡片 ========== */
.resource-card {
display: inline-block;
width: 48%;
vertical-align: top;
background: #fff;
border: 1px solid #e8e8e8;
border-radius: 8px;
padding: 15px;
margin: 5px 1%;
box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.resource-card h4 { margin: 0 0 5px; font-size: 11pt; }
.resource-card p { font-size: 9.5pt; color: #666; margin: 3px 0; }
.resource-card a { color: #667eea; text-decoration: none; }
.resource-card a:hover { text-decoration: underline; }
@media print {
.resource-card { width: 100%; margin: 5px 0; }
}
/* ========== 语法点头部 ========== */
.gp-header {
display: flex;
justify-content: space-between;
align-items: center;
background: linear-gradient(135deg, #667eea, #764ba2);
color: #fff;
padding: 15px 20px;
border-radius: 10px 10px 0 0;
margin-top: 25px;
}
.gp-header h2 {
color: #fff;
border: none;
margin: 0;
padding: 0;
font-size: 16pt;
}
.gp-header .freq {
background: rgba(255,255,255,0.2);
padding: 4px 12px;
border-radius: 15px;
font-size: 9pt;
}
</style>
</head>
<body>
<!-- 导航栏 -->
<nav class="nav-bar no-print">
<strong>七年级英语(深圳)语法复习资料</strong>
<a href="#part1">教材对应</a>
<a href="#part2">语法详解</a>
<a href="#part3">专项练习</a>
<a href="#part4">提升计划</a>
<a href="#part5">推荐资源</a>
</nav>
<!-- 封面 -->
<div class="cover" style="margin-top: 40px;">
<h1>七年级英语(深圳)<br>语法复习资料与提升计划</h1>
<div class="subtitle">沪教牛津版 · 10大高频考点 · 200道专项练习 · 详细答案解析</div>
<div class="meta">
<span>适用教材:沪教牛津版(深圳用)七年级上下册</span>
<span>生成时间:2026-04-07</span>
</div>
</div>
<!-- 目录 -->
<div class="toc">
<h2>目录</h2>
<ul>
<li><a href="#part1">第一部分:教材单元语法对应表</a></li>
<li><a href="#part2">第二部分:高频语法考点详解与易错辨析</a>
<ul class="toc-sub">
<li><a href="#gp1">考点1:一般现在时(第三人称单数)</a></li>
<li><a href="#gp2">考点2:一般过去时(不规则动词)</a></li>
<li><a href="#gp3">考点3:现在进行时</a></li>
<li><a href="#gp4">考点4:介词搭配</a></li>
<li><a href="#gp5">考点5:代词</a></li>
<li><a href="#gp6">考点6:情态动词</a></li>
<li><a href="#gp7">考点7:冠词</a></li>
<li><a href="#gp8">考点8:比较级与最高级</a></li>
<li><a href="#gp9">考点9:There be 句型</a></li>
<li><a href="#gp10">考点10:名词复数</a></li>
</ul>
</li>
<li><a href="#part3">第三部分:专项练习题(200题含答案解析)</a>
<ul class="toc-sub">
<li><a href="#ex1">练习1:一般现在时(20题)</a></li>
<li><a href="#ex2">练习2:一般过去时(20题)</a></li>
<li><a href="#ex3">练习3:现在进行时(20题)</a></li>
<li><a href="#ex4">练习4:介词搭配(20题)</a></li>
<li><a href="#ex5">练习5:代词(20题)</a></li>
<li><a href="#ex6">练习6:情态动词(20题)</a></li>
<li><a href="#ex7">练习7:冠词(20题)</a></li>
<li><a href="#ex8">练习8:比较级与最高级(20题)</a></li>
<li><a href="#ex9">练习9:There be 句型(20题)</a></li>
<li><a href="#ex10">练习10:名词复数(20题)</a></li>
</ul>
</li>
<li><a href="#part4">第四部分:8周提升计划</a></li>
<li><a href="#part5">第五部分:推荐学习资源</a></li>
</ul>
</div>
<!-- ============================================================ -->
<!-- 第一部分:教材单元语法对应表 -->
<!-- ============================================================ -->
<div class="page-break"></div>
<div class="section-card" id="part1">
<h2>第一部分:教材单元语法对应表</h2>
<h3>七年级上册</h3>
<table>
<tr><th>单元</th><th>主题</th><th>核心语法</th></tr>
<tr><td>Unit 1</td><td>Making friends</td><td>特殊疑问句、动词 be 的用法</td></tr>
<tr><td>Unit 2</td><td>Daily life</td><td>一般现在时(第三人称单数)、频率副词</td></tr>
<tr><td>Unit 3</td><td>The Earth</td><td>可数与不可数名词、There be 句型</td></tr>
<tr><td>Unit 4</td><td>Seasons</td><td>形容词的用法、like + doing</td></tr>
<tr><td>Unit 5</td><td>Visiting the Moon</td><td>一般将来时(will / be going to)</td></tr>
<tr><td>Unit 6</td><td>Travelling around Asia</td><td>情态动词 should / must</td></tr>
<tr><td>Unit 7</td><td>School clubs</td><td>一般过去时(规则动词)</td></tr>
<tr><td>Unit 8</td><td>Collecting things</td><td>人称代词(主格/宾格)、物主代词</td></tr>
</table>
<h3>七年级下册</h3>
<table>
<tr><th>单元</th><th>主题</th><th>核心语法</th></tr>
<tr><td>Unit 1</td><td>People around us</td><td>定冠词 the 的用法</td></tr>
<tr><td>Unit 2</td><td>Water</td><td>情态动词 can / may / must / should</td></tr>
<tr><td>Unit 3</td><td>Our animal friends</td><td>介词(方位/方向)</td></tr>
<tr><td>Unit 4</td><td>Save the trees</td><td>一般过去时(不规则动词)</td></tr>
<tr><td>Unit 5</td><td>Water</td><td>不可数名词、量词表达</td></tr>
<tr><td>Unit 6</td><td>Electricity</td><td>情态动词表推测与许可</td></tr>
<tr><td>Unit 7</td><td>Poems</td><td>祈使句、when 引导的时间状语从句</td></tr>
<tr><td>Unit 8</td><td>From hobby to career</td><td>used to + 动词原形</td></tr>
</table>
<div class="tip-box">
<strong>2024/2025 新版沪教版教材</strong>部分单元主题可能微调,具体以实际课本为准。以上内容基于最新资料整理。
</div>
</div>
<!-- ============================================================ -->
<!-- 第二部分:高频语法考点详解(由 Agent 填充) -->
<!-- ============================================================ -->
<div class="page-break"></div>
<h2 id="part2">第二部分:高频语法考点详解与易错辨析</h2>
<!-- 以下内容将由 Agent 生成后填入 -->
<!-- 考点1:一般现在时 -->
<section class="grammar-point" id="gp1">
<div class="gp-header"><h2>考点1:一般现在时(第三人称单数)</h2><span class="freq">出题频率 ★★★★★</span></div>
<div class="section-card">
<h3>一、三种用法</h3>
<table>
<tr><th>用法</th><th>说明</th><th>示例</th></tr>
<tr><td>习惯性动作</td><td>经常、反复做的事</td><td>I <span class="hl">go</span> to school every day. / She <span class="hl">goes</span> to school every day.</td></tr>
<tr><td>客观事实/真理</td><td>不受时间影响的事实</td><td>The Earth <span class="hl">goes</span> around the Sun. / Water <span class="hl">boils</span> at 100°C.</td></tr>
<tr><td>按时刻表发生</td><td>交通、日程等</td><td>The train <span class="hl">leaves</span> at 8:00 tomorrow. / The class <span class="hl">begins</span> at 9.</td></tr>
</table>
<div class="tip-box"><strong>时间标志词:</strong>always, usually, often, sometimes, never, every day/week/month/year, on Sundays, in the morning</div>
<h3>二、第三人称单数变化规则</h3>
<table>
<tr><th>规则</th><th>变化方式</th><th>示例</th></tr>
<tr><td>一般情况</td><td>加 -s</td><td>play→plays, read→reads, like→likes, run→runs, get→gets</td></tr>
<tr><td>以 s, x, ch, sh, o 结尾</td><td>加 -es</td><td>go→goes, watch→watches, wash→washes, pass→passes, fix→fixes</td></tr>
<tr><td>辅音字母 + y</td><td>变 y 为 i 加 -es</td><td>study→studies, fly→flies, carry→carries, try→tries, worry→worries</td></tr>
<tr><td>元音字母 + y</td><td>直接加 -s</td><td>play→plays, say→says, enjoy→enjoys, buy→buys, pay→pays</td></tr>
<tr><td>特殊</td><td>have → has</td><td>He <span class="hl">has</span> a dog. (不是 haves)</td></tr>
</table>
<h3>三、否定句与疑问句</h3>
<table>
<tr><th>句型</th><th>结构</th><th>示例</th></tr>
<tr><td>否定(I/You/We/They)</td><td>主语 + don't + 动词原形</td><td>I <span class="hl">don't like</span> coffee.</td></tr>
<tr><td>否定(He/She/It)</td><td>主语 + doesn't + 动词<span class="hl">原形</span></td><td>She <span class="hl">doesn't like</span> coffee.(不是 doesn't likes)</td></tr>
<tr><td>疑问(I/You/We/They)</td><td>Do + 主语 + 动词原形?</td><td><span class="hl">Do</span> you like coffee?</td></tr>
<tr><td>疑问(He/She/It)</td><td>Does + 主语 + 动词<span class="hl">原形</span>?</td><td><span class="hl">Does</span> she like coffee?(不是 Does she likes)</td></tr>
</table>
<div class="error-box"><strong>核心规则:</strong>一旦用了 doesn't 或 does/does 开头提问,后面动词必须<span class="hl">还原原形</span>!因为 doesn't/does 已经承担了"第三人称单数"的任务。</div>
<h3>四、易错辨析</h3>
<div class="compare-table">
<div class="wrong-example">He <span class="wrong-hl">go</span> to school every day.</div>
<div class="right-example">He <span class="correct-hl">goes</span> to school every day.</div>
</div>
<p><strong>为什么错:</strong>主语 He 是第三人称单数,在肯定句中动词必须加 -es。学生常看到 "every day" 就想到一般现在时,但忘了动词变化。</p>
<p><strong>错在哪里:</strong>只注意了时态(一般现在时),忽略了主谓一致(第三人称单数需要动词变形)。</p>
<div class="compare-table">
<div class="wrong-example">She <span class="wrong-hl">doesn't likes</span> apples.</div>
<div class="right-example">She <span class="correct-hl">doesn't like</span> apples.</div>
</div>
<p><strong>为什么错:</strong>doesn't 已经是 do 的第三人称单数形式,后面的动词必须<span class="hl">还原原形</span>,不能再加 s。</p>
<p><strong>错在哪里:</strong>双重变形——doesn't 和 likes 同时变化了,而否定句只需要 doesn't 承担变化。</p>
<div class="compare-table">
<div class="wrong-example"><span class="wrong-hl">Does</span> he <span class="wrong-hl">likes</span> music?</div>
<div class="right-example"><span class="correct-hl">Does</span> he <span class="correct-hl">like</span> music?</div>
</div>
<p><strong>为什么错:</strong>疑问句中 Does 已经承担了第三人称变化,后面动词保持原形。</p>
<p><strong>错在哪里:</strong>与否定句同样的"双重变形"错误。</p>
<div class="compare-table">
<div class="wrong-example">My parents <span class="wrong-hl">goes</span> to work by bus.</div>
<div class="right-example">My parents <span class="correct-hl">go</span> to work by bus.</div>
</div>
<p><strong>为什么错:</strong>parents 是复数名词(=they),不是第三人称单数,所以动词用原形。</p>
<p><strong>错在哪里:</strong>误判主语单复数——parents 看起来像单数但实际是复数。</p>
<div class="compare-table">
<div class="wrong-example">The water <span class="wrong-hl">boil</span> at 100°C.</div>
<div class="right-example">Water <span class="correct-hl">boils</span> at 100°C.</div>
</div>
<p><strong>为什么错:</strong>water 是不可数名词,属于第三人称单数,动词要加 s。</p>
<p><strong>错在哪里:</strong>不可数名词(water/milk/bread/news)做主语时等同于第三人称单数。</p>
<div class="rhyme-box">口诀:三单肯定加 s/es,否定疑问用原形!<br>does 开路动词回,别让动词再变形!</div>
</div>
</section>
<!-- 考点2:一般过去时 -->
<section class="grammar-point" id="gp2">
<div class="gp-header"><h2>考点2:一般过去时(不规则动词)</h2><span class="freq">出题频率 ★★★★★</span></div>
<div class="section-card">
<h3>一、三种用法</h3>
<table>
<tr><th>用法</th><th>说明</th><th>示例</th></tr>
<tr><td>过去某时发生的动作</td><td>在过去特定时间做的事</td><td>I <span class="hl">visited</span> my grandma yesterday.</td></tr>
<tr><td>过去的状态</td><td>过去存在的状态</td><td>She <span class="hl">was</span> a teacher in 2020.</td></tr>
<tr><td>过去的习惯</td><td>过去经常做(现已不做了)</td><td>He <span class="hl">played</span> football when he was young.</td></tr>
</table>
<div class="tip-box"><strong>时间标志词:</strong>yesterday, last night/week/month/year, ... ago, in 2024, just now, the other day, the day before yesterday</div>
<h3>二、规则动词过去式</h3>
<table>
<tr><th>规则</th><th>变化</th><th>示例</th></tr>
<tr><td>一般加 -ed</td><td>play→played, work→worked, watch→watched</td></tr>
<tr><td>以 e 结尾加 -d</td><td>like→liked, live→lived, move→moved</td></tr>
<tr><td>辅音+y 变 i 加 -ed</td><td>study→studied, carry→carried, try→tried</td></tr>
<tr><td>重读闭音节双写加 -ed</td><td>stop→stopped, plan→planned, drop→dropped</td></tr>
</table>
<h3>三、不规则动词过去式(按类型分组记忆)</h3>
<h4>A-A-A 型(三态相同)</h4>
<table><tr><th>原形</th><th>过去式</th><th>过去分词</th></tr>
<tr><td>put</td><td>put</td><td>put</td></tr>
<tr><td>cut</td><td>cut</td><td>cut</td></tr>
<tr><td>read</td><td>read /red/</td><td>read /red/</td></tr>
<tr><td>let</td><td>let</td><td>let</td></tr>
<tr><td>hit</td><td>hit</td><td>hit</td></tr>
<tr><td>set</td><td>set</td><td>set</td></tr>
<tr><td>cost</td><td>cost</td><td>cost</td></tr>
</table>
<h4>A-B-A 型(原形=过去分词)</h4>
<table><tr><th>原形</th><th>过去式</th><th>过去分词</th></tr>
<tr><td>come</td><td>came</td><td>come</td></tr>
<tr><td>run</td><td>ran</td><td>run</td></tr>
</table>
<h4>A-B-B 型(过去式=过去分词)—— 最常见</h4>
<table><tr><th>原形</th><th>过去式</th><th>原形</th><th>过去式</th></tr>
<tr><td>have</td><td>had</td><td>make</td><td>made</td></tr>
<tr><td>say</td><td>said /sed/</td><td>tell</td><td>told</td></tr>
<tr><td>get</td><td>got</td><td>sit</td><td>sat</td></tr>
<tr><td>stand</td><td>stood</td><td>understand</td><td>understood</td></tr>
<tr><td>feel</td><td>felt</td><td>keep</td><td>kept</td></tr>
<tr><td>leave</td><td>left</td><td>meet</td><td>met</td></tr>
<tr><td>buy</td><td>bought</td><td>bring</td><td>brought</td></tr>
<tr><td>think</td><td>thought</td><td>catch</td><td>caught</td></tr>
<tr><td>teach</td><td>taught</td><td>build</td><td>built</td></tr>
<tr><td>lend</td><td>lent</td><td>send</td><td>sent</td></tr>
<tr><td>spend</td><td>spent</td><td>lose</td><td>lost</td></tr>
<tr><td>mean</td><td>meant /ment/</td><td>hear</td><td>heard /hɜːd/</td></tr>
<tr><td>find</td><td>found</td><td>hold</td><td>held</td></tr>
<tr><td>sell</td><td>sold</td><td>smell</td><td>smelt/smelled</td></tr>
</table>
<h4>A-B-C 型(三态不同)</h4>
<table><tr><th>原形</th><th>过去式</th><th>过去分词</th></tr>
<tr><td>do</td><td>did</td><td>done</td></tr>
<tr><td>go</td><td>went</td><td>gone</td></tr>
<tr><td>see</td><td>saw</td><td>seen</td></tr>
<tr><td>eat</td><td>ate</td><td>eaten</td></tr>
<tr><td>take</td><td>took</td><td>taken</td></tr>
<tr><td>give</td><td>gave</td><td>given</td></tr>
<tr><td>write</td><td>wrote</td><td>written</td></tr>
<tr><td>swim</td><td>swam</td><td>swum</td></tr>
<tr><td>fly</td><td>flew</td><td>flown</td></tr>
<tr><td>know</td><td>knew</td><td>known</td></tr>
<tr><td>grow</td><td>grew</td><td>grown</td></tr>
<tr><td>draw</td><td>drew</td><td>drawn</td></tr>
<tr><td>begin</td><td>began</td><td>begun</td></tr>
<tr><td>drink</td><td>drank</td><td>drunk</td></tr>
<tr><td>sing</td><td>sang</td><td>sung</td></tr>
<tr><td>ring</td><td>rang</td><td>rung</td></tr>
</table>
<h3>四、否定句与疑问句</h3>
<div class="error-box"><strong>核心规则:</strong>否定句和疑问句中,用 <span class="hl">didn't / Did</span>,后面的动词<span class="hl">必须还原原形</span>!</div>
<table>
<tr><th>句型</th><th>结构</th><th>示例</th></tr>
<tr><td>否定句</td><td>主语 + didn't + 动词原形</td><td>He <span class="hl">didn't go</span> to school.(不是 didn't went)</td></tr>
<tr><td>一般疑问</td><td>Did + 主语 + 动词原形?</td><td><span class="hl">Did</span> you <span class="hl">see</span> him?(不是 Did you saw)</td></tr>
<tr><td>特殊疑问</td><td>疑问词 + did + 主语 + 动词原形?</td><td>What <span class="hl">did</span> she <span class="hl">do</span> yesterday?</td></tr>
</table>
<h3>五、易错辨析</h3>
<div class="compare-table">
<div class="wrong-example">I <span class="wrong-hl">didn't went</span> to school yesterday.</div>
<div class="right-example">I <span class="correct-hl">didn't go</span> to school yesterday.</div>
</div>
<p><strong>为什么错:</strong>didn't 已经是过去式助动词,后面的动词必须还原为原形 go。</p>
<p><strong>错在哪里:</strong>双重过去化——didn't 和 went 同时变形。这是七年级最高频的错误之一!</p>
<div class="compare-table">
<div class="wrong-example"><span class="wrong-hl">Did</span> she <span class="wrong-hl">saw</span> the movie?</div>
<div class="right-example"><span class="correct-hl">Did</span> she <span class="correct-hl">see</span> the movie?</div>
</div>
<p><strong>为什么错:</strong>与否定句同理,Did 后面跟原形 see,不是过去式 saw。</p>
<div class="compare-table">
<div class="wrong-example">He <span class="wrong-hl">buyed</span> a new bike last week.</div>
<div class="right-example">He <span class="correct-hl">bought</span> a new bike last week.</div>
</div>
<p><strong>为什么错:</strong>buy 是不规则动词,过去式是 bought,不能按规则加 ed。</p>
<p><strong>错在哪里:</strong>将不规则动词当作规则动词处理。</p>
<div class="compare-table">
<div class="wrong-example">I <span class="wrong-hl">have</span> a good time yesterday.</div>
<div class="right-example">I <span class="correct-hl">had</span> a good time yesterday.</div>
</div>
<p><strong>为什么错:</strong>时间标志词 yesterday 表明是过去时,have 必须变为 had。</p>
<p><strong>错在哪里:</strong>看到 yesterday 没有反应过来要变时态。</p>
<div class="compare-table">
<div class="wrong-example">What <span class="wrong-hl">did</span> he <span class="wrong-hl">yesterday</span>?</div>
<div class="right-example">What <span class="correct-hl">did he do</span> yesterday?</div>
</div>
<p><strong>为什么错:</strong>特殊疑问句结构是"疑问词 + did + 主语 + 动词原形",缺少了动词 do。</p>
<p><strong>错在哪里:</strong>疑问词 what 直接跟了 did,漏掉了主语后面的谓语动词。</p>
<div class="rhyme-box">口诀:过去时,动词变,否定疑问用原形!<br>did 一出动词回,别让 went 再出现!</div>
</div>
</section>
<!-- 考点3:现在进行时 -->
<section class="grammar-point" id="gp3">
<div class="gp-header"><h2>考点3:现在进行时</h2><span class="freq">出题频率 ★★★★☆</span></div>
<div class="section-card">
<h3>一、三种用法</h3>
<table>
<tr><th>用法</th><th>说明</th><th>示例</th></tr>
<tr><td>正在进行的动作</td><td>此时此刻正在发生</td><td>Look! She <span class="hl">is dancing</span>.</td></tr>
<tr><td>现阶段的活动</td><td>当前一段时间在做</td><td>I <span class="hl">am studying</span> English these days.</td></tr>
<tr><td>将来的计划</td><td>按计划即将发生</td><td>We <span class="hl">are leaving</span> tomorrow.</td></tr>
</table>
<h3>二、现在分词变化规则</h3>
<table>
<tr><th>规则</th><th>变化</th><th>示例</th></tr>
<tr><td>一般加 -ing</td><td>play→playing, read→reading, eat→eating</td></tr>
<tr><td>去 e 加 -ing</td><td>make→making, write→writing, have→having</td></tr>
<tr><td>重读闭音节双写加 -ing</td><td>run→running, swim→swimming, sit→sitting</td></tr>
</table>
<div class="tip-box"><strong>常见需双写的动词:</strong>run, swim, sit, put, cut, get, let, begin, stop, plan, drop, shop, hug, fat→fatten, cut→cutting</div>
<h3>三、一般现在时 vs 现在进行时(核心对比)</h3>
<table>
<tr><th>对比项</th><th>一般现在时</th><th>现在进行时</th></tr>
<tr><td>含义</td><td>习惯性、经常性的动作</td><td>此时此刻正在进行的动作</td></tr>
<tr><td>时间标志词</td><td>always, usually, often, every day</td><td>now, right now, at the moment, Look!, Listen!</td></tr>
<tr><td>结构</td><td>主语 + 动词(原形/三单)</td><td>主语 + am/is/are + doing</td></tr>
<tr><td>示例</td><td>She <span class="hl">reads</span> books every day.</td><td>She <span class="hl">is reading</span> a book now.</td></tr>
<tr><td>示例</td><td>He <span class="hl">plays</span> basketball on Sundays.</td><td>Look! He <span class="hl">is playing</span> basketball.</td></tr>
</table>
<h3>四、易错辨析</h3>
<div class="compare-table">
<div class="wrong-example">Look! He <span class="wrong-hl">plays</span> football.</div>
<div class="right-example">Look! He <span class="correct-hl">is playing</span> football.</div>
</div>
<p><strong>为什么错:</strong>"Look!" 是现在进行时的信号词,表示"快看正在发生的事",必须用进行时。</p>
<p><strong>错在哪里:</strong>没有识别出 Look/Listen 等提示词,误用了一般现在时。</p>
<div class="compare-table">
<div class="wrong-example">She <span class="wrong-hl">is swiming</span> now.</div>
<div class="right-example">She <span class="correct-hl">is swimming</span> now.</div>
</div>
<p><strong>为什么错:</strong>swim 是重读闭音节词,必须双写 m 再加 -ing → swimming。</p>
<p><strong>错在哪里:</strong>没有判断"是否需要双写"——看最后三个字母是否为"辅-元-辅"且重读。</p>
<div class="compare-table">
<div class="wrong-example">I <span class="wrong-hl">am agree</span> with you.</div>
<div class="right-example">I <span class="correct-hl">agree</span> with you.</div>
</div>
<p><strong>为什么错:</strong>agree 是状态动词,不能用于进行时。类似还有:know, like, love, want, need, understand, believe。</p>
<p><strong>错在哪里:</strong>不是所有动词都能用进行时!状态动词(表示情感、认知、拥有)一般不用进行时。</p>
<div class="compare-table">
<div class="wrong-example">Listen! The bird <span class="wrong-hl">is sing</span>.</div>
<div class="right-example">Listen! The bird <span class="correct-hl">is singing</span>.</div>
</div>
<p><strong>为什么错:</strong>现在进行时结构是 be + doing,sing 必须变为 singing。</p>
<div class="compare-table">
<div class="wrong-example">He <span class="wrong-hl">is writeing</span> a letter.</div>
<div class="right-example">He <span class="correct-hl">is writing</span> a letter.</div>
</div>
<p><strong>为什么错:</strong>write 以不发音的 e 结尾,去 e 加 -ing → writing(不是 writeing)。</p>
<div class="rhyme-box">口诀:Look Listen 在句首,进行时态要跟走!<br>be 动词 + doing,正在发生才管用!</div>
</div>
</section>
<!-- 考点4:介词搭配 -->
<section class="grammar-point" id="gp4">
<div class="gp-header"><h2>考点4:介词搭配(时间/地点/方式)</h2><span class="freq">出题频率 ★★★★☆</span></div>
<div class="section-card">
<h3>一、时间介词 at / on / in</h3>
<div class="rhyme-box">口诀:<strong>at 点 on 天 in 月/年</strong></div>
<table>
<tr><th>介词</th><th>用法</th><th>示例</th></tr>
<tr><td rowspan="4"><strong>at</strong>(具体时刻/时刻点)</td><td>具体钟点</td><td>at 8:00, at half past six</td></tr>
<tr><td>固定时刻</td><td>at noon, at midnight, at night</td></tr>
<tr><td>节假日</td><td>at Christmas, at the Spring Festival</td></tr>
<tr><td>固定搭配</td><td>at the moment, at the weekend, at the age of 12</td></tr>
<tr><td rowspan="4"><strong>on</strong>(具体某一天)</td><td>星期几</td><td>on Monday, on Friday</td></tr>
<tr><td>具体日期</td><td>on May 1st, on July 4th</td></tr>
<tr><td>某天的上/下午</td><td>on a cold morning, on Sunday afternoon</td></tr>
<tr><td>特定某天</td><td>on my birthday, on that day</td></tr>
<tr><td rowspan="4"><strong>in</strong>(较长时间段)</td><td>月份/年份/季节</td><td>in April, in 2026, in winter</td></tr>
<tr><td>一天的上/下午/晚</td><td>in the morning/afternoon/evening</td></tr>
<tr><td>一段时间后</td><td>in two days(两天后)</td></tr>
<tr><td>固定搭配</td><td>in time, in the future</td></tr>
</table>
<h3>二、地点介词</h3>
<table>
<tr><th>介词</th><th>含义</th><th>示例</th></tr>
<tr><td>in</td><td>在内部(空间内)</td><td>in the room, in the box, in Shenzhen</td></tr>
<tr><td>on</td><td>在表面(接触)</td><td>on the desk, on the wall, on the floor</td></tr>
<tr><td>under</td><td>在正下方</td><td>under the tree, under the bed</td></tr>
<tr><td>behind</td><td>在后面</td><td>behind the door, behind the building</td></tr>
<tr><td>in front of</td><td>在前面(外部)</td><td>in front of the school</td></tr>
<tr><td>beside / next to</td><td>在旁边</td><td>beside the river, next to the library</td></tr>
<tr><td>between</td><td>在两者之间</td><td>between the desk and the chair</td></tr>
<tr><td>above</td><td>在上方(不接触)</td><td>above the blackboard</td></tr>
<tr><td>below</td><td>在下方</td><td>below the window</td></tr>
</table>
<h3>三、方式介词</h3>
<table>
<tr><th>介词</th><th>用法</th><th>示例</th></tr>
<tr><td>by</td><td>交通方式(不加冠词)</td><td>by bus, by bike, by car, by plane</td></tr>
<tr><td>with</td><td>使用工具/伴随</td><td>write with a pen, cut with a knife</td></tr>
<tr><td>in</td><td>语言/材料/颜色</td><td>in English, in ink, in red</td></tr>
<tr><td>on</td><td>通过/关于</td><td>on foot, on the phone, talk on TV</td></tr>
</table>
<h3>四、常考固定搭配</h3>
<table>
<tr><td>be good at(擅长)</td><td>be interested in(对…感兴趣)</td><td>look for(寻找)</td></tr>
<tr><td>be late for(迟到)</td><td>be afraid of(害怕)</td><td>listen to(听)</td></tr>
<tr><td>be famous for(因…出名)</td><td>depend on(依靠)</td><td>tired of(厌倦)</td></tr>
<tr><td>be different from(不同于)</td><td>play with(和…玩)</td><td>wait for(等待)</td></tr>
<tr><td>be angry with(生…的气)</td><td>help...with(帮助…做)</td><td>talk about(谈论)</td></tr>
</table>
<h3>五、易错辨析</h3>
<div class="compare-table">
<div class="wrong-example">I was born <span class="wrong-hl">in</span> March 8th.</div>
<div class="right-example">I was born <span class="correct-hl">on</span> March 8th.</div>
</div>
<p><strong>为什么错:</strong>March 8th 是具体日期,用 on 不用 in。口诀:in 只管月份不管日。</p>
<p><strong>错在哪里:</strong>看到 March 就条件反射选 in,没注意到后面有 8th。</p>
<div class="compare-table">
<div class="wrong-example">I will meet you <span class="wrong-hl">in</span> Sunday afternoon.</div>
<div class="right-example">I will meet you <span class="correct-hl">on</span> Sunday afternoon.</div>
</div>
<p><strong>为什么错:</strong>星期+上下午 = 具体某一天的上/下午,用 on。</p>
<p><strong>错在哪里:</strong>只看到 afternoon 就选 in,忽略了前面的 Sunday 使其变成了"具体某天"。</p>
<div class="compare-table">
<div class="wrong-example">He goes to school <span class="wrong-hl">by</span> foot.</div>
<div class="right-example">He goes to school <span class="correct-hl">on</span> foot.</div>
</div>
<p><strong>为什么错:</strong>"步行"固定搭配是 on foot,不是 by foot。by 用于交通工具(by bus/by car)。</p>
<div class="compare-table">
<div class="wrong-example">She can write <span class="wrong-hl">by</span> Chinese.</div>
<div class="right-example">She can write <span class="correct-hl">in</span> Chinese.</div>
</div>
<p><strong>为什么错:</strong>用某种语言用 in,不用 by。in English, in Chinese, in Japanese。</p>
<div class="compare-table">
<div class="wrong-example">The cat is <span class="wrong-hl">in</span> the tree.</div>
<div class="right-example">The bird is <span class="correct-hl">in</span> the tree. / The cat is <span class="correct-hl">on</span> the tree.</div>
</div>
<p><strong>辨析:</strong>鸟在树里(属于树上的一部分)用 in the tree;猫在树上(附着在树表面)用 on the tree。</p>
</div>
</section>
<!-- 考点5:代词 -->
<section class="grammar-point" id="gp5">
<div class="gp-header"><h2>考点5:代词(人称/物主/不定)</h2><span class="freq">出题频率 ★★★★☆</span></div>
<div class="section-card">
<h3>一、人称代词</h3>
<table>
<tr><th>人称</th><th>主格(做主语)</th><th>宾格(做宾语)</th></tr>
<tr><td>我</td><td><span class="hl">I</span> am a student.</td><td>Please help <span class="hl">me</span>.</td></tr>
<tr><td>你</td><td><span class="hl">You</span> are kind.</td><td>I'll call <span class="hl">you</span>.</td></tr>
<tr><td>他</td><td><span class="hl">He</span> is tall.</td><td>I know <span class="hl">him</span>.</td></tr>
<tr><td>她</td><td><span class="hl">She</span> likes music.</td><td>Give <span class="hl">her</span> the book.</td></tr>
<tr><td>它</td><td><span class="hl">It</span> is a cat.</td><td>I love <span class="hl">it</span>.</td></tr>
<tr><td>我们</td><td><span class="hl">We</span> are friends.</td><td>Please tell <span class="hl">us</span>.</td></tr>
<tr><td>你们</td><td><span class="hl">You</span> are late.</td><td>I miss <span class="hl">you</span>.</td></tr>
<tr><td>他们</td><td><span class="hl">They</span> are happy.</td><td>Ask <span class="hl">them</span>.</td></tr>
</table>
<div class="tip-box"><strong>判断技巧:</strong>主格在动词<strong>前面</strong>(做主语),宾格在动词/介词<strong>后面</strong>(做宾语)。<br>例:I like <span class="hl">him</span>.(I 在动词前用主格,him 在动词后用宾格)</div>
<h3>二、物主代词</h3>
<table>
<tr><th>人称</th><th>形容词性(后接名词)</th><th>名词性(不接名词)</th></tr>
<tr><td>我的</td><td><span class="hl">my</span> book</td><td>The book is <span class="hl">mine</span>.</td></tr>
<tr><td>你的</td><td><span class="hl">your</span> pen</td><td>The pen is <span class="hl">yours</span>.</td></tr>
<tr><td>他的</td><td><span class="hl">his</span> bag</td><td>The bag is <span class="hl">his</span>.</td></tr>
<tr><td>她的</td><td><span class="hl">her</span> cat</td><td>The cat is <span class="hl">hers</span>.</td></tr>
<tr><td>它的</td><td><span class="hl">its</span> tail</td><td>The tail is <span class="hl">its</span>.</td></tr>
<tr><td>我们的</td><td><span class="hl">our</span> school</td><td>The school is <span class="hl">ours</span>.</td></tr>
<tr><td>你们的</td><td><span class="hl">your</span> books</td><td>The books are <span class="hl">yours</span>.</td></tr>
<tr><td>他们的</td><td><span class="hl">their</span> teacher</td><td>The teacher is <span class="hl">theirs</span>.</td></tr>
</table>
<div class="error-box"><strong>辨析要点:</strong>形容词性物主代词后面<strong>必须有名词</strong>;名词性物主代词后面<strong>不能再有名词</strong>。<br>✗ This is mine book. → ✓ This is <span class="correct-hl">my</span> book. / This book is <span class="correct-hl">mine</span>.</div>
<h3>三、不定代词</h3>
<table>
<tr><th>代词</th><th>用法</th><th>肯定句</th><th>否定/疑问句</th></tr>
<tr><td>some / any</td><td>一些</td><td>I have <span class="hl">some</span> books.</td><td>Do you have <span class="hl">any</span> books? / I don't have <span class="hl">any</span> books.</td></tr>
<tr><td>every</td><td>每个(强调整体)</td><td colspan="2"><span class="hl">Every</span> student is here.(所有人都在)</td></tr>
<tr><td>each</td><td>每个(强调个体)</td><td colspan="2"><span class="hl">Each</span> of them has a book.(各自有一本)</td></tr>
<tr><td>both</td><td>两者都</td><td colspan="2"><span class="hl">Both</span> of them are students.(两个都是)</td></tr>
<tr><td>all</td><td>三者及以上都</td><td colspan="2"><span class="hl">All</span> the students are here.</td></tr>
<tr><td>either</td><td>两者中任一</td><td colspan="2"><span class="hl">Either</span> of the two is OK.</td></tr>
<tr><td>neither</td><td>两者都不</td><td colspan="2"><span class="hl">Neither</span> of them is right.</td></tr>
</table>
<div class="tip-box"><strong>some 的特殊用法:</strong>在表示请求、建议、期望得到肯定回答的疑问句中,用 some 不用 any。<br>例:Would you like <span class="hl">some</span> water? / Can I have <span class="hl">some</span> bread?</div>
<h3>四、易错辨析</h3>
<div class="compare-table">
<div class="wrong-example">Please give <span class="wrong-hl">he</span> the book.</div>
<div class="right-example">Please give <span class="correct-hl">him</span> the book.</div>
</div>
<p><strong>为什么错:</strong>give 后面跟的是宾语,需要用宾格 him,不能用主格 he。</p>
<p><strong>错在哪里:</strong>没有判断代词在句子中的位置——动词后面用宾格。</p>
<div class="compare-table">
<div class="wrong-example">This is <span class="wrong-hl">mine</span> pen.</div>
<div class="right-example">This is <span class="correct-hl">my</span> pen. / This pen is <span class="correct-hl">mine</span>.</div>
</div>
<p><strong>为什么错:</strong>mine 是名词性物主代词,后面不能再接名词。需要用形容词性 my。</p>
<div class="compare-table">
<div class="wrong-example">Tom and <span class="wrong-hl">me</span> are good friends.</div>
<div class="right-example">Tom and <span class="correct-hl">I</span> are good friends.</div>
</div>
<p><strong>为什么错:</strong>在句中做主语必须用主格 I。me 是宾格,不能做主语。</p>
<p><strong>错在哪里:</strong>中文说"我和Tom",英文中 A and I 做主语时 I 放后面。</p>
<div class="compare-table">
<div class="wrong-example">Let <span class="wrong-hl">I</span> help you.</div>
<div class="right-example">Let <span class="correct-hl">me</span> help you.</div>
</div>
<p><strong>为什么错:</strong>Let 后面跟宾格,所以是 Let me,不是 Let I。</p>
<div class="compare-table">
<div class="wrong-example">I don't have <span class="wrong-hl">some</span> money.</div>
<div class="right-example">I don't have <span class="correct-hl">any</span> money.</div>
</div>
<p><strong>为什么错:</strong>否定句中用 any 不用 some。some 用于肯定句。</p>
</div>
</section>
<!-- 考点6:情态动词 -->
<section class="grammar-point" id="gp6">
<div class="gp-header"><h2>考点6:情态动词 can / must / should</h2><span class="freq">出题频率 ★★★☆☆</span></div>
<div class="section-card">
<h3>一、各情态动词用法对比</h3>
<table>