yy1717
2024-02-28 27fc91fbe8f88b6885356e68828cfe1ce1db7601
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
[
  {
 
    "item_id":10101,
    "item_content": "科目二通用评判",
    "deducting_reason": "不按规定使用安全带或者戴安全头盔",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10102,
    "item_content": "科目二通用评判",
    "deducting_reason": "遮挡、关闭车内音视频监控设备",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10103,
    "item_content": "科目二通用评判",
    "deducting_reason": "不按考试员指令驾驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10104,
    "item_content": "科目二通用评判",
    "deducting_reason": "不能正确使用灯光、雨刮器等车辆常用操纵件",
    "score_deducting":100,
    "required_precision":"时间大于2s,时间检测误差:0s~0.5s"
  },
  {
 
    "item_id":10105,
    "item_content": "科目二通用评判",
    "deducting_reason": "启动发动机时挡位未置于空档(驻车挡)",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10106,
    "item_content": "科目二通用评判",
    "deducting_reason": "起步时车辆后溜距离大于30cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10107,
    "item_content": "科目二通用评判",
    "deducting_reason": "不松驻车制动器起步,未及时纠正",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10108,
    "item_content": "科目二通用评判",
    "deducting_reason": "驾驶汽车双手同时离开转向盘",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10109,
    "item_content": "科目二通用评判",
    "deducting_reason": "使用挡位与车速长时间不匹配,造成车辆发动机转速过高或过低",
    "score_deducting":100,
    "required_precision": ""
  },
  {
 
    "item_id":10110,
    "item_content": "科目二通用评判",
    "deducting_reason": "车辆在行驶中低头看挡或2次挂挡不进",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10111,
    "item_content": "科目二通用评判",
    "deducting_reason": "行驶中空档滑行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10112,
    "item_content": "科目二通用评判",
    "deducting_reason": "视线离开行驶方向超过2s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10113,
    "item_content": "科目二通用评判",
    "deducting_reason": "违反交通安全法律、法规,影响交通安全",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10114,
    "item_content": "科目二通用评判",
    "deducting_reason": "不按交通信息灯、标志、标线或者民警指挥信号行驶",
    "score_deducting":100,
    "required_precision":""
  } ,
  {
 
    "item_id":10115,
    "item_content": "科目二通用评判",
    "deducting_reason": "不按规定速度行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10116,
    "item_content": "科目二通用评判",
    "deducting_reason": "车辆行驶中骑轧车道中心实线或者车道边缘实线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10117,
    "item_content": "科目二通用评判",
    "deducting_reason": "长时间骑轧车道分界线行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10118,
    "item_content": "科目二通用评判",
    "deducting_reason": "对可能出现危险的情形未采取减速,鸣喇叭等安全措施",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10119,
    "item_content": "科目二通用评判",
    "deducting_reason": "因观察、判断或者操作不当出现危险情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10120,
    "item_content": "科目二通用评判",
    "deducting_reason": "行驶中不能保持安全距离和安全车速",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10121,
    "item_content": "科目二通用评判",
    "deducting_reason": "行驶中身体任何部位伸出车外",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10122,
    "item_content": "科目二通用评判",
    "deducting_reason": "制动、加速踏板使用错误",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10123,
    "item_content": "科目二通用评判",
    "deducting_reason": "驾驶摩托车时手离开转向把",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10124,
    "item_content": "科目二通用评判",
    "deducting_reason": "二轮摩托车在行驶中左右摇摆或者脚触地",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10125,
    "item_content": "科目二通用评判",
    "deducting_reason": "摩托车制动时不同时使用前、后制动器",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10126,
    "item_content": "科目二通用评判",
    "deducting_reason": "考生未按照预约考试时间参加考试",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":10201,
    "item_content": "科目二通用评判",
    "deducting_reason": "发动机启动后,不及时松开启动开关",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10202,
    "item_content": "科目二通用评判",
    "deducting_reason": "不松制动器起步,但能及时纠正",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10203,
    "item_content": "科目二通用评判",
    "deducting_reason": "驾驶姿势不正确",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10204,
    "item_content": "科目二通用评判",
    "deducting_reason": "起步时车辆后溜距离10cm-30cm",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10205,
    "item_content": "科目二通用评判",
    "deducting_reason": "操纵转向盘手法不合理",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10206,
    "item_content": "科目二通用评判",
    "deducting_reason": "起步或行驶中挂错挡,不能及时纠正",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10207,
    "item_content": "科目二通用评判",
    "deducting_reason": "转弯时,转回方向过早、过晚,或转向角度过大、过小",
    "score_deducting":10,
    "required_precision":""
  },
  {
    "id":33,
    "item_id":10208,
    "item_content": "科目二通用评判",
    "deducting_reason": "换挡时发生齿轮撞击",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10209,
    "item_content": "科目二通用评判",
    "deducting_reason": "遇情况时不会合理使用离合器半联动控制车速",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10210,
    "item_content": "科目二通用评判",
    "deducting_reason": "因操作不当造成发动机熄火1次",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":10211,
    "item_content": "科目二通用评判",
    "deducting_reason": "制动不平顺",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20101,
    "item_content": "倒车入库",
    "deducting_reason": "不按规定路线、顺序行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20102,
    "item_content": "倒车入库",
    "deducting_reason": "车身出线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20103,
    "item_content": "倒车入库",
    "deducting_reason": "倒库不入",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20104,
    "item_content": "倒车入库",
    "deducting_reason": "在倒车前,未将两个前轮触地点均驶过控制线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20105,
    "item_content": "倒车入库",
    "deducting_reason": "项目完成时间超过210s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20106,
    "item_content": "倒车入库",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20301,
    "item_content": "坡道定点停车和起步",
    "deducting_reason": "车辆停止后,汽车前保险杠或者摩托车前轴未定于桩杆线上,且前后超出50cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20302,
    "item_content": "坡道定点停车和起步",
    "deducting_reason": "车辆停止后,车身距离路边缘线超出50cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20303,
    "item_content": "坡道定点停车和起步",
    "deducting_reason": "车辆停止后,起步时间超过30s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20304,
    "item_content": "坡道定点停车和起步",
    "deducting_reason": "车辆停止后,汽车前保险杠或者摩托车前轴未定于桩杆线上,且前后不超出50cm",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20305,
    "item_content": "坡道定点停车和起步",
    "deducting_reason": "车辆停止后,车身距离路边缘线超出30cm,未超出50cm",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20306,
    "item_content": "坡道定点停车和起步",
    "deducting_reason": "停车后,未拉紧驻车制动器",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20401,
    "item_content": "侧方停车",
    "deducting_reason": "车辆入库停止后,车身出线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20402,
    "item_content": "侧方停车",
    "deducting_reason": "项目完成时间超过90s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20403,
    "item_content": "侧方停车",
    "deducting_reason": "行驶中轮胎触轧车道边线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20404,
    "item_content": "侧方停车",
    "deducting_reason": "行驶中车身触碰库位边线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20405,
    "item_content": "侧方停车",
    "deducting_reason": "出库时不使用或错误使用转向灯",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20406,
    "item_content": "侧方停车",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20407,
    "item_content": "侧方停车",
    "deducting_reason": "车身触碰虚线车位边线",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20601,
    "item_content": "曲线行驶",
    "deducting_reason": "车轮轧道路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20602,
    "item_content": "曲线行驶",
    "deducting_reason": "中途停车时间超过2秒",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20603,
    "item_content": "曲线行驶",
    "deducting_reason": "行驶时挡位未挂在二挡(含)以上(小车不需要)",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20701,
    "item_content": "直角转弯",
    "deducting_reason": "车轮轧道路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20702,
    "item_content": "直角转弯",
    "deducting_reason": "转弯时不使用或错误使用转向灯,转弯后不关闭转向灯",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20703,
    "item_content": "直角转弯",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20201,
    "item_content": "桩考",
    "deducting_reason": "不按规定路线、顺序行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
    "id":62,
    "item_id":20202,
    "item_content": "桩考",
    "deducting_reason": "碰擦桩杆",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20203,
    "item_content": "桩考",
    "deducting_reason": "车身出线,两轮摩托车轮出线",
    "score_deducting":100,
    "required_precision":""
  },
  {
    "id":64,
    "item_id":20204,
    "item_content": "桩考",
    "deducting_reason": "倒库或移库不入",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20205,
    "item_content": "桩考",
    "deducting_reason": "项目完成时间超过480s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20206,
    "item_content": "桩考",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20501,
    "item_content": "通过单边桥",
    "deducting_reason": "车轮已驶过桥面起始位置,有一轮未上桥",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20502,
    "item_content": "通过单边桥",
    "deducting_reason": "已骑上桥面,在行驶中出线一个车轮掉下桥面",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20503,
    "item_content": "通过单边桥",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20801,
    "item_content": "通过限宽门",
    "deducting_reason": "不按固定路线、顺序行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20802,
    "item_content": "通过限宽门",
    "deducting_reason": "碰擦一次限宽门标杆",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20803,
    "item_content": "通过限宽门",
    "deducting_reason": "车辆行驶速度低于10km/h",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":20901,
    "item_content": "通过连续障碍",
    "deducting_reason": "不按固定路线、顺序行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20902,
    "item_content": "通过连续障碍",
    "deducting_reason": "车轮轧道路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":20903,
    "item_content": "通过连续障碍",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20904,
    "item_content": "通过连续障碍",
    "deducting_reason": "轧、碰、擦一个圆饼",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":20905,
    "item_content": "通过连续障碍",
    "deducting_reason": "行驶时挡位未挂在二挡(含)以上",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":21001,
    "item_content": "起伏路",
    "deducting_reason": "车辆以大于12km/h的速度通过起伏路面",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21002,
    "item_content": "起伏路",
    "deducting_reason": "中途停车时间超过2s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":21003,
    "item_content": "起伏路",
    "deducting_reason": "通过起伏路面前2m时,车辆未减速到12km/h",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21101,
    "item_content": "窄路掉头",
    "deducting_reason": "三进二退未完成掉头",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21102,
    "item_content": "窄路掉头",
    "deducting_reason": "车轮轧路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21103,
    "item_content": "窄路掉头",
    "deducting_reason": "项目完成时间超过300s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21201,
    "item_content": "模拟高速",
    "deducting_reason": "行驶中占用两条车道、应急车道或大型车辆前后100m均无其它车辆仍不靠右侧车道行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21202,
    "item_content": "模拟高速",
    "deducting_reason": "变道未开启转向灯或未观察后面情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21203,
    "item_content": "模拟高速",
    "deducting_reason": "驶入高速公路时,未提速至规定车速",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21204,
    "item_content": "模拟高速",
    "deducting_reason": "驶出高速公路时,未按照出口预告标志提前调整车速和车道",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21301,
    "item_content": "模拟连续急弯山区路",
    "deducting_reason": "进入弯道前未减速至通过弯道所需的速度",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21302,
    "item_content": "模拟连续急弯山区路",
    "deducting_reason": "弯道内占用对方车道",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21303,
    "item_content": "模拟连续急弯山区路",
    "deducting_reason": "转弯过程中方向控制不稳,车轮轧弯道中心线或道路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21304,
    "item_content": "模拟连续急弯山区路",
    "deducting_reason": "进入弯前未鸣喇叭",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":21401,
    "item_content": "模拟隧道",
    "deducting_reason": "驶抵隧道时未减速或未开启前照灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21402,
    "item_content": "模拟隧道",
    "deducting_reason": "驶入隧道后不按规定车道行驶、变道",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21403,
    "item_content": "模拟隧道",
    "deducting_reason": "驶抵隧道入(出)口时未鸣喇叭",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":21404,
    "item_content": "模拟隧道",
    "deducting_reason": "驶出隧道后未关闭前照灯",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":21501,
    "item_content": "模拟雨(雾)",
    "deducting_reason": "雨天未开启或正确使用雨刮器",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21502,
    "item_content": "模拟雨(雾)",
    "deducting_reason": "雾天未开启雾灯、示廓灯、前照灯、危险报警闪光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21601,
    "item_content": "模拟湿滑路",
    "deducting_reason": "未能使用低速档(一挡或二挡)平稳通过",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21602,
    "item_content": "模拟湿滑路",
    "deducting_reason": "进入湿滑路前,未减速",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21603,
    "item_content": "模拟湿滑路",
    "deducting_reason": "通过时急加速、急刹车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21701,
    "item_content": "模拟紧急情况处置(前方突然出线障碍物)",
    "deducting_reason": "未及时制动",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21702,
    "item_content": "模拟紧急情况处置(前方突然出线障碍物)",
    "deducting_reason": "停车后未开启危险报警闪光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21801,
    "item_content": "模拟紧急情况处置(高速公里车辆故障)",
    "deducting_reason": "未及时平稳靠边停车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21802,
    "item_content": "模拟紧急情况处置(高速公里车辆故障)",
    "deducting_reason": "停车后未开启危险报警闪光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21803,
    "item_content": "模拟紧急情况处置(高速公里车辆故障)",
    "deducting_reason": "未及时提示乘员疏散",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21804,
    "item_content": "模拟紧急情况处置(高速公里车辆故障)",
    "deducting_reason": "未正确摆放警告标志未报警",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":21805,
    "item_content": "模拟紧急情况处置(高速公里车辆故障)",
    "deducting_reason": "本人未撤离至护栏外侧",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22001,
    "item_content": "科目二特殊地区",
    "deducting_reason": "未按规定考试",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22002,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车轮轧道路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22003,
    "item_content": "科目二特殊地区",
    "deducting_reason": "中途停车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22201,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车辆停止后,汽车前保险杠未定于停车线前,超过停车线停车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22202,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车辆停止后,汽车前保险杠未定于停车线前,且向后超出50cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22203,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车辆通过铁路道口,未停车瞭望",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":22204,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车辆停止后,汽车前保险杠未定于停车线前,且向后不超出50cm",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":23001,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车轮轧道路边缘线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23002,
    "item_content": "科目二特殊地区",
    "deducting_reason": "驶过停车取卡位置未停车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23003,
    "item_content": "科目二特殊地区",
    "deducting_reason": "停车后倒车校正位置",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23004,
    "item_content": "科目二特殊地区",
    "deducting_reason": "停车后,一侧车门距离路边缘线超出50cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23005,
    "item_content": "科目二特殊地区",
    "deducting_reason": "停车后,未放置空档或未拉紧驻车制动器",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23101,
    "item_content": "科目二特殊地区",
    "deducting_reason": "驶抵隧道时未减速或未开启前照灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23102,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车辆行驶中骑轧车道中心实线、车道边缘实线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23103,
    "item_content": "科目二特殊地区",
    "deducting_reason": "驶抵隧道入(出)口时未鸣喇叭",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23104,
    "item_content": "科目二特殊地区",
    "deducting_reason": "驶出隧道后未关闭前照灯/驶抵隧道入(出)口时未鸣喇叭",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23105,
    "item_content": "科目二特殊地区",
    "deducting_reason": "驶抵隧道时未减速或未开启前照灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23106,
    "item_content": "科目二特殊地区",
    "deducting_reason": "驶出隧道后未关闭前照灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":23201,
    "item_content": "科目二特殊地区",
    "deducting_reason": "未开启雨刮器/未及时制动",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23202,
    "item_content": "科目二特殊地区",
    "deducting_reason": "停车后未开启危险报警闪光灯/雾天未开启雾灯、示廓灯、前照灯、危险报警闪光灯",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23203,
    "item_content": "科目二特殊地区",
    "deducting_reason": "未能使用低速档(一挡或二挡)平稳通过",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23204,
    "item_content": "科目二特殊地区",
    "deducting_reason": "进入湿滑路前,未减速",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23205,
    "item_content": "科目二特殊地区",
    "deducting_reason": "通过时急加速、急刹车",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23206,
    "item_content": "科目二特殊地区",
    "deducting_reason": "中途停车/通过时速低于10km/h",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23207,
    "item_content": "科目二特殊地区",
    "deducting_reason": "行驶中轮胎触轧车道边线或车道中心实线",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23301,
    "item_content": "科目二特殊地区",
    "deducting_reason": "三进二退未完成掉头",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23302,
    "item_content": "科目二特殊地区",
    "deducting_reason": "车轮轧路边缘线",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":23304,
    "item_content": "科目二特殊地区",
    "deducting_reason": "项目完成时间超过300s",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":30101,
    "item_content": "科目三通用",
    "deducting_reason": "不按规定使用安全带或者戴安全头盔",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":30102,
    "item_content": "科目三通用",
    "deducting_reason": "遮挡、关闭车内音视频监控设备",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30103,
    "item_content": "科目三通用",
    "deducting_reason": "不按考试员指令驾驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30104,
    "item_content": "科目三通用",
    "deducting_reason": "不能正确使用灯光、雨刮器等车辆常用操纵件",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30105,
    "item_content": "科目三通用",
    "deducting_reason": "启动发动机时挡位未置于空档(驻车挡)",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30106,
    "item_content": "科目三通用",
    "deducting_reason": "绿灯亮起后,前方无其他车辆、行人等影响通行时,10秒内未完成起步",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30107,
    "item_content": "科目三通用",
    "deducting_reason": "起步时车辆后溜距离大于30cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30108,
    "item_content": "科目三通用",
    "deducting_reason": "驾驶汽车双手同时离开转向盘",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30109,
    "item_content": "科目三通用",
    "deducting_reason": "单手控制转向盘时,不能有效、平稳控制行驶方向",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30110,
    "item_content": "科目三通用",
    "deducting_reason": "车辆行驶方向控制不准确、不能有效、平稳控制行驶方向",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30111,
    "item_content": "科目三通用",
    "deducting_reason": "不能根据交通情况合理选择行驶车道、速度",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30112,
    "item_content": "科目三通用",
    "deducting_reason": "使用挡位于车速长时间不匹配,造成车辆发动机转速过高或过低",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30113,
    "item_content": "科目三通用",
    "deducting_reason": "车辆在行驶中低头看挡或连续2次挂挡不进",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30114,
    "item_content": "科目三通用",
    "deducting_reason": "行驶中空挡滑行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30115,
    "item_content": "科目三通用",
    "deducting_reason": "视线离开行驶方向超过2s",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30116,
    "item_content": "科目三通用",
    "deducting_reason": "违反交通安全法律、法规,影响交通安全",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30117,
    "item_content": "科目三通用",
    "deducting_reason": "不按交通信息灯、标志、标线或者民警指挥信号行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30118,
    "item_content": "科目三通用",
    "deducting_reason": "不按规定速度行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30119,
    "item_content": "科目三通用",
    "deducting_reason": "车辆行驶中骑轧车道中心实线或者车道边缘实线",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30120,
    "item_content": "科目三通用",
    "deducting_reason": "长时间骑轧车道分界线行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30121,
    "item_content": "科目三通用",
    "deducting_reason": "起步、转向、变更车道、超车、停车前不使用或错误使用转向灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30122,
    "item_content": "科目三通用",
    "deducting_reason": "起步、转向、变更车道、超车、停车前,开转向灯少于3s即转向",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30123,
    "item_content": "科目三通用",
    "deducting_reason": "争道抢行,妨碍其它车辆正常行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30124,
    "item_content": "科目三通用",
    "deducting_reason": "行驶中不能保持安全距离和安全车速",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30125,
    "item_content": "科目三通用",
    "deducting_reason": "连续变更两条或两条以上车道",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30126,
    "item_content": "科目三通用",
    "deducting_reason": "通过积水路面遇行人、非机动车时,有不减速等不文明驾驶行为",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30127,
    "item_content": "科目三通用",
    "deducting_reason": "于行人通过人行横道不停车让行、不主动避让优先通行的车辆、行人、非机动车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30128,
    "item_content": "科目三通用",
    "deducting_reason": "将车辆停在人行横道、网状线内等禁止停车区域",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30129,
    "item_content": "科目三通用",
    "deducting_reason": "行驶中身体任何部位伸出车外",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30130,
    "item_content": "科目三通用",
    "deducting_reason": "制动、加速踏板使用错误",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30131,
    "item_content": "科目三通用",
    "deducting_reason": "对可能出现危险的情形未采取减速,鸣喇叭等安全措施",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30132,
    "item_content": "科目三通用",
    "deducting_reason": "因观察、判断或者操作不当出现危险情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30133,
    "item_content": "科目三通用",
    "deducting_reason": "驾驶摩托车时手离开转向把",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30134,
    "item_content": "科目三通用",
    "deducting_reason": "二轮摩托车在行驶中左右摇摆或者脚触地",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30135,
    "item_content": "科目三通用",
    "deducting_reason": "摩托车制动时不同时使用前、后制动器",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30136,
    "item_content": "科目三通用",
    "deducting_reason": "考生未按照预约考试时间参加考试",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":30201,
    "item_content": "科目三通用",
    "deducting_reason": "驾驶姿势不正确",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30202,
    "item_content": "科目三通用",
    "deducting_reason": "起步时车辆后溜距离10cm-30cm",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30203,
    "item_content": "科目三通用",
    "deducting_reason": "操纵转向盘手法不合理",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30204,
    "item_content": "科目三通用",
    "deducting_reason": "起步或行驶中挂错挡,不能即使纠正",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30205,
    "item_content": "科目三通用",
    "deducting_reason": "转弯时,转回方向过早、过晚,或转向角度过大、过小",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30206,
    "item_content": "科目三通用",
    "deducting_reason": "换挡时发生齿轮撞击",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30207,
    "item_content": "科目三通用",
    "deducting_reason": "遇情况时不会合理使用离合器半联动控制车速",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30208,
    "item_content": "科目三通用",
    "deducting_reason": "因操作不当造成发动机熄火1次",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30209,
    "item_content": "科目三通用",
    "deducting_reason": "不能根据交通情况合理使用喇叭",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30210,
    "item_content": "科目三通用",
    "deducting_reason": "制动不平顺",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":30211,
    "item_content": "科目三通用",
    "deducting_reason": "遇车后发出超车信号,不按规定让行",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40101,
    "item_content": "上车准备",
    "deducting_reason": "不绕车一周检查车辆外观及周围环境",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40102,
    "item_content": "上车准备",
    "deducting_reason": "打开车门前不观察后方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40201,
    "item_content": "起步",
    "deducting_reason": "制动气压不足起步",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40202,
    "item_content": "起步",
    "deducting_reason": "车门未完全关闭起步",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40203,
    "item_content": "起步",
    "deducting_reason": "起步前,未观察内、外后视镜,未侧头观察后方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40204,
    "item_content": "起步",
    "deducting_reason": "启动发动机时,变速器操纵杆未置于空挡(驻车挡)",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40205,
    "item_content": "起步",
    "deducting_reason": "不松驻车制动器起步,未及时纠正",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40206,
    "item_content": "起步",
    "deducting_reason": "不松驻车制动器起步,但能及时纠正",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40207,
    "item_content": "起步",
    "deducting_reason": "发动机启动后,不及时松开启动开关",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40208,
    "item_content": "起步",
    "deducting_reason": "道路交通情况复杂时起步不能合理使用喇叭",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":40209,
    "item_content": "起步",
    "deducting_reason": "起步时车辆发生闯动",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":40210,
    "item_content": "起步",
    "deducting_reason": "起步时,加速踏板控制不当,致使发动机转速过高",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":40211,
    "item_content": "起步",
    "deducting_reason": "启动发动机前,不检查调整驾驶座椅、后视镜、检查仪表",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":40301,
    "item_content": "直线行驶",
    "deducting_reason": "方向控制不稳,不能保持车辆直线运行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40302,
    "item_content": "直线行驶",
    "deducting_reason": "遇前车制动时不及时采取减速措施",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40303,
    "item_content": "直线行驶",
    "deducting_reason": "不适时通过内、外后视镜观察后方交通情况",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40304,
    "item_content": "直线行驶",
    "deducting_reason": "未及时发现路面障碍物或发现路面障碍物未及时采取减速措施",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40401,
    "item_content": "加减挡",
    "deducting_reason": "未按指令平稳加、减挡",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40402,
    "item_content": "加减挡",
    "deducting_reason": "车辆运行速度和挡位不匹配",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40501,
    "item_content": "变道",
    "deducting_reason": "变更车道前,未通过内、外后视镜观察后方道路交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40502,
    "item_content": "变道",
    "deducting_reason": "变更车道时,判断车辆安全距离不合理,妨碍其他车辆",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40503,
    "item_content": "变道",
    "deducting_reason": "变更车道时,控制行驶速度不合理,妨碍其他车辆正常行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40601,
    "item_content": "靠边停车",
    "deducting_reason": "停车前,不通过内、外后视镜观察后方和右侧交通情况,并回头观察确认安全",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40602,
    "item_content": "靠边停车",
    "deducting_reason": "考试员发出靠边停车指令后,未能在规定的距离内停车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40603,
    "item_content": "靠边停车",
    "deducting_reason": "停车后,车身超过道路右侧边缘线或者人行道边缘",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40604,
    "item_content": "靠边停车",
    "deducting_reason": "需要下车的,在打开车门前不回头观察左后方交通情况,并回头观察确认安全",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40605,
    "item_content": "靠边停车",
    "deducting_reason": "下车后不关闭车门",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40606,
    "item_content": "靠边停车",
    "deducting_reason": "停车后,车身距离道路右侧边缘线或者人行道边缘超出50cm",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40607,
    "item_content": "靠边停车",
    "deducting_reason": "停车后,车身距离道路右侧边缘线或者人行道边缘超出30cm,未超出50cm",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40608,
    "item_content": "靠边停车",
    "deducting_reason": "停车后,未拉紧驻车制动器",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40609,
    "item_content": "靠边停车",
    "deducting_reason": "拉紧驻车制动器前放松行车制动踏板",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":40610,
    "item_content": "靠边停车",
    "deducting_reason": "下车前不将发动机熄火",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":40701,
    "item_content": "直行通过路口",
    "deducting_reason": "不按规定减速或停车瞭望",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40702,
    "item_content": "直行通过路口",
    "deducting_reason": "不观察左、右方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40703,
    "item_content": "直行通过路口",
    "deducting_reason": "不主动避让优先通行的车辆、行人,非机动车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40704,
    "item_content": "直行通过路口",
    "deducting_reason": "遇有路口交通阻塞时进入路口,将车辆停在路口内等候",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40801,
    "item_content": "路口左转",
    "deducting_reason": "不按规定减速或停车瞭望",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40802,
    "item_content": "路口左转",
    "deducting_reason": "不观察左、右方交通情况,转弯通过路口时,未观察侧前方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40803,
    "item_content": "路口左转",
    "deducting_reason": "不主动避让优先通行的车辆、行人,非机动车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40804,
    "item_content": "路口左转",
    "deducting_reason": "遇有路口交通阻塞时进入路口,将车辆停在路口内等候",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40805,
    "item_content": "路口左转",
    "deducting_reason": "左转通过路口时,未靠路口中心点左侧转弯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40901,
    "item_content": "路口右转",
    "deducting_reason": "不按规定减速或停车瞭望",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40902,
    "item_content": "路口右转",
    "deducting_reason": "不观察左、右方交通情况,转弯通过路口时,未观察侧前方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40903,
    "item_content": "路口右转",
    "deducting_reason": "不主动避让优先通行的车辆、行人,非机动车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":40904,
    "item_content": "路口右转",
    "deducting_reason": "遇有路口交通阻塞时进入路口,将车辆停在路口内等候",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41001,
    "item_content": "通过人行道",
    "deducting_reason": "不按规定减速慢行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41002,
    "item_content": "通过人行道",
    "deducting_reason": "不观察左、右方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41003,
    "item_content": "通过人行道",
    "deducting_reason": "未停车礼让行人",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41101,
    "item_content": "通过学校区域",
    "deducting_reason": "不按规定减速慢行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41102,
    "item_content": "通过学校区域",
    "deducting_reason": "不观察左、右方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41103,
    "item_content": "通过学校区域",
    "deducting_reason": "未停车礼让行人",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41201,
    "item_content": "通过公交站",
    "deducting_reason": "不按规定减速慢行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41202,
    "item_content": "通过公交站",
    "deducting_reason": "不观察左、右方交通情况",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41203,
    "item_content": "通过公交站",
    "deducting_reason": "未停车礼让行人",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41301,
    "item_content": "会车",
    "deducting_reason": "在没有中心隔离设施或者中心线的道路上会车时,或未与其他车辆、行人、非机动车保持安全距离",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41302,
    "item_content": "会车",
    "deducting_reason": "会车困难时不让行",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41303,
    "item_content": "会车",
    "deducting_reason": "横向安全间距判断差,紧急转向避让对方来车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41401,
    "item_content": "超车",
    "deducting_reason": "超车前,不通过内、外后视镜观察后方和左侧交通情况并回头观察确认安全",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41402,
    "item_content": "超车",
    "deducting_reason": "超车时机选择不合理,影响其他车辆正常行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41403,
    "item_content": "超车",
    "deducting_reason": "超车时,未回头观察被超越车辆动态",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41404,
    "item_content": "超车",
    "deducting_reason": "超车时未与被超越车辆侧寺安全距离",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41405,
    "item_content": "超车",
    "deducting_reason": "超车后急转向驶回原车道,妨碍被超车辆正常行驶",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41406,
    "item_content": "超车",
    "deducting_reason": "在没有中心线或同方向只有一条行车道的道路上从右侧超车",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41407,
    "item_content": "超车",
    "deducting_reason": "当后车发出超车信号时,具备让车条件不减速靠右让行",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":41501,
    "item_content": "掉头",
    "deducting_reason": "不能正确观察交通情况选择掉头时机",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41502,
    "item_content": "掉头",
    "deducting_reason": "掉头地点选择不当",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41503,
    "item_content": "掉头",
    "deducting_reason": "掉头前未发出掉头信号",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41504,
    "item_content": "掉头",
    "deducting_reason": "掉头时,妨碍正常行驶的其他车辆和行人通行",
    "score_deducting":10,
    "required_precision":""
  },
  {
 
    "item_id":41601,
    "item_content": "夜间行驶",
    "deducting_reason": "不能正确开启灯光",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41602,
    "item_content": "夜间行驶",
    "deducting_reason": "同方向近距离跟车行驶时,使用远光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41603,
    "item_content": "夜间行驶",
    "deducting_reason": "通过急弯、坡路、拱桥、人行横道或者没有交通信号灯控制的路口时,不交替使用远近灯示意",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41604,
    "item_content": "夜间行驶",
    "deducting_reason": "会车时不按规定使用近光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41605,
    "item_content": "夜间行驶",
    "deducting_reason": "通过路口时使用远光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41606,
    "item_content": "夜间行驶",
    "deducting_reason": "超车时未交替使用远近光灯提醒被超越车辆",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41607,
    "item_content": "夜间行驶",
    "deducting_reason": "在有路灯、照明良好的道路上行驶时,使用远光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41608,
    "item_content": "夜间行驶",
    "deducting_reason": "在路边临时停车不关闭前照灯或不开启示廓灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41609,
    "item_content": "夜间行驶",
    "deducting_reason": "进入无照明、照明不良的道路行驶时不使用远光灯",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":41701,
    "item_content": "模拟夜考",
    "deducting_reason": "不能正确开启灯光",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41702,
    "item_content": "模拟夜考",
    "deducting_reason": "同方向近距离跟车行驶时,使用远光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41703,
    "item_content": "模拟夜考",
    "deducting_reason": "通过急弯、坡路、拱桥、人行横道或者没有交通信号灯控制的路口时,不交替使用远近灯示意",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41704,
    "item_content": "模拟夜考",
    "deducting_reason": "会车时不按规定使用近光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41705,
    "item_content": "模拟夜考",
    "deducting_reason": "通过路口时使用远光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41706,
    "item_content": "模拟夜考",
    "deducting_reason": "超车时未交替使用远近光灯提醒被超越车辆",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41707,
    "item_content": "模拟夜考",
    "deducting_reason": "在有路灯、照明良好的道路上行驶时,使用远光灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41708,
    "item_content": "模拟夜考",
    "deducting_reason": "在路边临时停车不关闭前照灯或不开启示廓灯",
    "score_deducting":100,
    "required_precision":""
  },
  {
 
    "item_id":41709,
    "item_content": "模拟夜考",
    "deducting_reason": "进入无照明、照明不良的道路行驶时不使用远光灯",
    "score_deducting":5,
    "required_precision":""
  },
  {
 
    "item_id":41710,
    "item_content": "模拟夜考",
    "deducting_reason": "不能正确关闭灯光",
    "score_deducting":100,
    "required_precision":""
  }
]