Spaces:
Sleeping
Sleeping
File size: 107,343 Bytes
0c1630d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 | [
{
"id": "001",
"name": "刀片",
"english_name": "Blades",
"recyclable": "回收指示",
"notes": "為不可回收物品,請用報紙包好交付垃圾車收運。",
"image_url": "recycleitem/1-20210603040450.png",
"image_file": null
},
{
"id": "002",
"name": "叉子",
"english_name": "Fork",
"recyclable": "回收指示",
"notes": "(1)\t屬不銹鋼材質之叉子為可回收物品。(2)\t如屬塑膠、植物纖維、生物可分解材質為不可回收物品。",
"image_url": "recycleitem/1-20210603105018.png",
"image_file": null
},
{
"id": "003",
"name": "不沾鍋",
"english_name": "Pan",
"recyclable": "回收指示",
"notes": "可回收,請以金屬類之資源回收物交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603104640.png",
"image_file": null
},
{
"id": "004",
"name": "瓦斯爐",
"english_name": "Gas stove",
"recyclable": "回收指示",
"notes": "(1)\t可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2)\t家戶巨大垃圾請依約定時間搬運門口,為避免糾紛清潔隊不負入屋內搬運之責。",
"image_url": "recycleitem/1-20210603035736.png",
"image_file": null
},
{
"id": "005",
"name": "金屬湯匙",
"english_name": "Metal spoon",
"recyclable": "回收指示",
"notes": "可回收,屬金屬類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603105136.png",
"image_file": null
},
{
"id": "006",
"name": "烘碗機",
"english_name": "Dish dryer",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603024146.png",
"image_file": null
},
{
"id": "007",
"name": "烤箱",
"english_name": "Oven",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603024224.png",
"image_file": null
},
{
"id": "008",
"name": "氣體鋼瓶",
"english_name": "Gas cylinder",
"recyclable": "回收指示",
"notes": "盛裝各類氣體鋼瓶、滅火器應交由原販賣業者逆向回收,並不在本局清潔隊回收範圍內。",
"image_url": "recycleitem/1-20210603035358.png",
"image_file": null
},
{
"id": "009",
"name": "瓦斯鋼瓶(瓦斯桶)",
"english_name": "Gas cylinder",
"recyclable": "回收指示",
"notes": "空瓦斯鋼瓶屬於壓力容器,且用後仍可能殘留瓦斯,故不在清潔隊回收範圍內,宜交由瓦斯行逆向回收處理,瓦斯鋼瓶回收請洽瓦斯行或內政部認證瓦斯檢驗場,台南市瓦斯公會 06-281-7811協助回收。",
"image_url": "recycleitem/1-20210603115553.png",
"image_file": null
},
{
"id": "010",
"name": "瓦斯罐",
"english_name": "Cassette gas tank",
"recyclable": "回收指示",
"notes": "可回收,排出前應先將內容物排空,可找空曠處微開讓氣體慢慢排除,請確認已無氣體再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603115641.png",
"image_file": null
},
{
"id": "011",
"name": "打火機",
"english_name": "Lighter",
"recyclable": "回收指示",
"notes": "可拆分的打火機,打火裝置為複合材料須以一般垃圾處理,塑膠殼乾淨無汙染可以塑膠類回收。無法拆分的打火機,內部已無燃料以一般垃圾處理。",
"image_url": "recycleitem/1-20210603031156.png",
"image_file": null
},
{
"id": "012",
"name": "金屬剪刀",
"english_name": "Metal scissors",
"recyclable": "回收指示",
"notes": "(1)\t可回收,請交付清潔隊資源回收車。(2)\t剪刀前端尖銳處請包裹廣告紙或報紙,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/1-20210603015129.png",
"image_file": null
},
{
"id": "013",
"name": "殺蟑劑",
"english_name": "Cockroach killer",
"recyclable": "回收指示",
"notes": "可回收,使用後應清除內容物,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603115726.png",
"image_file": null
},
{
"id": "014",
"name": "殺蟲劑",
"english_name": "Insecticide",
"recyclable": "回收指示",
"notes": "可回收,使用後應清除內容物,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603115803.png",
"image_file": null
},
{
"id": "015",
"name": "菜刀",
"english_name": "Kitchen knife",
"recyclable": "回收指示",
"notes": "刀身屬廢鐵類,可回收,請獨立交付清潔隊資源回收車,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/1-20210603035211.png",
"image_file": null
},
{
"id": "016",
"name": "電冰箱",
"english_name": "Refrigerator",
"recyclable": "回收指示",
"notes": "(1)可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603023308.png",
"image_file": null
},
{
"id": "017",
"name": "鐵鍋",
"english_name": "Wok",
"recyclable": "回收指示",
"notes": "可回收,請以金屬類之資源回收物交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603104447.png",
"image_file": null
},
{
"id": "018",
"name": "小燈泡",
"english_name": "Miniature bulb",
"recyclable": "回收指示",
"notes": "(1)\t為可回收物品,燈帽在2.6公分以下者,如一般神明桌上使用的燈泡。(2)\t為避免破損造成汞污染及回收人員割傷,請以原包裝紙或報紙包裹後交付回收車收運。",
"image_url": "recycleitem/1-20210603103931.png",
"image_file": null
},
{
"id": "019",
"name": "日光燈管",
"english_name": "Fluorescent lamp",
"recyclable": "回收指示",
"notes": "(1)\t可回收,白熾燈泡限燈帽直徑為2.6公分以上。(2)\t因燈管中含有水銀蒸氣,吸入會危害人體健康,所以廢舊燈管應注意不要打破,回收前應套袋妥善包裹,放入新品的紙套、紙盒中,或以報紙、氣泡袋包好,再交由清潔隊資源回收車或送至原販賣點及直接送至回收商處。",
"image_url": "recycleitem/1-20210603104128.png",
"image_file": null
},
{
"id": "020",
"name": "水銀燈泡",
"english_name": "Mercury bulb",
"recyclable": "回收指示",
"notes": "為可回收物品,為避免破損造成污染及回收人員割傷,請以原包裝紙或報紙包裹後交付回收車收運。",
"image_url": "recycleitem/1-20210603104358.png",
"image_file": null
},
{
"id": "021",
"name": "直管日光燈管",
"english_name": "Straight tube fluorescent lamp",
"recyclable": "回收指示",
"notes": "(1)\t可回收,白熾燈泡限燈帽直徑為2.6公分以上。(2)\t因燈管中含有水銀蒸氣,吸入會危害人體健康,所以廢舊燈管應注意不要打破,回收前應套袋妥善包裹,放入新品的紙套、紙盒中,或以報紙、氣泡袋包好,再交由清潔隊資源回收車或送至原販賣點及直接送至回收商處。",
"image_url": "recycleitem/1-20210603104304.png",
"image_file": null
},
{
"id": "022",
"name": "螺旋日光燈管",
"english_name": "Compact Fluorescent Light Bulbs",
"recyclable": "回收指示",
"notes": "(1)\t可回收,白熾燈泡限燈帽直徑為2.6公分以上。(2)\t因燈管中含有水銀蒸氣,吸入會危害人體健康,所以廢舊燈管應注意不要打破,回收前應套袋妥善包裹,放入新品的紙套、紙盒中,或以報紙、氣泡袋包好,再交由清潔隊資源回收車或送至原販賣點及直接送至回收商處。",
"image_url": "recycleitem/%201-20210603104021.png",
"image_file": null
},
{
"id": "023",
"name": "飲水機",
"english_name": "Water cooler",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603024100.png",
"image_file": null
},
{
"id": "024",
"name": "洗衣機",
"english_name": "Washing machine",
"recyclable": "回收指示",
"notes": "(1)可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603023456.png",
"image_file": null
},
{
"id": "025",
"name": "影印機",
"english_name": "Photocopier",
"recyclable": "回收指示",
"notes": "可交由經銷商逆向回收或洽詢回收商回收。",
"image_url": "recycleitem/1-20210603023750.png",
"image_file": null
},
{
"id": "026",
"name": "碳粉夾",
"english_name": "Toner cartridge",
"recyclable": "回收指示",
"notes": "可回收,請洽詢各碳粉匣製造商協助回收。",
"image_url": "recycleitem/1-20210603040217.png",
"image_file": null
},
{
"id": "027",
"name": "傳真機",
"english_name": "Facsimile machine",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023710.png",
"image_file": null
},
{
"id": "028",
"name": "電風扇",
"english_name": "Electric fan",
"recyclable": "回收指示",
"notes": "可回收,內含有毒或揮發性物質請勿自行拆卸,完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023545.png",
"image_file": null
},
{
"id": "029",
"name": "電視機",
"english_name": "Television",
"recyclable": "回收指示",
"notes": "(1)可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723100109.PNG",
"image_file": null
},
{
"id": "030",
"name": "保險箱",
"english_name": "Strongbox",
"recyclable": "回收指示",
"notes": "為不可回收物品,保險箱灌有大量水泥,不易將不同屬性材質分離,請比照大型廢棄物清運申請。",
"image_url": "recycleitem/1-20210603021338.png",
"image_file": null
},
{
"id": "031",
"name": "電鍋",
"english_name": "Electric pot",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603024304.png",
"image_file": null
},
{
"id": "032",
"name": "上衣",
"english_name": "Shirt",
"recyclable": "回收指示",
"notes": "以可穿著為主(若有髒污、破損、黃斑或起毛球者,為不堪用不回收),回收前請先清洗乾淨勿弄溼,並打包後裝袋,交由清潔隊資源回收車或洽相關回收團體回收。",
"image_url": "recycleitem/1-20210603113339.png",
"image_file": null
},
{
"id": "033",
"name": "外套",
"english_name": "Coat",
"recyclable": "回收指示",
"notes": "以可穿著為主(若有髒污、破損、黃斑或起毛球者,為不堪用不回收),回收前請先清洗乾淨勿弄溼,並打包後裝袋,交由清潔隊資源回收車或洽相關回收團體回收。",
"image_url": "recycleitem/1-20210603113440.png",
"image_file": null
},
{
"id": "034",
"name": "褲子",
"english_name": "Pants",
"recyclable": "回收指示",
"notes": "以可穿著為主(若有髒污、破損、黃斑或起毛球者,為不堪用不回收),回收前請先清洗乾淨勿弄溼,並打包後裝袋,交由清潔隊資源回收車或洽相關回收團體回收。",
"image_url": "recycleitem/1-20210603113532.png",
"image_file": null
},
{
"id": "035",
"name": "口罩",
"english_name": "Mask",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603040733.png",
"image_file": null
},
{
"id": "036",
"name": "手套",
"english_name": "Gloves",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603113621.png",
"image_file": null
},
{
"id": "037",
"name": "襪子",
"english_name": "Socks",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603115301.png",
"image_file": null
},
{
"id": "038",
"name": "圍巾",
"english_name": "Scarf",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114559.png",
"image_file": null
},
{
"id": "039",
"name": "耳罩",
"english_name": "Earmuffs",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603113901.png",
"image_file": null
},
{
"id": "040",
"name": "舊鞋",
"english_name": "Old shoes",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114425.png",
"image_file": null
},
{
"id": "041",
"name": "帽子",
"english_name": "Cap",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114509.png",
"image_file": null
},
{
"id": "042",
"name": "毛巾",
"english_name": "Towel",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603115210.png",
"image_file": null
},
{
"id": "043",
"name": "冷凝墊",
"english_name": "Cooling gel pad",
"recyclable": "回收指示",
"notes": "屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603032208.png",
"image_file": null
},
{
"id": "044",
"name": "輕便雨衣",
"english_name": "Disposable Rain Cover",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠類,請於回收前沖洗乾淨,鋪平或打節收集成一袋,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603040401.png",
"image_file": null
},
{
"id": "045",
"name": "雨衣",
"english_name": "Raincoat",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠類,請交由清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603021058.png",
"image_file": null
},
{
"id": "046",
"name": "雨傘骨架",
"english_name": "Umbrella skeleton",
"recyclable": "回收指示",
"notes": "可回收,屬金屬類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603021137.png",
"image_file": null
},
{
"id": "047",
"name": "雨傘傘布",
"english_name": "Umbrella cloth",
"recyclable": "回收指示",
"notes": "屬一般垃圾,請用剪刀小心將傘布與金屬傘架分離後,傘布交由一般垃圾車(傘骨為金屬類可回收)。",
"image_url": "recycleitem/1-20210603035555.png",
"image_file": null
},
{
"id": "048",
"name": "雨鞋",
"english_name": "Rain boots",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603021215.png",
"image_file": null
},
{
"id": "049",
"name": "棉被",
"english_name": "Quilt",
"recyclable": "回收指示",
"notes": "生活寢具為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114838.png",
"image_file": null
},
{
"id": "050",
"name": "枕頭",
"english_name": "Pillow",
"recyclable": "回收指示",
"notes": "生活寢具為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114759.png",
"image_file": null
},
{
"id": "051",
"name": "彈簧床墊",
"english_name": "Spring mattress",
"recyclable": "回收指示",
"notes": "(1)可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603114659.png",
"image_file": null
},
{
"id": "052",
"name": "竹蓆(草蓆)",
"english_name": "Straw mat",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603032550.png",
"image_file": null
},
{
"id": "053",
"name": "床單",
"english_name": "Fitted sheet",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603040300.png",
"image_file": null
},
{
"id": "054",
"name": "地毯",
"english_name": "Carpet",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603035816.png",
"image_file": null
},
{
"id": "055",
"name": "浴巾",
"english_name": "Bath towel",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603035641.png",
"image_file": null
},
{
"id": "056",
"name": "抹布",
"english_name": "Rag",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603105449.png",
"image_file": null
},
{
"id": "057",
"name": "衣架",
"english_name": "Hanger",
"recyclable": "回收指示",
"notes": "可回收,請拆下尖端的保護套(有塑膠皮的金屬衣架也請拆下)後交由清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603040614.png",
"image_file": null
},
{
"id": "058",
"name": "牙刷",
"english_name": "Toothbrush",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603041208.png",
"image_file": null
},
{
"id": "059",
"name": "牙膏",
"english_name": "Toothpaste",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器類,請於回收前將內容物清除乾淨後,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603035456.png",
"image_file": null
},
{
"id": "060",
"name": "牙線棒",
"english_name": "Floss picks",
"recyclable": "回收指示",
"notes": "為不可回收物品,因回收後不易處理,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603110253.png",
"image_file": null
},
{
"id": "061",
"name": "牙籤",
"english_name": "Toothpick",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603110431.png",
"image_file": null
},
{
"id": null,
"name": "062「壞」 馬桶",
"english_name": "Broken toilet",
"recyclable": "回收指示",
"notes": "(1)\t屬陶瓷磚瓦類,民眾須事先與所在地區清潔隊約定時間回收。(2)\t屬大宗裝潢修繕廢棄物則應委託合法清除機構清運處理。",
"image_url": "recycleitem/1-20210603025342.png",
"image_file": null
},
{
"id": "063",
"name": "馬桶蓋及其座墊",
"english_name": "Toilet seat",
"recyclable": "回收指示",
"notes": "(1)\t屬純PP或PE材質可以回收。(2)\t混料屬複合材質(較硬的)無回收。",
"image_url": "recycleitem/1-20210603025434.png",
"image_file": null
},
{
"id": "064",
"name": "蓮蓬頭",
"english_name": "Shower head",
"recyclable": "回收指示",
"notes": "(1)\t材質為硬塑膠屬單一材質者可回收,可交付清潔隊資源回收車。(2)\t若為塑膠鍍金屬則屬複合材質為不可回收物品,請交付垃圾車收運。(3)\t管線一般為含紗或部分金屬無法分離的複合材質亦為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603025526.png",
"image_file": null
},
{
"id": "065",
"name": "衛生紙",
"english_name": "Toilet paper",
"recyclable": "回收指示",
"notes": "為不可回收物品,請打包後交付垃圾車收運。",
"image_url": "recycleitem/1-20210603025606.png",
"image_file": null
},
{
"id": "066",
"name": "衛生棉",
"english_name": "Sanitary napkin",
"recyclable": "回收指示",
"notes": "為不可回收物品,請打包後交付垃圾車收運。",
"image_url": "recycleitem/1-20210603025646.png",
"image_file": null
},
{
"id": "067",
"name": "衛生棉外包裝袋",
"english_name": "Sanitary napkin outer packaging bag",
"recyclable": "回收指示",
"notes": "可回收,屬乾淨塑膠袋(不含鋁箔、紙等複合材質),請於回收前先去除內容物,鋪平收集成一袋,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603103745.png",
"image_file": null
},
{
"id": "068",
"name": "紙尿布",
"english_name": "Diapers",
"recyclable": "回收指示",
"notes": "為不可回收物品,請於打包後交付垃圾車收運。(限家戶產出,醫療院所請依醫療廢棄物規定清除)",
"image_url": "recycleitem/1-20210603025824.png",
"image_file": null
},
{
"id": "069",
"name": "紙尿褲",
"english_name": "Diapers",
"recyclable": "回收指示",
"notes": "為不可回收物品,請於打包後交付垃圾車收運。(限家戶產出,醫療院所請依醫療廢棄物規定清除)",
"image_url": "recycleitem/1-20210603025910.png",
"image_file": null
},
{
"id": "070",
"name": "紙尿片",
"english_name": "Diapers",
"recyclable": "回收指示",
"notes": "為不可回收物品,請於打包後交付垃圾車收運。(限家戶產出,醫療院所請依醫療廢棄物規定清除)",
"image_url": "recycleitem/1-20210603025743.png",
"image_file": null
},
{
"id": "071",
"name": "防曬乳",
"english_name": "Suntan lotio",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器類,回收前請先清除內容物,再交由清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603020545.png",
"image_file": null
},
{
"id": "072",
"name": "乳液",
"english_name": "Lotion",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器類,回收前請先清除內容物,再交由清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603020619.png",
"image_file": null
},
{
"id": "073",
"name": "沐浴乳、洗髮精、護髮乳",
"english_name": "Body wash、Shampoo、 Conditioner",
"recyclable": "回收指示",
"notes": "廢容器部分屬可回收,回收前請先清除內容物,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603020803.png",
"image_file": null
},
{
"id": "074",
"name": "髮膠/定型噴霧",
"english_name": "Hair spray",
"recyclable": "回收指示",
"notes": "可回收,使用後應清除內容物,再交付清潔隊資源回收車。",
"image_url": "recycleitem/image%20%20(239)-20210603050634.jpg",
"image_file": null
},
{
"id": "075",
"name": "粉底液",
"english_name": "Liquid foundation",
"recyclable": "回收指示",
"notes": "(1)\t屬單一材質(如塑膠瓶罐、玻璃瓶罐)則可回收,請先去除內容物後,交付清潔隊資源回收車。(2)\t屬複合材質者,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603020858.png",
"image_file": null
},
{
"id": "076",
"name": "睫毛膏",
"english_name": "Mascara",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603021014.png",
"image_file": null
},
{
"id": "077",
"name": "吹風機",
"english_name": "Hair dryer",
"recyclable": "回收指示",
"notes": "可回收,請交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023233.png",
"image_file": null
},
{
"id": "078",
"name": "印表機",
"english_name": "Printer",
"recyclable": "回收指示",
"notes": "可交本局資源回收車回收或可洽資訊商品販賣業者處逆向回收。",
"image_url": "recycleitem/1-20210603023838.png",
"image_file": null
},
{
"id": "079",
"name": "墨水匣",
"english_name": "Ink Cartridge",
"recyclable": "回收指示",
"notes": "可回收,請洽詢各碳粉匣製造商協助回收。",
"image_url": "recycleitem/1-20210603040132.png",
"image_file": null
},
{
"id": "080",
"name": "標籤貼紙",
"english_name": "Label sticker",
"recyclable": "回收指示",
"notes": "屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603015715.png",
"image_file": null
},
{
"id": "081",
"name": "膠水瓶",
"english_name": "Plastic glue bottle",
"recyclable": "回收指示",
"notes": "可回收,回收前請先清除內容物,廢容器部分請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603015220.png",
"image_file": null
},
{
"id": "082",
"name": "熱感應紙",
"english_name": "Termal paper",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603031929.png",
"image_file": null
},
{
"id": "083",
"name": "電子發票",
"english_name": "Electronic receipt",
"recyclable": "回收指示",
"notes": "屬熱感應紙印製,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603031845.png",
"image_file": null
},
{
"id": "084",
"name": "筆記本",
"english_name": "Notebook",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,回收前請先行除去塑膠封面、膠帶、線圈,釘書針等非屬紙類物品後,請攤平、打包後集中回收。",
"image_url": "recycleitem/1-20210603034115.png",
"image_file": null
},
{
"id": "085",
"name": "筆記書紙",
"english_name": "Notebook paper",
"recyclable": "回收指示",
"notes": "(1)\t可回收,屬廢紙類,請先去除塑膠包覆封面、外封套、塑膠線圈、膠帶、釘書針後,將之鋪平壓扁,並以易於搬運的方式捆綁。(2)\t報紙類、牛皮紙類及白紙類另分別綑綁,再交付回收商或本局清潔隊之資源回收車或回收點。",
"image_url": "recycleitem/1-20210603015531.png",
"image_file": null
},
{
"id": "086",
"name": "原子筆塑膠外殼",
"english_name": "Ballpoint pen shell",
"recyclable": "回收指示",
"notes": "(1)\t原子筆塑膠外殼請收集一束後再交付清潔隊資源回收車,回收前請先將筆芯去除。(2)\t若包含複合材料或軟襯則不可回收。",
"image_url": "recycleitem/1-20210603014855.png",
"image_file": null
},
{
"id": "087",
"name": "筆芯",
"english_name": "Pen",
"recyclable": "回收指示",
"notes": "(1)\t請將筆殼分開屬塑膠部份回收,請收集一束後在交付清潔隊資源回收車。(2)\t筆芯屬複合材質為不可回收物品。",
"image_url": "recycleitem/1-20210603015003.png",
"image_file": null
},
{
"id": "088",
"name": "金屬釘書機",
"english_name": "Metal stapler",
"recyclable": "回收指示",
"notes": "可回收,請先去除釘書針,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603015045.png",
"image_file": null
},
{
"id": "089",
"name": "信封",
"english_name": "Envelope",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603034028.png",
"image_file": null
},
{
"id": "090",
"name": "便利貼",
"english_name": "Sticky notes",
"recyclable": "回收指示",
"notes": "便利貼背面的特殊黏膠屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603015306.png",
"image_file": null
},
{
"id": "091",
"name": "便條紙",
"english_name": "Notes",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,請收集成袋,並交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603015344.png",
"image_file": null
},
{
"id": "092",
"name": "宣傳單",
"english_name": "Flyer",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603033912.png",
"image_file": null
},
{
"id": "093",
"name": "相片紙",
"english_name": "Photographic printing paper",
"recyclable": "回收指示",
"notes": "相片紙含有顯影劑,屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603020119.png",
"image_file": null
},
{
"id": "094",
"name": "帳單信封",
"english_name": "Bill envelope",
"recyclable": "回收指示",
"notes": "可回收,請先將薄塑膠膜拆下丟一般垃圾,紙製的信封屬廢紙類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603041133.png",
"image_file": null
},
{
"id": "095",
"name": "報紙",
"english_name": "Newspaper",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,先鋪平壓扁,並以易於搬運的方式捆綁,再交付回收商或本局清潔隊之資源回收車或回收點。",
"image_url": "recycleitem/1-20210603115448.png",
"image_file": null
},
{
"id": "096",
"name": "廣告中空板",
"english_name": "PP plate sheet",
"recyclable": "回收指示",
"notes": "屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603031532.png",
"image_file": null
},
{
"id": "097",
"name": "橡皮擦",
"english_name": "Eraser",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603115925.png",
"image_file": null
},
{
"id": "098",
"name": "購物紙袋",
"english_name": "shopping paper bag",
"recyclable": "回收指示",
"notes": "(1)\t請先將紙袋鋪平疊好,並加以捆綁後再交付回收商、清潔隊資源回收車或回收點。(2)\t目前本市轄內部分販賣場所設有「袋袋相傳」,亦可交付各站回收箱回收,透過循環回收及使用讓可用資源得以再利用。",
"image_url": "recycleitem/1-20210603102424.png",
"image_file": null
},
{
"id": "099",
"name": "雜誌、書本",
"english_name": "Magazine、Book",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603115358-1.png",
"image_file": null
},
{
"id": "100",
"name": "鎳鎘電池",
"english_name": "Nickel-cadmium battery",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池不要扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603022148.png",
"image_file": null
},
{
"id": "101",
"name": "鐵製鉛筆盒",
"english_name": "Iron Pencil case",
"recyclable": "回收指示",
"notes": "可回收,屬廢鐵類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603034820.png",
"image_file": null
},
{
"id": "102",
"name": "鹼性電池",
"english_name": "Alkaline battery",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池不要扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603022017.png",
"image_file": null
},
{
"id": "103",
"name": "乾電池",
"english_name": "Dry cell",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池請勿扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603021637.png",
"image_file": null
},
{
"id": "104",
"name": "筒型鹼錳電池",
"english_name": "Cylindrical alkaline manganese battery",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池不要扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603021722.png",
"image_file": null
},
{
"id": "105",
"name": "鎳氫電池",
"english_name": "NiMH",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池不要扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603022110.png",
"image_file": null
},
{
"id": "106",
"name": "充電電池",
"english_name": "Rechargeable Battery",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池不要扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603022230.png",
"image_file": null
},
{
"id": "107",
"name": "鈕釦型電池",
"english_name": "Button cell battery",
"recyclable": "回收指示",
"notes": "(1) 使用完畢之廢乾電池不要扔進垃圾桶。(2) 請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603021935.png",
"image_file": null
},
{
"id": "108",
"name": "鋰電池",
"english_name": "Li-ion Battery",
"recyclable": "回收指示",
"notes": "(1)\t使用完畢之廢乾電池不要扔進垃圾桶。(2)\t請存放於塑膠容器,累積到一定數量時,至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收筒之集中回收點辦理回收或是交由清潔隊資源回收車亦可。",
"image_url": "recycleitem/1-20210603022309.png",
"image_file": null
},
{
"id": "109",
"name": "鉛蓄電池",
"english_name": "lead-acid battery",
"recyclable": "回收指示",
"notes": "可回收,請交付本局資源回收車回收或汽機車行或保修廠逆向回收。",
"image_url": "recycleitem/1-20210603025052.png",
"image_file": null
},
{
"id": "110",
"name": "機殼",
"english_name": "Computer case",
"recyclable": "回收指示",
"notes": "可回收,屬廢資訊物品類,可交本局資源回收車回收或送至資訊賣場逆向回收。",
"image_url": "recycleitem/1-20210603030138.png",
"image_file": null
},
{
"id": "111",
"name": "鍵盤",
"english_name": "Keyboard",
"recyclable": "回收指示",
"notes": "可回收,屬廢資訊物品類,可交本局資源回收車回收或送至資訊賣場逆向回收。",
"image_url": "recycleitem/1-20210603030344.png",
"image_file": null
},
{
"id": "112",
"name": "螢幕",
"english_name": "Monitor",
"recyclable": "回收指示",
"notes": "可回收,屬廢資訊物品類,可交本局資源回收車回收或送至資訊賣場逆向回收。",
"image_url": "recycleitem/1-20210603030307.png",
"image_file": null
},
{
"id": "113",
"name": "影音光碟機",
"english_name": "Video cd players",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023921.png",
"image_file": null
},
{
"id": "114",
"name": "滑鼠",
"english_name": "Mouse",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603030058.png",
"image_file": null
},
{
"id": "115",
"name": "滑鼠墊",
"english_name": "Mouse mat",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603030622.png",
"image_file": null
},
{
"id": "116",
"name": "平板電腦",
"english_name": "Tablet",
"recyclable": "回收指示",
"notes": "可回收,屬廢資訊物品類,可交本局資源回收車回收或送至資訊賣場逆向回收。",
"image_url": "recycleitem/1-20210603030012.png",
"image_file": null
},
{
"id": "117",
"name": "日曆",
"english_name": "Calendar",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,回收前請先行除去塑膠封面、膠帶、線圈,釘書針等非屬紙類物品後,請攤平、打包後集中回收。",
"image_url": "recycleitem/1-20210603033711.png",
"image_file": null
},
{
"id": "118",
"name": "月曆",
"english_name": "Monthly calendar",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,回收前請先行除去塑膠封面、膠帶、線圈,釘書針等非屬紙類物品後,請攤平、打包後集中回收。",
"image_url": "recycleitem/1-20210603033818.png",
"image_file": null
},
{
"id": "119",
"name": "白板",
"english_name": "Whiteboard",
"recyclable": "回收指示",
"notes": "屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603115849.png",
"image_file": null
},
{
"id": "120",
"name": "名片",
"english_name": "Business card",
"recyclable": "回收指示",
"notes": "可回收,無加膜之單一材質屬廢紙類,請收集成袋,並交付清潔隊資源回收車。如為加膜的複合性材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603020248.png",
"image_file": null
},
{
"id": "121",
"name": "再生紙",
"english_name": "Recycled paper",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,請先去除塑膠包覆封面、外封套、塑膠線圈、膠帶、釘書針後將之鋪平壓扁,並以易於搬運的方式捆綁,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603015434.png",
"image_file": null
},
{
"id": "122",
"name": "光碟片",
"english_name": "Optical disc",
"recyclable": "回收指示",
"notes": "(1)\t一般的廢棄CD、VCD、DVD等光碟片,但不包含塑膠唱片。(2)\t光碟片本身的主材質是PC塑膠,但因為有鍍上金屬材質,處理製程不同,請收集後裝疊成一袋交付清潔隊資源回收車。(3)\t光碟外殼若為塑膠材質可另行回收。",
"image_url": "recycleitem/%201.png",
"image_file": null
},
{
"id": "123",
"name": "行動電源",
"english_name": "Power bank",
"recyclable": "回收指示",
"notes": "可回收,屬廢乾電池類,可交付至量販店、超級市場、連鎖便利商店、交通場站便利商店業、連鎖清潔及化妝品零售店、無線通信器材零售店、攝影器材零售店等設有電池回收桶之集中回收點逆向回收,或是交由清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603020345.png",
"image_file": null
},
{
"id": "124",
"name": "行動電話充電器",
"english_name": "Mobile phone charger",
"recyclable": "回收指示",
"notes": "可回收,交付清潔隊資源回收車或無線通信器材行、資訊賣場等處逆向回收。",
"image_url": "recycleitem/1-20210603020505.png",
"image_file": null
},
{
"id": "125",
"name": "行動電話",
"english_name": "Mobile phone",
"recyclable": "回收指示",
"notes": "可回收,交付清潔隊資源回收車或無線通信器材行、資訊賣場等處逆向回收。",
"image_url": "recycleitem/1-20210603020423.png",
"image_file": null
},
{
"id": "126",
"name": "手機殼",
"english_name": "Smartphone case",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603040814.png",
"image_file": null
},
{
"id": "127",
"name": "錄音帶",
"english_name": "Audio tape",
"recyclable": "回收指示",
"notes": "(1)\t外殼多屬PS(聚苯乙烯)塑膠材質是可回收的,請交付清潔隊資源回收車。(2)\t錄影(音)帶內的咖啡色膠卷請以一般垃圾處理,交付垃圾車清運。",
"image_url": "recycleitem/1.png",
"image_file": null
},
{
"id": "128",
"name": "藥袋",
"english_name": "Medicine bag",
"recyclable": "回收指示",
"notes": "屬複合材質為不可回收物品。如民眾將紙或塑膠片分開,薄塑膠膜因膠粘殘紙屬為不可回收物品,紙的部分可回收,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603103631.png",
"image_file": null
},
{
"id": "129",
"name": "隱形眼鏡",
"english_name": "Contact lens",
"recyclable": "回收指示",
"notes": "裝隱形眼鏡的容器為塑膠製品,請交由清潔隊資源回收車。封膜屬複合材質,為不可回收物品,請交付垃圾車收運。隱形眼鏡本體以一般垃圾處理,請勿隨手丟進馬桶沖掉。",
"image_url": "recycleitem/1-20210603040654.png",
"image_file": null
},
{
"id": "130",
"name": "水銀體溫計",
"english_name": "Mercury thermometer",
"recyclable": "回收指示",
"notes": "(1)\t可回收,測量人體溫度所使用的水銀體溫計,不含實驗室用品。(2)\t請使用原包裝盒打包後,應特別叮囑及交付清潔隊資源回收車隨車人員。",
"image_url": "recycleitem/1-20210603032023.png",
"image_file": null
},
{
"id": "131",
"name": "鏡子",
"english_name": "Mirror",
"recyclable": "回收指示",
"notes": "為複合材質不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603025300.png",
"image_file": null
},
{
"id": "132",
"name": "水果網袋",
"english_name": "Fruit styrofoam net",
"recyclable": "回收指示",
"notes": "可回收,回收前請去除內容物並簡單沖洗,收集成一袋和塑膠類一併交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603103831.png",
"image_file": null
},
{
"id": "133",
"name": "木片便當盒",
"english_name": "Wooden of lunch box",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603105939.png",
"image_file": null
},
{
"id": "134",
"name": "包裝用保麗龍",
"english_name": "Styrofoam for packaging",
"recyclable": "回收指示",
"notes": "(1)\t可回收,屬工業保麗龍部份,應由相關業者自行集中送往回收商處理。(2)\t非事業單位零星的包裝用保麗龍,回收前請先去除內容物、膠帶、木材、鐵釘等非保麗龍材質之物品,再交付本局清潔隊之資源回收車或回收點回收。",
"image_url": "recycleitem/1-20210603111236.png",
"image_file": null
},
{
"id": "135",
"name": "包裝紙箱",
"english_name": "Packaging cartons",
"recyclable": "回收指示",
"notes": "1.可回收,先去除塑膠包覆封面、外封套、膠帶、釘書針後將之鋪平壓扁,並以易於搬運的方式捆綁。2.報紙類、牛皮紙類及白紙類請另外綑綁回收,交付回收商、清潔隊資源回收車或回收點回收。",
"image_url": "recycleitem/1-20210603113144.png",
"image_file": null
},
{
"id": "136",
"name": "冰品盒",
"english_name": "Styrofoam box",
"recyclable": "回收指示",
"notes": "可回收,一般家戶零星的包裝用保麗龍,回收前請先去除內容物、膠帶等非保麗龍材質之物品,裝成一袋後,再交付清潔隊資源回收車或回收點。",
"image_url": "recycleitem/1-20210603111437.png",
"image_file": null
},
{
"id": "137",
"name": "防油紙袋",
"english_name": "Oil proof paper bag",
"recyclable": "回收指示",
"notes": "為不可回收物品,沾滿食物水份與油脂的炸雞紙袋回收效率差,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603040852.png",
"image_file": null
},
{
"id": "138",
"name": "紙杯、紙碗、紙盤",
"english_name": "Paper cup、paper bowl、paper plate、paper saucer",
"recyclable": "回收指示",
"notes": "可回收,屬紙容器類,請於回收前將未食用完之食物依廚餘分類,並以清水略加清洗瀝乾分類堆疊後,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603110635.png",
"image_file": null
},
{
"id": "139",
"name": "泡麵碗",
"english_name": "Instant noodle bowl",
"recyclable": "回收指示",
"notes": "可回收,屬紙容器類,請於回收前將未食用完之食物依廚餘分類,並以清水略加清洗瀝乾分類堆疊後,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603110036.png",
"image_file": null
},
{
"id": "140",
"name": "美耐皿餐具",
"english_name": "Melamine tableware",
"recyclable": "回收指示",
"notes": "(1)\t為不可回收物品,因其以「三聚氰胺甲醛樹脂(melamine-formaldehyde resin)」製成,請交付垃圾車收運。(2)\t一般自助餐等餐飲業使用之可重複清洗餐具,類似塑膠材質,但實際維美耐皿餐具不能回收。",
"image_url": "recycleitem/1-20210603104850.png",
"image_file": null
},
{
"id": "141",
"name": "紙餐盒",
"english_name": "Paper tableware",
"recyclable": "回收指示",
"notes": "(1)\t可回收,紙容器非屬紙類廢棄物,應予分開回收,因為兩者在回收場端的處理流程完全不同。(2)\t回收前請先去除內容物,略加沖洗,將其壓扁分類堆疊,再交付回收商或清潔隊之資源回收車或回收點回收。",
"image_url": "recycleitem/1-20210603111133.png",
"image_file": null
},
{
"id": "142",
"name": "紙容器",
"english_name": "Paper container",
"recyclable": "回收指示",
"notes": "(1)\t可回收,紙容器非屬紙類廢棄物,應予分開回收,因為兩者在回收場端的處理流程完全不同。(2)\t回收前請先去除內容物並取出吸管,略加沖洗,將其壓扁分類堆疊,再交付回收商或清潔隊之資源回收車或回收點回收。",
"image_url": "recycleitem/1-20210603110825.png",
"image_file": null
},
{
"id": "143",
"name": "紙箱",
"english_name": "Carton",
"recyclable": "回收指示",
"notes": "可回收,屬廢紙類,先去除膠帶、釘書針後將之鋪平壓扁,並以易於搬運的方式捆綁,再交付回收商或清潔隊資源回收車或回收點。",
"image_url": "recycleitem/1-20210603113228.png",
"image_file": null
},
{
"id": "144",
"name": "塑膠水杯",
"english_name": "Plastic water cups",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器,回收前請先去除內容物,並堆疊後交付清潔隊資源回收車或回收點。",
"image_url": "recycleitem/1-20210603022358.png",
"image_file": null
},
{
"id": "145",
"name": "飲料杯",
"english_name": "Drink cup",
"recyclable": "回收指示",
"notes": "1.可回收,紙、塑膠(含保麗龍)、生物可分解等材質之飲料杯,均可回收。2.回收前請先去除吸管、封膜及內容物後,以清水略為清洗瀝乾後分類堆疊再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603110538.png",
"image_file": null
},
{
"id": "146",
"name": "塑膠盒",
"english_name": "Plastic punnet",
"recyclable": "回收指示",
"notes": "可回收,回收前請先清空內容物,以水略加清洗瀝乾後,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603022927.png",
"image_file": null
},
{
"id": "147",
"name": "塑膠容器",
"english_name": "Plastic containers",
"recyclable": "回收指示",
"notes": "可回收,回收前請先清空內容物,以水略加清洗瀝乾後,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603022839.png",
"image_file": null
},
{
"id": "148",
"name": "塑膠餐盤",
"english_name": "Plastic tableware",
"recyclable": "回收指示",
"notes": "可回收,回收前請先清空內容物,以水略加清洗瀝乾後,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023059.png",
"image_file": null
},
{
"id": "149",
"name": "塑膠提袋",
"english_name": "Plastic bag",
"recyclable": "回收指示",
"notes": "(1)\t請先確認塑膠袋透光度,能透光且乾淨(無汙染、無油漬血水)的塑膠袋才是資源回收項目。(2)\t回收前請先去除內容物,鋪平或打結收集成一袋(不含鋁箔、紙等複合性材質包裝紙),交付清潔隊資源回收車。",
"image_url": "recycleitem/1.jpg",
"image_file": null
},
{
"id": "150",
"name": "乾淨透明包裝袋",
"english_name": "Clear transparent packaging bag",
"recyclable": "回收指示",
"notes": "乾淨塑膠袋具有透光度為可回收物品,回收前請先去除內容物,鋪平或打結收集成一袋回收,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603103302.png",
"image_file": null
},
{
"id": "151",
"name": "蛋糕盒",
"english_name": "Cake box",
"recyclable": "回收指示",
"notes": "可回收,一般家戶零星的包裝用保麗龍,回收前請先去除內容物、膠帶、木材、鐵釘等非保麗龍材質之物品,再交付清潔隊資源回收車或回收點回收。",
"image_url": "recycleitem/1-20210603111535.png",
"image_file": null
},
{
"id": "152",
"name": "保麗龍杯",
"english_name": "Styrofoam Cup",
"recyclable": "回收指示",
"notes": "可回收,保麗龍餐具(含杯碗盤盒),請清除內容物,簡單沖洗及瀝除水分,隨塑膠容器類交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603111625.png",
"image_file": null
},
{
"id": "153",
"name": "玻璃容器",
"english_name": "glass container",
"recyclable": "回收指示",
"notes": "(1)\t可分三色(白色、綠色、褐色)回收,回收前請先去除內容物,並去除瓶蓋、吸管,以水略加清洗瀝乾後交付清潔隊資源回收車。(2)\t如有破損,請收集後以堅固的容器(如紙箱)盛裝標示,並特別叮嚀及交付資源回收車,避免受傷。(3)\t若未破碎,則可送至量販店、超級市場、連鎖便利商店及清潔隊資源回收車等逆向回收。",
"image_url": "recycleitem/image%20%20(46)-20210603050040.jpg",
"image_file": null
},
{
"id": "154",
"name": "保鮮膜,包裝束膜類",
"english_name": "Plastic wrap",
"recyclable": "回收指示",
"notes": "因密封袋及保鮮膜因使用過程易沾染油污,目前屬不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603105232.png",
"image_file": null
},
{
"id": "155",
"name": "米酒瓶",
"english_name": "Rice wine bottle",
"recyclable": "回收指示",
"notes": "(1)\t可回收,回收前請先去除內容物,並去除瓶蓋,以水略加清洗瀝乾後交付清潔隊資源回收車。(2)\t如有破損,請收集後以堅固的容器(如紙箱)盛裝標示,並特別叮嚀及交付資源回收車,避免受傷。(3)\t若未破碎,則可送至雜貨店、超級市場、或通路賣場換取退瓶費(瓶身有標示退瓶價格之酒瓶)。",
"image_url": "recycleitem/1-20210603112232.png",
"image_file": null
},
{
"id": "156",
"name": "牛奶瓶",
"english_name": "Milk bottle",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器器類之資源回收物,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603112138.png",
"image_file": null
},
{
"id": "157",
"name": "可伸縮矽膠餐具(袋)",
"english_name": "Foldable bowls",
"recyclable": "回收指示",
"notes": "為不可回收物品,因成分複雜,再生處理時異物不能被充分排除,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603104735.png",
"image_file": null
},
{
"id": "158",
"name": "沙拉油瓶",
"english_name": "Salad oil plastic bottle",
"recyclable": "回收指示",
"notes": "可回收,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603113009.png",
"image_file": null
},
{
"id": "159",
"name": "回鍋油",
"english_name": "Reused oil",
"recyclable": "回收指示",
"notes": "可回收,請以容器(原商品容器、寶特瓶或塑膠空瓶)盛裝蓋緊,再交付清潔隊資源回收車。事業單位或攤商所產生的廢食用油,也可交由清潔隊資源回收車或委託合法回收管道回收。",
"image_url": "recycleitem/1-20210603105611.png",
"image_file": null
},
{
"id": "160",
"name": "食用油",
"english_name": "Edible oil",
"recyclable": "回收指示",
"notes": "可回收,請以容器(原商品容器、寶特瓶或塑膠空瓶)盛裝蓋緊,再交付清潔隊資源回收車,而事業單位或攤商所產生的廢食用油,也可交由清潔隊資源回收車或委託合法回收管道回收。",
"image_url": "recycleitem/1-20210603105843.png",
"image_file": null
},
{
"id": "161",
"name": "塑膠製農藥容器",
"english_name": "Pesticide plastic container",
"recyclable": "回收指示",
"notes": "(1)\t可回收,農藥瓶罐需使用完畢,不要有剩餘液體。(2)\t以三沖三洗方式,將農藥瓶罐沖洗乾淨,並將清洗液倒入噴灑器內,重複噴灑利用。(3)\t清除內容物後並打包成一袋,交由農會或農藥販賣業者回收點回收(農業局輔導設置,清潔隊協助清運)或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023006.png",
"image_file": null
},
{
"id": "162",
"name": "新衣服包裝塑膠袋",
"english_name": "New clothes plastic packaging bag",
"recyclable": "回收指示",
"notes": "塑膠袋摩擦時具清脆聲音,屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603102941.png",
"image_file": null
},
{
"id": "163",
"name": "碎玻璃",
"english_name": "Shattered glass",
"recyclable": "回收指示",
"notes": "可回收,請以報紙妥善包裹或用堅固的容器盛裝標示,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/1-20210603041021.png",
"image_file": null
},
{
"id": "164",
"name": "塑膠花盆",
"english_name": "Plastic flowerpot",
"recyclable": "回收指示",
"notes": "可回收,回收前請先去除內容物,並堆疊後交付清潔隊資源回收車或回收點。",
"image_url": "recycleitem/1-20210603022451.png",
"image_file": null
},
{
"id": "165",
"name": "碎平面玻璃",
"english_name": "Shattered flat glass",
"recyclable": "回收指示",
"notes": "可回收,請以報紙妥善包裹或用堅固的容器盛裝標示,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/1-20210603031101.png",
"image_file": null
},
{
"id": "166",
"name": "塑膠類免洗餐具",
"english_name": "Plastic disposable tableware",
"recyclable": "回收指示",
"notes": "可回收,回收前請以水略加清洗瀝乾後,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023153.png",
"image_file": null
},
{
"id": "167",
"name": "筷子",
"english_name": "Chopsticks",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603110148.png",
"image_file": null
},
{
"id": "168",
"name": "補充包",
"english_name": "Refill pack",
"recyclable": "回收指示",
"notes": "補充包內有鋁塑複合材質製成,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603103208.png",
"image_file": null
},
{
"id": "169",
"name": "鋁箔包",
"english_name": "Tetra pak",
"recyclable": "回收指示",
"notes": "1.可回收,屬廢紙容器類,紙容器非屬紙類廢棄物,應予分開回收,因為兩者在回收場端的處理流程完全不同。2.回收前請先去除內容物並取出吸管,略加沖洗,將其壓扁,再交付清潔隊資源回收車或回收點。",
"image_url": "recycleitem/1-20210603112724.png",
"image_file": null
},
{
"id": "170",
"name": "蔬果包裝袋",
"english_name": "vegetable and fruit packaging bag",
"recyclable": "回收指示",
"notes": "(1) 請先確認塑膠袋透光度,能透光且乾淨(無汙染、無油漬血水)的塑膠袋才是資源回收項目。(2) 回收前請先去除內容物,鋪平或打結收集成一袋(不含鋁箔、紙等複合性材質包裝紙),交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603103050.png",
"image_file": null
},
{
"id": "171",
"name": "養樂多瓶",
"english_name": "Yakult bottle",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器類,回收前請先清除內容物,以水略為沖洗,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603112645.png",
"image_file": null
},
{
"id": "172",
"name": "廢包裝用發泡塑膠",
"english_name": "Styrofoam",
"recyclable": "回收指示",
"notes": "可回收,回收前請先去除膠帶等其他材質,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603111343.png",
"image_file": null
},
{
"id": "173",
"name": "飲料紙盒包",
"english_name": "Drink carton",
"recyclable": "回收指示",
"notes": "(1)可回收,屬廢紙容器類,回收前請先去除內容物並取出吸管,略加沖洗,將其壓扁,再交付清潔隊資源回收車或回收點。(2)紙容器非屬紙類廢棄物,應予分開回收,因為兩者在回收場端的處理流程完全不同。",
"image_url": "recycleitem/1-20210603112921.png",
"image_file": null
},
{
"id": "174",
"name": "過期藥丸",
"english_name": "Expired pill",
"recyclable": "回收指示",
"notes": "(1)\t為不可回收物品,過期藥丸、藥水以一般垃圾處理,請勿丟棄或倒入水槽或馬桶。(2)\t請把廢棄藥丸從包裝紙中取出集中在夾鏈袋內,若有藥水也倒入夾鏈袋,記得把沖洗藥罐的汙水也倒入其中,如有使用過的茶葉、咖啡渣或擦手紙可一併放進夾鏈袋中,全部混和後,密封起來隨著家庭垃圾交付垃圾車收運。(3)\t過期麻醉藥及癌症藥物請送回原開立醫院、藥局。",
"image_url": "recycleitem/1-20210603031451.png",
"image_file": null
},
{
"id": "175",
"name": "漂白水容器",
"english_name": "Bleach container",
"recyclable": "回收指示",
"notes": "1.可回收,需使用完畢,不要有剩餘液體。2.以三沖三洗方式,將漂白水容器沖洗乾淨,並將清洗液倒入容器內,重複利用。3.清除內容物後並打包成一袋,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603113052.png",
"image_file": null
},
{
"id": "176",
"name": "鋁鐵罐",
"english_name": "Tin and aluminum cans",
"recyclable": "回收指示",
"notes": "可回收,回收前請先清除內容物,以水略為沖洗,並予以壓扁減少體積,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603112819.png",
"image_file": null
},
{
"id": "177",
"name": "罐頭",
"english_name": "Can",
"recyclable": "回收指示",
"notes": "可回收,屬廢鐵容器,回收前請先清除內容物,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603030842.png",
"image_file": null
},
{
"id": "178",
"name": "礦泉水瓶",
"english_name": "Mineral water bottles",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器類,回收前請先去除內容物並取出吸管,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603112429.png",
"image_file": null
},
{
"id": "179",
"name": "鋁鍋",
"english_name": "Aluminum caldron",
"recyclable": "回收指示",
"notes": "可回收,請以金屬類之資源回收物交付清潔隊資源回收車。",
"image_url": "recycleitem/%201-20210603104533.png",
"image_file": null
},
{
"id": "180",
"name": "蠟燭玻璃罐",
"english_name": "Candle glass jar",
"recyclable": "回收指示",
"notes": "可回收,請與其他資源物分開回收,交付清潔隊資源回收車或回收點,以利工廠原型再利用,殘留的蠟燭可一併回收。",
"image_url": "recycleitem/1-20210603112339.png",
"image_file": null
},
{
"id": "181",
"name": "鐵桶",
"english_name": "Iron drum",
"recyclable": "回收指示",
"notes": "(1)可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603030714.png",
"image_file": null
},
{
"id": "182",
"name": "電熱水瓶",
"english_name": "Electric water boiler",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603023958.png",
"image_file": null
},
{
"id": "183",
"name": "電線、延長線、電源線、充電線",
"english_name": "wire、power cable、charging cable",
"recyclable": "回收指示",
"notes": "包覆銅線電線、廢電線。可回收,請交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603024344.png",
"image_file": null
},
{
"id": "184",
"name": "主機板",
"english_name": "Motherboard",
"recyclable": "回收指示",
"notes": "可回收,屬廢資訊物品類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603030225.png",
"image_file": null
},
{
"id": "185",
"name": "皮帶",
"english_name": "Belt",
"recyclable": "回收指示",
"notes": "為不可回收物品,皮製品(不論真假皮),請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114113.png",
"image_file": null
},
{
"id": "186",
"name": "行李箱",
"english_name": "Suitcase",
"recyclable": "回收指示",
"notes": "軟殼(布面)-不可回收,請丟垃圾車。硬殼-不可回收、不可直接丟垃圾車,請電洽各區清潔隊以專車清運。",
"image_url": "recycleitem/1-20210603031005.png",
"image_file": null
},
{
"id": "187",
"name": "砂紙",
"english_name": "Sandpaper",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603015915.png",
"image_file": null
},
{
"id": "188",
"name": "信用卡及磁扣",
"english_name": "credit card inductive key card",
"recyclable": "回收指示",
"notes": "捷運用的1日券磁卡(扣)、信用卡均為不可回收物品,請於剪卡後交付垃圾車收運。",
"image_url": "recycleitem/1-20210603021251.png",
"image_file": null
},
{
"id": "189",
"name": "氣泡紙",
"english_name": "Bubble wrap",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603020022.png",
"image_file": null
},
{
"id": "190",
"name": "針",
"english_name": "Needle",
"recyclable": "回收指示",
"notes": "為不可回收物品,請用報紙包好交付垃圾車收運。",
"image_url": "recycleitem/1-20210603040528.png",
"image_file": null
},
{
"id": "191",
"name": "眼影",
"english_name": "Eye shadow",
"recyclable": "回收指示",
"notes": "外殼屬塑膠類則可回收,請先去除內容物後,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603020935.png",
"image_file": null
},
{
"id": "192",
"name": "彩色筆",
"english_name": "Color pen",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠類,彩色筆塑膠外殼請收集一束後再交付清潔隊資源回收車,回收前請先將筆芯去除。",
"image_url": "recycleitem/1-20210603041058.png",
"image_file": null
},
{
"id": "193",
"name": "瓶蓋",
"english_name": "Bottle cap",
"recyclable": "回收指示",
"notes": "(1)\t塑膠瓶蓋可以回收,請收集一袋再交付清潔隊資源回收車。(2)\t鐵製瓶蓋可以回收,請將內層襯墊清除後收集一袋,交付清潔隊資源回收車。(3)\t回收前請以清水略清洗清除內容物、污漬。",
"image_url": "recycleitem/1-20210603112521.png",
"image_file": null
},
{
"id": "194",
"name": "圍裙",
"english_name": "Apron",
"recyclable": "回收指示",
"notes": "因容易沾染油汙為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603105357.png",
"image_file": null
},
{
"id": "195",
"name": "棉被套袋",
"english_name": "Quilt storage bag",
"recyclable": "回收指示",
"notes": "屬複合材質為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603114940.png",
"image_file": null
},
{
"id": "196",
"name": "窗簾",
"english_name": "Curtain",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603115123.png",
"image_file": null
},
{
"id": "197",
"name": "絨毛玩具",
"english_name": "Rag Doll",
"recyclable": "回收指示",
"notes": "為一般垃圾,不回收,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603033624.png",
"image_file": null
},
{
"id": "198",
"name": "堪用家具",
"english_name": "Furniture",
"recyclable": "回收指示",
"notes": "(1)\t可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603021557.png",
"image_file": null
},
{
"id": "199",
"name": "瑜珈墊",
"english_name": "Yoga mat",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603031359.png",
"image_file": null
},
{
"id": "200",
"name": "電腦椅",
"english_name": "Swivel chair",
"recyclable": "回收指示",
"notes": "(1) 可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603030503.png",
"image_file": null
},
{
"id": "202",
"name": "機車車殼",
"english_name": "Scooter skin",
"recyclable": "回收指示",
"notes": "為不可回收物品,多屬ABS材質,目前無回收去化管道,且非屬公告應回收項目,故可交由垃圾車收運.",
"image_url": "recycleitem/1-20210603025007.png",
"image_file": null
},
{
"id": "203",
"name": "機車坐墊",
"english_name": "Scooter seat cushion",
"recyclable": "回收指示",
"notes": "由人工塑膠皮、泡綿等組成屬複合材質,為不可回收物品。",
"image_url": "recycleitem/1-20210603024825.png",
"image_file": null
},
{
"id": "204",
"name": "廢機車輪胎",
"english_name": "Waste scooter tire",
"recyclable": "回收指示",
"notes": "(1)\t可回收,屬廢輪胎類,可交由清潔隊資源回收車。(2)\t若資源回收車無空間載運,則可與清潔隊預約以專車收運。",
"image_url": "recycleitem/1-20210603024738.png",
"image_file": null
},
{
"id": "205",
"name": "潤滑油",
"english_name": "Engine oil",
"recyclable": "回收指示",
"notes": "可交由本局資源回收車、機車行、汽車維修廠及加油站等所設置之廢潤滑油回收站進行回收。",
"image_url": "recycleitem/1-20210603035958.png",
"image_file": null
},
{
"id": "206",
"name": "兒童安全座椅",
"english_name": "Child safety seat",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603035902-20210603035902.png",
"image_file": null
},
{
"id": "207",
"name": "汽車防撞保險桿",
"english_name": "Car bumper",
"recyclable": "回收指示",
"notes": "汽車防撞桿、保險桿,內有纖維及橡膠材質等屬複合材質,為不可回收物品。",
"image_url": "recycleitem/1-20210603024641.png",
"image_file": null
},
{
"id": "208",
"name": "特殊規格大型輪胎",
"english_name": "Large off-the-road tire",
"recyclable": "回收指示",
"notes": "通常產出於修配廠等事業單位,請業者自行依市場機制回收或洽廢輪胎處理廠。",
"image_url": "recycleitem/1-20210603025141.png",
"image_file": null
},
{
"id": "209",
"name": "廢汽車輪胎",
"english_name": "Waste car tire",
"recyclable": "回收指示",
"notes": "可回收,屬廢輪胎類,通常產出於修配廠等事業單位,請業者自行依市場機制回收或洽廢輪胎處理廠。",
"image_url": "recycleitem/1-20210603024605.png",
"image_file": null
},
{
"id": "210",
"name": "腳踏車",
"english_name": "Bicycle",
"recyclable": "回收指示",
"notes": "(1) 可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603024422.png",
"image_file": null
},
{
"id": "211",
"name": "廢腳踏車輪胎",
"english_name": "Waste bicycle tire",
"recyclable": "回收指示",
"notes": "(1)\t腳踏車胎不限數量,均可交由清潔隊資源回收車。(2)\t若資源回收車無空間載運,則可與清潔隊預約以專車收運。",
"image_url": "recycleitem/1-20210603024459.png",
"image_file": null
},
{
"id": "213",
"name": "鐵籠",
"english_name": "Iron cage",
"recyclable": "回收指示",
"notes": "(1) 可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603034614.png",
"image_file": null
},
{
"id": "214",
"name": "鐵欄杆",
"english_name": "Iron railings",
"recyclable": "回收指示",
"notes": "(1) 可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603034724.png",
"image_file": null
},
{
"id": "215",
"name": "鐵窗",
"english_name": "Prison",
"recyclable": "回收指示",
"notes": "(1) 可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603034458.png",
"image_file": null
},
{
"id": "216",
"name": "鐵櫃",
"english_name": "Metal cabinet",
"recyclable": "回收指示",
"notes": "(1) 可回收,民眾須事先與區清潔隊約定時間回收。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603030805.png",
"image_file": null
},
{
"id": "217",
"name": "鐵釘",
"english_name": "Nail",
"recyclable": "回收指示",
"notes": "可回收,屬廢鐵類,請獨立交付清潔隊資源回收車,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/1-20210603035024.png",
"image_file": null
},
{
"id": "218",
"name": "鐵鎚",
"english_name": "Hammer",
"recyclable": "回收指示",
"notes": "可回收,��廢鐵類,請獨立交付清潔隊資源回收車,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/1-20210603035120.png",
"image_file": null
},
{
"id": "219",
"name": "滅火器",
"english_name": "Fire extinguisher",
"recyclable": "回收指示",
"notes": "可回收,可依下列方法進行回收:1.委請滅火器藥劑更換及充填合格廠商回收。2.委託廢棄物清理公司依環境保護法清理。3.委託原製造商或其他具處理能力業者重新回收再處理。",
"image_url": "recycleitem/1-20210603031254.png",
"image_file": null
},
{
"id": "220",
"name": "圖釘",
"english_name": "Pushpin",
"recyclable": "回收指示",
"notes": "可回收,屬廢鐵類,請獨立交付清潔隊資源回收車,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/image%20%20(215)-20210603050209.jpg",
"image_file": null
},
{
"id": "221",
"name": "網路線",
"english_name": "Network cable",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603030425.png",
"image_file": null
},
{
"id": "222",
"name": "冷氣機",
"english_name": "Air conditioner",
"recyclable": "回收指示",
"notes": "(1) 可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶廢棄家具(如沙發、椅子、餐桌等) 等巨大垃圾請依約定時間自行搬運至地面樓層,及收運車可達之地點,為避免糾紛清潔隊不負入屋內搬運之責。請注意不要妨礙交通安全及污染環境。",
"image_url": "recycleitem/1-20210603023418.png",
"image_file": null
},
{
"id": "223",
"name": "護貝紙",
"english_name": "Lamination paper",
"recyclable": "回收指示",
"notes": "屬複合材質,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603015808.png",
"image_file": null
},
{
"id": "224",
"name": "橡皮筋",
"english_name": "Rubber band",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603032107.png",
"image_file": null
},
{
"id": "225",
"name": "熟廚餘",
"english_name": "Cooked food waste",
"recyclable": "回收指示",
"notes": "(1)\t可回收,又稱養豬廚餘,包含以下項目:烹飪後食物類:家中用餐或料理後所剩菜葉、根莖類、水果、米飯、米粉、五穀、麵條、麵糰、炸物、披薩等食物。動物性蛋白質:生或熟的肉類(羊、牛、雞、鴨、鵝、豬等禽畜肉類、魚蝦海鮮類)及其內臟。植物性蛋白質:黃豆、豆腐、豆花、豆乾、蛋類食品。澱粉類:(未)烹飪過的米飯、五穀雜糧、麵粉等。加工食品類:((未)過期)罐頭食品、冷凍食品、蜜餞(2)\t請自備容器(如鍋、桶)盛裝,盡量將水份瀝乾再投入廚餘桶內。勿使用塑膠袋盛裝廚餘並避免將塑膠袋投入廚餘收集桶中,避免將筷子、牙籤、乾燥劑、金屬或木材類等不可自然分解等雜物投入廚餘桶中。",
"image_url": "recycleitem/1-20210603032740.png",
"image_file": null
},
{
"id": "226",
"name": "生廚餘",
"english_name": "Uncooked food waste",
"recyclable": "回收指示",
"notes": "(1)\t可回收,又稱堆肥廚餘,包含以下項目:未烹調或腐爛之蔬菜果類:未烹飪或腐爛的蔬菜及橘子、柳丁、蘋果、龍眼、荔枝、鳳梨、西瓜等水果。殘渣類:茶葉渣、咖啡渣、黃豆渣、酒糟、麥渣等。食物薄外殼類:鳳梨殼、菱角殼、龍眼殼、荔枝殼、開心果殼、蛋殼、落花生殼等食材外殼。果核類:龍眼核、荔枝核、枇杷核、桃核、李核等小型水果果核(2)\t請自備容器(如鍋、桶)盛裝,盡量將水份瀝乾再投入廚餘桶內。勿使用塑膠袋盛裝廚餘並避免將塑膠袋投入廚餘收集桶中,避免將筷子、牙籤、乾燥劑、金屬或木材類等不可自然分解等雜物投入廚餘桶中。",
"image_url": "recycleitem/1-20210603032829.png",
"image_file": null
},
{
"id": "227",
"name": "咖啡渣",
"english_name": "Coffee bean pulp",
"recyclable": "回收指示",
"notes": "為生廚餘類,請倒入生廚餘回收桶內。",
"image_url": "recycleitem/1-20210603033528.png",
"image_file": null
},
{
"id": "228",
"name": "茶葉渣",
"english_name": "Tea dregs",
"recyclable": "回收指示",
"notes": "為生廚餘類,請倒入生廚餘回收桶內。",
"image_url": "recycleitem/1-20210603033421.png",
"image_file": null
},
{
"id": "229",
"name": "蛋殼",
"english_name": "Eggshell",
"recyclable": "回收指示",
"notes": "蛋殼是可以回收的生廚餘",
"image_url": "recycleitem/1-20210603033006.png",
"image_file": null
},
{
"id": "230",
"name": "果皮",
"english_name": "Peel",
"recyclable": "回收指示",
"notes": "為生廚餘類,請倒入生廚餘回收桶內。",
"image_url": "recycleitem/1-20210603033236.png",
"image_file": null
},
{
"id": "231",
"name": "米袋",
"english_name": "Rice bag",
"recyclable": "回收指示",
"notes": "含尼龍複合材質(PE+尼龍複合材質),為不可回收物品,請交付垃圾車收運或可當作資源回收物的盛裝袋。",
"image_url": "recycleitem/1-20210603103417.png",
"image_file": null
},
{
"id": "232",
"name": "鳳梨尾(冠芽)",
"english_name": "Pineapple crown",
"recyclable": "回收指示",
"notes": "為一般垃圾,不回收,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603033059.png",
"image_file": null
},
{
"id": "233",
"name": "菜葉",
"english_name": "Vegetable leaf",
"recyclable": "回收指示",
"notes": "為生廚餘類,請倒入生廚餘回收桶內。",
"image_url": "recycleitem/1-20210603033322.png",
"image_file": null
},
{
"id": "234",
"name": "椰子殼",
"english_name": "Coconut shell",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603032919.png",
"image_file": null
},
{
"id": "235",
"name": "金紙",
"english_name": "Joss paper",
"recyclable": "回收指示",
"notes": "為不可回收物品。清明時節祭祖或廟宇拜神時,鼓勵民眾配合紙錢集中燒政策,減少空氣污染。",
"image_url": "recycleitem/1-20210603020205.png",
"image_file": null
},
{
"id": "236",
"name": "食品之鋁箔、紙等複合性材質塑膠袋",
"english_name": "Tetra Pak, paper, composite material plastic bag",
"recyclable": "回收指示",
"notes": "餅乾、糖果等屬「複合材質塑膠袋,為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603102817.png",
"image_file": null
},
{
"id": "237",
"name": "蚊香",
"english_name": "Mosquito coil",
"recyclable": "回收指示",
"notes": "內容物的蚊香屬一般垃圾,外部的鐵容器則需回收。",
"image_url": "recycleitem/1-20210603030924.png",
"image_file": null
},
{
"id": "238",
"name": "陶瓷食器",
"english_name": "Ceramic tableware",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603021424.png",
"image_file": null
},
{
"id": "239",
"name": "陶瓷容器",
"english_name": "Ceramic vessel",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603021504.png",
"image_file": null
},
{
"id": "240",
"name": "麻將",
"english_name": "Mahjong",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603032657.png",
"image_file": null
},
{
"id": "241",
"name": "木柄掃把、木柄拖把",
"english_name": "Broom、mop",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。如把桿為金屬的話,請先將金屬長柄拆卸下來,交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603041355.png",
"image_file": null
},
{
"id": "242",
"name": "濕紙巾外包裝袋",
"english_name": "Wet wipes outer packaging bag",
"recyclable": "回收指示",
"notes": "可回收,塑膠袋(不含鋁箔、紙等複合材質),請於回收前先去除內容物,鋪平或打結收集成一袋,再交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603103529.png",
"image_file": null
},
{
"id": "243",
"name": "鐵製餅乾盒",
"english_name": "Iron Cookie box",
"recyclable": "回收指示",
"notes": "可回收,屬廢鐵類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/1-20210603035310.png",
"image_file": null
},
{
"id": "244",
"name": "複寫紙",
"english_name": "carbon paper",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/1-20210603015630.png",
"image_file": null
},
{
"id": null,
"name": "小型魚缸",
"english_name": "fish jar",
"recyclable": "回收指示",
"notes": "可回收,事先清空缸中的物品,請以報紙妥善包裹或用堅固的容器盛裝標示,並特別叮囑交付清潔隊資源回收車隨車人員,以免受傷。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723092222.PNG",
"image_file": null
},
{
"id": null,
"name": "手持吸塵器",
"english_name": "Handheld vacuum cleaner",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e6%89%8b%e6%8c%81%e5%90%b8%e5%a1%b5%e5%99%a8.jpg",
"image_file": null
},
{
"id": null,
"name": "手電筒",
"english_name": "flashlight",
"recyclable": "回收指示",
"notes": "1.廢舊的手電筒是由不鏽鋼、銅或塑料等材料製成,以上材料都屬於可回收物。2.手電筒電池記得取出,單獨回收。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723095058.PNG",
"image_file": null
},
{
"id": null,
"name": "奶粉罐",
"english_name": "milk powder can",
"recyclable": "回收指示",
"notes": "可回收,屬廢鐵容器,回收前請先清除內容物,再交付清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723014341.PNG",
"image_file": null
},
{
"id": null,
"name": "安全帽",
"english_name": "Helmet",
"recyclable": "回收指示",
"notes": "不可回收備註:若未拆解,不可回收,請丟垃圾車。若有拆解,拆解後的外殼可回收,其餘帽體不可回收。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723025604.PNG",
"image_file": null
},
{
"id": null,
"name": "吸油面紙",
"english_name": "Oil Blotting Paper Sheets",
"recyclable": "回收指示",
"notes": "不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723104643.PNG",
"image_file": null
},
{
"id": null,
"name": "刮鬍刀",
"english_name": "razor",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723035219.PNG",
"image_file": null
},
{
"id": null,
"name": "咖啡陶瓷杯",
"english_name": "ceramic cup",
"recyclable": "回收指示",
"notes": "為不可回收物品,請用報紙包好交付垃圾車收運。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723090648.PNG",
"image_file": null
},
{
"id": null,
"name": "咖啡機",
"english_name": "coffee maker",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/01111-20240723032325.PNG",
"image_file": null
},
{
"id": null,
"name": "果汁機",
"english_name": "blender",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/01111.PNG",
"image_file": null
},
{
"id": null,
"name": "空氣清淨機",
"english_name": "air purifier",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723101155.PNG",
"image_file": null
},
{
"id": null,
"name": "金屬保溫瓶",
"english_name": "Thermos",
"recyclable": "回收指示",
"notes": "可回收,屬金屬類,請交付清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723033523.PNG",
"image_file": null
},
{
"id": null,
"name": "洗髮精瓶",
"english_name": "Shampoo bottle",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠容器類,回收前請先去除內容物並取出吸管,再交付清潔隊資源回收車。",
"image_url": "recycleitem/01111-20240723034804.PNG",
"image_file": null
},
{
"id": null,
"name": "氣炸鍋",
"english_name": "air fryer",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723104018.PNG",
"image_file": null
},
{
"id": null,
"name": "烘衣機",
"english_name": "clothes dryer",
"recyclable": "回收指示",
"notes": "(1) 可交由經銷商逆向回收或請先電洽本局清潔隊各區隊約定收運時間。(2) 家戶巨大垃圾請依約定時間搬運門口,為避免糾紛清潔隊不負入屋內搬運之責。",
"image_url": "recycleitem/%e7%83%98%e8%a1%a3%e6%a9%9f.jpg",
"image_file": null
},
{
"id": null,
"name": "烤土司機",
"english_name": "toaster",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723102012.PNG",
"image_file": null
},
{
"id": null,
"name": "珪藻土地墊",
"english_name": "mat",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723085946.PNG",
"image_file": null
},
{
"id": null,
"name": "除濕機",
"english_name": "dehumidifier",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723100650.PNG",
"image_file": null
},
{
"id": null,
"name": "逗貓棒",
"english_name": "cat teaser wand",
"recyclable": "回收指示",
"notes": "為不可回收物品,請交付垃圾車收運",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723031743.PNG",
"image_file": null
},
{
"id": null,
"name": "塑膠泡殼",
"english_name": "Blister packaging",
"recyclable": "回收指示",
"notes": "可回收,回收前請先清空內容物,以水略加清洗瀝乾後,交付清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723093942.PNG",
"image_file": null
},
{
"id": null,
"name": "塑膠洗衣籃",
"english_name": "hamper",
"recyclable": "回收指示",
"notes": "可回收,屬廢塑膠類,請交由清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723093526.PNG",
"image_file": null
},
{
"id": null,
"name": "填充玩具/絨毛玩具/娃娃/玩偶",
"english_name": "cuddly toy",
"recyclable": "回收指示",
"notes": "絨毛玩偶裡面塞的多半都是聚酯纖維的塑膠填充物,無法被回收,只能丟進一般垃圾處理",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723023527.PNG",
"image_file": null
},
{
"id": null,
"name": "微波爐",
"english_name": "microwave",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90.PNG",
"image_file": null
},
{
"id": null,
"name": "補蚊燈",
"english_name": "bug zapper",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723030300.PNG",
"image_file": null
},
{
"id": null,
"name": "電蚊拍",
"english_name": "mosquito swatter",
"recyclable": "回收指示",
"notes": "為複合材質不易拆解且含兩種材質以上,無法視為可回收項目,視為一般垃圾請交由垃圾車清運即可",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723095755.PNG",
"image_file": null
},
{
"id": null,
"name": "電磁爐",
"english_name": "induction heating",
"recyclable": "回收指示",
"notes": "可回收,請完整交付回收商或清潔隊資源回收車。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723031145.PNG",
"image_file": null
},
{
"id": null,
"name": "貓抓板",
"english_name": "scratcher",
"recyclable": "回收指示",
"notes": "屬廢紙類,並以易於搬運的方式捆綁,再交付回收商潔隊資源回收車或回收點。",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723115430.PNG",
"image_file": null
},
{
"id": null,
"name": "貓砂",
"english_name": "cat litter",
"recyclable": "回收指示",
"notes": "為不可回收物品,請包好交付垃圾車收運",
"image_url": "recycleitem/%e5%be%ae%e6%b3%a2%e7%88%90-20240723013828.PNG",
"image_file": null
},
{
"id": null,
"name": "嬰兒車",
"english_name": "Baby carriage",
"recyclable": "回收指示",
"notes": "廢嬰兒車有5成金屬是可回收的,回收後可依廢五金再利用方式,再製成產品;為了減少末端處理問題,鼓勵民眾拆解嬰兒車,嬰兒車骨架、煞車裝置交給資源回收車,把手、輪胎為可回收塑膠,其餘為一般垃圾。",
"image_url": "recycleitem/P6YTCY1.png",
"image_file": null
}
] |