summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/pixnet/source.html
blob: e1849a93ddecc9b73c0c7c8b2db3e37190a2fbd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/Blog" lang="zh-TW">

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
    <script async="" type="text/javascript" src="http://de.tynt.com/deb/v2?id=w%21jw52pblyzhbn&amp;dn=TC&amp;cc=1&amp;r="></script>
    <script src="https://pagead2.googlesyndication.com/pub-config/r20160913/ca-pub-6865528665029394.js"></script>
    <script async="" type="text/javascript" src="//cdn.tynt.com/tc.js"></script>
    <script src="https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.zh_TW.pIAcUKlmDbA.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AGLTcCPPGX-9dsxZ2uw3U6pjwhhHDm_oxA/cb=gapi.loaded_0" async=""></script>
    <script async="" src="http://b.scorecardresearch.com/beacon.js"></script>
    <script type="text/javascript" async="" src="http://www.google-analytics.com/analytics.js"></script>
    <script src="//t.dtscout.com/i/?l=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529&amp;j=" async="" type="text/javascript"></script>
    <script async="" type="text/javascript" src="//whos.amung.us/pingjs/?k=jw52pblyzhbn&amp;t=%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%E8%B3%9E%E6%A5%93%20%282%29%20%40%20%E5%8F%B2%E8%92%82%E6%96%87%E7%9A%84%E5%AE%B6_%E8%97%8D%E5%A4%A9%20%3A%3A%20%E7%97%9E%E5%AE%A2%E9%82%A6%20PIXNET%20%3A%3A&amp;c=c&amp;y=&amp;a=0&amp;d=2.878&amp;v=22&amp;r=782"></script>
    <script async="" src="//www.google-analytics.com/analytics.js"></script>
    <script type="text/javascript" async="" src="//apis.google.com/js/plusone.js" gapi_processed="true"></script>
    <script async="" src="https://s.pixanalytics.com/js/pi.min.js"></script>
    <script async="" src="https://connect.facebook.net/en_US/fbevents.js"></script>
    <script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-NDN8FB"></script>
    <script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-M9S8TF"></script>
    <script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-MZ3SPM"></script>
    <script async="" src="//www.googletagmanager.com/gtm.js?id=GTM-KGMWFG"></script>
    <script type="text/javascript" async="" src="http://www.google-analytics.com/ga.js"></script>
    <script type="text/javascript" async="" src="http://cdn.mxpnl.com/libs/mixpanel-2.2.min.js"></script>
    <style class="vjs-styles-defaults">
        .video-js {
            width: 300px;
            height: 150px;
        }
        
        .vjs-fluid {
            padding-top: 56.25%
        }
    </style>
    <script async="" src="//www.google-analytics.com/analytics.js"></script>
    <script type="text/javascript" async="" src="https://d31qbv1cthcecs.cloudfront.net/atrk.js"></script>
    <style type="text/css">
        @charset "UTF-8";
        [ng\:cloak],
        [ng-cloak],
        [data-ng-cloak],
        [x-ng-cloak],
        .ng-cloak,
        .x-ng-cloak,
        .ng-hide {
            display: none !important;
        }
        
        ng\:form {
            display: block;
        }
        
        .ng-animate-start {
            clip: rect(0, auto, auto, 0);
            -ms-zoom: 1.0001;
        }
        
        .ng-animate-active {
            clip: rect(-1px, auto, auto, 0);
            -ms-zoom: 1;
        }
    </style>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta property="og:site_name" content="史蒂文的家_藍天" />
    <meta property="og:locale" content="zh_TW" />
    <meta property="og:url" content="http://stevenhgm.pixnet.net/blog/post/39926056" />
    <meta property="og:type" content="article" />
    <meta property="og:title" content="新竹尖石_美樹營地賞楓 (2) @ 史蒂文的家_藍天 :: 痞客邦 PIXNET ::" />
    <meta property="og:description" content="一波波接續性低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣 玉峰道路一路上雲氣山嵐滯留山頭 順路下切蜿蜒道路後不久即抵達來到&amp;quot;玉峰國小&amp;quot; &amp;quot;美樹&amp;quot;美" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="twitter:card" content="summary" />
    <meta name="description" content="一波波接續性低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣 玉峰道路一路上雲氣山嵐滯留山頭 順路下切蜿蜒道路後不久即抵達來到&amp;quot;玉峰國小&amp;quot; &amp;quot;美樹&amp;quot;美" />
    <meta name="twitter:description" content="一波波接續性低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣 玉峰道路一路上雲氣山嵐滯留山頭 順路下切蜿蜒道路後不久即抵達來到&amp;quot;玉峰國小&amp;quot; &amp;quot;美樹&amp;quot;美" />
    <meta name="twitter:site" content="@pixnet" />
    <meta name="author" content="史蒂文的家_藍天 (stevenhgm)" />
    <meta name="author-avatar-20" content="http://s9.pimg.tw/avatar/stevenhgm/0/0/zoomcrop/20x20.png?v=1377876799" />
    <meta name="static-version" content="b27bf7fe9e1f0fca830e1381a52f804b" />
    <meta name="generator" content="PChoc" />
    <meta name="keywords" content="藍天部落客,部落客藍天,史蒂文藍天,史蒂文的家,藍天家族,露營旅遊,藍天痞客幫,國內旅遊,尖石_美樹營地,新竹尖石_美樹營地賞楓 (2)" />
    <link rel="canonical" href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29" />
    <meta name="twitter:url" content="http://stevenhgm.pixnet.net/blog/post/39926056" />
    <meta name="cover_image" content="http://s3.pimg.tw/album/stevenhgm/element/470389413_1387894842-1217674167/zoomcrop/200x200.jpg" />
    <meta name="twitter:image" content="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" />
    <link rel="image_src" href="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" />
    <meta property="og:image" content="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" />
    <link rel="prev" href="http://stevenhgm.pixnet.net/blog/post/39815080-%e6%84%9b%e4%b8%8a%e5%96%9c%e7%bf%81%e9%9c%b2%e7%87%9f_%e6%ad%a1%e6%85%b6%e8%81%96%e8%aa%95%e5%a4%9c%e5%b8%82%e8%b6%b4" />
    <link rel="next" href="http://stevenhgm.pixnet.net/blog/post/40120789-%e8%b5%b0%e9%80%b2%e8%8e%ab%e5%85%a7%e9%81%87%e8%a6%8b%e8%90%bd%e7%be%bd%e6%9d%be_%e8%8f%81%e8%8a%b3%e5%9c%92" />
    <link rel="alternate" type="application/json+oembed" href="http://api.pixnet.cc/oembed?url=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529&amp;format=json" title="PIXNET oEmbed Profile" />
    <link rel="alternate" type="text/xml+oembed" href="http://api.pixnet.cc/oembed?url=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529&amp;format=xml" title="PIXNET oEmbed Profile" />
    <link rel="search" type="application/opensearchdescription+xml" href="http://stevenhgm.pixnet.net/blog/opensearch" title="史蒂文的家_藍天" />
    <title>新竹尖石_美樹營地賞楓 (2) @ 史蒂文的家_藍天 :: 痞客邦 PIXNET ::</title>
    <meta name="twitter:title" content="新竹尖石_美樹營地賞楓 (2) @ 史蒂文的家_藍天 :: 痞客邦 PIXNET ::" />
    <base href="http://stevenhgm.pixnet.net/blog/post/39926056" />
    <style type="text/css">
        #links-row-1 .h54d834-miB-ad-sidebar-v2-h54d834 {
            display: block !important;
            min-width: 160px !important;
            min-height: 270px !important;
            margin-top: 0;
            z-index: 100;
        }
        
        .h54d834-miB-ad-sidebar-v2-h54d834 * {
            padding: 0;
            margin: 0;
            border: 0;
            vertical-align: baseline;
            display: block;
            line-height: 1;
        }
        
        .h54d834-miB-ad-sidebar-v2-h54d834 .box-text {
            overflow: hidden;
            padding: 0;
            margin: 0;
        }
        
        .h54d834-miB-ad-sidebar-v2-h54d834 .box-text a {
            height: auto;
        }
        
        .h54d834-miB-border-h54d834 {
            padding: 0;
            min-width: 180px;
            min-height: 280px;
            margin: 12px auto;
            overflow: hidden;
            text-align: center;
        }
        
        .h54d834-miB-border-h54d834 img,
        .h54d834-miB-border-h54d834 div {
            margin: 0 auto;
            display: inline-block;
            min-width: 160px;
        }
        
        .h54d834-miB-border-h54d834_1080 {
            padding: 0;
            width: 180px;
            height: 280px;
            margin: 12px auto;
            overflow: hidden;
        }
        
        .h54d834-miB-border-h54d834 div {
            position: relative;
        }
    </style>
    <link rel="stylesheet" href="//front.pixfs.net/css/mib/video.css?v=fe752a6c?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/css" />
    <link rel="stylesheet" href="//front.pixfs.net/css/lang-css.css?v=53452873?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/css" />
    <link rel="stylesheet" href="//front.pixfs.net/css/iframe-popup.css?v=79127c7c?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/css" />
    <link rel="stylesheet" href="//s.pixfs.net/blog/plugins/plugins.min.css?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/css" />
    <link rel="stylesheet" href="//front.pixfs.net/comment/openid-comment.css?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/css" />
    <link rel="stylesheet" href="//front.pixfs.net/css/guestbook/style.min.css?v=1aa05f6e?v=b27bf7fe9e1f0fca830e1381a52f804b" />
    <link rel="stylesheet" href="//front.pixfs.net/module/topbar/css/blogtopbar.min.css?v=34a36360?v=b27bf7fe9e1f0fca830e1381a52f804b" />
    <link rel="stylesheet" href="//front.pixfs.net/css/desktop/styles/main.min.css?v=05e0cc68?v=b27bf7fe9e1f0fca830e1381a52f804b" />
    <link rel="stylesheet" href="//css.pixnet.in/blog/stevenhgm/normal.css?v=1468290179" type="text/css" />
    <link rel="stylesheet" href="//front.pixfs.net/css/falcon-ad.css?v=4bfa9e0c?v=b27bf7fe9e1f0fca830e1381a52f804b" />
    <link rel="stylesheet" href="//front.pixfs.net/css/iframe-popup.css?v=79127c7c?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/css" />
    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://feed.pixnet.net/blog/posts/rss/stevenhgm" />
    <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="http://feed.pixnet.net/blog/posts/atom/stevenhgm" />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://api.pixnet.cc/blog/xmlrpc?rsd=stevenhgm" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://api.pixnet.cc/static/blog/wlwmanifest.xml" />
    <script src="//s.pixfs.net/visitor.pixplug.in/checklogin.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>
    <script async="" src="//www.google-analytics.com/analytics.js"></script>
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" crossorigin="anonymous"></script>
    <script type="text/javascript" src="//libs.pixfs.net/jquery.onappear/jquery.onAppear.min.js"></script>
    <script src="//libs.pixfs.net/json2/json2.min.js" type="text/javascript"></script>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js" crossorigin="anonymous"></script>
    <script src="//libs.pixfs.net/spin.js/spin.min.js" type="text/javascript"></script>
    <style type="text/css"></style>
    <script src="//libs.pixfs.net/angular-spinner/angular-spinner.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        & lt;
        !--
        var pix = pix || {};
        pix.panelsite = 'panel.pixnet.cc';
        pix.apisite = 'api.pixnet.cc';
        pix.login_name = '5c2024a3f691ec32042b168b40a5abfb';
        pix.visitor = "NjFkZjA1OWE0YjJkM2ZkYjJiYmMyMmZkMDVhY2ZiNzE=";
        pix.openid = "NjFkZjA1OWE0YjJkM2ZkYjJiYmMyMmZkMDVhY2ZiNzE=";
        pix.owner = 'stevenhgm';
        pix.is_owner = false;
        pix.server_name = 'stevenhgm.pixnet.net';
        pix.sToken = "39743a9f949bc0eb6d0e581c1f3fc39d";
        pix.pixfssite = 's.pixfs.net';
        pix.falconsite = 'falcon.pixanalytics.com';
        pix.checklogin_version = 2;
        // timezone: null;
        //--&gt;
    </script>
    <script src="//api.pixnet.cc/api/checklogin.php?js=1&amp;unique=1239470496&amp;timestamp=1486718791&amp;type=799" type="text/javascript"></script>
    <script src="//s.pixfs.net/js/pixnet/checklogin.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript"></script>
    <script type="text/javascript">
        & lt;
        !--
        jQuery.noConflict();
        var pix = pix || {};
        pix.ab_testing_seed = 1232136999;
        dataLayer = window.dataLayer || [];
        //--&gt;
    </script>
    <script src="//s.pixfs.net/js/lang/zh_TW.js?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript"></script>
    <script src="//s.pixfs.net/js/pix.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript" crossorigin="anonymous"></script>
    <script type="text/javascript" src="//s.pixfs.net/js/tools/tools.min.js"></script>
    <script src="//s.pixfs.net/js/pix-addon.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b" crossorigin="anonymous"></script>
    <script src="//front.pixfs.net/js/all.min.js?v=1e04f35e?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript" crossorigin="anonymous"></script>
    <script src="//front.pixfs.net/js/blog.min.js?v=3ee67300?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript" crossorigin="anonymous"></script>
    <script src="//front.pixfs.net/js/search_selection.min.js?v=86807582?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript"></script>
    <script src="//front.pixfs.net/module/fullPage/dist/ad-full-page.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript" crossorigin="anonymous"></script>
    <meta itemprop="name" content="新竹尖石_美樹營地賞楓 (2) @ 史蒂文的家_藍天 :: 痞客邦 PIXNET ::" />
    <meta itemprop="description" content="一波波接續性低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣 玉峰道路一路上雲氣山嵐滯留山頭 順路下切蜿蜒道路後不久即抵達來到&amp;quot;玉峰國小&amp;quot; &amp;quot;美樹&amp;quot;美" />

    <script type="text/javascript">
        & lt;
        !--
        var pix = pix || {};
        pix.js_error_type = pix.js_error_type || 'frontblog';
        //--&gt;
    </script>
    <script async="" type="text/javascript" src="//s.pixfs.net/js/pixlogger.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>
    <script type="text/javascript">
        & lt;
        !--
        (function() {
            if (window.size().height & gt; 10 & amp; & amp; window.size().width & gt; 10) {
                var i = new Image(1, 1);
                i.src = '//counter.pixplug.in/count.php?timestamp=1486718791&amp;random=935016315&amp;check=1679624274&amp;data[blog]=%7B%22blogid%22%3A%224410429%22%7D&amp;data[blogarticle]=%7B%22blogid%22%3A%224410429%22%2C%22articleid%22%3A%2239926056%22%7D&amp;height=' + window.size().height + '&amp;width=' + window.size().width + '&amp;referer=' + encodeURI(document.referrer);
                i.onload = function() {
                    return;
                }
            }
        })();
        //--&gt;
    </script>
    <!-- Head Modified: 1486718791 -->
    <!-- async script -->
    <script type="text/javascript">
        & lt;
        !--
        jQuery(document).ready(function() {
            jQuery.ajaxSetup({
                cache: true
            });
            jQuery.getScript("//js.pixplug.in/addon/11/production.js?v=1486603867", function(data, textStatus) {
                jQuery.ajaxSetup({
                    cache: true
                });
                jQuery.pixAddonRelatedArticle({
                    "blog_relatedarticleshow": "post",
                    "blog_relatedarticle": "site",
                    "blog_relatedtemplate": "system",
                    "addon_username": "stevenhgm",
                    "addon_expired_at": 0,
                    "addon_ismobile": false,
                    "addon_isvip": false,
                    "addon_is_allow_setting": false,
                    "ab_testing_seed": 1232136999
                });
                jQuery.ajaxSetup({
                    cache: false
                });
            });
            jQuery.ajaxSetup({
                cache: false
            });
        });
        //--&gt;
    </script>

    <!-- load sync script -->

    <!-- execute sync addon -->
    <script type="text/javascript">
        & lt;
        !--
        var pix = pix || {};
        pix.visitor_url = "http://stevenhgm.pixnet.net/blog";
        pix.visitor_timestamp = "1486718791";
        pix.visitor_nonce = "1143128310";
        pix.visitor_public = "LumrRMVHhADdttHSeUhMM8S3";
        pix.visitor_sig = "942064df55482981e78137ee089aff3e";
        pix.user_name = null;
        pix.avatar_version = 0;
        (function() {
            var js = document.createElement('script');
            js.src = "\/\/s.pixfs.net\/visitor.pixplug.in\/checklogin.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b";
            var s = document.getElementsByTagName('script')[0];
            s.parentNode.insertBefore(js, s);
        })();
        //--&gt;
    </script>

    <script charset="UTF-8" async="">
        jQuery.ajaxSetup({
            cache: true
        });
        jQuery.getScript("//cdn.sendpulse.com/28edd3380a1c17cf65b137fe96516659/js/push/23fc4af694e1db7721bdd764750599fc_0.js")
            .then(function() {
                if (!window.oSpP) {
                    return;
                }

                oSpP.detectSite = function() {
                    return true;
                };
                oSpP.start();
                oSpP.start = function() {}; // 避免重複產生到
            })
        jQuery.ajaxSetup({
            cache: false
        });
    </script>
    <script type="text/javascript" src="//front.pixfs.net/js/checkloop.min.js?v=e18dc181?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>
    <meta http-equiv="imagetoolbar" content="no" />
    <script type="text/javascript" src="//libs.pixfs.net/swfobject/1.5/swfobject.js"></script>
    <link href="//libs.pixfs.net/videojs/5.13.2/video-js.min.css" rel="stylesheet" />
    <script src="//libs.pixfs.net/videojs/5.13.2/video.min.js" crossorigin="anonymous"></script>
    <script src="//visitor.pixplug.in/jsonp/getdata.php?callback=cb2352513"></script>
    <meta property="falcon:blogcategory" content="16" />
    <meta property="falcon:articlecategory" content="28" />
    <script async="" src="//falcon-asset.pixfs.net/js/adsbyfalcon.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>
    <script src="//front.pixfs.net/js/mib_falcon--bundle.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b" crossorigin="anonymous"></script>
    <script src="//api.pixnet.cc/api/checklogin?js=jsonp&amp;unique=1956338270&amp;timestamp=1486718792&amp;type=2&amp;callback=cb242317"></script>
    <link rel="stylesheet" type="text/css" href="https://cdn.sendpulse.com/css/push/sendpulse-prompt.min.css" media="all" />
    <script async="" src="http://widgets.amung.us/classic.js"></script>
    <style>
        #links-row-1 #friendbox {
            display: none !important;
        }
    </style>
    <script src="http://falcon.pixanalytics.com/mib/ada?size=1x2&amp;hosthash=3fe6433d830b6321900cadda5cc06d37&amp;cate=16&amp;acate=28&amp;callback=pix.MIB.build.getAd&amp;articleurl=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529" type="text/javascript"></script>
    <link rel="stylesheet" href="http://article-switcher.appmarket.pixplug.in/article_switcher.css" type="text/css" media="screen" />
    <script type="text/javascript" src="http://rtax.criteo.com/delivery/rta/rta.js?netId=4606&amp;cookieName=crtg_rta&amp;rnd=91479869226&amp;varName=crtg_content" async=""></script>
    <script src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <script type="text/javascript" src="http://rtax.criteo.com/delivery/rta/rta.js?netId=4606&amp;cookieName=crtg_rta&amp;rnd=93334823104&amp;varName=crtg_content" async=""></script>
    <script src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <script type="text/javascript" src="http://rtax.criteo.com/delivery/rta/rta.js?netId=4606&amp;cookieName=crtg_rta&amp;rnd=43513532119&amp;varName=crtg_content" async=""></script>
    <script type="text/javascript" src="http://rtax.criteo.com/delivery/rta/rta.js?netId=4606&amp;cookieName=crtg_rta&amp;rnd=86208386820&amp;varName=crtg_content" async=""></script>
</head>

<body id="article-main" data-showing-advertisement="yep" data-adsense-state="" data-blog-site-category-id="16" data-mobile-mode="none" data-ab-testing-seed="1232136999" data-article-id="39926056" class="category_1771157 article_39926056 folder_1368765" ondragstart="return false" oncontextmenu="return false" onselectstart="return false" style="-moz-user-select: none;">
    <div class="sendpulse-prompt sendpulse-bar show-prompt sendpulse-bar--fixed" style="display:none;background-color: #ffffff;"><span class="sp-link-wrapper"><a class="sp-link" href="https://sendpulse.com/webpush" target="_blank"><span>Powered by SendPulse</span></a>
        </span>
        <div class="sendpulse-prompt-message"><svg xmlns="http://www.w3.org/2000/svg" style="display: none;"><symbol id="sp_bell_icon"><path d="M139.165 51.42L103.39 15.558C43.412 61.202 3.74 132.185 0 212.402h50.174c3.742-66.41 37.877-124.636 88.99-160.98zM474.98 212.403h50.173c-3.742-80.217-43.413-151.2-103.586-196.845L385.704 51.42c51.398 36.346 85.533 94.572 89.275 160.982zm-49.388 12.582c0-77-53.39-141.463-125.424-158.487v-17.09c0-20.786-16.76-37.613-37.592-37.613s-37.592 16.827-37.592 37.614v17.09C152.95 83.52 99.56 148.004 99.56 224.983v137.918L49.408 413.01v25.076h426.336V413.01l-50.152-50.108V224.984zM262.576 513.358c3.523 0 6.76-.22 10.065-1.007 16.237-3.237 29.825-14.528 36.06-29.626 2.517-5.952 4.05-12.494 4.05-19.54H212.4c0 27.593 22.582 50.174 50.174 50.174z"/></symbol></svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.153 525.153" width="40" height="40" xmlns:xlink="http://www.w3.org/1999/xlink" class="sendpulse-bell-icon"><use class="sendpulse-bell-path" style="fill: #222222 !important;" xlink:href="#sp_bell_icon" x="0" y="0"/>  </svg>
            <div class="sendpulse-prompt-info sendpulse-prompt-message-text" style="color: #222222 !important;">邀請您追蹤「痞客邦 PIXNET」,收到精選熱門話題與好康試用活動 :)</div><span></span>
            <div class="sendpulse-prompt-buttons"><button class="sendpulse-prompt-btn sendpulse-disallow-btn" type="button" onclick="oSpP.denyMessage(); return false;" style="color:#f2594b !important;">Don't allow</button><button class="sendpulse-prompt-btn sendpulse-accept-btn" type="button" onclick="oSpP.showPopUp(); return false;" style="background-color:#f2594b !important;border-color:#f2594b !important;">Allow</button></div>
        </div><button class="sendpulse-prompt-close" onclick="oSpP.closePrompt(); return false;" style="color:#222222 !important;">×</button></div>


    <script type="text/javascript">
        _atrk_opts = {
            atrk_acct: "H00Mh1aIE700wg",
            domain: "pixnet.net",
            dynamic: true
        };
        (function() {
            var as = document.createElement('script');
            as.type = 'text/javascript';
            as.async = true;
            as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js";
            var s = document.getElementsByTagName('script')[0];
            s.parentNode.insertBefore(as, s);
        })();
    </script>
    <noscript>&lt;img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=H00Mh1aIE700wg" style="display:none" height="1" width="1" alt="" /&gt;</noscript>


    <style>
        .sidebar {
            position: absolute;
            top: 0;
            left: -220px;
            bottom: 0;
            float: left;
            width: 220px;
            /* reset */
            font: normal 100 100% / 1 Arial;
            font-variant: normal;
            text-align: left;
            text-decoration: none;
            text-transform: capitalize;
            text-indent: 0;
            word-spacing: 0;
            letter-spacing: 0;
            background: #e6e6e6;
            overflow: hidden;
        }
        
        @media (min-width: 1280px) {
            .sidebar {
                position: relative;
            }
        }
        /* 顯示 sidebar */
        
        .show-sidebar .sidebar {
            left: 0;
        }
        
        .show-sidebar .main-container {
            margin-left: 220px;
        }
        
        .show-sidebar .topbar--fixed {
            left: 220px;
        }
        /* fixed 的狀態 */
        
        .sidebar--fixed {
            position: fixed;
        }
        
        .sidebar--fixed &gt;
        .keyword-articles-container,
        .sidebar--fixed .keyword-articles {
            position: absolute;
        }
        
        .keyword-header {
            height: 40px;
            color: #fff;
            font-size: 14px;
            line-height: 40px;
            text-align: center;
            background: #3161dd;
        }
        
        .keyword-tags {
            box-sizing: border-box;
            padding: 5px 10px 10px;
            background: #f3f3f3;
        }
        
        .keyword-tag {
            display: inline-block;
            box-sizing: border-box;
            margin-top: 7px;
            border: 1px solid #3161dd;
            padding: 5px 15px 3px 7px;
            color: #3161dd;
            font-size: 12px;
            line-height: 15px;
            background: #fff url('//front.pixfs.net/images/icon-arrow--blue.png') no-repeat right 6px top 8px;
            border-radius: 15px;
            cursor: pointer;
        }
        
        .keyword-tag:hover,
        .keyword-tag.active {
            color: #fff;
            background-color: #3161dd;
            background-image: url('//front.pixfs.net/images/icon-arrow--white.png');
        }
        
        .keyword-articles-container {
            top: 120px;
            left: 0;
            right: 0;
            bottom: 0;
            font-size: 0;
            white-space: nowrap;
        }
        
        .keyword-articles {
            display: inline-block;
            top: 0;
            bottom: 0;
            width: 220px;
            white-space: normal;
            overflow-x: hidden;
            overflow-y: scroll;
        }
        
        .keyword-articles:nth-of-type(2) {
            left: 220px;
        }
        
        .keyword-articles:nth-of-type(3) {
            left: 440px;
        }
        
        .keyword-article {
            display: block;
            margin: 5px 10px;
            border-left: 3px solid transparent;
            padding: 8px 10px 8px 7px;
            background: #fff;
        }
        
        .keyword-article-min70 {
            min-height: 70px;
        }
        
        .keyword-article:hover {
            text-decoration: none;
        }
        
        .keyword-article:visited {
            background: #eee;
        }
        
        .keyword-article.active,
        .keyword-article:hover {
            border-color: #3161dd;
            background: #fff;
        }
        
        .keyword-article__title {
            color: #333;
            font-size: 15px;
            line-height: 20px;
        }
        
        .keyword-article:hover &gt;
        .keyword-article__title {
            color: #3161dd;
            text-decoration: underline;
        }
        
        .keyword-article__desc {
            margin-top: 10px;
            color: #999;
            font-size: 12px;
            line-height: 16px;
        }
        
        .keyword-article span {
            color: #f00;
        }
        
        .keyword-article:not(.active):visited span {
            color: currentColor;
        }
        
        .keyword-article:visited:hover span {
            color: #f00;
        }
        
        .keyword-article+iframe {
            margin-bottom: -14px;
            min-height: 15px;
        }
    </style>

    <div class="sidebar sidebar--fixed" data-obstruct="ip" data-search="">
        <div class="keyword-header">依據 Google 關鍵字搜尋結果</div>
        <div class="keyword-tags"></div>
        <div class="keyword-articles-container"></div>
    </div>

    <script src="//front.pixfs.net/js/ypa-resize-pixnet.min.js?v=7c1e56f6?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>

    <div class="main-container">


        <div class="topbar-placeholder">

            <div class="topbar topbar--fixed cssanimations borderradius boxshadow cssgradients" id="topbar">
                <div class="topbar__logo topbar__logo--travel">
                    <h1 class="topbar__logo__title">痞客邦 PIXNET</h1>
                    <ul class="topbar__logo__chanenl-lists topbar__dropdown-lists">
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--home" href="//www.pixnet.net">首頁</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--blog" href="//www.pixnet.net/blog">部落格</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--sport" href="//channel.pixnet.net/sport?utm_source=PIXNET-index&amp;utm_medium=mobile&amp;utm_campaign=TOPBAR_to_sport">運動</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--styleme" href="//styleme.pixnet.net/home?utm_source=PIXNET-index&amp;utm_medium=desktop&amp;utm_campaign=TOPBAR_to_styleMe">美妝</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--ccc" href="//tech3c.pixnet.net/?utm_source=PIXNET-index&amp;utm_medium=desktop&amp;utm_campaign=TOPBAR_to_tech3c">3C</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--movie" href="//movie.pixnet.net/category/19?utm_source=PIXNET-index&amp;utm_medium=desktop&amp;utm_campaign=TOPBAR_to_movie">電影</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--travel" href="//travel.pixnet.net/?utm_source=PIXNET-index&amp;utm_medium=desktop&amp;utm_campaign=TOPBAR_to_travel">旅遊</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--family" href="//family.pixnet.net/?utm_source=PIXNET-index&amp;utm_medium=desktop&amp;utm_campaign=TOPBAR_to_family">親子</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link" id="topbar__logo__channel-link--food" href="//food.pixnet.net/?utm_source=PIXNET-index&amp;utm_medium=desktop&amp;utm_campaign=TOPBAR_to_food">美食</a>
                        </li>
                        <li class="topbar__logo__channel">
                            <a class="topbar__logo__channel-link"></a>
                        </li>
                    </ul>
                </div>



                <div class="topbar__related-article__block topbar__related-article__block--large" data-articles-type="旅遊" data-travel-city="新竹" data-test-variation="">

                    <ul class="topbar__related-article__cat-list">
                        <li class="topbar__related-article__cat topbar__related-article__cat--dropdown" data-tab-name="行程">
                            <div class="topbar__related-article__txt">行程攻略</div>

                            <div class="topbar__related-article__showcase">
                                <ul class="topbar__related-article-list">
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://blue28082.pixnet.net/blog/post/148849384" target="_blank">
                                            <div class="topbar__related-article__img"></div>
                                            <div class="topbar__related-article__title">[新竹新埔一日遊]新竹觀光&amp;旅遊景點~~~柿餅加工廠 金漢觀光果園&amp;...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://irischew.pixnet.net/blog/post/140096316" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s6.pimg.tw/album/irischew/element/63726186_1362903876-2078272255/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">『台灣』新竹-六福村主題樂園一日遊</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://chinyu0801.pixnet.net/blog/post/396176753" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s5.pimg.tw/album/chinyu0801/element/554560495_1414416897-3484204755/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title"><新竹新埔>悠閒半日遊-鴛鴦池農場</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://carol781219.pixnet.net/blog/post/435583394" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s2.pimg.tw/album/carol781219/element/611043112_1441034316-3234816764/zoomcrop/200x200.png" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">[竹苗。玩。吃]竹苗遊Day2行程滿滿❧阿土豆漿大王&gt;銅鑼炮仗花步道&gt;...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://phy227.pixnet.net/blog/post/128067241" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s2.pimg.tw/album/phy227/element/84036252_1372424992-4238267340/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹一日遊(世博館)</div>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </li>
                        <li class="topbar__related-article__cat topbar__related-article__cat--dropdown" data-tab-name="交通">
                            <div class="topbar__related-article__txt">交通教學</div>

                            <div class="topbar__related-article__showcase">
                                <ul class="topbar__related-article-list">
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://iko40623.pixnet.net/blog/post/439256686" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s1.pimg.tw/album/iko40623/element/620822731_1446559530-1279435851/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">[新竹]世博台灣館|720度全天域劇場|尋找綠蠵龜|點燈平台 (附交通...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://joycebe.pixnet.net/blog/post/41954518" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s2.pimg.tw/album/joycebe/element/151863102_1420990775-1163836851/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">▉新竹▉鐵道懷舊之旅。合興車站‧愛情火車站❤</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://abby0318.pixnet.net/blog/post/418615672" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s8.pimg.tw/album/abby0318/element/191825088_1428857257-694873255/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">【新竹景點.橫山】內灣線~合興車站/愛情火車站.有薰衣草森林的...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://emily710223.pixnet.net/blog/post/417707041" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s7.pimg.tw/album/emily710223/element/191462337_1428423090-729151016/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">╠新竹。橫山╣合興車站(愛情火車站) 嘟!嘟!起強起強………辣呼~辣呼 ...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://yourtyng0104.pixnet.net/blog/post/98792706" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s7.pimg.tw/album/yourtyng0104/element/58931947_1358830455-2197812000/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹。【內灣火車站】梅去櫻來❀稍來春之訊息</div>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </li>
                        <li class="topbar__related-article__cat topbar__related-article__cat--dropdown" data-tab-name="住宿">
                            <div class="topbar__related-article__txt">住宿心得</div>

                            <div class="topbar__related-article__showcase">
                                <ul class="topbar__related-article-list">
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://vivian00002000.pixnet.net/blog/post/205224523" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s8.pimg.tw/album/vivian00002000/element/202980528_1445242718-1039065392/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">1041017煙波大飯店新竹湖濱館。一泊二食,好吃又好玩!</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://louis5149.pixnet.net/blog/post/31062203" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://imageproxy.pimg.tw/zoomcrop?url=https%3A%2F%2Ffarm6.staticflickr.com%2F5635%2F20392516933_8a6101444d_c.jpg&amp;width=200&amp;height=200" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">【2015環島沙發旅行。新竹】司馬庫斯生活,雅竹景觀餐廳用餐與我...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://mimg47.pixnet.net/blog/post/5395423" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s5.pimg.tw/album/mimg47/element/290248885_1430225926-3573469794/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">【新竹親子飯店】煙波大飯店-新竹湖濱館:從入住一直玩到退房的優...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://always1027.pixnet.net/blog/post/40229227" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s5.pimg.tw/album/always1027/element/147969525_1391227799-698593706/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">【2014新竹住宿】美麗信酒店 Miramar Hotel Hsinchu</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://rmlove30.pixnet.net/blog/post/49139614" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s6.pimg.tw/album/rmlove30/element/213338796_1366033207-323149691/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹‧玩時尚芙洛麗大飯店迷戀客房</div>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </li>
                        <li class="topbar__related-article__cat topbar__related-article__cat--dropdown" data-tab-name="美食">
                            <div class="topbar__related-article__txt">必吃美食</div>

                            <div class="topbar__related-article__showcase">
                                <ul class="topbar__related-article-list">
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://m08142001.pixnet.net/blog/post/200262327" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s.pimg.tw/album/m08142001/element/196762710_1435532679-2621009829/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">[試玩邀約] 臺灣吃透透-跟著美食小旅行。新竹篇(一)。半畝塘-若...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://futuresfiona.pixnet.net/blog/post/56694768" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s4.pimg.tw/album/futuresfiona/element/279287214_1396926665-1131375440/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹旅遊小確幸-內灣老街櫻木花道咖啡餐廳</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://estherhsiao.pixnet.net/blog/post/42270511" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s6.pimg.tw/album/estherhsiao/element/299115906_1433352810-3818657366/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">畫盒子藝術餐廳 Le CaSa 餐點兼具創意與美味 適合聚餐同樂的優質...</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://gntooly123.pixnet.net/blog/post/107769167" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s.pimg.tw/album/gntooly123/element/508218600_1396652860-621839862/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹 - 心鮮森林莊園餐廳</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://wisebaby.pixnet.net/blog/post/29538295" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://imageproxy.pimg.tw/zoomcrop?url=http%3A%2F%2Ffarm4.static.flickr.com%2F3771%2F11206755646_eeb52f5b20_b.jpg&amp;width=200&amp;height=200" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">[食記] 新竹-泰雅媳婦的創意好味道::以娜的店</div>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </li>
                        <li class="topbar__related-article__cat topbar__related-article__cat--dropdown" data-tab-name="必買">
                            <div class="topbar__related-article__txt">必買好物</div>

                            <div class="topbar__related-article__showcase">
                                <ul class="topbar__related-article-list">
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://meena1985.pixnet.net/blog/post/183237610" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s4.pimg.tw/album/meena1985/element/541479094_1409054065-197791004/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">『食記』新竹名產--新竹三寶 米粉、貢丸、竹塹餅 (興復珍糕餅店)</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://peihsuan0729.pixnet.net/blog/post/435809714" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s.pimg.tw/album/peihsuan0729/element/611199250_1441118094-2467301170/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">【新竹】玻璃藝術博物館週邊好好逛。藝術街手作幸福町新鮮登場</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://adgsfh1745.pixnet.net/blog/post/167028400" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s8.pimg.tw/album/adgsfh1745/element/13081288_1446709410-4125554129/zoomcrop/200x200.jpg?v=1446709466" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹‧橫山 | 超好吃超好逛,大啖客家內灣老街美食!</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://deyue15.pixnet.net/blog/post/187491717" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://imageproxy.pimg.tw/zoomcrop?url=http%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F1%2F10%2FTRA_Hsinchu_Station.jpg&amp;width=200&amp;height=200" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">新竹名產美食,來竹塹必吃的新竹名產!</div>
                                        </a>
                                    </li>
                                    <li class="topbar__related-article">
                                        <a class="topbar__related-article-link" href="http://minin0128.pixnet.net/blog/post/99431275" target="_blank">
                                            <div class="topbar__related-article__img"><img src="http://s4.pimg.tw/album/minin0128/element/89462344_1374926655-1364602499/zoomcrop/200x200.jpg" onerror="this.remove()" /></div>
                                            <div class="topbar__related-article__title">[懷孕25周]新竹台北之旅~伴手禮篇(新竹米粉、慶餘堂.......)</div>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                        </li>
                        <div class="topbar__related-article__showcase-block"></div>
                    </ul>

                </div>

                <div class="topbar__nav">


                    <div class="topbar__search-container">
                        <div class="topbar__search__toggle-btn"></div>
                        <form class="topbar__search" id="topbar__search" action="//www.pixnet.net/searcharticle" target="_search">
                            <input name="q" class="topbar__search__input topbar__search__input--large topbar__search__input--no-icon" id="topbar__search__input" placeholder="哈囉~你今天想搜尋什麼關鍵字呢?" value="" maxlength="32" tabindex="1" autocomplete="off" type="text" />
                            <button type="reset" class="topbar__search__reset">×</button>

                            <div class="topbar__search__btns topbar__search__btns--large">
                                <button class="topbar__search__submit" name="search" type="submit" title="找文章" value="searcharticle" tabindex="2" data-counterlink="//counter.pixplug.in/count.php?timestamp=1486718791&amp;random=3863931231&amp;check=1009501581&amp;no_timeout=1&amp;data[counter]=%7B%22tag_id%22%3A30%2C%22id%22%3A%22search-articles-click%22%2C%22no_timeout%22%3Atrue%7D">找文章</button>
                                <button class="topbar__search__submit" name="search" type="submit" title="找部落客" value="searchblog" tabindex="3" data-counterlink="//counter.pixplug.in/count.php?timestamp=1486718791&amp;random=4123569235&amp;check=3953901527&amp;no_timeout=1&amp;data[counter]=%7B%22tag_id%22%3A30%2C%22id%22%3A%22search-bloggers-click%22%2C%22no_timeout%22%3Atrue%7D">找部落客</button>
                            </div>

                            <ul class="topbar__search__suggestion"></ul>
                        </form>
                    </div>

                    <div class="topbar__user">
                        <a class="topbar__user__login" id="topbar__user__login" href="https://www.pixnet.net/?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529">登入</a>
                    </div>

                </div>

            </div>

        </div>

        <div id="body-div">
            <a name="top"></a>
            <div id="container">
                <div id="container2">
                    <div id="container3">
                        <div id="header">
                            <div id="banner">
                                <h1><a href="http://stevenhgm.pixnet.net/blog">史蒂文的家_藍天</a></h1>
                                <p class="skiplink"><a href="#article-area" title="skip the page header to the main content">跳到主文</a></p>
                                <h2>這是Steven &amp; Fiona 的共同天地 喜歡碧海藍天,喜歡悠閒生活。 愛好大自然的真、善、美,走過美麗的旅遊足跡、品味台灣留下些生活日記。 .. . FB 史蒂文的家: https://www.facebook.com/stevenhgm1188
                                    <script async="" src="//pic.sopili.net/move/allviews/user/stevenhgm.js" id="allviews"></script>
                                    ( 創作圖文版權所有 未經授權同意均屬違反著作權法 盜用必究)

                                </h2>
                                <p id="blog-category">部落格全站分類:<a href="//www.pixnet.net/blog/bloggers/category/16" target="_blank">休閒旅遊</a></p>
                            </div>
                            <ul id="navigation">
                                <li id="link-album"><a href="http://stevenhgm.pixnet.net/album" title="go to gallery page of this user">相簿</a></li>
                                <li id="link-blog"><a href="http://stevenhgm.pixnet.net/blog" title="go to index page of this blog">部落格</a></li>
                                <li id="link-guestbook">
                                    <a id="guestbook" data-msg="尚未安裝留言板,無法進行留言" data-action="none" href="#" title="go to guestbook page of this user">留言</a>
                                </li>
                                <li id="link-profile"><a href="http://www.pixnet.net/blog/profile/stevenhgm" title="go to profile page of this user">名片</a></li>
                            </ul>
                        </div>
                        <!-- #header//-->
                        <div id="main">
                            <div id="content">
                                <div id="spotlight">
                                    <h5>相關文章</h5>
                                    <div id="spotlight-text">
                                        <div id="DebugZone"></div>

                                        <script type="text/javascript">
                                            // &lt;![CDATA[

                                            var sCategoryID;

                                            jQuery(function($) {
                                                if ($("#blog-main").length) {
                                                    return;
                                                }

                                                //取得文章ID
                                                var ArticleID = $("#article-main").attr("data-article-id");

                                                //取出文章,截取分類ID
                                                $.getJSON("https://emma.pixnet.cc/blog/articles/" + ArticleID + "?user=" + pix.owner + "&amp;format=json", function(json) {
                                                    if (json.error != "0") {
                                                        $("#DebugZone").append("https://emma.pixnet.cc/blog/articles/" + ArticleID + "?user=" + pix.owner + "&amp;format=json &lt;br&gt;");
                                                        $("#DebugZone").append("Message:" + data.message + "&lt;br&gt;");
                                                        return;
                                                    }
                                                    sCategoryID = json.article.category_id; //文章個人分類ID
                                                    //取出該分類6篇文章(只顯示五篇)
                                                    $.getJSON("https://emma.pixnet.cc/blog/articles?user=" + pix.owner + "&amp;per_page=6&amp;status=2&amp;format=json&amp;category_id=" + sCategoryID, function(data) {
                                                        if (data.error != "0") {
                                                            $("#DebugZone").append("Message:" + data.message + "&lt;br&gt;");
                                                            return;
                                                        }

                                                        $("#article-box").append('&lt;div id="related-box" class="my-Related-box"&gt;&lt;/div&gt;');
                                                        $("#related-box").append('&lt;div id="related-item" class="my-Related-Post"&gt;&lt;h5&gt;這個類別其他的文章&lt;/h5&gt;&lt;/div&gt;');
                                                        $("#related-item").append('&lt;ul id="my_relate" class="myrelate"&gt;&lt;/ul&gt;');
                                                        var li_item = '';
                                                        //取出同分類文章
                                                        $.each(data.articles, function(i, blog) {
                                                            if (blog.id != ArticleID & amp; & amp; $("#my_relate li").length & lt; 5) {
                                                                var li_item = ('&lt;li&gt;&lt;a href="' + blog.link + '" class="relate-link" title="' + blog.title + '"&gt;');
                                                                li_item += ('&lt;div class="relate-thumb"&gt;');
                                                                li_item += ('&lt;img src="' + blog.thumb + '" class="article-image"&gt;');
                                                                if (blog.title.length & gt; 12) {
                                                                    li_item += ('&lt;span class="relate-title"&gt;' + blog.title.substring(0, 11) + '...&lt;/span&gt;');
                                                                } else {
                                                                    li_item += ('&lt;span class="relate-title"&gt;' + blog.title + '&lt;/span&gt;');
                                                                }
                                                                li_item += ('&lt;/div&gt;&lt;/a&gt;&lt;/li&gt;');
                                                                $("#my_relate").append(li_item);
                                                            }
                                                        });
                                                    });
                                                });

                                            });
                                            // ]]&gt;
                                        </script>
                                    </div>
                                    <!-- #spotlight-text -->
                                </div>
                                <!-- #spotlight -->
                                <div id="article-area">
                                    <div id="article-box">
                                        <div class="article">
                                            <ul class="article-head">
                                                <li class="publish"><span class="month">Dec </span><span class="date">28 </span><span class="day">Sat </span><span class="year">2013 </span><span class="time">00:28</span></li>
                                                <li class="title" id="article-39926056" data-hot-link="//www.pixnet.net/blog/articles/category/0" data-site-category="國內旅遊" data-site-category-id="28" data-article-link="http://stevenhgm.pixnet.net/blog/post/39926056">
                                                    <h2><a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29">新竹尖石_美樹營地賞楓 (2)</a></h2>
                                                </li>
                                            </ul>
                                            <div class="article-body">
                                                <div class="article-content"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056&amp;layout=standard&amp;show_faces=true&amp;width=600&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=80" scrolling="no" style="border:none; overflow:hidden; width:600px; height:80px;" allowtransparency="true" frameborder="0"></iframe><br />

                                                    <div class="article-content-inner" id="article-content-inner">
                                                        <p>
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img style="display: block; margin-left: auto; margin-right: auto;" title="12-IMG_3886.jpg" src="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" alt="12-IMG_3886.jpg" original="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" width="521" border="0" height="359" /></a>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">一波波<span style="font-family: 標楷體; font-size: 12pt;">接續性</span>低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣</span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">玉峰道路一路上雲氣山嵐滯留山頭 順路下切<span style="font-family: 標楷體; font-size: 12pt;">蜿蜒道路<span style="font-family: 標楷體; font-size: 12pt;">後不久即抵達</span>來到</span>"玉峰國小"</span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">"美樹"美如其名偌大楓香樹早已呈現金黃 泛紅色彩也是愛攝人仕所喜愛造訪之地</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">第二次造訪美樹發現到營區變了 印象中以前生冷招牌換成了<span style="font-family: 標楷體; font-size: 12pt;">原木招牌可謂</span>匠心獨運</span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">燻黑<span style="font-family: 標楷體; font-size: 12pt;">原木</span>加上金黃色醒目字體 加上了貓頭鷹原木創作也充分發揮了裝飾藝術功力</span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">營區內</span></span>除了露營、民宿、餐飲</span><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">、</span>賞楓項目<span style="font-family: 標楷體; font-size: 12pt;">多了許多原木飾品更有畫龍點睛加乘效果</span></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">  <br /></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470396919"><img style="display: block; margin-left: auto; margin-right: auto;" title="30-IMG_4228.jpg" src="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" alt="30-IMG_4228.jpg" original="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">廣受歡迎的美樹營地有個很大特色就是<span style="font-family: 標楷體; font-size: 12pt;">楓紅時期楓香樹由綠轉黃、轉紅到楓紅層層</span> </span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">一來到"美樹"馬上眼睛為之一亮 也會深深地為那</span></span><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">多種顏色多層次渲染之下楓紅而迷惑</span></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">不同格調</span></span>就是從入口處這塊招牌<span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">第一眼<span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">開始</span></span>
                                                            </span>
                                                            </span> 木頭招牌</span>
                                                            </span>
                                                            </span>
                                                            </span>、貓頭鷹裝飾品勾勒出美樹的風格</span>
                                                            </span>
                                                        </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470396943"><img title="31-IMG_4231.jpg" src="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" alt="31-IMG_4231.jpg" original="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 每年12月向來是攝影班外拍的絕佳場所之一 楓紅期間入園費$50元</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">園區給愛攝一族淨空場景而不是散搭帳蓬之下反</span><span style="font-family: 標楷體; font-size: 12pt;">而影響拍照畫面與構圖取景</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">露營的話則須待中午過後再進場搭帳的彈性做法個人也相當支持這樣的權宜之計</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span>
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610088.jpg" src="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" alt="P1610088.jpg" original="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" style="display: inline;" border="0" /></a>
                                                        </p>
                                                        <p style="text-align: center;"> <span style="font-family: 標楷體; font-size: 12pt;">來到現場已是落葉飄飄堆疊滿地 不時隨著風吹雨襲而葉落垂地</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span>
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610069.jpg" src="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" alt="P1610069.jpg" original="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" style="display: inline;" border="0" /></a>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">不忍踩過剛剛掉落的樹葉 沿著前人足跡踏痕輕踩而行</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">雖然只是一廂情願的想法 終究還是不可避免地將會化為塵土</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470383005"><img title="02-P1610080.jpg" src="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" alt="02-P1610080.jpg" original="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" style="display: inline;" border="0" /></a> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 葉落繽紛顯得幾分蕭瑟氣息 空氣中可以嗅得出來<span style="font-family: 標楷體; font-size: 12pt;">依然</span>瀰漫著濕寒水氣</span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">偶而還會飄下來一些霧氣水滴 不時張望尋找最佳楓葉主題</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470384469"><img title="04-P1610087.jpg" src="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" alt="04-P1610087.jpg" original="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 外拍的攝影班學員一堆早已不時穿梭其間</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">各自努力地找尋自認為最好的拍攝角度</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470384925"><img title="05-P1610099.jpg" src="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" alt="05-P1610099.jpg" original="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610095.jpg" src="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" alt="P1610095.jpg" original="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470389803"><img title="13-IMG_3891.jpg" src="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" alt="13-IMG_3891.jpg" original="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470390760"><img title="15-IMG_3906.jpg" src="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" alt="15-IMG_3906.jpg" original="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">"水槽"上面的這幾隻彩繪版貓頭鷹也太可愛了</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">同樣的造型加上不同色彩宛如賦予不同的生命力一般 cool!</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470391000"><img title="16-IMG_3916.jpg" src="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" alt="16-IMG_3916.jpg" original="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 雨水洗塵後的枝頭固然掉落些葉片是否也洗去塵勞憂傷</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470391519"><img title="17-IMG_3919.jpg" src="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" alt="17-IMG_3919.jpg" original="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470385711"><img title="06-IMG_3853.jpg" src="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" alt="06-IMG_3853.jpg" original="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 喜歡拍照的不論是平面掃描、天空搜尋、</span><span style="font-family: 標楷體; font-size: 12pt;">地上地毯式搜索</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">有如小說偵探一般 不放過蛛絲馬跡地用力尋尋覓覓找尋最美角度</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470386749"><img title="07-P1610104.jpg" src="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" alt="07-P1610104.jpg" original="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470387232"><img title="08-IMG_3862.jpg" src="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" alt="08-IMG_3862.jpg" original="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 原本這周是由小朱團長早在一年前就跟"簍信"預定下來的場子</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">早上從台北出門之際還是小雨不斷細雨紛飛來到此地雖雨已停</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">但多日來的雨勢不斷已有部分區域水漬成攤並不適合落置帳篷</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">這個季節正是"控溪吊橋"一帶的楓紅變葉時刻 先行走一趟<span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">秀巒賞景</span></span>
                                                            </span>
                                                            </span>
                                                        </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470391732"><img title="18-P1610141.jpg" src="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" alt="18-P1610141.jpg" original="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">午後從"秀巒"回到美樹之際已經全數撤退只剩下我們三車留下來</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">唯有"離開地球表面"睡車上的才可以不受到地上泥濘而影響</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470392077"><img title="19-IMG_3933.jpg" src="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" alt="19-IMG_3933.jpg" original="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470390364"><img title="14-P1610134.jpg" src="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" alt="14-P1610134.jpg" original="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 午後山嵐興起雲氣遊蕩<span style="font-family: 標楷體; font-size: 12pt;">盤旋在對岸山頭 人潮來來去去似乎也沒有減少</span></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></span>
                                                        </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470403381"><img title="44-P1610283.jpg" src="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" alt="44-P1610283.jpg" original="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 美樹民宿有開設餐廳 室內簡單佈置提供伙食餐飲  <br /></span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;">
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610212.jpg" src="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" alt="P1610212.jpg" original="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" style="display: inline;" border="0" /></a>
                                                        </p>
                                                        <p style="text-align: center;"> <span style="font-family: 標楷體; font-size: 12pt;">這兩間是民宿房間 跟著民宿主人"簍信"聊起來還提到日後將改變成兩層木屋</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">一樓則是咖啡飲料/賣店提供訪客來賓有個落腳席座之地 二樓才會是民宿房間</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">心中有了計畫想法才會有日後的夢想藍圖 相信將會改變得更好的民宿露營環境<br /></span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;">
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610219.jpg" src="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" alt="P1610219.jpg" original="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" style="display: inline;" border="0" /></a>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 民宿前這一大區楓香林為土質營位 大致區分前、後兩個營區</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">前面這一區約可搭上十二帳/車/廳 後面那區也大約4~5帳/車/廳</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">正前方小木屋即是衛浴區 男女分別以左右<span style="font-family: 標楷體; font-size: 12pt;">兩側</span>分開(燒材鍋爐)</span>
                                                        </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470388054"><img title="10-P1610114.jpg" src="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" alt="10-P1610114.jpg" original="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 營區水電方便 水槽也很有特色</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470393178"><img title="22-P1610245.jpg" src="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" alt="22-P1610245.jpg" original="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 這次選擇左側地勢高些以防午夜下雨泥濘</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470392404"><img title="20-P1610238.jpg" src="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" alt="20-P1610238.jpg" original="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> "野馬"特地帶來了冬至應景食材ㄜ<span style="font-family: 標楷體; font-size: 12pt;">---湯圓</span></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">這家還是最近被評比第一名氣的湯圓專賣店 </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470393130"><img title="21-P1610241.jpg" src="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" alt="21-P1610241.jpg" original="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 向來對於湯圓是敬謝不敏 沒想到是出乎意料之外的好吃 <span style="font-family: 標楷體; font-size: 12pt;">沒話說!</span><br /></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">  <a href="http://stevenhgm.pixnet.net/album/photo/470394156"><img title="24-IMG_4113.jpg" src="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" alt="24-IMG_4113.jpg" original="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 喜歡原住民朋友的坦率、真誠 要將民宿營地經營的有聲有色並非容易之事</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">午茶時間與"簍信"閒聊分享著他的觀點理念之時很支持對於環境應有生態保護</span> </span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">環保維護是人人有責</span></span><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"> 勿以善小而不為不計涓滴之水才可匯集成河</span></span> </span>
                                                            </span>
                                                        </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470397399"><img title="32-IMG_4248.jpg" src="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" alt="32-IMG_4248.jpg" original="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470394732"><img title="25-IMG_4152.jpg" src="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" alt="25-IMG_4152.jpg" original="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" style="display: inline;" border="0" /></a> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 入夜前雨絲終於漸漸緩和下來 雖然氣溫很低卻沒感受到寒冷的跡象</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">是山谷中少了寒氣還是美樹營區裡的人熱情洋溢暖化了不少寒意</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span><br /> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470404359"><img title="IMG_4158.jpg" src="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" alt="IMG_4158.jpg" original="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 聖誕前夕裝點些聖誕飾品  感受一下節慶的氛圍<br /></span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470394948"><img title="26-P1610261.jpg" src="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" alt="26-P1610261.jpg" original="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">晚餐準備了砂鍋魚頭</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470403921"><img title="46-1021221美樹露營.jpg" src="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" alt="46-1021221美樹露營.jpg" original="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">"蒯嫂"還特地準備著羊肩排、鹹豬肉、柳葉魚...哇!這哩澎湃哩...</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> "永老爺"早已備妥了好酒為遠自台南來的蒯兄嫂敬一杯囉</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">感謝蒯嫂精心準備的好料理 食指大動好菜色感恩ㄟ!</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470395164"><img title="27-IMG_4173.jpg" src="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" alt="27-IMG_4173.jpg" original="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 吃得快精光之際...才想到忘了拍合照...(哇哩咧 ^&amp;*()<br /></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470395614"><img title="28-IMG_4178.jpg" src="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" alt="28-IMG_4178.jpg" original="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470396325"><img title="29-IMG_4188.jpg" src="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" alt="29-IMG_4188.jpg" original="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 隔日睡到很晚才起床 不用拍日出晨光的營地對我來說都是個幸福的睡眠</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">哪怕是葉落飄零落滿地還是睡夢周公召見而去 起床的事~差點都忘記了</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;">
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="IMG_4205.jpg" src="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" alt="IMG_4205.jpg" original="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" style="display: inline;" border="0" /></a>
                                                        </p>
                                                        <p style="text-align: center;"> <span style="font-family: 標楷體; font-size: 12pt;"> 昨天細雨紛飛依然打落了不少落葉中間這株整個都快變成枯枝了</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">昨天依稀凋零稀疏的楓葉殘留今兒個完全不復存在(上周是最美的代名詞)</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470397765"><img title="33-IMG_4255.jpg" src="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" alt="33-IMG_4255.jpg" original="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">上回來得太早沒能見到楓葉泛紅 這次晚了一周已陸續落葉也</span>無從比對楓葉差異性 </span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;"> 另一種角度看不論青楓、金黃葉紅的楓香、葉落飄零秋滿霜、落葉枯枝的蕭瑟</span></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">只要心中自認為是最美最浪漫的一刻 都是美的表徵也是最美的時分</span></span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470398749"><img title="34-P1610269.jpg" src="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" alt="34-P1610269.jpg" original="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 早起的"蒯嫂"已經備好熱騰騰中式稀飯、包子、蔬果 頓時~有幸福的感覺<br /></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470399232"><img title="35-IMG_4303.jpg" src="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" alt="35-IMG_4303.jpg" original="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" style="display: inline;" border="0" /></a> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 星期天早上趁著攝影團還沒入場先來人物場景特寫</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">野馬家兩張新"座椅"就當作是試坐囉!拍謝哩</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470400471"><img title="38-IMG_4330.jpg" src="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" alt="38-IMG_4330.jpg" original="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;">
                                                            <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610279.jpg" src="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" alt="P1610279.jpg" original="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" style="display: inline;" border="0" /></a>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 難得有此無人美景在楓樹下的聖誕氛圍也一定要來一張才行</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470399946"><img title="37-IMG_4323.jpg" src="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" alt="37-IMG_4323.jpg" original="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 三家合照(Hero也一定要入鏡的)</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">  <a href="http://stevenhgm.pixnet.net/album/photo/470401161"><img title="40-IMG_4342.jpg" src="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" alt="40-IMG_4342.jpg" original="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 接著攝影團入場帶隊老師請求借個時間也來讓學員練習楓樹下的聖誕飾品</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">此時剛好也遇到早在FB社團相互回應卻頭一次謀面的Mr."大雄"真是幸會了</span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470402037"><img title="42-IMG_4382.jpg" src="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" alt="42-IMG_4382.jpg" original="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" style="display: inline;" border="0" /></a> </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 接近中午時分陽光漸露 藍天帷幕再次嶄露頭角 ~ 久違了!</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">期盼下的天空終於放晴 沒有缺席的藍天還是準時赴約如期出席</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470402682"><img title="41-IMG_4366.jpg" src="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" alt="41-IMG_4366.jpg" original="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" style="display: inline;" border="0" /></a></span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> 這兩天肉肉(Hero)天雨濕滑無法自由奔跑都快悶壞了</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">天晴後"蒯嫂"帶著散步遊園也好解解悶</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"> </span></p>
                                                        <p style="text-align: center;"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><a href="http://stevenhgm.pixnet.net/album/photo/470402898"><img title="43-IMG_4383.jpg" src="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" alt="43-IMG_4383.jpg" original="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" style="display: inline;" border="0" /></a>  </span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">收拾好裝備準備離開營地 亮麗的</span><span style="font-family: 標楷體; font-size: 12pt;">天空鮮明對比下的楓樹林又讓人覺得有點捨不得離開</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;"><span style="font-family: 標楷體; font-size: 12pt;">道別了"美樹營地"準備前往而行</span>"石磊國小"一個很生疏的小學座落在這深山部落裡</span>
                                                        </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">北橫"石磊部落" 一個從未踏入的陌生之地因為露營之故否則畢生大概也不會路過</span></p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 12pt;">三位大叔同行準備走著這段遙遠的路段 下次找機會再來重溫舊夢了.......</span></p>
                                                        <p>  </p>
                                                        <p class="MsoNormal" style="text-align: center; margin: 0cm 0cm 0pt;" align="center"><span style="font-family: 標楷體;" lang="EN-US"><a href="http://tw.myblog.yahoo.com/wu141993/article?mid=104&amp;sc=1"><span lang="EN-US"><span lang="EN-US"><span style="color: #0000ff; font-size: medium;">美樹營地</span></span>
                                                            </span>
                                                            </a> </span><span style="font-family: 標楷體;" lang="EN-US"><span style="font-family: 標楷體; color: black; font-size: 13pt;">資訊</span></span>
                                                        </p>
                                                        <p class="MsoNormal" style="text-align: center; margin: 0cm 0cm 0pt;" align="center"><span style="font-family: 標楷體;" lang="EN-US"><span style="font-family: 標楷體; color: black; font-size: 13pt;"><span style="font-family: 標楷體; color: #2e2e2e; font-size: 13pt;">聯絡電話:</span><span style="font-family: 標楷體; letter-spacing: 0.9pt; color: black; font-size: 13pt;" lang="EN-US">03-584-7231</span><span style="font-family: 標楷體; letter-spacing: 0.9pt; color: #4fa2c1; font-size: 13pt;">  </span><span style="font-family: 標楷體; color: black; font-size: 13pt;" lang="EN">  </span><span style="font-family: 標楷體; color: black; font-size: 13pt;">行動</span><span style="font-family: 標楷體; color: black; font-size: 13pt;" lang="EN">:</span><span style="font-family: 標楷體; color: black; font-size: 13pt;" lang="EN-US"> 0937-141993</span><span style="font-family: 標楷體; color: #2e2e2e; font-size: 13pt;" lang="EN-US"><br /></span><span style="font-family: 標楷體; color: black; font-size: 13pt;">林錦武<span lang="EN-US"> (泰雅族名: 摟信)</span></span><span style="font-family: 標楷體; color: black; font-size: 13pt;" lang="EN"><br /></span><span style="font-family: 標楷體; color: black; font-size: 13pt;">營地地址:<span style="letter-spacing: 0.9pt;">新竹縣尖石鄉玉峰村<span lang="EN-US">6鄰20號</span></span>
                                                            </span>
                                                            </span>
                                                            </span>
                                                        </p>
                                                        <p class="MsoNormal" style="text-align: center; margin: 0cm 0cm 0pt;" align="center"><span style="font-family: 標楷體;" lang="EN-US"><span style="font-family: 標楷體; color: black; font-size: 13pt;">每帳$600 兩間衛浴使用燒材鍋爐/ 兩間全天瓦斯 </span></span><span style="font-family: 標楷體;" lang="EN-US"><span style="font-family: 標楷體; color: black; font-size: 13pt;">廁所蹲式X 3 </span></span>
                                                        </p>
                                                        <p class="MsoNormal" style="text-align: center; margin: 0cm 0cm 0pt;" align="center"><span style="font-family: 標楷體;" lang="EN-US"><span style="font-family: 標楷體; color: black; font-size: 13pt;">楓紅期間須過中午才可搭帳 </span></span><span style="font-size: 12pt; font-family: 標楷體;" lang="EN-US">水電便利</span></p>
                                                        <p class="MsoNormal" style="margin: 0cm 0cm 0pt;" align="center"><strong><span style="font-family: 標楷體; font-size: 13pt;" lang="EN-US">GPS: N24 39 16.4 <span> </span>E121 18 19.5</span></strong></p>
                                                        <p class="MsoNormal" style="margin: 0cm 0cm 0pt;" align="center"> </p>
                                                        <p class="MsoNormal" style="margin: 0cm 0cm 0pt;" align="center"> </p>
                                                        <p style="text-align: center;"><span style="font-family: 標楷體; font-size: 14pt;"><span style="font-size: 12pt;">如果您喜歡</span>"<span style="font-size: 12pt;">史蒂文的家"圖文分享 邀請您到 </span></span><span style="font-family: 標楷體; font-size: 14pt;"><a href="https://www.facebook.com/stevenhgm1188"><span style="color: #0000cc;">FB </span><span style="color: #0000cc;" lang="EN-US"><span lang="EN-US">粉絲團</span></span>
                                                            </a><span style="font-size: 12pt;">按個"讚"!</span></span>
                                                        </p>
                                                        <p class="MsoNormal" style="text-align: center;" align="center"><span style="font-family: 標楷體;"><span style="font-size: 14pt;"><span style="font-size: 12pt;">內文有不定期的更新旅遊、露營圖文訊息 </span></span><span style="font-size: 14pt;"><span style="font-size: 12pt;">謝謝!</span></span>
                                                            </span>
                                                        </p>
                                                        <p> </p>
                                                        <p style="text-align: center;"> </p>

                                                        <div class="article-keyword" style="word-wrap: break-word; word-break: break-all; margin-top: 20px; clear: both;">
                                                            <img src="http://panel.pixfs.net/images/icons/tag_blue.gif" style="vertical-align: middle; display: inline;" original="http://panel.pixfs.net/images/icons/tag_blue.gif" />

                                                            <a href="http://tags.pixnet.net/blog/user/stevenhgm/%E7%8E%89%E5%B3%B0%E9%81%93%E8%B7%AF" rel="tag" target="_blank">玉峰道路</a>, <a href="http://tags.pixnet.net/blog/user/stevenhgm/%E4%B8%8A%E5%AE%87%E8%80%81%E8%A7%80%E6%99%AF%E5%8F%B0" rel="tag" target="_blank">上宇老觀景台</a>, <a href="http://tags.pixnet.net/blog/user/stevenhgm/%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0" rel="tag" target="_blank">美樹營地</a>, <a href="http://tags.pixnet.net/blog/user/stevenhgm/%E6%8E%A7%E6%BA%AA%E5%90%8A%E6%A9%8B" rel="tag" target="_blank">控溪吊橋</a>, <a href="http://tags.pixnet.net/blog/user/stevenhgm/%E7%9F%B3%E7%A3%8A%E9%83%A8%E8%90%BD" rel="tag" target="_blank">石磊部落</a> </div>

                                                    </div>
                                                    <div id="pix_article_switch_content">
                                                        <h5>上一篇文章與下一篇文章</h5>
                                                        <ul>
                                                            <li>
                                                                <a href="http://stevenhgm.pixnet.net/blog/post/39815080-%e6%84%9b%e4%b8%8a%e5%96%9c%e7%bf%81%e9%9c%b2%e7%87%9f_%e6%ad%a1%e6%85%b6%e8%81%96%e8%aa%95%e5%a4%9c%e5%b8%82%e8%b6%b4">
                                                                    <div class="article-image-box"><img src="http://s8.pimg.tw/album/stevenhgm/element/457637358_1387458392-1693665696/zoomcrop/90x90.jpg" class="article-image" width="90" height="90" /></div><span class="article-text">愛上喜翁露營_歡慶聖誕夜市趴</span></a>
                                                            </li>
                                                            <li>
                                                                <a href="http://stevenhgm.pixnet.net/blog/post/40120789-%e8%b5%b0%e9%80%b2%e8%8e%ab%e5%85%a7%e9%81%87%e8%a6%8b%e8%90%bd%e7%be%bd%e6%9d%be_%e8%8f%81%e8%8a%b3%e5%9c%92">
                                                                    <div class="article-image-box"><img src="http://s9.pimg.tw/album/stevenhgm/element/485324079_1388755991-1712764152/zoomcrop/90x90.jpg" class="article-image" width="90" height="90" /></div><span class="article-text">走進莫內遇見落羽松_菁芳園</span></a>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div>
                                                <div class="pix-related-post pix-related-post-showed">
                                                    <div class="demo recommended-posts recommended-posts3" style="">
                                                        <h5><span>您可能會有興趣的文章</span></h5>
                                                        <ul class="demo">
                                                            <li>
                                                                <a href="http://csam911.pixnet.net/blog/post/165122302-%e7%a7%80%e5%b7%92----%e7%8e%89%e5%b3%b0%e9%81%93%e8%b7%af?pixfrom=related" class="source-emma" target="_blank">
                                                                    <div class="article-image-box"><img src="http://s2.pimg.tw/album/csam911/element/12889762_1446555301-541251431/zoomcrop/100x100.jpg" class="article-image" /></div><span class="article-text">秀巒    玉峰道路</span></a>
                                                            </li>
                                                            <li>
                                                                <a href="http://oblu99.pixnet.net/blog/post/76200255?pixfrom=related" class="source-emma" target="_blank">
                                                                    <div class="article-image-box"><img src="http://s8.pimg.tw/album/oblu99/element/4907698_1438316104-3828205264/zoomcrop/100x100.jpg" class="article-image" /></div><span class="article-text">[第13露] 新竹尖石 -梅花山莊</span></a>
                                                            </li>
                                                            <li>
                                                                <a href="http://maggieshih111.pixnet.net/blog/post/176953684-%e6%88%91%e5%80%91%e5%9c%a8%e7%a6%8f%e5%a3%bd%e5%b1%b1%e8%be%b2%e5%a0%b4%e9%81%87%e8%a6%8b%e5%a4%a2%e5%b9%bb%e7%9a%84%e6%a5%93%e8%91%89104.11.16%40%e6%a2%85?pixfrom=related" class="source-emma" target="_blank">
                                                                    <div class="article-image-box"><img src="http://s5.pimg.tw/album/maggieshih111/element/14394145_1447820636-4168992041/zoomcrop/100x100.jpg" class="article-image" /></div><span class="article-text">我們在福壽山農場遇見夢幻的楓葉104.11.16@梅姬小姐愛旅行</span></a>
                                                            </li>
                                                            <li>
                                                                <div id="pixad1013"><iframe marginwidth="0" marginheight="0" framespacing="0" scrolling="NO" src="https://falcon.pixanalytics.com/ad/embed/2008" width="113" height="176" frameborder="0"></iframe></div>
                                                            </li>
                                                            <li>
                                                                <div id="pixad673"><iframe marginwidth="0" marginheight="0" framespacing="0" scrolling="NO" src="https://falcon.pixanalytics.com/ad/embed/2005" width="113" height="176" frameborder="0"></iframe></div>
                                                            </li>
                                                        </ul>
                                                    </div>
                                                </div>
                                                <!-- .article-content //-->

                                                <p class="author">
                                                    史蒂文的家_藍天 發表在 <a href="http://www.pixnet.net/">痞客邦 PIXNET</a> <a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#comments">留言</a>(42) <span class="author-views">人氣(<span id="BlogArticleCount-39926056">23925</span>)</span>
                                                </p>
                                                <!-- .author //-->
                                                <div class="forward">
                                                    <form method="POST" id="0rz-form" action="http://0rz.tw/create" target="_blank"><input name="url" value="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29" type="hidden" /> </form>
                                                    <a href="#" data-0rz-url="true"><img src="//s.pixfs.net/blog/images/common/push_0rz_icon.gif" />產生短網址</a>
                                                    <a href="javascript:;" onclick="pix.sendForwardTo('%E6%82%A8%E7%9A%84%E5%A5%BD%E6%9C%8B%E5%8F%8B%E9%82%80%E8%AB%8B%E6%82%A8%E8%A7%80%E7%9C%8B%20stevenhgm%20%E7%9A%84%E7%97%9E%E5%AE%A2%E9%82%A6%20PIXNET%20%E9%83%A8%E8%90%BD%E6%A0%BC%E6%96%87%E7%AB%A0-%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%E8%B3%9E%E6%A5%93%20%282%29','%E6%82%A8%E5%A5%BD%EF%BC%8C%0A%0A%E6%82%A8%E7%9A%84%E5%A5%BD%E6%9C%8B%E5%8F%8B%E9%82%80%E8%AB%8B%E6%82%A8%E8%A7%80%E7%9C%8B%20stevenhgm%20%E7%9A%84%E7%97%9E%E5%AE%A2%E9%82%A6%20PIXNET%20%E9%83%A8%E8%90%BD%E6%A0%BC%E6%96%87%E7%AB%A0-%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%E8%B3%9E%E6%A5%93%20%282%29%0A%E8%B6%8A%E5%A4%9A%E4%BA%BA%E7%9C%8B%E5%88%B0%EF%BC%8C%E5%8F%AF%E5%B9%AB%E4%BB%96%E5%A2%9E%E5%8A%A0%E8%B6%8A%E5%A4%9A%E4%BA%BA%E6%B0%A3%E5%96%94%7EGO%EF%BC%81%0A----------%0ADecember28%2C2013%0A%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%E8%B3%9E%E6%A5%93%20%282%29%0A%0A%0D%0A%E4%B8%80%E6%B3%A2%E6%B3%A2%E6%8E%A5%E7%BA%8C%E6%80%A7%E4%BD%8E%E6%BA%AB%E5%AF%92%E6%B5%81%E5%A0%B1%E5%88%B0%20%E5%B7%B2%E5%B0%87%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3%E9%84%89%E5%BE%8C%E5%B1%B1%E4%B8%80%E5%B8%B6%E5%B1%A4%E5%B1%A4%E5%B1%B1%E5%B7%92%E6%8A%AB%E4%B8%8A%E5%AB%A3%E7%B4%85%E7%9A%84%0A----------%0A%E9%A6%AC%E4%B8%8A%E7%9C%8B%20http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529%0A----------%0A%E7%97%9E%E5%AE%A2%E9%82%A6%20PIXNET%0Ahttp%3A%2F%2Fwww.pixnet.net%2F')">E-mail轉寄</a>
                                                </div>
                                                <!-- .forward //-->
                                                <br />
                                                <div style="position: static !important; display:block !important;visibility: visible !important; float: none !important; text-align: center">
                                                    <div style="width: 620px; height: 250px; padding-bottom: 10px;">
                                                        <div id="w4d3d07afe2104426960b1077" style="width: 300px; height: 250px; float: left; padding-right: 1px;">
                                                            <ins class="adsbyfalcon" data-ad-client="1" data-ad-slot="1077" data-embed="false" style="display:inline-block;" data-adsbyfalcon-status="done">            <div id="pixad1077d" class="pixnet-ad"> <ins class="adsbygoogle" style="display: inline-block; width: 300px; height: 250px;" data-ad-client="ca-pub-6865528665029394" data-ad-slot="6553583120" google-ad-region="falcon" data-adsbygoogle-status="done"><ins id="aswift_0_expand" style="display:inline-table;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px;background-color:transparent"><ins id="aswift_0_anchor" style="display:block;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px;background-color:transparent"><iframe marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;" width="300" height="250" frameborder="0"></iframe></ins></ins>
                                                            </ins>
                                                        </div>
                                                        <script>
                                                            var falcon_dom = 'pixad1077d',
                                                                falcon_width = 300,
                                                                falcon_height = 250,
                                                                falcon_gclient = '6865528665029394',
                                                                falcon_gslot = '6553583120',
                                                                falcon_clickTAG = 'https://falcon.pixanalytics.com/ad/rc?i=b680f769b9c5b41c2bbdc1a66e3ec014&amp;s=criteo&amp;';

                                                            var crtg_nid = '4606',
                                                                crtg_cookiename = 'crtg_rta',
                                                                crtg_varname = 'crtg_content',
                                                                crtg_key = 'pix300250',
                                                                crtg_zoneid = '272008';

                                                            function crtg_getCookie(c_name) {
                                                                var i, x, y, ARRCookies = document.cookie.split(";");
                                                                for (i = 0; i & lt; ARRCookies.length; i++) {
                                                                    x = ARRCookies[i].substr(0, ARRCookies[i].indexOf("="));
                                                                    y = ARRCookies[i].substr(ARRCookies[i].indexOf("=") + 1);
                                                                    x = x.replace(/^\s+|\s+$/g, "");
                                                                    if (x == c_name) {
                                                                        return unescape(y);
                                                                    }
                                                                }
                                                                return '';
                                                            }
                                                            var crtg_content = crtg_getCookie(crtg_cookiename);
                                                            var crtg_rnd = Math.floor(Math.random() * 99999999999);
                                                            (function() {
                                                                var crtg_url = location.protocol + '//rtax.criteo.com/delivery/rta/rta.js?netId=' + escape(crtg_nid);
                                                                crtg_url += '&amp;cookieName=' + escape(crtg_cookiename);
                                                                crtg_url += '&amp;rnd=' + crtg_rnd;
                                                                crtg_url += '&amp;varName=' + escape(crtg_varname);
                                                                var crtg_script = document.createElement('script');
                                                                crtg_script.type = 'text/javascript';
                                                                crtg_script.src = crtg_url;
                                                                crtg_script.async = true;
                                                                if (document.getElementsByTagName("head").length & gt; 0) document.getElementsByTagName("head")[0].appendChild(crtg_script);
                                                                else if (document.getElementsByTagName("body").length & gt; 0) document.getElementsByTagName("body")[0].appendChild(crtg_script);
                                                            })();

                                                            var str = '';
                                                            is_google = false;
                                                            if (crtg_content & amp; & amp; crtg_content.indexOf(crtg_key) & gt; - 1) {
                                                                str = '&lt;iframe frameborder="0" marginwidth="0" marginheight="0" framespacing="0" width="' + falcon_width + '" height="' + falcon_height + '" scrolling="NO" src="//falcon.pixfs.net/criteo/ad.html';
                                                                str += '?zoneid=' + crtg_zoneid;
                                                                str += '&amp;location=' + escape(window.location);
                                                                str += '&amp;referer=' + escape(document.referer);
                                                                str += '&amp;context=' + escape(document.context);
                                                                str += '&amp;clickTAG=' + escape(falcon_clickTAG);
                                                                str += '"&gt;&lt;/iframe&gt;';
                                                                var img = new Image();
                                                                img.src = 'https://falcon.pixanalytics.com/callback/rt?type=criteo';
                                                                is_google = false;
                                                            } else {
                                                                str = " &lt;ins class=\"adsbygoogle\" style=\"display:inline-block;width:" + falcon_width + "px;height:" + falcon_height + "px\" data-ad-client=\"ca-pub-" + falcon_gclient + "\" data-ad-slot=\"" + falcon_gslot + "\" google-ad-region=\"falcon\"&gt; &lt;\/ins&gt;";
                                                                is_google = true;
                                                            }
                                                            document.getElementById(falcon_dom).innerHTML = str;
                                                            if (is_google) {
                                                                (adsbygoogle = window.adsbygoogle || []).push({});
                                                                var s = document.createElement('script');
                                                                s.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js';
                                                                if (document.getElementsByTagName('head').length & gt; 0) {
                                                                    document.getElementsByTagName('head')[0].appendChild(s);
                                                                } else if (document.getElementsByTagName('body').length & gt; 0) {
                                                                    document.getElementsByTagName('body')[0].appendChild(s);
                                                                }
                                                            }
                                                        </script>
                                                        </ins>
                                                        <script src="https://static.criteo.net/js/ld/publishertag.js"></script>
                                                        <div id="crt-701fb163" style="width: 300px; height: 250px; margin: 0px auto; display: none;"></div>
                                                        <script>
                                                            Criteo.DisplayAcceptableAdIfAdblocked({
                                                                "zoneid": 439225,
                                                                "containerid": "crt-701fb163"
                                                            });
                                                        </script>
                                                    </div>
                                                    <div id="w4d3d07afe2104426960b1032" style="width: 300px; height: 250px; float: left;">
                                                        <ins class="adsbyfalcon" data-ad-client="1" data-ad-slot="1032" data-embed="false" style="display:inline-block;width:300px;height:250px;" data-adsbyfalcon-status="done">            <div id="pixad1032d" class="pixnet-ad"> <ins class="adsbygoogle" style="display: inline-block; width: 300px; height: 250px;" data-ad-client="ca-pub-6865528665029394" data-ad-slot="3544341440" google-ad-region="falcon" data-adsbygoogle-status="done"><ins id="aswift_1_expand" style="display:inline-table;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px;background-color:transparent"><ins id="aswift_1_anchor" style="display:block;border:none;height:250px;margin:0;padding:0;position:relative;visibility:visible;width:300px;background-color:transparent"><iframe marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_1" name="aswift_1" style="left:0;position:absolute;top:0;" width="300" height="250" frameborder="0"></iframe></ins></ins>
                                                        </ins>
                                                    </div>
                                                    <script>
                                                        var falcon_dom = 'pixad1032d',
                                                            falcon_width = 300,
                                                            falcon_height = 250,
                                                            falcon_gclient = '6865528665029394',
                                                            falcon_gslot = '3544341440',
                                                            falcon_clickTAG = 'https://falcon.pixanalytics.com/ad/rc?i=03af3e216571b0f8a47e4758fdf8da46&amp;s=criteo&amp;';

                                                        var crtg_nid = '4606',
                                                            crtg_cookiename = 'crtg_rta',
                                                            crtg_varname = 'crtg_content',
                                                            crtg_key = 'pix300250',
                                                            crtg_zoneid = '272008';

                                                        function crtg_getCookie(c_name) {
                                                            var i, x, y, ARRCookies = document.cookie.split(";");
                                                            for (i = 0; i & lt; ARRCookies.length; i++) {
                                                                x = ARRCookies[i].substr(0, ARRCookies[i].indexOf("="));
                                                                y = ARRCookies[i].substr(ARRCookies[i].indexOf("=") + 1);
                                                                x = x.replace(/^\s+|\s+$/g, "");
                                                                if (x == c_name) {
                                                                    return unescape(y);
                                                                }
                                                            }
                                                            return '';
                                                        }
                                                        var crtg_content = crtg_getCookie(crtg_cookiename);
                                                        var crtg_rnd = Math.floor(Math.random() * 99999999999);
                                                        (function() {
                                                            var crtg_url = location.protocol + '//rtax.criteo.com/delivery/rta/rta.js?netId=' + escape(crtg_nid);
                                                            crtg_url += '&amp;cookieName=' + escape(crtg_cookiename);
                                                            crtg_url += '&amp;rnd=' + crtg_rnd;
                                                            crtg_url += '&amp;varName=' + escape(crtg_varname);
                                                            var crtg_script = document.createElement('script');
                                                            crtg_script.type = 'text/javascript';
                                                            crtg_script.src = crtg_url;
                                                            crtg_script.async = true;
                                                            if (document.getElementsByTagName("head").length & gt; 0) document.getElementsByTagName("head")[0].appendChild(crtg_script);
                                                            else if (document.getElementsByTagName("body").length & gt; 0) document.getElementsByTagName("body")[0].appendChild(crtg_script);
                                                        })();

                                                        var str = '',
                                                            is_google = false;
                                                        if (crtg_content & amp; & amp; crtg_content.indexOf(crtg_key) & gt; - 1) {
                                                            str = '&lt;iframe frameborder="0" marginwidth="0" marginheight="0" framespacing="0" width="' + falcon_width + '" height="' + falcon_height + '" scrolling="NO" src="//falcon.pixfs.net/criteo/ad.html';
                                                            str += '?zoneid=' + crtg_zoneid;
                                                            str += '&amp;location=' + escape(window.location);
                                                            str += '&amp;referer=' + escape(document.referer);
                                                            str += '&amp;context=' + escape(document.context);
                                                            str += '&amp;clickTAG=' + escape(falcon_clickTAG);
                                                            str += '"&gt;&lt;/iframe&gt;';
                                                            is_google = false;
                                                        } else {
                                                            str = " &lt;ins class=\"adsbygoogle\" style=\"display:inline-block;width:" + falcon_width + "px;height:" + falcon_height + "px\" data-ad-client=\"ca-pub-" + falcon_gclient + "\" data-ad-slot=\"" + falcon_gslot + "\" google-ad-region=\"falcon\"&gt; &lt;\/ins&gt; ";
                                                            is_google = true;
                                                        }
                                                        document.getElementById(falcon_dom).innerHTML = str;
                                                        if (is_google) {
                                                            (adsbygoogle = window.adsbygoogle || []).push({});
                                                            var s = document.createElement('script');
                                                            s.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js';
                                                            if (document.getElementsByTagName('head').length & gt; 0) {
                                                                document.getElementsByTagName('head')[0].appendChild(s);
                                                            } else if (document.getElementsByTagName('body').length & gt; 0) {
                                                                document.getElementsByTagName('body')[0].appendChild(s);
                                                            }
                                                        }
                                                    </script>
                                                    </ins>
                                                </div>
                                            </div>
                                            <script>
                                                (function($) {
                                                    var w = $('.article-content:first').width(),
                                                        ad1032 = $('#w4d3d07afe2104426960b1032');
                                                    if (w & gt; = 600) {
                                                        ad1032.append("&lt;ins class=\"adsbyfalcon\" data-ad-client=\"1\" data-ad-slot=\"1032\" data-embed=\"false\" style=\"display:inline-block;width:300px;height:250px;\"&gt;&lt;\/ins&gt;");
                                                    } else if (w & gt; = 550 & amp; & amp; w & lt; = 599) {
                                                        ad1032.append("&lt;ins class=\"adsbyfalcon\" data-ad-client=\"1\" data-ad-slot=\"1603\" data-embed=\"false\" style=\"display:inline-block;width:250px;height:250px;\"&gt;&lt;\/ins&gt;");
                                                    } else {}
                                                })(jQuery);
                                            </script>
                                        </div>
                                    </div>
                                    <!-- .article-body //-->
                                    <div class="article-footer">
                                        <ul class="refer">
                                            <li>全站分類:<a href="//www.pixnet.net/blog/articles/category/28">國內旅遊</a></li>
                                            <li>個人分類:<a href="http://stevenhgm.pixnet.net/blog/category/1771157">尖石_美樹營地</a></li>
                                            <li>此分類上一篇: <a class="quick-nav--cat-pre" href="http://stevenhgm.pixnet.net/blog/post/37795459-%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0---%e6%8e%a2%e8%a8%aa%e8%80%81%e9%b7%b9%e6%ba%aa--%28%e4%b8%8b%29---2011-12-18">美樹營地 - 探訪老鷹溪  (下)   2011/12/18</a></li>
                                            <li>上一篇: <a class="quick-nav--pre" rel="prev" href="http://stevenhgm.pixnet.net/blog/post/39815080-%e6%84%9b%e4%b8%8a%e5%96%9c%e7%bf%81%e9%9c%b2%e7%87%9f_%e6%ad%a1%e6%85%b6%e8%81%96%e8%aa%95%e5%a4%9c%e5%b8%82%e8%b6%b4" data-public-at="1387521559" data-thumb="http://s8.pimg.tw/album/stevenhgm/element/457637358_1387458392-1693665696/zoomcrop/90x90.jpg">愛上喜翁露營_歡慶聖誕夜市趴</a></li>
                                            <li>下一篇: <a class="quick-nav--next" rel="next" href="http://stevenhgm.pixnet.net/blog/post/40120789-%e8%b5%b0%e9%80%b2%e8%8e%ab%e5%85%a7%e9%81%87%e8%a6%8b%e8%90%bd%e7%be%bd%e6%9d%be_%e8%8f%81%e8%8a%b3%e5%9c%92" data-public-at="1388288280" data-thumb="http://s9.pimg.tw/album/stevenhgm/element/485324079_1388755991-1712764152/zoomcrop/90x90.jpg">走進莫內遇見落羽松_菁芳園</a></li>
                                        </ul>
                                        <div class="back-to-top"><a href="#top" title="back to the top of the page">▲top</a></div>
                                    </div>
                                    <!-- .article-footer //-->
                                </div>

                                <script>
                                    // track 上下篇點擊
                                    (function($) {
                                        'use strict';

                                        (function(i, s, o, g, r, a, m) {
                                            i['GoogleAnalyticsObject'] = r;
                                            i[r] = i[r] || function() {
                                                (i[r].q = i[r].q || []).push(arguments)
                                            }, i[r].l = 1 * new Date();
                                            a = s.createElement(o),
                                                m = s.getElementsByTagName(o)[0];
                                            a.async = 1;
                                            a.src = g;
                                            m.parentNode.insertBefore(a, m)
                                        })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');

                                        ga('create', 'UA-408650-10', 'auto', {
                                            'name': 'quickNavTracker'
                                        });

                                        var referBlock = $('.refer'),
                                            quickNav = {
                                                catPre: {
                                                    selector: '.quick-nav--cat-pre',
                                                    name: '此分類上一篇',
                                                },
                                                catNext: {
                                                    selector: '.quick-nav--cat-next',
                                                    name: '此分類下一篇',
                                                },
                                                pre: {
                                                    selector: '.quick-nav--pre',
                                                    name: '上一篇',
                                                },
                                                next: {
                                                    selector: '.quick-nav--next',
                                                    name: '下一篇',
                                                }
                                            },

                                            trackEvent = function(action, label) {
                                                ga('quickNavTracker.send', 'event', 'blog-related-article', action, label, {
                                                    nonInteraction: ('imps' === action)
                                                });
                                            },

                                            bindClick = function(selector, label) {
                                                referBlock.on('click', selector, function() {
                                                    trackEvent('click', label);
                                                });
                                            };

                                        for (var key in quickNav) {
                                            var obj = quickNav[key];
                                            if (referBlock.find(obj.selector).length) {
                                                // 記錄曝光
                                                trackEvent('imps', obj.name);

                                                // 點擊時紀錄
                                                bindClick(obj.selector, obj.name);
                                            }
                                        }

                                    })(jQuery);
                                </script>
                                <div id="related-box" class="my-Related-box">
                                    <div id="related-item" class="my-Related-Post">
                                        <h5>這個類別其他的文章</h5>
                                        <ul id="my_relate" class="myrelate">
                                            <li>
                                                <a href="http://stevenhgm.pixnet.net/blog/post/37795459-%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0---%e6%8e%a2%e8%a8%aa%e8%80%81%e9%b7%b9%e6%ba%aa--%28%e4%b8%8b%29---2011-12-18" class="relate-link" title="美樹營地 - 探訪老鷹溪  (下)   2011/12/18">
                                                    <div class="relate-thumb"><img src="https://s.pimg.tw/album/stevenhgm/element/259528929_1380360186-58625803/zoomcrop/90x90.jpg" class="article-image" /><span class="relate-title">美樹營地 - 探訪老鷹...</span></div>
                                                </a>
                                            </li>
                                            <li>
                                                <a href="http://stevenhgm.pixnet.net/blog/post/37795461-%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0---%e7%a7%80%e5%b7%92%e8%b3%9e%e6%a5%93--%28%e4%b8%8a%29---2011-12-17" class="relate-link" title="美樹營地 - 秀巒賞楓  (上)   2011/12/17">
                                                    <div class="relate-thumb"><img src="https://s.pimg.tw/album/stevenhgm/element/259530222_1380360204-2746872631/zoomcrop/90x90.jpg" class="article-image" /><span class="relate-title">美樹營地 - 秀巒賞楓...</span></div>
                                                </a>
                                            </li>
                                        </ul>
                                    </div>
                                </div>
                            </div>
                            <!-- #article-box //-->
                            <div id="user-post">
                                <div id="comment-box" class="user-post-box">
                                    <a name="comments"></a>
                                    <h3 id="comment-title" class="user-post-title" onclick="pix.commentSwitch('comment-text','comment-text-switch');" style="cursor:hand;cursor:pointer;"><img id="comment-text-switch" src="//s.pixfs.net/blog/images/choc/minus.gif" original="//s.pixfs.net/blog/images/choc/minus.gif" style="display: inline;" /> <span>留言列表 (42)</span></h3>
                                    <div class="post-comment"><a href="/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#comment-form">發表留言</a></div>

                                    <div id="comment-text" class="user-post-text">
                                        <ul class="single-post">
                                            <li class="post-info">
                                                <a name="comment-58824406"> </a>
                                                <span class="floor">#1</span>
                                                <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://a263810.pixnet.net/blog" target="_blank" rel="nofollow">小鳳</a></span>
                                                <a class="homepage" rel="nofollow" href="http://a263810.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="小鳳" title="小鳳" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                                <span class="post-time">於 2013/12/28 10:28</span>
                                            </li>
                                            <li class="post-photo">
                                                <a href="http://a263810.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s5.pimg.tw/avatar/a263810/0/0/zoomcrop/90x90.png?v=1383799789" alt="小鳳" original="http://s5.pimg.tw/avatar/a263810/0/0/zoomcrop/90x90.png?v=1383799789" style="display: inline;" width="90" height="90" /></a>
                                            </li>
                                            <li class="post-text">
                                                <p id="comment-58824406"></p>
                                                露營兼賞楓,好棒的生活 </li>
                                            <li class="reply-text">
                                                謝謝小鳳的來訪!
                                                <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:31 回覆 </p>
                                            </li>
                                        </ul>
                                        <ul class="single-post">
                                            <li class="post-info">
                                                <a name="comment-58824424"> </a>
                                                <span class="floor">#2</span>
                                                <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://n0911813218.pixnet.net/blog" target="_blank" rel="nofollow">茜媽咪</a></span>
                                                <a class="homepage" rel="nofollow" href="http://n0911813218.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="茜媽咪" title="茜媽咪" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                                <span class="post-time">於 2013/12/28 10:42</span>
                                            </li>
                                            <li class="post-photo">
                                                <a href="http://n0911813218.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s8.pimg.tw/avatar/n0911813218/0/0/zoomcrop/90x90.png?v=1378478912" alt="茜媽咪" original="http://s8.pimg.tw/avatar/n0911813218/0/0/zoomcrop/90x90.png?v=1378478912" style="display: inline;" width="90" height="90" /></a>
                                            </li>
                                            <li class="post-text">
                                                <p id="comment-58824424"></p>
                                                嚮往大自然....再濕冷的天依舊衝衝衝<br /> 每每分享藍天大哥捕捉的鏡頭
                                                <br /> 總是特別的吸引目光....真得好美
                                                <br /> 對了....我家女兒說....伯伯的露營餐點
                                                <br /> 看起來好豐盛喔
                                                <br />
                                            </li>
                                            <li class="reply-text">
                                                茜媽咪晚安:<br /> 您過獎了,我們不是專業攝影師只是喜歡拍照而已,
                                                <br /> 雨天過後的楓葉蕭瑟感變厚重了,也顯得很鮮明色澤而已!
                                                <br /> 這次還是南部上來的朋友帶來豐盛的晚餐,真是不好意思ㄋ!
                                                <br /> (拍謝!外出帶著平板電腦不容易回應..才剛剛回家回覆)
                                                <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:37 回覆 </p>
                                            </li>
                                        </ul>
                                        <ul class="single-post">
                                            <li class="post-info">
                                                <a name="comment-58827106"> </a>
                                                <span class="floor">#3</span>
                                                <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> 訪客</span> <span class="post-time">於 2013/12/28 20:34</span>
                                            </li>
                                            <li class="post-photo">
                                                <img src="//s.pixfs.net/blog/images/choc/avatar-neutral.png" alt="訪客" original="//s.pixfs.net/blog/images/choc/avatar-neutral.png" style="display: inline;" width="90" height="90" /> </li>
                                            <li class="post-text">
                                                <p id="comment-58827106"></p>
                                                藍天哥<br />
                                                <br /> 您的文筆真是讚
                                                <br />
                                                <br /> 大雄 </li>
                                            <li class="reply-text">
                                                大雄 晚安:<br /> 毋影啦~只是有感而發的抒發一點所見所聞而已!
                                                <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:39 回覆 </p>
                                            </li>
                                        </ul>
                                        <ul class="single-post">
                                            <li class="post-info">
                                                <a name="comment-58827439"> </a>
                                                <span class="floor">#4</span>
                                                <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://linghua581101.pixnet.net/blog" target="_blank" rel="nofollow">linghua</a></span>
                                                <a class="homepage" rel="nofollow" href="http://linghua581101.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="linghua" title="linghua" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                                <span class="post-time">於 2013/12/28 21:29</span>
                                            </li>
                                            <li class="post-photo">
                                                <a href="http://linghua581101.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s9.pimg.tw/avatar/linghua581101/0/0/zoomcrop/90x90.png?v=1380555188" alt="linghua" original="http://s9.pimg.tw/avatar/linghua581101/0/0/zoomcrop/90x90.png?v=1380555188" style="display: inline;" width="90" height="90" /></a>
                                            </li>
                                            <li class="post-text">
                                                <p id="comment-58827439"></p>
                                                哇!好厚的紅毯 趴在地上取景辛苦了!<br /> 近年天氣消笑 忽冷忽熱<br /> 外拍能遇到最美的藍天和紅葉 可遇不可求....<br /> 桌上的砂鍋魚頭看起來超讚
                                                <br /> 冷冷的寒冬享用 一定過癮極了! </li>
                                            <li class="reply-text">
                                                哈~我的相機可以翻轉螢幕ㄜ,當初也有考慮到這場景的辛苦...<br /> 所以螢幕可以折疊就輕鬆多囉!
                                                <br /> 楓紅總是不等人的,我們這一周跟上周相比較的話就差很大,
                                                <br /> 選對時間才是做重要! 天寒之際吃火鍋最方便,也是偷懶...
                                                <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:59 回覆 </p>
                                            </li>
                                        </ul>
                                        <div id="v4cd82eeb822f4f91b98b1738" style="text-align: center;">
                                            <ins class="adsbyfalcon" data-ad-client="1" data-ad-slot="1738" data-embed="false" style="display:inline-block;" data-adsbyfalcon-status="done">            <div style="text-align:center;margin-bottom:20px;">
<ins class="adsbygoogle pixnet-ad" style="display:inline-block;width:468px;height:60px;" data-ad-region="falcon" data-ad-client="ca-pub-6865528665029394" data-ad-slot="4359503000" data-adsbygoogle-status="done"><ins id="aswift_2_expand" style="display:inline-table;border:none;height:60px;margin:0;padding:0;position:relative;visibility:visible;width:468px;background-color:transparent"><ins id="aswift_2_anchor" style="display:block;border:none;height:60px;margin:0;padding:0;position:relative;visibility:visible;width:468px;background-color:transparent"><iframe marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" allowfullscreen="true" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_2" name="aswift_2" style="left:0;position:absolute;top:0;" width="468" height="60" frameborder="0"></iframe></ins></ins>
                                            </ins>
                                        </div>

                                        <script>
                                            (adsbygoogle = window.adsbygoogle || []).push({});
                                            jQuery.ajaxSetup({
                                                'cache': true
                                            });
                                            jQuery.getScript("//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js");
                                            jQuery.ajaxSetup({
                                                'cache': false
                                            });
                                        </script>
                                        </ins>
                                        <script src="https://static.criteo.net/js/ld/publishertag.js"></script>
                                        <div id="crt-480037" style="width: 300px; height: 250px; margin: 0px auto; display: none;"></div>
                                        <script>
                                            Criteo.DisplayAcceptableAdIfAdblocked({
                                                "zoneid": 480037,
                                                "containerid": "crt-480037"
                                            });
                                        </script>
                                    </div>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58827835"> </a>
                                            <span class="floor">#5</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://sam831110.pixnet.net/blog" target="_blank" rel="nofollow">青草</a></span>
                                            <a class="homepage" rel="nofollow" href="http://sam831110.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="青草" title="青草" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2013/12/28 22:50</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://sam831110.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s4.pimg.tw/avatar/sam831110/0/0/zoomcrop/90x90.png?v=1378207418" alt="青草" original="http://s4.pimg.tw/avatar/sam831110/0/0/zoomcrop/90x90.png?v=1378207418" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58827835"></p>
                                            大哥晚安~<br /> 今天路過美樹營地,真的很美!
                                            <br /> 可惜現在楓已落的差不多了!!
                                            <br /> 好深山那內的地方,我們由秀巒下玉峰
                                            <br /> 再由北橫三光回家,一路的山景秀麗!! </li>
                                        <li class="reply-text">
                                            青草晚安:<br /> 上週幾天下來又是風又是雨,
                                            <br /> "花落知多少..."就算差一周也
                                            <br /> 差很大呢!明年算準時間再訪
                                            <br /> 就一定很棒的!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:56 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58830403"> </a>
                                            <span class="floor">#6</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://kwi3.pixnet.net/blog" target="_blank" rel="nofollow">阿蒯</a></span>
                                            <a class="homepage" rel="nofollow" href="http://kwi3.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="阿蒯" title="阿蒯" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2013/12/29 09:50</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://kwi3.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s2.pimg.tw/avatar/kwi3/0/0/zoomcrop/90x90.png?v=1378780336" alt="阿蒯" original="http://s2.pimg.tw/avatar/kwi3/0/0/zoomcrop/90x90.png?v=1378780336" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58830403"></p>
                                            大推<br /> 不是因為文中的很多”蒯嫂”
                                            <br /> 回家之後發現我的”恐山症”竟然好了八成
                                            <br /> 那段石磊產業道路 心理暗唸”阿彌陀佛”不只百遍除了感謝<br /> 我詞窮了
                                            <br /> 你們與野馬伉儷的友誼讓我們在陰雨寒冷中覺得溫暖
                                            <br /> 這是一次另人感動的旅程
                                            <br /> 有你們真好! </li>
                                        <li class="reply-text">
                                            蒯兄嫂晚安:<br /> 這趟路讓您辛苦了,雖然天氣不佳依然如期赴約,
                                            <br /> 讓蒯嫂處處打點得得這麼好,真有點過意不去...
                                            <br /> 感恩!相信"之前"的車況給受驚擾了,如今應該
                                            <br /> 是恢復信心,有藍天在的話,出門都是安全無虞的!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:54 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58832299"> </a>
                                            <span class="floor">#7</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://chi6239.pixnet.net/blog" target="_blank" rel="nofollow">甄妮佛</a></span>
                                            <a class="homepage" rel="nofollow" href="http://chi6239.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="甄妮佛" title="甄妮佛" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2013/12/29 16:01</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://chi6239.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s4.pimg.tw/avatar/chi6239/0/0/zoomcrop/90x90.png?v=1378050364" alt="甄妮佛" original="http://s4.pimg.tw/avatar/chi6239/0/0/zoomcrop/90x90.png?v=1378050364" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58832299"></p>
                                            山嵐 楓樹 落葉 ... 這地方太美了!! 太美了!! </li>
                                        <li class="reply-text">
                                            甄妮佛 晚安:<br /> 如果有露營的朋友一定也聽過有這個地方,
                                            <br /> 時令季節一到就是楓紅滿地...尖石秀巒一帶
                                            <br /> 很有秋天的氣息哦....
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:48 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58833619"> </a>
                                            <span class="floor">#8</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://cora808.pixnet.net/blog" target="_blank" rel="nofollow">Cora</a></span>
                                            <a class="homepage" rel="nofollow" href="%E5%80%8B%E4%BA%BA%E7%B6%B2%E9%A0%81+..." target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="Cora" title="Cora" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <a href="mailto:%E9%9B%BB%E5%AD%90%E9%83%B5%E4%BB%B6+..."><img class="comment-icon" src="//front.pixfs.net/comment/images/info-mail.gif" alt="寄信給 Cora" title="寄信給 Cora" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-mail.gif" /></a>
                                            <span class="post-time">於 2013/12/29 20:27</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://cora808.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s9.pimg.tw/avatar/cora808/0/0/zoomcrop/90x90.png?v=1252648592" alt="Cora" original="http://s9.pimg.tw/avatar/cora808/0/0/zoomcrop/90x90.png?v=1252648592" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58833619"></p>
                                            雨霧飄渺中的楓黃楓紅另有一番風韻 </li>
                                        <li class="reply-text">
                                            Cora晚安:<br /> 幾天下來楓葉經過雨後洗滌變得很鮮明,
                                            <br /> 當然也帶走許多落葉..蕭瑟唯美另一種風情!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:46 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58844251"> </a>
                                            <span class="floor">#9</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://tinned.pixnet.net/blog" target="_blank" rel="nofollow">tinned</a></span>
                                            <a class="homepage" rel="nofollow" href="http://tinned.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="tinned" title="tinned" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2013/12/30 16:49</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://tinned.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s5.pimg.tw/avatar/tinned/0/0/zoomcrop/90x90.png?v=1252648994" alt="tinned" original="http://s5.pimg.tw/avatar/tinned/0/0/zoomcrop/90x90.png?v=1252648994" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58844251"></p>
                                            真是拍的漂亮 我是北七強 </li>
                                        <li class="reply-text">
                                            北七強 晚安:<br /> 謝謝不吝讚美,其實我們只是喜歡拍而已,畢竟跟專業攝影還是有段距離,
                                            <br /> 簍信能有有您這些朋友真是太幸福了...,美樹愈來愈進步您是功不可沒...
                                            <br /> (哈~這個名稱取得...似乎很有玄機呢?)
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:44 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58845868"> </a>
                                            <span class="floor">#10</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://amay3952.pixnet.net/blog" target="_blank" rel="nofollow">莉莉夫子</a></span>
                                            <a class="homepage" rel="nofollow" href="http://amay3952.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="莉莉夫子" title="莉莉夫子" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2013/12/30 20:37</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://amay3952.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s7.pimg.tw/avatar/amay3952/0/0/zoomcrop/90x90.png?v=1377853418" alt="莉莉夫子" original="http://s7.pimg.tw/avatar/amay3952/0/0/zoomcrop/90x90.png?v=1377853418" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58845868"></p>
                                            藍天大哥:晚安~<br /> 哇~睡車上.機動性很強咧~
                                            <br /> 今年的美樹 好美啊~ </li>
                                        <li class="reply-text">
                                            LiLi夫子晚安:<br /> 是呀!改裝成車中床離開"地球表面",力克
                                            <br /> 潮溼地表(懶得收帳篷才是事實)..
                                            <br /> 今年的"美樹"楓紅狀況很優,我們去的上一周
                                            <br /> 更是最大值,看到FB有朋友分享..美的驚豔!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:25 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58855873"> </a>
                                            <span class="floor">#11</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://blackjack246.pixnet.net/blog" target="_blank" rel="nofollow">黑傑克</a></span>
                                            <a class="homepage" rel="nofollow" href="http://blackjack246.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="黑傑克" title="黑傑克" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2013/12/31 22:50</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://blackjack246.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s1.pimg.tw/avatar/blackjack246/0/0/zoomcrop/90x90.png?v=1378126837" alt="黑傑克" original="http://s1.pimg.tw/avatar/blackjack246/0/0/zoomcrop/90x90.png?v=1378126837" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58855873"></p>
                                            在藍天大的掌鏡下,美樹果然是仙境呀~ </li>
                                        <li class="reply-text">
                                            黑傑克晚安:<br /> 拍謝!出門五天才剛剛入門,外出使用平板電腦
                                            <br /> 實在很不方便中文輸入跟回應....
                                            <br /> 您客氣了,我們只是很一般的而已,看了您的
                                            <br /> 瑞士之行...才是仙境,會流口水哦!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/01 20:17 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post secret">
                                        <li class="post-text">
                                            悄悄話 </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58869610"> </a>
                                            <span class="floor">#13</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://moonheart930906.pixnet.net/blog" target="_blank" rel="nofollow">飛兒</a></span>
                                            <a class="homepage" rel="nofollow" href="http://moonheart930906.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="飛兒" title="飛兒" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/02 14:31</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://moonheart930906.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s4.pimg.tw/avatar/moonheart930906/0/0/zoomcrop/90x90.png?v=1378036386" alt="飛兒" original="http://s4.pimg.tw/avatar/moonheart930906/0/0/zoomcrop/90x90.png?v=1378036386" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58869610"></p>
                                            那年 我不是才不約而同到美樹賞楓<br /> 好快 又過了一年<br /> 山嵐在遠方飄移 讓秋楓更有意境<br /> 美樹的楓香 不管怎麼拍都很美<br /> 石磊部落 我在原民台看過介紹<br /> 是一個以種植有機蔬果為主的部落
                                            <br /> 也是一個很美的地方 我還沒去過<br /> 期待藍天大哥的分享 </li>
                                        <li class="reply-text">
                                            飛兒晚安:<br /> 說的也是,那年真的是不約而同,
                                            <br /> 只差沒真的碰面而已..如今又已
                                            <br /> 倏逾兩年了...
                                            <br /> 回程走"石磊道路"再轉回北橫巴崚,
                                            <br /> 切回三峽回台北,路況好遠喲...
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/02 23:36 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58870249"> </a>
                                            <span class="floor">#14</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://wanglin420704.pixnet.net/blog" target="_blank" rel="nofollow">王昆</a></span>
                                            <a class="homepage" rel="nofollow" href="http://wanglin420704.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="王昆" title="王昆" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/02 15:53</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://wanglin420704.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s9.pimg.tw/avatar/wanglin420704/0/0/zoomcrop/90x90.png?v=1384300563" alt="王昆" original="http://s9.pimg.tw/avatar/wanglin420704/0/0/zoomcrop/90x90.png?v=1384300563" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58870249"></p>
                                            欣賞好圖文唷~<br /> 安安~工作愉快~~順心~ </li>
                                        <li class="reply-text">
                                            謝謝賞圖!<br /> 祝福~順遂
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/13 23:05 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58871149"> </a>
                                            <span class="floor">#15</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://a17456.pixnet.net/blog" target="_blank" rel="nofollow">大小姐</a></span>
                                            <a class="homepage" rel="nofollow" href="http://a17456.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="大小姐" title="大小姐" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/02 17:44</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://a17456.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s2.pimg.tw/avatar/a17456/0/0/zoomcrop/90x90.png?v=1419350869" alt="大小姐" original="http://s2.pimg.tw/avatar/a17456/0/0/zoomcrop/90x90.png?v=1419350869" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58871149"></p>
                                            真是讓人羨慕的生活喔 </li>
                                        <li class="reply-text">
                                            大小姐 晚安:<br /> 露營是另外一種戶外生活,您的餐飲美食生活
                                            <br /> 也是不遑多讓ㄜ...
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/02 23:30 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58872136"> </a>
                                            <span class="floor">#16</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://wanglin420704.pixnet.net/blog" target="_blank" rel="nofollow">王昆</a></span>
                                            <a class="homepage" rel="nofollow" href="http://wanglin420704.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="王昆" title="王昆" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/02 20:32</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://wanglin420704.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s9.pimg.tw/avatar/wanglin420704/0/0/zoomcrop/90x90.png?v=1384300563" alt="王昆" original="http://s9.pimg.tw/avatar/wanglin420704/0/0/zoomcrop/90x90.png?v=1384300563" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58872136"></p>
                                            賞圖文唷~美唷!! 善知識晚安安<br />
                                            <br /> 祝您馬年行大運馬上賺大錢唷~
                                            <br />
                                        </li>
                                        <li class="reply-text">
                                            也祝您 新春愉快,新的一年心想事成,萬事如意
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/02 23:59 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58872682"> </a>
                                            <span class="floor">#17</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://c1118c1118.pixnet.net/blog" target="_blank" rel="nofollow">光頭</a></span>
                                            <a class="homepage" rel="nofollow" href="http://c1118c1118.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="光頭" title="光頭" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/02 21:52</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://c1118c1118.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s.pimg.tw/avatar/c1118c1118/0/0/zoomcrop/90x90.png?v=1399133604" alt="光頭" original="http://s.pimg.tw/avatar/c1118c1118/0/0/zoomcrop/90x90.png?v=1399133604" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58872682"></p>
                                            楓樹 落葉~這地方太美~拍照真美 </li>
                                        <li class="reply-text">
                                            光頭 晚安:<br /> 這格地點的楓香泛紅之際是最美的時刻,
                                            <br /> 人在現場看更是會感動的地方...
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/02 23:32 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post secret">
                                        <li class="post-text">
                                            悄悄話 </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58881475"> </a>
                                            <span class="floor">#19</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://sheilateng.pixnet.net/blog" target="_blank" rel="nofollow">Sheila Teng</a></span>
                                            <a class="homepage" rel="nofollow" href="http://sheilateng.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="Sheila Teng" title="Sheila Teng" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/03 19:41</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://sheilateng.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s4.pimg.tw/avatar/sheilateng/0/0/zoomcrop/90x90.png?v=1392195296" alt="Sheila Teng" original="http://s4.pimg.tw/avatar/sheilateng/0/0/zoomcrop/90x90.png?v=1392195296" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58881475"></p>
                                            台灣能找到這麼厚實的楓葉地毯...不容易呀!!<br /> 此時若想低拍就會羨慕起那些螢幕可翻轉的相機了~
                                            <br />
                                            <br /> 控溪吊橋那邊我拍過, 風景真的很棒!<br /> 美樹名字取得簡單乾脆...
                                            <br /> 這個地方記下來了, 不必去石門水庫人擠人<br /> 這裡的楓葉更有看頭哩!!!
                                            <br />
                                        </li>
                                        <li class="reply-text">
                                            Sheila晚安:<br /> 來到秀巒軍艦岩、控溪吊橋拍秋楓的話,
                                            <br /> 那就得順道去"美樹"拍楓香林才不需此行,
                                            <br /> 一個簡單的營地卻是愛攝人士每年必訪之地,
                                            <br /> 攝影老師總是帶著學員來此地外拍練習,
                                            <br /> 要是妳來拍攝的話,必然精彩可期,"另眼看待"ㄜ!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/03 22:07 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58882654"> </a>
                                            <span class="floor">#20</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://su06wuwu.pixnet.net/blog" target="_blank" rel="nofollow">阿麗瑪</a></span>
                                            <a class="homepage" rel="nofollow" href="http://su06wuwu.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="阿麗瑪" title="阿麗瑪" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/03 22:44</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://su06wuwu.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s6.pimg.tw/avatar/su06wuwu/0/0/zoomcrop/90x90.png?v=1381192313" alt="阿麗瑪" original="http://s6.pimg.tw/avatar/su06wuwu/0/0/zoomcrop/90x90.png?v=1381192313" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58882654"></p>
                                            先來說個老梗~落花並非無情物,化作春泥更護花!♥<br /> 落葉鋪成的地毯真的感覺粉溫馨吼?
                                            <br /> 哦~你們南來北往大會師噢?
                                            <br /> 美樹營地好美呢!偶們一心一意直奔司馬庫斯所以沒有近來賞景...
                                            <br /> 伙食好讚噢!偶們四餐有兩餐試吃泡麵,早餐是吃隔夜飯泡水的硬硬不濃稠稀飯...☹
                                            <br /> 恭喜你們收穫滿行曩♣★
                                            <br /> 噢對!還有怎麼睡車上呢?露營車嗎?偶們去年元旦去國境之南找不到旅館也是當了車床族~睡車上...好累!︿_* </li>
                                        <li class="reply-text">
                                            阿麗瑪晚安:<br /> 這個季節的楓香林剛好泛紅,剛好連日來雨勢不斷變成
                                            <br /> 落葉成塚,否則滿滿色彩的楓樹是最美的! 阿蒯之家特地<br /> 從南部北上一起同露,蒯嫂手藝很棒我們才有口福哩!
                                            <br /> 我們是休旅車,經由專門店家改裝成"活動式車床",拆卸快速
                                            <br /> 只需要五分鐘就可以搞定,長度180公分(含海棉墊)這樣睡眠
                                            <br /> 才有品質,一覺到天亮甚至會睡過頭...
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/03 23:11 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58882906"> </a>
                                            <span class="floor">#21</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://daitou.pixnet.net/blog" target="_blank" rel="nofollow">DaiTou</a></span>
                                            <a class="homepage" rel="nofollow" href="http://daitou.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="DaiTou" title="DaiTou" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/03 23:17</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://daitou.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s4.pimg.tw/avatar/daitou/0/0/zoomcrop/90x90.png?v=1387714327" alt="DaiTou" original="http://s4.pimg.tw/avatar/daitou/0/0/zoomcrop/90x90.png?v=1387714327" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58882906"></p>
                                            楓葉很美 </li>
                                        <li class="reply-text">
                                            謝謝!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/03 23:34 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post secret">
                                        <li class="post-text">
                                            悄悄話 </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-58948831"> </a>
                                            <span class="floor">#23</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://imel168.pixnet.net/blog" target="_blank" rel="nofollow">lily</a></span>
                                            <a class="homepage" rel="nofollow" href="http://imel168.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="lily" title="lily" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/09 15:20</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://imel168.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s.pimg.tw/avatar/imel168/0/0/zoomcrop/90x90.png?v=1449731612" alt="lily" original="http://s.pimg.tw/avatar/imel168/0/0/zoomcrop/90x90.png?v=1449731612" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-58948831"></p>
                                            第一張相片的貓頭鷹實在是太吸睛了~~<br /> 這裡賞楓露營真是好地方
                                            <br /> 出去露營能吃到如此豐盛
                                            <br /> 真是超級羨慕ㄋ </li>
                                        <li class="reply-text">
                                            Lily 晚安:<br /> 美樹營地招牌上分別佈置了幾隻貓頭鷹,
                                            <br /> 顏色鮮豔也很可愛,也成為愛攝人士的鏡頭
                                            <br /> 追逐焦點,有機會可以去看一看!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/01/09 21:10 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-59096524"> </a>
                                            <span class="floor">#24</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://tinned.pixnet.net/blog" target="_blank" rel="nofollow">tinned</a></span>
                                            <a class="homepage" rel="nofollow" href="http://tinned.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="tinned" title="tinned" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/01/27 15:28</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://tinned.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s5.pimg.tw/avatar/tinned/0/0/zoomcrop/90x90.png?v=1252648994" alt="tinned" original="http://s5.pimg.tw/avatar/tinned/0/0/zoomcrop/90x90.png?v=1252648994" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-59096524"></p>
                                            北七強的由來ㄚ<br /> 就很簡單ㄚ 畫圖的時候很單純 很少去想最後的結果<br />
                                            <br /> 北七 還挺不錯的ㄚ 可能是指ㄧ個心境問題喔 </li>
                                        <li class="reply-text">
                                            簍信,有緣認識你們這些朋友真是幸運了!<br /> "北七" 的取名太有意思了~~<br /> (拍謝, 今早上才見到有漏回覆的,金害ㄟ)
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/02/10 10:22 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-60415990"> </a>
                                            <span class="floor">#25</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://jo2353584.pixnet.net/blog" target="_blank" rel="nofollow">養身館的部落格</a></span>
                                            <a class="homepage" rel="nofollow" href="http://jo2353584.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="養身館的部落格" title="養身館的部落格" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2014/11/21 09:36</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://jo2353584.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s2.pimg.tw/avatar/jo2353584/0/0/zoomcrop/90x90.png?v=1410872107" alt="養身館的部落格" original="http://s2.pimg.tw/avatar/jo2353584/0/0/zoomcrop/90x90.png?v=1410872107" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-60415990"></p>
                                            哇~~在楓葉樹下~~露營~~吃火鍋~~別有一番情境喔~~推~~ </li>
                                        <li class="reply-text">
                                            謝謝囉!!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2014/11/24 20:48 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61413637"> </a>
                                            <span class="floor">#26</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> 訪客</span> <span class="post-time">於 2015/11/30 12:45</span>
                                        </li>
                                        <li class="post-photo">
                                            <img src="//s.pixfs.net/blog/images/choc/avatar-neutral.png" alt="訪客" original="//s.pixfs.net/blog/images/choc/avatar-neutral.png" style="display: inline;" width="90" height="90" /> </li>
                                        <li class="post-text">
                                            <p id="comment-61413637"></p>
                                            真的拍得好棒好溫馨~~ </li>
                                        <li class="reply-text">
                                            謝謝賞圖/文!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2015/11/30 17:40 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61704922"> </a>
                                            <span class="floor">#27</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://qiqichoi.pixnet.net/blog" target="_blank" rel="nofollow">qiqichoi</a></span>
                                            <a class="homepage" rel="nofollow" href="http://qiqichoi.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="qiqichoi" title="qiqichoi" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/07/05 18:11</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://qiqichoi.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s1.pimg.tw/avatar/qiqichoi/0/0/zoomcrop/90x90.png?v=" alt="qiqichoi" original="http://s1.pimg.tw/avatar/qiqichoi/0/0/zoomcrop/90x90.png?v=" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61704922"></p>
                                            真是太美了 </li>
                                        <li class="reply-text">
                                            謝謝你的喜歡~<br />
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/07/05 19:26 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61718662"> </a>
                                            <span class="floor">#28</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://h48812345.pixnet.net/blog" target="_blank" rel="nofollow">GE台北車庫-小壕</a></span>
                                            <a class="homepage" rel="nofollow" href="http://h48812345.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="GE台北車庫-小壕" title="GE台北車庫-小壕" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/07/16 14:19</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://h48812345.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s5.pimg.tw/avatar/h48812345/0/0/zoomcrop/90x90.png?v=1464609989" alt="GE台北車庫-小壕" original="http://s5.pimg.tw/avatar/h48812345/0/0/zoomcrop/90x90.png?v=1464609989" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61718662"></p>
                                            好美哦!!!<br />
                                        </li>
                                        <li class="reply-text">
                                            謝謝您的喜歡!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/07/18 17:25 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61729471"> </a>
                                            <span class="floor">#29</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://mikodraw.pixnet.net/blog" target="_blank" rel="nofollow">米可</a></span>
                                            <a class="homepage" rel="nofollow" href="http://mikodraw.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="米可" title="米可" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/07/28 15:07</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://mikodraw.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s.pimg.tw/avatar/mikodraw/0/0/zoomcrop/90x90.png?v=1471176256" alt="米可" original="http://s.pimg.tw/avatar/mikodraw/0/0/zoomcrop/90x90.png?v=1471176256" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61729471"></p>
                                            這太美了!好喜歡,我從沒看過,希望有一天可以去看看走一趟! </li>
                                        <li class="reply-text">
                                            這裡是新竹縣秀巒鄉很著名的攝影景點,<br /> 如果不是露營的話也可以趁著早上開放時間拍照,
                                            <br /> 付入園會即可入內盡情拍照...
                                            <br /> PS:每年楓紅時間"大約"是12月中...左右,
                                            <br /> 實際還得視當地氣溫而定
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/08/02 10:37 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61740319"> </a>
                                            <span class="floor">#30</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://h48812345.pixnet.net/blog" target="_blank" rel="nofollow">GE台北車庫-小壕</a></span>
                                            <a class="homepage" rel="nofollow" href="http://h48812345.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="GE台北車庫-小壕" title="GE台北車庫-小壕" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/08/10 16:36</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://h48812345.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s5.pimg.tw/avatar/h48812345/0/0/zoomcrop/90x90.png?v=1464609989" alt="GE台北車庫-小壕" original="http://s5.pimg.tw/avatar/h48812345/0/0/zoomcrop/90x90.png?v=1464609989" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61740319"></p>
                                            感覺好享受哦~~~ </li>
                                        <li class="reply-text">
                                            呵,謝謝賞圖! 晚安<br />
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/08/11 23:03 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61755082"> </a>
                                            <span class="floor">#31</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://tckitkit.pixnet.net/blog" target="_blank" rel="nofollow">tckitkit</a></span>
                                            <a class="homepage" rel="nofollow" href="http://tckitkit.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="tckitkit" title="tckitkit" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/08/22 17:32</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://tckitkit.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s7.pimg.tw/avatar/tckitkit/0/0/zoomcrop/90x90.png?v=" alt="tckitkit" original="http://s7.pimg.tw/avatar/tckitkit/0/0/zoomcrop/90x90.png?v=" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61755082"></p>
                                            拍得好美 </li>
                                        <li class="reply-text">
                                            謝謝! 晚安~<br />
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/08/22 22:27 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61767484"> </a>
                                            <span class="floor">#32</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://pige8436.pixnet.net/blog" target="_blank" rel="nofollow">Quby</a></span>
                                            <a class="homepage" rel="nofollow" href="http://pige8436.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="Quby" title="Quby" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/08/31 21:15</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://pige8436.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s7.pimg.tw/avatar/pige8436/0/0/zoomcrop/90x90.png?v=1435915418" alt="Quby" original="http://s7.pimg.tw/avatar/pige8436/0/0/zoomcrop/90x90.png?v=1435915418" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61767484"></p>
                                            再過不久又進入秋天了<br /> 楓葉照令人很期待呢
                                            <br /> 而且到時候的天氣適合露營
                                            <br /> 不會很濕熱也不會太冷 </li>
                                        <li class="reply-text">
                                            入秋之後寒流來襲就容易讓秋楓變色,<br /> 秋高氣爽野正是露營的好時節
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/09/08 18:37 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61777000"> </a>
                                            <span class="floor">#33</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://a0988025959.pixnet.net/blog" target="_blank" rel="nofollow">面面</a></span>
                                            <a class="homepage" rel="nofollow" href="http://commutetrip.com/%E9%97%9C%E6%96%BC%E9%80%A2%E7%94%B2fully" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="面面" title="面面" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/09/12 19:30</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://a0988025959.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s.pimg.tw/avatar/a0988025959/0/0/zoomcrop/90x90.png?v=1471263551" alt="面面" original="http://s.pimg.tw/avatar/a0988025959/0/0/zoomcrop/90x90.png?v=1471263551" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61777000"></p>
                                            拍的照片真的好美 謝謝 </li>
                                        <li class="reply-text">
                                            謝謝妳的喜歡~
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/09/13 18:13 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61781434"> </a>
                                            <span class="floor">#34</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://drw1041.pixnet.net/blog" target="_blank" rel="nofollow">木博士</a></span>
                                            <a class="homepage" rel="nofollow" href="http://drw1041.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="木博士" title="木博士" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/09/19 19:05</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://drw1041.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s3.pimg.tw/avatar/drw1041/0/0/zoomcrop/90x90.png?v=1386410244" alt="木博士" original="http://s3.pimg.tw/avatar/drw1041/0/0/zoomcrop/90x90.png?v=1386410244" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61781434"></p>
                                            很美~美術營是帶小朋友去玩的好地方!! </li>
                                        <li class="reply-text">
                                            美樹營地有奇迷人之處,春夏秋冬各有其特色,<br /> 小朋友玩耍也很安全的!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/09/23 09:38 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61788430"> </a>
                                            <span class="floor">#35</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://tw27003265.pixnet.net/blog" target="_blank" rel="nofollow">tw27003265</a></span>
                                            <a class="homepage" rel="nofollow" href="http://commutetrip.com/" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="tw27003265" title="tw27003265" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/09/28 17:18</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://tw27003265.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s2.pimg.tw/avatar/tw27003265/0/0/zoomcrop/90x90.png?v=1473860284" alt="tw27003265" original="http://s2.pimg.tw/avatar/tw27003265/0/0/zoomcrop/90x90.png?v=1473860284" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61788430"></p>
                                            秋之景好美呢 </li>
                                        <li class="reply-text">
                                            新竹秀巒一帶的熱門楓紅景點之一
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/10/04 09:47 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61788916"> </a>
                                            <span class="floor">#36</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://thousand0410.pixnet.net/blog" target="_blank" rel="nofollow">中壢中古鋼琴中心</a></span>
                                            <a class="homepage" rel="nofollow" href="http://thousand0410.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="中壢中古鋼琴中心" title="中壢中古鋼琴中心" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/09/29 05:37</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://thousand0410.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s8.pimg.tw/avatar/thousand0410/0/0/zoomcrop/90x90.png?v=1420095364" alt="中壢中古鋼琴中心" original="http://s8.pimg.tw/avatar/thousand0410/0/0/zoomcrop/90x90.png?v=1420095364" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61788916"></p>
                                            看起來真美 棒 </li>
                                        <li class="reply-text">
                                            新竹秀巒一帶的熱門楓紅景點之一
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/10/04 09:47 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61789510"> </a>
                                            <span class="floor">#37</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://jenny10113.pixnet.net/blog" target="_blank" rel="nofollow">Jenny10113</a></span>
                                            <a class="homepage" rel="nofollow" href="http://jenny10113.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="Jenny10113" title="Jenny10113" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/09/29 19:46</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://jenny10113.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s3.pimg.tw/avatar/jenny10113/0/0/zoomcrop/90x90.png?v=1473045602" alt="Jenny10113" original="http://s3.pimg.tw/avatar/jenny10113/0/0/zoomcrop/90x90.png?v=1473045602" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61789510"></p>
                                            好夢幻喔!!!!! </li>
                                        <li class="reply-text">
                                            很美的楓香營地,楓紅時節也是熱門的拍照景點
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/10/04 09:46 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61792762"> </a>
                                            <span class="floor">#38</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://h48812345.pixnet.net/blog" target="_blank" rel="nofollow">GE台北車庫-小壕</a></span>
                                            <a class="homepage" rel="nofollow" href="http://h48812345.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="GE台北車庫-小壕" title="GE台北車庫-小壕" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/09/30 18:49</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://h48812345.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s5.pimg.tw/avatar/h48812345/0/0/zoomcrop/90x90.png?v=1464609989" alt="GE台北車庫-小壕" original="http://s5.pimg.tw/avatar/h48812345/0/0/zoomcrop/90x90.png?v=1464609989" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61792762"></p>
                                            好適合約會的地方~ </li>
                                        <li class="reply-text">
                                            小而美的營地,一年四季的楓箱各有特色,<br /> 適合各式各樣的聚會ㄜ
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/10/04 09:45 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61801837"> </a>
                                            <span class="floor">#39</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> 廣州十大旅遊景點</span>
                                            <a class="homepage" rel="nofollow" href="http://www.fun01.net/post233268/2525" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="廣州十大旅遊景點" title="廣州十大旅遊景點" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/10/11 11:02</span>
                                        </li>
                                        <li class="post-photo">
                                            <img src="//s.pixfs.net/blog/images/choc/avatar-neutral.png" alt="廣州十大旅遊景點" original="//s.pixfs.net/blog/images/choc/avatar-neutral.png" style="display: inline;" width="90" height="90" /> </li>
                                        <li class="post-text">
                                            <p id="comment-61801837"></p>
                                            這篇寫的很好<br /> 歡迎回訪喔 </li>
                                        <li class="reply-text">
                                            謝謝你!<br />
                                            <br />
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2016/10/12 14:25 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61807225"> </a>
                                            <span class="floor">#40</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://tw27003265.pixnet.net/blog" target="_blank" rel="nofollow">tw27003265</a></span>
                                            <a class="homepage" rel="nofollow" href="http://commutetrip.com/" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="tw27003265" title="tw27003265" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/10/17 19:47</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://tw27003265.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s2.pimg.tw/avatar/tw27003265/0/0/zoomcrop/90x90.png?v=1473860284" alt="tw27003265" original="http://s2.pimg.tw/avatar/tw27003265/0/0/zoomcrop/90x90.png?v=1473860284" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61807225"></p>
                                            又是看秋景的季節 </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61885933"> </a>
                                            <span class="floor">#41</span>
                                            <span class="user-name"><img class="identity-provider comment-icon lazy" data-original="//front.pixfs.net/comment/images/openid-pixnet-icon.gif" style="vertical-align:middle;" src="http://s.pixfs.net/js/jquery.lazyload/grey.gif" width="16" height="16" /> <a href="http://kiotellock.pixnet.net/blog" target="_blank" rel="nofollow">妹子小姐</a></span>
                                            <a class="homepage" rel="nofollow" href="http://kiotellock.pixnet.net/blog" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="妹子小姐" title="妹子小姐" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2016/12/31 20:33</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="http://kiotellock.pixnet.net/blog" target="_blank" rel="nofollow"><img src="http://s6.pimg.tw/avatar/kiotellock/0/0/zoomcrop/90x90.png?v=1481908424" alt="妹子小姐" original="http://s6.pimg.tw/avatar/kiotellock/0/0/zoomcrop/90x90.png?v=1481908424" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61885933"></p>
                                            謝謝分享文章喲! </li>
                                        <li class="reply-text">
                                            不客氣!! 晚安
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2017/01/03 18:25 回覆 </p>
                                        </li>
                                    </ul>
                                    <ul class="single-post">
                                        <li class="post-info">
                                            <a name="comment-61901059"> </a>
                                            <span class="floor">#42</span>
                                            <span class="user-name"> <a href="https://www.facebook.com/app_scoped_user_id/233582907099276/" target="_blank" rel="nofollow">蔡敏嫻</a></span>
                                            <a class="homepage" rel="nofollow" href="http://www.emerly.com.tw/" target="_blank"><img class="comment-icon" src="//front.pixfs.net/comment/images/info-website.gif" alt="蔡敏嫻" title="蔡敏嫻" style="vertical-align: middle; display: inline;" original="//front.pixfs.net/comment/images/info-website.gif" /></a>
                                            <span class="post-time">於 2017/01/18 14:41</span>
                                        </li>
                                        <li class="post-photo">
                                            <a href="https://www.facebook.com/app_scoped_user_id/233582907099276/" target="_blank" rel="nofollow"><img src="https://graph.facebook.com/233582907099276/picture" alt="蔡敏嫻" original="https://graph.facebook.com/233582907099276/picture" style="display: inline;" width="90" height="90" /></a>
                                        </li>
                                        <li class="post-text">
                                            <p id="comment-61901059"></p>
                                            真是個美麗的好地方,感謝分享~ </li>
                                        <li class="reply-text">
                                            謝謝賞圖文!
                                            <p><a href="http://stevenhgm.pixnet.net/blog" target="_blank">史蒂文的家_藍天</a> 於 2017/01/19 21:05 回覆 </p>
                                        </li>
                                    </ul>
                                </div>
                                <!-- #comment-text //-->
                                <div id="comment_form">
                                    <a name="comment-form"></a>
                                    <form class="json-form" target="_blank" method="POST" action="http://stevenhgm.pixnet.net/blog/postcomment/39926056">
                                        <input name="sToken" value="39743a9f949bc0eb6d0e581c1f3fc39d" type="hidden" />
                                        <div id="comment-area">
                                            <div id="comment-area-2">
                                                <iframe src="//panel.pixnet.cc/pixfront/commentpush/blogarticle?user=stevenhgm&amp;articleid=39926056&amp;from=" marginheight="0" marginwidth="0" scrolling="no" border="0" frameborder="0"></iframe>
                                                <div class="comment-identity identity-logout">
                                                    <div class="choose-identity">
                                                        <a href="https://www.pixnet.net/?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529%23comment-form" class="openid-pixnet"><span class="invisible">PIXNET</span></a>
                                                        <a href="https://panel.pixnet.cc/login/facebooklogin?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fapi%2Fpopuplogin%3Fdone%3Dhttp%253A%252F%252Fstevenhgm.pixnet.net%252Fblog%252Fpost%252F39926056-%2525e6%252596%2525b0%2525e7%2525ab%2525b9%2525e5%2525b0%252596%2525e7%25259f%2525b3_%2525e7%2525be%25258e%2525e6%2525a8%2525b9%2525e7%252587%25259f%2525e5%25259c%2525b0%2525e8%2525b3%25259e%2525e6%2525a5%252593-%2525282%252529%2523comment-form&amp;without_signup=1&amp;without_full_perm=1" class="openid-facebook" onclick="window.open(this.href, 'login', config='height=650,width=650,scrollbars=1,resizable=0'); return false; "><span class="invisible">Facebook</span></a>
                                                        <a href="https://panel.pixnet.cc/login/openid?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fapi%2Fpopuplogin%3Fdone%3Dhttp%253A%252F%252Fstevenhgm.pixnet.net%252Fblog%252Fpost%252F39926056-%2525e6%252596%2525b0%2525e7%2525ab%2525b9%2525e5%2525b0%252596%2525e7%25259f%2525b3_%2525e7%2525be%25258e%2525e6%2525a8%2525b9%2525e7%252587%25259f%2525e5%25259c%2525b0%2525e8%2525b3%25259e%2525e6%2525a5%252593-%2525282%252529%2523comment-form&amp;openid=https%3A%2F%2Fme.yahoo.com%2F&amp;without_signup=1" class="openid-yahoo" onclick="window.open(this.href, 'login', config='height=500,width=450,scrollbars=1,resizable=0'); return false; "><span class="invisible">Yahoo!</span></a>
                                                        <a href="https://panel.pixnet.cc/login/googlepluslogin?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fapi%2Fpopuplogin%3Fdone%3Dhttp%253A%252F%252Fstevenhgm.pixnet.net%252Fblog%252Fpost%252F39926056-%2525e6%252596%2525b0%2525e7%2525ab%2525b9%2525e5%2525b0%252596%2525e7%25259f%2525b3_%2525e7%2525be%25258e%2525e6%2525a8%2525b9%2525e7%252587%25259f%2525e5%25259c%2525b0%2525e8%2525b3%25259e%2525e6%2525a5%252593-%2525282%252529%2523comment-form&amp;without_signup=1" class="openid-google" onclick="window.open(this.href, 'login', config='height=500,width=450,scrollbars=1,resizable=0'); return false; "><span class="invisible">Google</span></a>
                                                        <a href="https://panel.pixnet.cc/login/livelogin?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fapi%2Fpopuplogin%3Fdone%3Dhttp%253A%252F%252Fstevenhgm.pixnet.net%252Fblog%252Fpost%252F39926056-%2525e6%252596%2525b0%2525e7%2525ab%2525b9%2525e5%2525b0%252596%2525e7%25259f%2525b3_%2525e7%2525be%25258e%2525e6%2525a8%2525b9%2525e7%252587%25259f%2525e5%25259c%2525b0%2525e8%2525b3%25259e%2525e6%2525a5%252593-%2525282%252529%2523comment-form&amp;without_signup=1" class="openid-msn" onclick="window.open(this.href, 'login', config='height=500,width=470,scrollbars=1,resizable=0'); return false; "><span class="invisible">MSN</span></a>
                                                    </div>
                                                </div>
                                                <div class="comment-body">
                                                    <p>您尚未登入,將以<b>訪客</b>身份留言。亦可<a href="https://www.pixnet.net/?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529%23comment-form">登入</a>留言</p>
                                                    <input name="blogcommenttext_name" id="comment_showname" class="comment-name" placeholder="您的暱稱 ..." type="text" />
                                                    <div class="comment-textarea comment-textarea--text-right">
                                                        <textarea name="blogcommenttext_body" id="comment_text" placeholder="留個言吧 ..."></textarea>
                                                        <div class="private-message-container">
                                                            <div class="private-message"><label><input name="blogcomment_open" id="comment_open" value="0" disabled="disabled" type="checkbox" /><img src="//front.pixfs.net/images/blog/post/mobile/articlecomment/icon-lock--gray.png?v=b27bf7fe9e1f0fca830e1381a52f804b" width="12" height="12" />悄悄話</label></div>
                                                            <div id="nologin_hidden_msg" class="private-notice"><a href="https://www.pixnet.net/?done=http%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529%23comment-form">登入</a>可留悄悄話</div>
                                                        </div>
                                                    </div>
                                                    <!-- .comment-textarea -->


                                                    <div class="comment-extra">
                                                        <div id="unfold-comment-extra"><img src="//s.pixfs.net/f.pixnet.net/comment/images/comment-unfold.jpg" /> 其他選項</div>
                                                        <button type="submit"><span>送出留言</span></button>
                                                    </div>

                                                    <div id="comment-extra" class="extra" style="display:none"><input name="blogcommenttext_mail" class="text-input" id="comment_mail" placeholder="電子郵件 ..." type="text" /><input name="blogcommenttext_url" class="text-input" id="comment_url" placeholder="個人網頁 ..." type="text" /></div>
                                                </div>
                                                <!--.comment-middle-->
                                            </div>
                                            <!-- #comment-area-2-->
                                        </div>
                                        <!-- #comment-area -->
                                    </form>


                                </div>
                            </div>
                            <!--  #comment-box //-->
                        </div>
                        <!-- #user-post //-->
                        <script type="text/javascript">
                            & lt;
                            !--
                            jQuery(function() {
                                //#40294 用ajax接postcommentAction產生的comment form
                                var action = location.href;
                                action = action.replace('/post/', '/postcomment/');
                                jQuery.ajaxSetup({
                                    cache: true
                                });
                                jQuery.ajax({
                                    type: 'GET',
                                    url: action,
                                    data: {
                                        "getForm": 1,
                                        "isMobile": 0
                                    },
                                    dataType: 'json',
                                    success: function(data) {
                                        jQuery('#comment_form').html(data.form);

                                        setTimeout(function() {
                                            if (jQuery.pixQuestionary & amp; & amp;
                                                'function' === typeof jQuery.pixQuestionary) {
                                                jQuery.pixQuestionary(pix.user_name);
                                            }
                                        }, 1000);

                                        // 用來判斷是否有安裝'留言插入表情符號' App
                                        if (jQuery.pixAddonCommentEmotion & amp; & amp;
                                            'function' === typeof jQuery.pixAddonCommentEmotion) {
                                            // 裝了App 但沒表情符號可選, 須重新call function
                                            if (!document.getElementById('comment-emotion')) {
                                                jQuery.pixAddonCommentEmotion();
                                            }
                                        }
                                    },
                                    error: function(error) {
                                        console.log(error);
                                    }
                                });
                                jQuery.ajaxSetup({
                                    cache: false
                                });

                                jQuery('.comment-icon').attr('style', 'vertical-align:middle;');
                            });
                            // --&gt;
                        </script>


                    </div>
                    <!-- #article-area //-->
                </div>
                <!-- #content //-->
                <div id="links">
                    <div id="links-row-1">
                        <div class="hslice box" id="friendbox">
                            <h4 class="box-title entry-title">
                                我的好友 </h4>
                            <div class="box-text entry-content">

                                設定不公開 </div>
                        </div>
                        <!-- #friendbox //-->
                        <script type="text/javascript">
                            & lt;
                            !--
                            jQuery(function($) {
                                $list = $('#friendbox ul.friendlist');
                                $list.height(Math.min(190, $list.height()));
                                pix.iframePopup.init('#popup-frame', "http:\/\/stevenhgm.pixnet.net\/friend\/list", '#friendbox-open-friends-iframe', '#popup-frame .frame-close', "\u53f2\u8482\u6587\u7684\u5bb6_\u85cd\u5929 \u7684\u597d\u53cb\u5217\u8868");
                            });
                            //--&gt;
                        </script>
                        <div class="hslice box h54d834-miB-ad-sidebar-v2-h54d834" data-plugin_type="mibsidebar1">
                            <div class="box-text entry-content">
                                <div class="h54d834-miB-border-h54d834 dark">
                                    <div class="h54d834-siTemajidr-h54d834" model="180x280">
                                        <a target="_blank" href="//falcon.pixanalytics.com/ad/r?i=cf990e0ed190360343a263d6a90f6035&amp;p=835&amp;u=fdf74dae4be94846aedb237469300749&amp;c=CgEBQ1idhpEA7LZIYOO2Ag%3D%3D" style="display: inline ! important; visibility: visible ! important;">
                                            <img src="//falcon-creative-cloudcdn.pixfs.net/2016/03/cf990e0ed190360343a263d6a90f6035-94f995e22831564c.jpg?v=1463739866" style="display: inline ! important; visibility: visible ! important;" border="0" />
                                        </a>
                                        <span class="mib--ad-box__icon"><a href="#">痞客邦廣告聯播網</a></span></div>
                                </div>
                                <!-- /.mib-border -->
                            </div>
                        </div>

                    </div>
                    <!-- #links-row-1 //-->
                    <div id="links-row-2">
                        <div id="user-info" class="hslice box">
                            <h4 class="box-title entry-title">
                                個人資訊 </h4>
                            <div class="box-text entry-content">
                                <a class="user-img" href="http://www.pixnet.net/blog/profile/stevenhgm"><img src="http://s9.pimg.tw/avatar/stevenhgm/0/0/zoomcrop/90x90.png?v=1377876799" /></a>
                                <div class="user-action">
                                    <input value="加入好友" class="add_friend" type="button" />
                                    <input value="加入訂閱" class="add_subs" type="button" />
                                </div>
                                <dl>
                                    <dt>暱稱:</dt>
                                    <dd>史蒂文的家_藍天</dd>
                                    <dt>分類:</dt>
                                    <dd><a href="//www.pixnet.net/blog/bloggers/category/16">休閒旅遊</a></dd>
                                    <dt>性別:</dt>
                                    <dd>男</dd>
                                    <dt>地區:</dt>
                                    <dd>新北市</dd>
                                </dl>
                            </div>
                        </div>
                        <script type="text/javascript">
                            & lt;
                            !--
                            jQuery(function($) {
                                pix.iframePopup.init('#popup-frame', "http:\/\/stevenhgm.pixnet.net\/friend\/list", '#user-info-open-friends-iframe', '#popup-frame .frame-close', "\u53f2\u8482\u6587\u7684\u5bb6_\u85cd\u5929 \u7684\u597d\u53cb\u5217\u8868");
                                var $add_friend = $('#user-info').find('input.add_friend');
                                var $add_subs = $('#user-info').find('input.add_subs');
                                $add_friend.add($add_subs).click(function(e) {
                                    window.location = 'http://' + "www.pixnet.net" + '?done=' + encodeURIComponent(window.location);
                                });
                            });
                            //--&gt;
                        </script>
                        <div class="hslice box" id="albumshow">
                            <h4 class="box-title entry-title">
                                相簿幻燈片 </h4>
                            <div class="box-text entry-content">

                                <div align="center">
                                    <iframe src="/blog/plugin/albumshow" allowtransparency="true" scrolling="no" width="170" height="180" frameborder="0"></iframe>
                                </div>
                            </div>
                        </div>
                        <!-- #albumshow //-->
                        <div class="hslice box folder" id="box1048927">
                            <h4 class="box-title entry-title">
                                即時瀏覽數 </h4>
                            <div class="box-text entry-content">

                                <script id="_waupm8">
                                    var _wau = _wau || [];
                                    _wau.push(["classic", "jw52pblyzhbn", "pm8"]);
                                    (function() {
                                        var s = document.createElement("script");
                                        s.async = true;
                                        s.src = "http://widgets.amung.us/classic.js";
                                        document.getElementsByTagName("head")[0].appendChild(s);
                                    })();
                                </script>
                                <div style="position: relative; display: inline-block; background-image: url(&quot;data:image/gif;base64,R0lGODlhUgA8APf5AEZGRj09PQwMDDU1NcEnLQgICDAwMAUFBUVFRTg4OAICAi0tLVFRUV1dXVtbW0JCQnh4eOjo6NLS0o2NjcnJyePj45CQkOfn5+Tk5K2trWBgYLm5uUBAQGpqamtra3BwcHp6epOTk+np6a6urpKSkru7u2dnZ1lZWc/Pz46OjsjIyKysrKampstLUMxNUqqqqqioqOrq6nR0dGFhYctJTpWVlcpFStBcYOLi4tbW1s1RVs5VWcc8Qry8vH19fbe3t3d3d8fHx6KiotPT08hARlhYWGRkZMHBwYSEhICAgNTU1NDQ0L6+vqWlpcbGxnZ2dmhoaL+/vz8/P5mZmXJycmZmZjk5OTo6OkxMTNHR0aI3PKCgoFdXVzExMYiIiEdHR0NDQ3JcXaIlKrcnLZomK1NTU5UhJmVlZY9cXmxBQ2JiYisrK0lJSVRUVBsbG4uLi21tbaSkpE9PT19fX4pWVygfHz4+PkUoKUojJRgYGC4uLmNjY1VVVVBQUJ9RVWxWVpsnLC8vL79ARhYWFhISEiwsLFMZG4tJTIAgJFM4OUY9PbBFSYJKS7NLTzIyMmtLTH4nK6dRVU4nKQoKCnlcXSYmJqU8QUo4OWseITklJjIfIGZOT75RVX83OzMzMxsREpcjKGVWVlgeIatJTeHh4SAgIF4aHZdFSIg3O1shJKJJTAkJCYkgJLcmLCQkJBUVFTkcHW5ubjonKL9VWatLT2gkJ30nKhEREbYmK3slKDIoKF5eXlJKSqQnKx8fH9BcYU5GRqNLTowjJywiI7tJTY1NULYmLCQaGk4oKaRcX69ARXMdIF9GRoVARIhSVB8VFpJVWE1NTTsoKVpaWnJKS6QnLJM8QHxLTQYGBmAmKK0mLB0dHcXFxVZOTsFFSoNLTTw8PK4nLEpBQSYTFFc9PponKz0gIbdVWX5OUEFBQSIiIktLS05OTiUlJScnJ0pKShAQEFZWVlJSUh4eHlxcXBkZGRQUFCgoKP///////wAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAPkALAAAAABSADwAAAj/APMJ7ADBhIYG9BIqXMiwocOHECNG3KUBjoMOAjPm62CH3Yl4DEKKHEmypMmTKFOqLBNvGpt0GDN2SGeETwI9C3Lq3Mmzp8+fQIMKXRDIzow5UmJ2eGDii4GnUKNKnUq1qtWrWKnSm/MAY6w2JwaIHUu2rNmzaNOqXZsWzjsH+fYYSZegrt1LnbTo1YIqkd2/gAMLHky4MOEyGqrkg7IngGPHiqzxmEx5siVyjzNr3sy5s+fPnN8ZgQtFTbrT6cQpI8KaiKA0zVq/Rk27tu3buHPrto3lDNwOZwAIB7bIhnHjp4Qft+GNmfDn0KNLn069uvXnfarA9WBi3bt3qmiI/xc/ihG1Q+PFE+P1vb379/Djy59P/3sbKL+hyGG3yYV//+iwI2A3//1XjIAIJqjgggw26OCDAhahXT4zqMGHPH7ooKEOkcjjjDwgZrihDpyAaOKJKKao4oostghiAw3AFY8c8XAxyw447kDHH3TEEw80oZyTI45/+GjkkUgmqeSSTDZ5AhfRwCUPGFZw8csNWN4QBhph0BPGDWjQk0yWN1Ai0ZlopqlQA/JY8QVcfUhxTwIt1FnnN8Gss841ddLSiJ0tPKLnoIQWauihiCaKKBZsdBEIGHCxA8499xBg6aWAUHrHGJd2igyloIYq6qiklmrqqffowQFcWFhBaTidEv+QKSS6bBorAdKgquuuvIq6QABwvTOAO+7Ycqs75YwhiySxVkPss9BGK+201FZrLbFrXAHXF120004msfbSDhkEkDFup9l4q+667Lbr7rvwxuvtPQPABUAh6uSbS6e1DHMpHnhcqk2+BBds8MEIJ6zwwgS3YwBcYLQzz8R1iHGpJqlcKkbFBLRizsQghyzyyCSXbPLJIJeyBlzp+FLPy/UcA4qloghzqzGwwKzzzjz37PPPQPPshitwSZGHPUgnjQkutxKAyDNJRy311FRXbfXVVL8yD1wPEALP12DD84khy5hhBiumjBP22my37fbbcMcNzy1uKAZFHgLkrffefPf/7fffgAcuuOCVkOZIAYgnrvjijDfu+OOQRw65AEkN5A42B2Su+eacd+7556CHLrrnk3gS00BWDLKKAqy37vrrsMcu++y01966ANtUrtFGDpyAwO/ABy/88MQXb/zxyAM/w0UaobYFCh+c5gUKKPwQfTpeXKD99lvUtkURtaGw/QU/2FYE+OmIP/4F0KdTxA/iW4/a+9Sj4IVtADSwBD74CAHABvhYwgYu0D8AyGADCBxgAKEjBHw0ADoyCGAC/cdAfLxBOEJIIAIJ+IYGEBCB/JOBAfknwA9GRwMRiMAE8BGHFU6gPSXAhwbekwV8AME9EcjCe4BgQ/nE8IXyWeE7/+KADyCiMALvyEIEZvidGDLxOyyIgBHYgQ8WgEACCQIBPkCQIBbgwwJd3CI7LDBFdmiRiwvqgRgdJIEesKMHEUiQGtkRATci6IwJOhE+YJAiEuDDBCby4xBQJIJBygMfJACRD/DBBBiQwAeBRGSLFglJJojgRJY8JB9NZAJJmuhI+HgBkjwQyiNFgX9RMFIN8JGEeJCyBj4iJf/4pwRX4qOWTYqCCHy0SlHGIwn4SGUpjfTKIy0EHxlgSAxy0JAPTGGZCYEmPT6Ajyk0MwPVxGYMjnCEDHygmchUSAz4N058IIEe4VQINa2pEELhowmEKkEEZoCoJuADAim4p55mgP+PFKwDC4aKQAkkwL8U8s+fhLInBPQEAf5JQJ79XMc7CcVPhOopVPgIAaga2gBTcZQCFADVA+5ZKpBiwIGUegAF8CEqDGAAVCt9AEzxMVKNipSkpMoopRqA01KN4KX4oACMGtDQEXRUVDXFxwhCxdOj3oOnNr2HUpnqQJ3eFAKhglZG3fEADIzAWg2FgDtOOsuyPiBaMd3qs5r6rJg+S63Eaipc3cHWBzTAHetCZDtUUIF4+fEJ6lqVAwaLSA6sywEVwIcD9tpXdWHTsO3gAD5UsC6+Qnav+OAAX9f12CfwjwQF+2IEK2CB0pbWMSewQAUqcIKEBQAfMshXAGSwAnz/BCEA+ToBPkhrgSDgYwUEs8AXC/baCqxAtbBVh25561vgCte2IcMBFfJZVv7F4wX4cAIVUIaDeEwMB9ndbsji4QT+4SAFIUsBDq4gsitgN7venRh5wXtekGH3BUHLr373y1/+4mAAWAuwgAdM4AGzgAX2kJuCF8zgBrttHaT42nc0cMN3AGECTNTABDY8gQpP2D0cBiJ8QrzhCW/4iRrGcHsorOL3uA9+1bteRtjhRSlKIAIEZQGNJcBjfMRRQCD48RjxwWMJlJHGduxBkQkKAi32GIxaxHEVzehjgtoRQRGUIAH9lxEYiMDLMDBkJwEJok5CEkRD2KQ8SGBITA6B/8wn6qQ8mMAEEHlZHl9W5B/TXOY/nkiJT3RiRmrggSSIwAMeMNKhYykCX/5ylzWAZQ2UgGgjvQCXSXpBKpUAS1vGAx+J9pEIgBnqeIwalDq+4xYzkhAkxGAhGWBmQrCZg2/SIwfJ7CY9pjDLWiMBH7ZuSAzOeQRZF5seMUgmPX5NzWAP+5hqlgclM8LQCAwKAvOkaBOsjW09laAEFH1oDAcKT0KlwNrraOgs/ZnPHuNDovTUUwQWOiglLNpHSmBlRnb60nt01akYbcAIbDqCpTKVAi4NAQRAGioKEBwDMGK4vyGw8JDSFFQQD9Wv8cHNcn5g30/tNwWwOqqRShUCMPoquExBFYKVOvXi/oZ5ximF0pRiAKswv8fMKZXugd7Yx+vISFwx4I4QfFVaXRUrwl3KPwqstapnJRbEiTUCpxPLgW+9K1cpcHSsX/2sFHcHUnWaEW8h1gGK5YDa1fWECgCWXRnIgLc4kIEKLFYFKnAAB0jQ2Hbo1VsZyDvdKduOtssd8CpQe90jyz8HiCqm98iIbI1b3QCswLi4PVhp1ZHYFWTe8vwLQmvVEYAKZD5fyPW8OmQgeuJe3rajr+0JoDWCexIrIyjLve53z/uJXcEJ85i7CvDx9nZkpL/IT35/uSGPeqhDuKwtWEYKTP3qF7gLSIuHdEeWkYAAADs=&quot;); width: 81px; height: 29px; padding: 0px; overflow: hidden; cursor: pointer; direction: ltr;" title="Click to see what's popular on this site!">
                                    <div style="position: absolute; top: 7px; padding: 0px; margin: 0px; overflow: visible; left: 41px;">
                                        <div style="background-image: url(&quot;data:image/gif;base64,R0lGODlhUgA8APf5AEZGRj09PQwMDDU1NcEnLQgICDAwMAUFBUVFRTg4OAICAi0tLVFRUV1dXVtbW0JCQnh4eOjo6NLS0o2NjcnJyePj45CQkOfn5+Tk5K2trWBgYLm5uUBAQGpqamtra3BwcHp6epOTk+np6a6urpKSkru7u2dnZ1lZWc/Pz46OjsjIyKysrKampstLUMxNUqqqqqioqOrq6nR0dGFhYctJTpWVlcpFStBcYOLi4tbW1s1RVs5VWcc8Qry8vH19fbe3t3d3d8fHx6KiotPT08hARlhYWGRkZMHBwYSEhICAgNTU1NDQ0L6+vqWlpcbGxnZ2dmhoaL+/vz8/P5mZmXJycmZmZjk5OTo6OkxMTNHR0aI3PKCgoFdXVzExMYiIiEdHR0NDQ3JcXaIlKrcnLZomK1NTU5UhJmVlZY9cXmxBQ2JiYisrK0lJSVRUVBsbG4uLi21tbaSkpE9PT19fX4pWVygfHz4+PkUoKUojJRgYGC4uLmNjY1VVVVBQUJ9RVWxWVpsnLC8vL79ARhYWFhISEiwsLFMZG4tJTIAgJFM4OUY9PbBFSYJKS7NLTzIyMmtLTH4nK6dRVU4nKQoKCnlcXSYmJqU8QUo4OWseITklJjIfIGZOT75RVX83OzMzMxsREpcjKGVWVlgeIatJTeHh4SAgIF4aHZdFSIg3O1shJKJJTAkJCYkgJLcmLCQkJBUVFTkcHW5ubjonKL9VWatLT2gkJ30nKhEREbYmK3slKDIoKF5eXlJKSqQnKx8fH9BcYU5GRqNLTowjJywiI7tJTY1NULYmLCQaGk4oKaRcX69ARXMdIF9GRoVARIhSVB8VFpJVWE1NTTsoKVpaWnJKS6QnLJM8QHxLTQYGBmAmKK0mLB0dHcXFxVZOTsFFSoNLTTw8PK4nLEpBQSYTFFc9PponKz0gIbdVWX5OUEFBQSIiIktLS05OTiUlJScnJ0pKShAQEFZWVlJSUh4eHlxcXBkZGRQUFCgoKP///////wAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAPkALAAAAABSADwAAAj/APMJ7ADBhIYG9BIqXMiwocOHECNG3KUBjoMOAjPm62CH3Yl4DEKKHEmypMmTKFOqLBNvGpt0GDN2SGeETwI9C3Lq3Mmzp8+fQIMKXRDIzow5UmJ2eGDii4GnUKNKnUq1qtWrWKnSm/MAY6w2JwaIHUu2rNmzaNOqXZsWzjsH+fYYSZegrt1LnbTo1YIqkd2/gAMLHky4MOEyGqrkg7IngGPHiqzxmEx5siVyjzNr3sy5s+fPnN8ZgQtFTbrT6cQpI8KaiKA0zVq/Rk27tu3buHPrto3lDNwOZwAIB7bIhnHjp4Qft+GNmfDn0KNLn069uvXnfarA9WBi3bt3qmiI/xc/ihG1Q+PFE+P1vb379/Djy59P/3sbKL+hyGG3yYV//+iwI2A3//1XjIAIJqjgggw26OCDAhahXT4zqMGHPH7ooKEOkcjjjDwgZrihDpyAaOKJKKao4oostghiAw3AFY8c8XAxyw447kDHH3TEEw80oZyTI45/+GjkkUgmqeSSTDZ5AhfRwCUPGFZw8csNWN4QBhph0BPGDWjQk0yWN1Ai0ZlopqlQA/JY8QVcfUhxTwIt1FnnN8Gss841ddLSiJ0tPKLnoIQWauihiCaKKBZsdBEIGHCxA8499xBg6aWAUHrHGJd2igyloIYq6qiklmrqqffowQFcWFhBaTidEv+QKSS6bBorAdKgquuuvIq6QABwvTOAO+7Ycqs75YwhiySxVkPss9BGK+201FZrLbFrXAHXF120004msfbSDhkEkDFup9l4q+667Lbr7rvwxuvtPQPABUAh6uSbS6e1DHMpHnhcqk2+BBds8MEIJ6zwwgS3YwBcYLQzz8R1iHGpJqlcKkbFBLRizsQghyzyyCSXbPLJIJeyBlzp+FLPy/UcA4qloghzqzGwwKzzzjz37PPPQPPshitwSZGHPUgnjQkutxKAyDNJRy311FRXbfXVVL8yD1wPEALP12DD84khy5hhBiumjBP22my37fbbcMcNzy1uKAZFHgLkrffefPf/7fffgAcuuOCVkOZIAYgnrvjijDfu+OOQRw65AEkN5A42B2Su+eacd+7556CHLrrnk3gS00BWDLKKAqy37vrrsMcu++y01966ANtUrtFGDpyAwO/ABy/88MQXb/zxyAM/w0UaobYFCh+c5gUKKPwQfTpeXKD99lvUtkURtaGw/QU/2FYE+OmIP/4F0KdTxA/iW4/a+9Sj4IVtADSwBD74CAHABvhYwgYu0D8AyGADCBxgAKEjBHw0ADoyCGAC/cdAfLxBOEJIIAIJ+IYGEBCB/JOBAfknwA9GRwMRiMAE8BGHFU6gPSXAhwbekwV8AME9EcjCe4BgQ/nE8IXyWeE7/+KADyCiMALvyEIEZvidGDLxOyyIgBHYgQ8WgEACCQIBPkCQIBbgwwJd3CI7LDBFdmiRiwvqgRgdJIEesKMHEUiQGtkRATci6IwJOhE+YJAiEuDDBCby4xBQJIJBygMfJACRD/DBBBiQwAeBRGSLFglJJojgRJY8JB9NZAJJmuhI+HgBkjwQyiNFgX9RMFIN8JGEeJCyBj4iJf/4pwRX4qOWTYqCCHy0SlHGIwn4SGUpjfTKIy0EHxlgSAxy0JAPTGGZCYEmPT6Ajyk0MwPVxGYMjnCEDHygmchUSAz4N058IIEe4VQINa2pEELhowmEKkEEZoCoJuADAim4p55mgP+PFKwDC4aKQAkkwL8U8s+fhLInBPQEAf5JQJ79XMc7CcVPhOopVPgIAaga2gBTcZQCFADVA+5ZKpBiwIGUegAF8CEqDGAAVCt9AEzxMVKNipSkpMoopRqA01KN4KX4oACMGtDQEXRUVDXFxwhCxdOj3oOnNr2HUpnqQJ3eFAKhglZG3fEADIzAWg2FgDtOOsuyPiBaMd3qs5r6rJg+S63Eaipc3cHWBzTAHetCZDtUUIF4+fEJ6lqVAwaLSA6sywEVwIcD9tpXdWHTsO3gAD5UsC6+Qnav+OAAX9f12CfwjwQF+2IEK2CB0pbWMSewQAUqcIKEBQAfMshXAGSwAnz/BCEA+ToBPkhrgSDgYwUEs8AXC/baCqxAtbBVh25561vgCte2IcMBFfJZVv7F4wX4cAIVUIaDeEwMB9ndbsji4QT+4SAFIUsBDq4gsitgN7venRh5wXtekGH3BUHLr373y1/+4mAAWAuwgAdM4AGzgAX2kJuCF8zgBrttHaT42nc0cMN3AGECTNTABDY8gQpP2D0cBiJ8QrzhCW/4iRrGcHsorOL3uA9+1bteRtjhRSlKIAIEZQGNJcBjfMRRQCD48RjxwWMJlJHGduxBkQkKAi32GIxaxHEVzehjgtoRQRGUIAH9lxEYiMDLMDBkJwEJok5CEkRD2KQ8SGBITA6B/8wn6qQ8mMAEEHlZHl9W5B/TXOY/nkiJT3RiRmrggSSIwAMeMNKhYykCX/5ylzWAZQ2UgGgjvQCXSXpBKpUAS1vGAx+J9pEIgBnqeIwalDq+4xYzkhAkxGAhGWBmQrCZg2/SIwfJ7CY9pjDLWiMBH7ZuSAzOeQRZF5seMUgmPX5NzWAP+5hqlgclM8LQCAwKAvOkaBOsjW09laAEFH1oDAcKT0KlwNrraOgs/ZnPHuNDovTUUwQWOiglLNpHSmBlRnb60nt01akYbcAIbDqCpTKVAi4NAQRAGioKEBwDMGK4vyGw8JDSFFQQD9Wv8cHNcn5g30/tNwWwOqqRShUCMPoquExBFYKVOvXi/oZ5ximF0pRiAKswv8fMKZXugd7Yx+vISFwx4I4QfFVaXRUrwl3KPwqstapnJRbEiTUCpxPLgW+9K1cpcHSsX/2sFHcHUnWaEW8h1gGK5YDa1fWECgCWXRnIgLc4kIEKLFYFKnAAB0jQ2Hbo1VsZyDvdKduOtssd8CpQe90jyz8HiCqm98iIbI1b3QCswLi4PVhp1ZHYFWTe8vwLQmvVEYAKZD5fyPW8OmQgeuJe3rajr+0JoDWCexIrIyjLve53z/uJXcEJ85i7CvDx9nZkpL/IT35/uSGPeqhDuKwtWEYKTP3qF7gLSIuHdEeWkYAAADs=&quot;); background-repeat: no-repeat; background-attachment: scroll; background-position: -15px -29px; position: absolute; width: 9px; height: 17px; left: 0px; line-height: 17px; overflow: hidden; padding: 0px; margin: 0px;"></div>
                                    </div>
                                </div>

                                <script>
                                    (function() {
                                        var MidID;
                                        var tags = document.getElementById('links').getElementsByTagName('div');
                                        var tcl = " hslice box ";
                                        for (i = 0, j = 0; i & lt; tags.length; i++) {
                                            var test = " " + tags[i].className + " ";
                                            if (test.indexOf(tcl) != -1) {
                                                MibID = tags[i].getAttribute('id');
                                                break;
                                            }
                                        }

                                        var strCss = '#links-row-1 #' + MibID + '{display:none !important;}';

                                        oStyle = document.createElement('style');
                                        document.getElementsByTagName('head')[0].appendChild(oStyle);
                                        if (document.all) { // IE
                                            oStyle.styleSheet.cssText = strCss;
                                            return;
                                        }

                                        // Firefox, Google Chrome
                                        oStyle.textContent = strCss;
                                    })();
                                </script>
                            </div>
                        </div>
                        <!-- #box1048927 //-->
                        <div class="hslice box" id="counter">
                            <h4 class="box-title entry-title">
                                瀏覽人次 </h4>
                            <div class="box-text entry-content">

                                <ul>
                                    <li>本日人氣:<span id="blog_hit_daily">613</span></li>
                                    <li>累積人氣:<span id="blog_hit_total" class="moved">2592077</span></li>
                                </ul>
                                <script type="text/javascript">
                                    & lt;
                                    !--
                                    jQuery.getScript('//counter.pixplug.in/getcounter.php?now=1486718791&amp;random=2901946113&amp;data[%23BlogArticleCount-39926056]=%7B%22counter%22%3A%5B%22blogarticle%22%2C%224410429%22%2C%2239926056%22%2C%22total%22%5D%2C%22options%22%3A%5B%5D%7D&amp;data[%23blog_hit_daily]=%7B%22counter%22%3A%5B%22blog%22%2C%224410429%22%2C1%2C%22daily%22%5D%2C%22options%22%3A%5B%5D%7D&amp;data[%23blog_hit_total]=%7B%22counter%22%3A%5B%22blog%22%2C%224410429%22%2C1%2C%22total%22%5D%2C%22options%22%3A%5B%5D%7D&amp;check=1012779914');
                                    //--&gt;
                                </script>
                            </div>
                        </div>
                        <!-- #counter //-->
                        <div class="hslice box" id="recent-article">
                            <h4 class="box-title entry-title">
                                最新文章 </h4>
                            <div class="box-text entry-content">

                                <ul>
                                    <li>
                                        <a href="/blog/post/44340778"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 得恩亞納部落</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/44075977"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 太平山翠峰湖_避暑觀星 (2016/07/30)</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/44000701"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 麻新 SC-1000 智慧型充電器</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43947736"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 英桃の天闊營地(2)_與夏夜銀河有約(2016/06/24)</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43778770"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 宜蘭輕旅行_冬山河生態綠舟/蘇澳煙波大飯店</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43493831"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 苗栗三灣_棕櫚灣 LIU's Palm Cove (2016/02/27~29)</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43325050"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 2016武陵梅花音樂節(2016/01/09)</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43220767"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 秀巒美樹/控溪吊橋楓情</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43161622"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 后里_親泉農莊悠閒品蟹趣 (2015/11/14)</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/43025980"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 嘉義_頂石卓/塔塔加/夫妻樹銀河之旅</a>
                                    </li>
                                    <li><a href="/blog/post/43032613">2015 露營全記錄72露 (215~286露)</a></li>
                                    <li>
                                        <a href="/blog/post/42851516"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 苗栗明德窯露營_明德水庫步道賞景</a>
                                    </li>
                                    <li><a href="/blog/post/42835754">水尾漁港</a></li>
                                    <li>
                                        <a href="/blog/post/42819941"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 北海岸逗逗遊_水尾漁港日出/江豐農場金針花/和昇之星/富貴角燈塔</a>
                                    </li>
                                    <li>
                                        <a href="/blog/post/42760718"><img src="//s.pixfs.net/blog/images/choc/set-to-top.gif" alt="置頂" border="0" /> 新社趣露營_大雪山避暑/大坑五號步道健行</a>
                                    </li>
                                </ul>
                            </div>
                        </div>
                        <!-- #recent-article //-->
                        <div class="hslice box" id="hot-article">
                            <h4 class="box-title entry-title">
                                熱門文章 </h4>
                            <div class="box-text entry-content">

                                <ul id="hotArtUl">
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/36883749-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e5%87%bd%e9%a4%a8%e9%9c%b2%e7%87%9f%e5%8d%80%e8%b3%9e%e7%99%be%e8%90%ac%e5%a4%9c%e6%99%af"><span>(134551)</span>新竹尖石_函館露營區賞百萬夜景</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/41964268-%e6%96%b0%e7%a4%be%e6%ab%bb%e8%8a%b1%e9%b3%a5%e6%a3%ae%e6%9e%97_%e8%b3%9e%e6%ab%bb%e9%9c%b2%e7%87%9f%e8%b6%a3-%282015-01-31%29"><span>(51817)</span>新社櫻花鳥森林_賞櫻露營趣 (2015/01/31)</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37795215-%e6%98%a5%e9%99%bd%e5%a4%aa%e9%ad%af%e7%81%a3%e7%87%9f%e5%9c%b0_%e6%b3%a1%e6%b9%af%e6%a8%82"><span>(50490)</span>春陽太魯灣營地_泡湯樂</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/42574397-%e6%96%b0%e7%ab%b9%e4%ba%94%e5%b3%b0_%e5%a4%a9%e9%97%8a%e7%87%9f%e5%9c%b0%e5%88%9d%e9%ab%94%e9%a9%97"><span>(47331)</span>新竹五峰_天闊營地初體驗</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37165635-%e8%8b%97%e6%a0%97%e6%b3%b0%e5%ae%89_%e9%80%b8%e8%a6%96%e7%95%8c%e7%87%9f%e5%9c%b0"><span>(44604)</span>苗栗泰安_逸視界營地</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37795517-%e5%8d%97%e6%be%b3%e8%be%b2%e5%a0%b4---%e6%9c%9d%e9%99%bd%e6%bc%81%e6%b8%af-d1"><span>(44469)</span>南澳農場 / 朝陽漁港 D1</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/42001813-%e6%98%a5%e9%99%bd%e5%a4%aa%e9%ad%af%e7%81%a3%e7%87%9f%e5%9c%b0_%e6%b3%a1%e6%b9%af%e8%b3%9e%e6%ab%bb--%e6%ab%bb%e8%8a%b1%e6%9d%91c%e5%8d%80%e7%87%9f%e5%9c%b0%e6%8e%a2"><span>(44174)</span>春陽太魯灣營地_泡湯賞櫻 /櫻花村C區營地探勘  (2015/02/08)</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37846251-%e5%8f%b0%e4%b8%ad%e5%92%8c%e5%b9%b3_%e8%a3%a1%e5%86%b7%e7%86%8a%e7%88%b8%e7%87%9f%e5%9c%b0%e4%b8%ad%e7%a7%8b%e5%81%87%e6%9c%9f%e4%ba%ab%e6%82%a0%e9%96%92"><span>(41421)</span>台中和平_裡冷熊爸營地中秋假期享悠閒</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/39815080-%e6%84%9b%e4%b8%8a%e5%96%9c%e7%bf%81%e9%9c%b2%e7%87%9f_%e6%ad%a1%e6%85%b6%e8%81%96%e8%aa%95%e5%a4%9c%e5%b8%82%e8%b6%b4"><span>(37823)</span>愛上喜翁露營_歡慶聖誕夜市趴</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/41932198-2015%e5%b1%8f%e6%9d%b1%e7%a9%8e%e9%81%94%e8%be%b2%e5%a0%b4%e5%85%83%e6%97%a6%e5%81%87%e6%9c%9f_%e8%90%ac%e9%87%91%e6%95%99%e5%a0%82-%e5%b1%8f%e7%a7%91%e5%a4%a7-"><span>(37161)</span>2015屏東穎達農場元旦假期_萬金教堂/屏科大/大鵬灣/三地門/霧台神山部落</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/42235645-%e5%a2%be%e4%b8%81_%e7%b4%85%e6%9f%b4%e6%b0%b4%e9%84%89%e6%a4%b0%e6%9e%97%e6%b5%b7%e5%b2%b8%e5%ba%a6%e5%81%87%e9%9c%b2%e7%87%9f%e8%b6%a3-%282015-03-22%29"><span>(33879)</span>墾丁_紅柴水鄉椰林海岸度假露營趣 (2015/03/22)</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/43493831-%e8%8b%97%e6%a0%97%e4%b8%89%e7%81%a3_%e5%b9%83%e7%88%be%e7%89%b9%e7%87%9f%e5%9c%b0%282016-02-27%7e29%29"><span>(30026)</span>苗栗三灣_棕櫚灣 LIU's Palm Cove (2016/02/27~29)</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/40505173-%e6%ad%a6%e7%95%8c%e5%8e%9f%e9%84%89%e4%b9%8b%e7%be%8e_%e6%ad%a6%e7%95%8c%e5%b6%ba%e8%8c%b6%e5%9c%92-%e6%b3%95%e6%b2%bb%e5%9c%8b%e5%b0%8f-%e6%ad%a6%e7%95%8c%e5%bc%95%e6%b0%b4"><span>(28315)</span>武界原鄉之美_武界嶺茶園/法治國小/武界引水道/曲冰遺址</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37795193-%e8%b2%b4%e5%ad%90%e5%9d%91%e9%9c%b2%e7%87%9f%e8%bb%8a%e7%87%9f%e4%bd%8d%e5%88%9d%e9%ab%94%e9%a9%97"><span>(27623)</span>貴子坑露營車營位初體驗</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/38854113-%e6%96%b0%e7%ab%b9%e4%ba%94%e5%b3%b0_%e8%8a%b1%e6%b9%96%e7%be%8e%e5%9c%b0%e5%81%87%e6%97%a5%e7%a7%bb%e6%b0%91"><span>(26791)</span>新竹五峰_花湖美地假日移民</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37323619-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e5%a4%a9%e6%b9%96%e8%be%b2%e5%9c%92%e9%9c%b2%e7%87%9f%ef%bc%882%ef%bc%89"><span>(26549)</span>新竹尖石_天湖農園露營(2)</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/42601325-%e6%96%b0%e7%ab%b9%e5%8c%97%e5%9f%94_%e9%87%91%e5%90%8d%e6%9f%8f%e5%b1%8b%e4%bc%91%e9%96%92%e8%be%b2%e8%8e%8a%e5%9c%9f%e5%8c%aa%e7%aa%a9%e9%9c%b2%e7%87%9f"><span>(24551)</span>新竹北埔_金名柏屋休閒農莊土匪窩露營</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/37795563-%e5%8c%97%e5%be%97%e6%8b%89%e6%9b%bc%e7%87%9f%e5%9c%b0"><span>(23966)</span>北得拉曼營地</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29"><span>(23921)</span>新竹尖石_美樹營地賞楓 (2)</a></li>
                                    <li><a href="http://stevenhgm.pixnet.net/blog/post/38408365-%e6%a1%83%e5%9c%92%e5%be%a9%e8%88%88_%e9%9b%85%e6%b8%a1%e8%be%b2%e8%8e%8a%e9%81%bf%e6%9a%91"><span>(22776)</span>桃園復興_雅渡農莊避暑</a></li>
                                </ul>
                                <script type="text/javascript">
                                    & lt;
                                    !--
                                    jQuery('#hot-article #hotArtUl').load('/blog/hotarticledata?limit=20');
                                    // --&gt;
                                </script>
                            </div>
                        </div>
                        <!-- #hot-article //-->
                        <div class="hslice box" id="category">
                            <h4 class="box-title entry-title">
                                文章分類 </h4>
                            <div class="box-text entry-content">

                                <div class="box-more">
                                    <img src="//s.pixfs.net/blog/images/choc/expand.gif" alt="unfold all categories" style="cursor:hand;cursor:pointer;" onclick="pix.openAllCategory('open');" />
                                    <img src="//s.pixfs.net/blog/images/choc/collapse.gif" alt="fold all categories" style="cursor:hand;cursor:pointer;" onclick="pix.openAllCategory('close');" />
                                </div>

                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368809','category-1368809-switch');"><img id="category-1368809-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> @ 露營全記錄 (3)</h6>
                                    <ul id="category-1368809" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771009">露營全紀錄 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771011">行程分享 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1780173">露營裝備 (3)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368767','category-1368767-switch');"><img id="category-1368767-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...北北基營地 (4)</h6>
                                    <ul id="category-1368767" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771457">台北_貴子坑露營場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1859671">平溪_森林小學會館 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779145">烏來_967營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1873888">瑞芳_濂洞國小 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368807','category-1368807-switch');"><img id="category-1368807-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...桃園縣營地 (12)</h6>
                                    <ul id="category-1368807" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771521">復興_雅渡休閒農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1851817">復興_恩愛農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1894999">復興_拉嘎營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1802875">復興_犘亞農場 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1873018">復興_三哥休閒園區景觀神木露營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771511">復興_俠雲山莊 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771515">復興_松野農園 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771523">復興_雲頂休閒露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779181">復興_拉拉山營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771519">復興_瑞士農園民宿 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771589">復興_飛督努農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771527">復興_楓田農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368765','category-1368765-switch');"><img id="category-1368765-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...新竹縣營地 (45)</h6>
                                    <ul id="category-1368765" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1874869">北埔_大湖山林 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1901717">北埔_金名柏屋休閒農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1901384">五峰_天濶營地 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1898743">尖石_水田谷營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1876777">尖石_春文草堂 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1879075">尖石_八五山甜柿森林 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1876516">五峰_野馬農園 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1832968">五峰_愛上喜翁 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1846693">五峰_伊梵的家 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1875058">尖石_起初營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1868086">尖石_怪獸森林 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1770997">尖石_拉號野營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1872145">尖石_香杉營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1770999">尖石_函館營地 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771111">尖石_天湖農園 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771085">尖石_溫家茶園 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771115">尖石_慢森活露營區 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771159">尖石_金鶯露營園地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1853344">尖石_油羅溪營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771155">尖石_紅薔薇營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771099">尖石_六號花園 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771105">尖石_尤命的帳幕 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771075">尖石_水田營地 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771103">尖石_北德拉曼休閒營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771119">尖石_田中露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771113">尖石_山頂農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1853332">尖石_高台山營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771157">尖石_美樹營地 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771101">尖石_優美地民宿 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771109">尖石_司馬庫斯舊部落營地 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771107">尖石_友柏花園休閒農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771117">尖石_櫻花谷露營區 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771083">五峰_樂哈山營地 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1808205">五峰_花湖美地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771089">五峰_翡述景園 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771091">五峰_賽夏農場 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771093">五峰_阿貴營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771079">五峰_尤瑪山莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771095">五峰_烏嘴山露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771087">五峰_瓦度的家 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771001">五峰_浮雲杉林 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771077">五峰_哈勇露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771081">五峰_涼山營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771161">峨眉_桐花谷露營區 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771097">北埔_永茂森林山莊 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368805','category-1368805-switch');"><img id="category-1368805-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...苗栗縣營地 (19)</h6>
                                    <ul id="category-1368805" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1918535">三灣_幃爾特營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1906448">苗栗_明德窯 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1855993">泰安_生健農技 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1856680">泰安_ㄠ嶩營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771433">卓蘭_流蘇森林露營區 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1856776">泰安_美富安松林溪 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771441">大湖_老官道休閒農場 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771005">泰安_逸視界營地 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771445">泰安_烏嘎彥景觀休閒露營區 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771447">泰安_石水坊露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771443">泰安_楓李小站露營區 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771451">泰安_鑽石林 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771421">三義_山板樵休閒農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771423">三義_峯州小木屋民宿 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771429">三義_薪山線露營休閒農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771439">南庄_知泉渡假山莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771437">南庄_吻吻露營區 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779183">南庄_鹿場850庭園 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771455">南庄_一葉蘭農場 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368803','category-1368803-switch');"><img id="category-1368803-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...台中市營地 (10)</h6>
                                    <ul id="category-1368803" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1912510">后里_親泉農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771529">和平_福壽山農場 (8)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1885885">新社_梅林親水岸 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1904567">新社_趣露營 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771531">和平_裡冷熊爸營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1888366">新社_櫻花鳥森林 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771585">和平_武陵農場 (13)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771533">和平_馬告的傳奇 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771535">新社_小路露營區 (0)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771545">新社_沐心泉休閒農場 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368801','category-1368801-switch');"><img id="category-1368801-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...彰化縣營地 (1)</h6>
                                    <ul id="category-1368801" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771547">彰化_顏氏二村 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368797','category-1368797-switch');"><img id="category-1368797-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...南投縣營地 (14)</h6>
                                    <ul id="category-1368797" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1842868">信義_烏松崙森林渡假營 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1843501">信義_阿肥的天空 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771563">國姓_黃金森林露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1852606">武界_法冶國小 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771565">埔里_虎嘯山莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771567">埔里_雲風箏自然手感露營農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771569">埔里_顏氏牧場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771559">仁愛_太魯灣溫泉露營區 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771561">仁愛_青青草原露營客棧 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771575">魚池_日月潭特色遊學中心 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771573">魚池_左岸松湖營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771571">竹山_深山林內 (6)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771577">鹿谷_文景農場 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771579">鹿谷_波斯園露營區 (3)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368799','category-1368799-switch');"><img id="category-1368799-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...雲林縣營地 (1)</h6>
                                    <ul id="category-1368799" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771549">古坑_湖光山舍 (3)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368795','category-1368795-switch');"><img id="category-1368795-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...嘉義縣營地 (1)</h6>
                                    <ul id="category-1368795" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771551">竹崎_頂笨仔露營區 (4)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368793','category-1368793-switch');"><img id="category-1368793-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...台南市營地 (1)</h6>
                                    <ul id="category-1368793" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771553">柳營_德元埤荷蘭村 (2)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368791','category-1368791-switch');"><img id="category-1368791-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...高雄市營地 (1)</h6>
                                    <ul id="category-1368791" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771555">美濃_美綠生態園 (2)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368789','category-1368789-switch');"><img id="category-1368789-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...屏東縣營地 (3)</h6>
                                    <ul id="category-1368789" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771557">恆春_青山露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1886599">萬巒_穎達休閒農場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1895449">墾丁_紅柴水鄉 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368785','category-1368785-switch');"><img id="category-1368785-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...宜蘭縣營地 (5)</h6>
                                    <ul id="category-1368785" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771583">頭城_龜山朝日露營園區 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1825360">大同_牛鬥一角 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1847062">三星_長埤湖營地 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771029">冬山_東風營地 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771581">蘇澳_南澳農場 (5)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368783','category-1368783-switch');"><img id="category-1368783-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...花蓮縣營地 (9)</h6>
                                    <ul id="category-1368783" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771621">瑞穗_黑崧大山 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1875394">玉里_林家園 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1876990">富里_富茂農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771623">秀林_合流露營區 (0)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1882642">壽豐_牛山呼庭 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771625">豐濱_石梯坪露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771635">富里_烏魚山莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771637">富里_頭目的家 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771619">玉里_東豐露營區 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368781','category-1368781-switch');"><img id="category-1368781-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...台東縣營地 (4)</h6>
                                    <ul id="category-1368781" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771629">長濱_巴歌浪船屋民宿 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771631">鹿野_福鹿山休閒農莊 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1771627">台東_小野柳露營區 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1873333">長濱_浪花蟹營地 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368787','category-1368787-switch');"><img id="category-1368787-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...澎湖縣營地 (1)</h6>
                                    <ul id="category-1368787" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1771657">山麉山莊 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368779','category-1368779-switch');"><img id="category-1368779-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> @ 野營玩樂 (1)</h6>
                                    <ul id="category-1368779" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1779831">野營露程 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368777','category-1368777-switch');"><img id="category-1368777-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...北部野營地 (7)</h6>
                                    <ul id="category-1368777" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1779781">台北_龍門安檢所 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1781917">台北_天元宮 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1895506">台北_猴硐 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1873414">台北_金瓜石 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1774727">新竹_觀霧 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1870318">台北_陽明山 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1851274">桃園_石門水庫 (2)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368775','category-1368775-switch');"><img id="category-1368775-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...中部野營地 (11)</h6>
                                    <ul id="category-1368775" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1781853">台中_清水休息站 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1819903">台中_大雪山 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1852057">南投_奧萬大 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1903154">南投_惠蓀林場 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779785">南投_日月潭朝霧碼頭 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1844035">南投_車埕車站 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1774723">南投_合歡山武嶺 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1817623">南投_清靜1743 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1774721">南投_合歡山小風口 (3)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1861474">南投_合歡山遊客中心 (2)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779833">南投_東埔吊橋 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368773','category-1368773-switch');"><img id="category-1368773-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...南部野營地 (2)</h6>
                                    <ul id="category-1368773" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1779837">嘉義_龍隱寺 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1910173">嘉義_頂石卓/塔塔加/夫妻樹 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368771','category-1368771-switch');"><img id="category-1368771-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...東部野營地 (10)</h6>
                                    <ul id="category-1368771" style="display: none;">
                                        <!-- ie6bug
-->
                                        <li><a href="/blog/category/1779783">宜蘭_礁溪公園 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1864969">宜蘭_濱海遊憩區 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1893541">宜蘭_情人海灘 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1846153">宜蘭_野溪溫泉 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1774725">宜蘭_太平山 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1865869">宜蘭_翠峰湖 (4)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779779">花蓮_七星潭 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1884193">花蓮_鯉魚潭 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1779841">台東_三仙台 (1)</a></li>
                                        <!-- ie6bug -->
                                        <li><a href="/blog/category/1784021">台東_加路蘭 (1)</a></li>
                                        <!-- ie6bug -->
                                    </ul>
                                </div>
                                <div class="inner-box">
                                    <h6 style="cursor:hand;cursor:pointer;" onclick="pix.commentSwitch('category-1368769','category-1368769-switch');"><img id="category-1368769-switch" src="//s.pixfs.net/blog/images/choc/plus.gif" alt="展開分類" border="0" /> ...離島野營地 (0)</h6>
                                    <ul id="category-1368769" style="display: none;">
                                        <!-- ie6bug
-->
                                    </ul>
                                </div>
                                <ul>
                                    <!-- ie6bug
-->
                                    <li><a href="/blog/category/1766233">@ 玩樂全台灣 (3)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1766217">...北台灣(北北基) (43)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1767865">...北台灣(桃竹苗) (32)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1766215">...中台灣(中彰投) (44)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1766225">...南台灣(雲嘉南) (12)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1767867">...南台灣(高屏澎) (8)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1856686">...東台灣(宜蘭縣) (17)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1766207">...東台灣(花  東) (31)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1766231">...澎湖離島玩樂 (8)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1781079">...蘭嶼離島玩樂 (4)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1865284">...馬祖離島玩樂 (8)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779203">@ 吃喝全台灣 (0)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779205">...北台灣美食(北北基) (6)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779207">...北台灣美食(桃竹苗) (8)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779209">...中台灣美食(中彰投) (3)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779211">...南台灣美食(雲嘉南) (1)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779213">...南台灣美食(高屏澎) (0)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779215">...東台灣美食(宜花東) (1)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1779217">...離島美食 (0)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1778667">@ 隨興攝影 (2)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1709705">...晨昏景色 (7)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1778675">@ 人文分享 (19)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1780093">@ 心情分享 (1)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1778683">@ 居家休閒 (9)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1778687">@ 單車休閒 (6)</a></li>
                                    <!-- ie6bug -->
                                    <li><a href="/blog/category/1780121">@ 登山行記 (6)</a></li>
                                    <!-- ie6bug -->
                                </ul>
                            </div>
                        </div>
                        <!-- #category //-->
                        <div class="hslice box" id="search">
                            <h4 class="box-title entry-title">
                                文章搜尋 </h4>
                            <div class="box-text entry-content">

                                <form method="post" action="http://stevenhgm.pixnet.net/blog/search/" id="search-form" data-wording-needkeyword="請輸入關鍵字">
                                    <ul>
                                        <li><input name="search-target" id="search-target" type="text" /></li>
                                        <li><input id="search-submit" value="搜尋" type="submit" /></li>
                                    </ul>
                                </form>
                                <script type="text/javascript">
                                    //&lt;!--
                                    jQuery('#search-form').submit(function(event) {
                                        if ('' === jQuery('#search-target').val()) {
                                            alert(jQuery(this).attr('data-wording-needkeyword'));
                                            event.preventDefault();
                                        }
                                    });
                                    //--&gt;
                                </script>
                            </div>
                        </div>
                        <!-- #search //-->
                        <div class="hslice box" id="mylink">
                            <h4 class="box-title entry-title">
                                友好連結 </h4>
                            <div class="box-text entry-content">

                                <div class="inner-box">
                                    <ul>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://rvcamp.org/" target="_blank">露營窩</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://rvcamp.biz/" target="_blank">朱雀的鳥窩</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://www.joelincampers.com.tw/?page_id=18" target="_blank">綠茶喝大杯</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://kwi3.pixnet.net/blog" target="_blank">阿蒯的家</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://linghua581101.pixnet.net/blog" target="_blank">翠影紅霞</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://amay3952.pixnet.net/blog" target="_blank">Camping story by 愛辛焆羅</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://sheilateng.pixnet.net/blog" target="_blank">攝影不設限</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://photo.xuite.net/gs.wu" target="_blank">長尾鳥的相簿</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://blogbackup.pixnet.net/blog" target="_blank">部落格備份網</a></li>
                                        <!-- ie6bug
              -->
                                        <li><a title="" href="http://bbpeng2.pixnet.net/blog" target="_blank">笑傲山林</a></li>
                                        <!-- ie6bug
            -->
                                    </ul>
                                </div>
                            </div>
                        </div>
                        <!-- #mylink //-->
                        <script type="text/javascript">
                            & lt;
                            !--
                            jQuery(function($) {
                                $('#mylink h6.expandable').click(function() {
                                    var plus_img = "\/\/s.pixfs.net\/blog\/images\/choc\/plus.gif";
                                    var minus_img = "\/\/s.pixfs.net\/blog\/images\/choc\/minus.gif";
                                    $(this).siblings('ul').toggle();
                                    $img = $('&gt; img', this);
                                    if ($img.attr('src') == plus_img) {
                                        $img.attr('src', minus_img);
                                    } else {
                                        $img.attr('src', plus_img);
                                    }
                                });
                            });
                            //--&gt;
                        </script>
                        <div class="hslice box" id="latest-comment">
                            <h4 class="box-title entry-title">
                                最新留言 </h4>
                            <div class="box-text entry-content">
                                <ul>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/19</span> 版主回覆:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/43325050-2016%e6%ad%a6%e9%99%b5%e6%a2%85%e8%8a%b1%e9%9f%b3%e6%a8%82%e5%ad%a3#comment-61899598">Terry 晚安:
今年的賞梅因月...</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/19</span> 版主回覆:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#comment-61901059">謝謝賞圖文!</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/18</span> 蔡敏嫻:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#comment-61901059">真是個美麗的好地方,感謝分享~</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/17</span> Terry:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/43325050-2016%e6%ad%a6%e9%99%b5%e6%a2%85%e8%8a%b1%e9%9f%b3%e6%a8%82%e5%ad%a3#comment-61899598">今年有計畫再來賞花嗎 ?</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/10</span> 版主回覆:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/37795135-%e8%8b%97%e6%a0%97_%e9%9b%b2%e6%b4%9e%e5%b1%b1%e8%8e%8a%e6%97%a5%e5%87%ba%e9%9b%b2%e6%b5%b7#comment-61891549">雲洞山莊後山上面的觀景樓並...</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/09</span> Xiao BaiBai:<a href="http://stevenhgm.pixnet.net/blog/post/37795135-%e8%8b%97%e6%a0%97_%e9%9b%b2%e6%b4%9e%e5%b1%b1%e8%8e%8a%e6%97%a5%e5%87%ba%e9%9b%b2%e6%b5%b7#comment-61891549">想請問我想去看日出,但不想...</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>01/03</span> 版主回覆:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#comment-61885933">不客氣!! 晚安</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>12/31</span> 妹子小姐:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#comment-61885933">謝謝分享文章喲!</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>12/26</span> 版主回覆:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/44340778-%e5%be%97%e6%81%a9%e4%ba%9e%e7%b4%8d%e9%83%a8%e8%90%bd#comment-61874362">謝謝猴子哥 賞圖!
難得台灣...</a>
                                    </li>
                                    <!-- ie6bug
-->
                                    <li>
                                        <span>12/26</span> 版主回覆:
                                        <a href="http://stevenhgm.pixnet.net/blog/post/40505173-%e6%ad%a6%e7%95%8c%e5%8e%9f%e9%84%89%e4%b9%8b%e7%be%8e_%e6%ad%a6%e7%95%8c%e5%b6%ba%e8%8c%b6%e5%9c%92-%e6%b3%95%e6%b2%bb%e5%9c%8b%e5%b0%8f-%e6%ad%a6%e7%95%8c%e5%bc%95%e6%b0%b4#comment-61874689">您好! 武界距離南投市區也不...</a>
                                    </li>
                                    <!-- ie6bug
-->
                                </ul>
                            </div>
                        </div>
                        <!-- #latest-comment //-->
                        <div class="hslice box" id="archive">
                            <h4 class="box-title entry-title">
                                文章精選 </h4>
                            <div class="box-text entry-content">

                                <select onchange="pix.gotoArchive(this);">
<option value="-pixnet-">文章精選</option>
<option value="/blog/archives/201610">2016 十月 (1)</option>
<option value="/blog/archives/201608">2016 八月 (1)</option>
<option value="/blog/archives/201607">2016 七月 (2)</option>
<option value="/blog/archives/201605">2016 五月 (1)</option>
<option value="/blog/archives/201603">2016 三月 (1)</option>
<option value="/blog/archives/201601">2016 一月 (1)</option>
<option value="/blog/archives/201512">2015 十二月 (2)</option>
<option value="/blog/archives/201511">2015 十一月 (2)</option>
<option value="/blog/archives/201509">2015 九月 (3)</option>
<option value="/blog/archives/201508">2015 八月 (3)</option>
<option value="/blog/archives/201507">2015 七月 (3)</option>
<option value="/blog/archives/201506">2015 六月 (1)</option>
<option value="/blog/archives/201505">2015 五月 (1)</option>
<option value="/blog/archives/201504">2015 四月 (4)</option>
<option value="/blog/archives/201503">2015 三月 (4)</option>
<option value="/blog/archives/201502">2015 二月 (3)</option>
<option value="/blog/archives/201501">2015 一月 (3)</option>
<option value="/blog/archives/201412">2014 十二月 (5)</option>
<option value="/blog/archives/201411">2014 十一月 (8)</option>
<option value="/blog/archives/201410">2014 十月 (4)</option>
<option value="/blog/archives/201409">2014 九月 (11)</option>
<option value="/blog/archives/201408">2014 八月 (5)</option>
<option value="/blog/archives/201407">2014 七月 (4)</option>
<option value="/blog/archives/201406">2014 六月 (10)</option>
<option value="/blog/archives/201405">2014 五月 (3)</option>
<option value="/blog/archives/201404">2014 四月 (5)</option>
<option value="/blog/archives/201403">2014 三月 (6)</option>
<option value="/blog/archives/201402">2014 二月 (8)</option>
<option value="/blog/archives/201401">2014 一月 (7)</option>
<option value="/blog/archives/201312">2013 十二月 (10)</option>
<option value="/blog/archives/201311">2013 十一月 (11)</option>
<option value="/blog/archives/201310">2013 十月 (13)</option>
<option value="/blog/archives/201309">2013 九月 (11)</option>
<option value="/blog/archives/201308">2013 八月 (11)</option>
<option value="/blog/archives/201307">2013 七月 (7)</option>
<option value="/blog/archives/201306">2013 六月 (8)</option>
<option value="/blog/archives/201305">2013 五月 (6)</option>
<option value="/blog/archives/201304">2013 四月 (8)</option>
<option value="/blog/archives/201303">2013 三月 (10)</option>
<option value="/blog/archives/201302">2013 二月 (5)</option>
<option value="/blog/archives/201301">2013 一月 (11)</option>
<option value="/blog/archives/201212">2012 十二月 (5)</option>
<option value="/blog/archives/201211">2012 十一月 (11)</option>
<option value="/blog/archives/201210">2012 十月 (15)</option>
<option value="/blog/archives/201209">2012 九月 (3)</option>
<option value="/blog/archives/201208">2012 八月 (20)</option>
<option value="/blog/archives/201207">2012 七月 (11)</option>
<option value="/blog/archives/201206">2012 六月 (7)</option>
<option value="/blog/archives/201205">2012 五月 (11)</option>
<option value="/blog/archives/201204">2012 四月 (9)</option>
<option value="/blog/archives/201203">2012 三月 (11)</option>
<option value="/blog/archives/201202">2012 二月 (11)</option>
<option value="/blog/archives/201201">2012 一月 (7)</option>
<option value="/blog/archives/201112">2011 十二月 (9)</option>
<option value="/blog/archives/201111">2011 十一月 (13)</option>
<option value="/blog/archives/201110">2011 十月 (11)</option>
<option value="/blog/archives/201109">2011 九月 (8)</option>
<option value="/blog/archives/201108">2011 八月 (10)</option>
<option value="/blog/archives/201107">2011 七月 (8)</option>
<option value="/blog/archives/201106">2011 六月 (8)</option>
<option value="/blog/archives/201105">2011 五月 (9)</option>
<option value="/blog/archives/201104">2011 四月 (7)</option>
<option value="/blog/archives/201103">2011 三月 (11)</option>
<option value="/blog/archives/201102">2011 二月 (6)</option>
<option value="/blog/archives/201101">2011 一月 (6)</option>
<option value="/blog/archives/201012">2010 十二月 (10)</option>
<option value="/blog/archives/201011">2010 十一月 (10)</option>
<option value="/blog/archives/201010">2010 十月 (4)</option>
<option value="/blog/archives/201009">2010 九月 (2)</option>
<option value="/blog/archives/201008">2010 八月 (9)</option>
<option value="/blog/archives/201007">2010 七月 (5)</option>
<option value="/blog/archives/201005">2010 五月 (1)</option>
<option value="/blog/archives/200910">2009 十月 (2)</option>
<option value="/blog/archives/200909">2009 九月 (2)</option>
<option value="/blog/archives/200908">2009 八月 (3)</option>
<option value="/blog/archives/200907">2009 七月 (6)</option>
<option value="/blog/archives/200903">2009 三月 (5)</option>
<option value="/blog/archives/200902">2009 二月 (9)</option>
<option value="/blog/archives/200901">2009 一月 (7)</option>
<option value="/blog/archives/200812">2008 十二月 (6)</option>
<option value="/blog/archives/200811">2008 十一月 (8)</option>
<option value="/blog/archives/200810">2008 十月 (1)</option>
<option value="/blog/archives/200809">2008 九月 (8)</option>
<option value="/blog/archives/200808">2008 八月 (4)</option>
</select>
                                <div class="box-more">
                                    <a href="/blog/listall/1">所有文章列表</a>
                                </div>
                            </div>
                        </div>
                        <!-- #archive //-->
                        <div class="hslice box" id="visitor">
                            <h4 class="box-title entry-title">
                                誰來我家 </h4>
                            <div class="box-text entry-content">
                                <ul id="ul-visitors">
                                    <!-- ie6bug //-->
                                    <li>
                                        <a href="http://PixnetAd2017.pixnet.net/" target="_blank"><img src="http://s1.pimg.tw/avatar/pixnetad2017/0/0/zoomcrop/50x50.jpg?v=1486377143" alt="headshot from friends" title="PixnetAd2017" width="50" height="50" /></a>
                                    </li>
                                    <li>
                                        <a href="http://blogbackup.pixnet.net/" target="_blank"><img src="http://s8.pimg.tw/avatar/blogbackup/0/0/zoomcrop/50x50.jpg?v=1381715322" alt="headshot from friends" title="blogbackup" width="50" height="50" /></a>
                                    </li>
                                    <li>
                                        <a href="http://LetYoung.pixnet.net/" target="_blank"><img src="http://s6.pimg.tw/avatar/letyoung/0/0/zoomcrop/50x50.jpg?v=1429796178" alt="headshot from friends" title="LetYoung" width="50" height="50" /></a>
                                    </li>
                                    <li>
                                        <a href="http://coffee1686.pixnet.net/" target="_blank"><img src="http://s9.pimg.tw/avatar/coffee1686/0/0/zoomcrop/50x50.jpg?v=1477368652" alt="headshot from friends" title="coffee1686" width="50" height="50" /></a>
                                    </li>
                                    <li>
                                        <a href="http://a87192611.pixnet.net/" target="_blank"><img src="http://s7.pimg.tw/avatar/a87192611/0/0/zoomcrop/50x50.jpg?v=1252651730" alt="headshot from friends" title="a87192611" width="50" height="50" /></a>
                                    </li>
                                </ul>

                            </div>
                        </div>
                        <!-- #visitor //-->
                        <div class="hslice box" id="qrcode">
                            <h4 class="box-title entry-title">
                                QR Code </h4>
                            <div class="box-text entry-content">

                                <div class="qrcode">
                                    <img src="http://s.pimg.tw/qrcode/stevenhgm/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29.png" />
                                </div>
                            </div>
                        </div>
                        <!-- #qrcode //-->
                        <div class="hslice box" id="announce">
                            <h4 class="box-title entry-title">
                                站方公告 </h4>
                            <div class="box-text entry-content">

                                <ul>
                                    <li><a href="http://admin.pixnet.net/blog/post/44606311-%5b%e5%85%ac%e5%91%8a%5d-2017%e5%b9%b4%e5%ba%a6%e8%be%b2%e6%9b%86%e6%98%a5%e7%af%80%e6%9c%9f%e9%96%93%e6%9c%8d%e5%8b%99%e5%85%ac%e5%91%8a" target="_blank">[公告] 2017年度農曆春節期間服務公告</a></li>
                                    <li><a href="http://admin.pixnet.net/blog/post/44587246-%5b%e5%85%ac%e5%91%8a%5d-%e6%9c%8d%e5%8b%99%e6%a2%9d%e6%ac%be%e7%95%b0%e5%8b%95%e5%85%ac%e5%91%8a" target="_blank">[公告] 服務條款異動公告</a></li>
                                    <li><a href="http://admin.pixnet.net/blog/post/43800091-%5b%e5%85%ac%e5%91%8a%5d-%e7%97%9e%e5%ae%a2%e9%82%a6%e7%9b%b8%e7%b0%bf%e6%9c%8d%e5%8b%99%e4%b9%8b%e3%80%8c%e9%9d%9e%e7%b6%b2%e9%a0%81%e4%b8%8a%e5%82%b3%e8%bb%9f%e9%ab%94%e3%80%8d" target="_blank">[公告] 痞客邦相簿服務之「非網頁上傳軟體」將於 2016 年 6 月 29 日正式終止</a></li>
                                </ul>
                            </div>
                        </div>
                        <!-- #announce //-->
                    </div>
                    <!-- #links-row-2 //-->
                    <div id="ad-mib">
                        <script type="text/javascript">
                            pix.MIB.config = {
                                hosthash: '3fe6433d830b6321900cadda5cc06d37',
                                dr: {
                                    source: 'stevenhgm'
                                },
                                goldAds: document.querySelectorAll('.h54d834-siTemajidr-h54d834'),
                                uniq: '3af5b47651d9d4461e8047f02d239e74228a7dce18791',
                                percentSite: 'http://falcon.pixanalytics.com/mib/vap',
                                falconSite: 'http://falcon.pixanalytics.com',
                                cate: '16',
                                hasMIB: 1,
                                canPutVideo: false,
                                article_cate_id: '28',
                                demo: {
                                    hash: '',
                                    demoOption: 0
                                },
                                availablePositions: [{
                                    id: 1,
                                    name: 'sidebar-1',
                                    enable: 1
                                }, {
                                    id: 1,
                                    name: 'sidebar-2',
                                    enable: false
                                }, {
                                    id: 3,
                                    name: 'video',
                                    enable: false
                                }, {
                                    id: 8,
                                    name: 'unfold',
                                    enable: false
                                }],
                                ref: ''
                            };

                            (function() {
                                var goldAds = pix.MIB.config.goldAds;
                                if (goldAds[0]) {
                                    pix.MIB.build.generate();
                                    pix.MIB.build.detectPageScrollPlayback();
                                }
                            })();
                        </script>
                    </div>
                    <!-- #ad-mib //-->
                </div>
                <!-- #links //-->
            </div>
            <!-- #main //-->
            <div id="footer">
                <p></p>
                <div id="bottom">
                    <a class="bottom-skiplink" href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29/#top" title="back to the top of the page">回到頁首</a>
                    <a class="bottom-skiplink" href="http://stevenhgm.pixnet.net/blog/post/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29#article-area" title="back to the main cotent of the page">回到主文</a>
                    <a class="bottom-pixnet" href="http://panel.pixnet.cc/signup/step2">免費註冊</a>
                    <a target="_blank" class="bottom-pixnet" href="http://help.pixnet.tw/">客服中心</a>
                    <a target="_blank" class="bottom-pixnet" href="http://www.pixnet.net/">痞客邦首頁</a> © 2003 - 2017 PIXNET Travel </div>
            </div>
            <!-- #footer //-->
        </div>
        <!-- #container3 //-->
        <div id="extradiv11"></div>
        <div id="extradiv10"></div>
        <div id="extradiv9"></div>
        <div id="extradiv8"></div>
    </div>
    <!-- #container2 //-->
    <div id="extradiv7"></div>
    <div id="extradiv6"></div>
    <div id="extradiv5"></div>
    <div id="extradiv4"></div>
    </div>
    <!-- #container //-->
    <div id="extradiv3"></div>
    <div id="extradiv2"></div>
    <div id="extradiv1"></div>
    <div id="extradiv0"></div>
    </div>
    <!-- #body-div //-->

    </div>

    <script type="text/javascript">
        & lt;
        !--
        jQuery(window).load(function() {
            //autoImgResize
            '2';
            jQuery.settings = jQuery.settings || {};
            jQuery.settings.autoImgResize = {
                mode: +'2',
                resizWidth: +'400',
                selector: 'content'
            };

            if (2 === jQuery.settings.autoImgResize.mode) {
                jQuery.settings.autoImgResize.resizWidth = jQuery('.article-content').width();
            }
            pix.autoImgResize(jQuery.settings.autoImgResize.resizWidth, jQuery.settings.autoImgResize.selector);


        });
        //--&gt;
    </script>
    <script type="text/javascript">
        & lt;
        !--
        jQuery(function() {
            pix.fixPixnetPlayerID();
            jQuery('.article-head').find('.column-star').each(function() {
                var column_link = jQuery(this).attr('data-column-link');
                jQuery(this).find('h2').append(' &lt;a title="專欄之星" href="' + column_link + '" target="_blank"&gt;&lt;img title="專欄之星" alt="column star article" src="http://s.pixfs.net/blog/images/choc/column_star.gif"&gt;&lt;/a&gt;');
            });
            jQuery('.article-hot').each(function() {
                jQuery(this).find('h2').append(' &lt;a class="__dailyhotclass" title="本日熱門" href="' + jQuery(this).attr('data-hot-link') + '" target="_blank"&gt;&lt;img title="熱門文章" alt="hot article today" src="http://s.pixfs.net/blog/images/choc/today_hot.gif"&gt;&lt;/a&gt;');
            });
        });
        //--&gt;
    </script>
    <script src="//front.pixfs.net/js/mixpanel.js?v=4b36ae69?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>
    <script src="//front.pixfs.net/js/blog-mixpanel.min.js?v=09e150d3?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>
    <script type="text/javascript">
        & lt;
        !--
        if (typeof dataLayer === 'undefined') dataLayer = [];

        dataLayer.push({
            "blog_page_type": "post",
            "keyword": "",
            "page_meta": "stevenhgm\/blog\/post\/39926056-新竹尖石_美樹營地賞楓 (2)",
            "user_cat_id": "1771157",
            "user_cat_name": "尖石_美樹營地",
            "is_testing_43400": false,
            "is_partner_program": false,
            "is_mobile_mode": false,
            "user_name": "stevenhgm",
            "page_type": "blog",
            "service_type": "blog",
            "page_view": "\/blog\/",
            "blog_name": "史蒂文的家_藍天",
            "blog_cat": "16 - 休閒旅遊",
            "is_loggedin": false,
            "is_VIP": false,
            "is_obstruct": "ip",
            "viewer_type": "Regular Member",
            "article_title": "新竹尖石_美樹營地賞楓 (2)",
            "article_id": "39926056",
            "article_cat": "28 - 國內旅遊"
        });

        -- & gt;
    </script>

    <noscript>&lt;iframe src="//www.googletagmanager.com/ns.html?id=GTM-KGMWFG" height="0" width="0" style="display:none;visibility:hidden"&gt;&lt;/iframe&gt;</noscript>
    <noscript>&lt;iframe src="//www.googletagmanager.com/ns.html?id=GTM-MZ3SPM" height="0" width="0" style="display:none;visibility:hidden"&gt;&lt;/iframe&gt;</noscript>


    <script type="text/javascript">
        & lt;
        !--
        var _gaq = _gaq || [];
        _gaq.push(
            ['_setAccount', 'UA-408650-10'], ['_setDetectTitle', false], ['_setDomainName', 'none'], ['_setAllowLinker', true], ['_setCustomVar', 1, 'member', 'GUEST'], ['_setCustomVar', 2, 'vip', 'nonVIP'], ['_trackPageview', '/blog/']

        );

        (function() {
            var ga = document.createElement('script');
            ga.type = 'text/javascript';
            ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0];
            s.parentNode.insertBefore(ga, s);
        })();

        (function(w, d, s, l, i) {
            w[l] = w[l] || [];
            w[l].push({
                'gtm.start': new Date().getTime(),
                event: 'gtm.js'
            });
            var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s),
                dl = l != 'dataLayer' ? '&amp;l=' + l : '';
            j.async = true;
            j.src =
                '//www.googletagmanager.com/gtm.js?id=' + i + dl;
            f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'dataLayer', 'GTM-KGMWFG');

        (function(w, d, s, l, i) {
            w[l] = w[l] || [];
            w[l].push({
                'gtm.start': new Date().getTime(),
                event: 'gtm.js'
            });
            var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s),
                dl = l != 'dataLayer' ? '&amp;l=' + l : '';
            j.async = true;
            j.src = '//www.googletagmanager.com/gtm.js?id=' + i + dl;
            f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'dataLayer', 'GTM-MZ3SPM');

        (function(w, d, s, l, i) {
            w[l] = w[l] || [];
            w[l].push({
                'gtm.start': new Date().getTime(),
                event: 'gtm.js'
            });
            var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s),
                dl = l != 'dataLayer' ? '&amp;l=' + l : '';
            j.async = true;
            j.src =
                '//www.googletagmanager.com/gtm.js?id=' + i + dl;
            f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'dataLayer', 'GTM-M9S8TF');

        (function(w, d, s, l, i) {
            w[l] = w[l] || [];
            w[l].push({
                'gtm.start': new Date().getTime(),
                event: 'gtm.js'
            });
            var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s),
                dl = l != 'dataLayer' ? '&amp;l=' + l : '';
            j.async = true;
            j.src =
                '//www.googletagmanager.com/gtm.js?id=' + i + dl;
            f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'dataLayer', 'GTM-NDN8FB');



        (function($, undefined) {
            $(function() {
                var _topbar = $('#topbar');
                _topbar.find('.topbar__logo').on('click', 'a', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-logo', 'GUEST']);
                });
                _topbar.find('#topbar__search').on('submit', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-search-button', 'GUEST']);
                });
                _topbar.find('.topbar__announce').on('click', '.topbar__announce__item', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-announce', 'GUEST']);
                });

                _topbar.find('.topbar__notification__counter').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-notification-counter', 'GUEST']);
                });
                _topbar.find('.topbar__notification__list--header__link').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-notification-setting', 'GUEST']);
                });
                _topbar.find('.topbar__notification__list--footer__link').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-notification-showall', 'GUEST']);
                });

                _topbar.find('#topbar__user__login').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-login', 'GUEST']);
                });

                _topbar.find('#topbar__user__list__link--blog').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-myblog', '']);
                });
                _topbar.find('#topbar__user__list__link--articlenew').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-articlenew', '']);
                });
                _topbar.find('#topbar__user__list__link--panelsite').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-panelsite', '']);
                });
                _topbar.find('#topbar__user__list__link--panelapp').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-panelapp', '']);
                });

                _topbar.find('#topbar__user__list__link--logout').on('click', function() {
                    _gaq.push(['_trackEvent', 'blog-bar', 'click-logout', '']);
                });
            });
        })(jQuery);

        //--&gt;
    </script>
    <div style="display: none" id="comscorekw" data-value="comscorekw=Travel"></div>
    <!-- Facebook Pixel Code -->
    <script>
        ! function(f, b, e, v, n, t, s) {
            if (f.fbq) return;
            n = f.fbq = function() {
                n.callMethod ?
                    n.callMethod.apply(n, arguments) : n.queue.push(arguments)
            };
            if (!f._fbq) f._fbq = n;
            n.push = n;
            n.loaded = !0;
            n.version = '2.0';
            n.queue = [];
            t = b.createElement(e);
            t.async = !0;
            t.src = v;
            s = b.getElementsByTagName(e)[0];
            s.parentNode.insertBefore(t, s)
        }(window,
            document, 'script', 'https://connect.facebook.net/en_US/fbevents.js');

        fbq('init', '510235355828933');
        fbq('track', "PageView");
    </script>
    <noscript>&lt;img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=510235355828933&amp;ev=PageView&amp;noscript=1"
/&gt;</noscript>
    <!-- End Facebook Pixel Code -->
    <div id="popup-frame" style="display:none">
        <div id="frame-dimmer"></div>
        <div id="frame-box">
            <div id="frame-border"></div>
            <div id="frame-header">
                <h3></h3>
                <a href="#" class="frame-close" title="關閉視窗"><span>關閉視窗</span></a>
            </div>
            <div id="frame-content"></div>
        </div>
    </div>

    <script type="text/javascript" src="//s.pixanalytics.com/js/c.js?v=9"></script>
    <script type="text/javascript">
        if ('undefined' === typeof window._uCount) {
            window._uCount = function() {};
        }
    </script>
    <script type="text/javascript">
        & lt;
        !--
        var _type = 'front_blog';
        _uCount();
        var _type = 'front_blog_byarticlecategory:28';
        _uCount();
        var _type = 'front_blog_bysitecategory:16';
        _uCount();
        if (document.location.toString().indexOf('/post/') != -1) {
            var _type = 'front_blog_post';
            _uCount();
            var _type = 'front_blog_post_nonvip';
            _uCount();
        }

        if (document.location.toString().indexOf('/search/') != -1) {
            var _type = 'front_blog_search';
            _uCount();
        }
        //--&gt;
    </script>
    <script src="http://referer.pixplug.in/static/r.js?v=b27bf7fe9e1f0fca830e1381a52f804b" type="text/javascript"></script>
    <script type="text/javascript">
        & lt;
        !--
        _currentPageUsername = 'stevenhgm';
        _refererCount();
        //--&gt;
    </script>
    <script>
        var _piq = _piq || [];

        _piq.push(
            ['setCustomVar', 'venue', 'pixnet'], ['setCustomVar', 'author_id', pix.owner], ['setCustomVar', 'article_category_id', "28"], ['setCustomVar', 'nonce', pix.login_name], ['setCustomVar', 'visitor_id', pix.visitor], ['setCustomVar', 'visitor_openid', pix.openid], ['trackPageView']
        );
        (function(d, t, u, f, j) {
            f = d.getElementsByTagName(t)[0];
            j = d.createElement(t);
            j.async = 1;
            j.src = u;
            f.parentNode.insertBefore(j, f);
        })(document, 'script', 'https://s.pixanalytics.com/js/pi.min.js');

        (function($) {
            $(function() {
                var _startTime = Math.floor((new Date()).getTime() / 1000),
                    _driveMode = ('none' === $(document.body).data('mobileMode')) ? 'desktop' : 'mobile',
                    _send = false,
                    unload;

                unload = function() {
                    if (_send) {
                        return;
                    }

                    var _endTime = Math.floor((new Date()).getTime() / 1000),
                        _isIdleAdClosed = '';

                    switch ($.adIdlePopClosed) {
                        case 'hasClosed':
                            _isIdleAdClosed = 'close idle ad';
                            break;
                        case 'neverClosed':
                            _isIdleAdClosed = 'not close idle ad';
                            break;
                        default:

                    }
                    _piq.push(['trackEvent', 'article stay time', _isIdleAdClosed, _driveMode, (_endTime - _startTime)]);
                    _send = true;
                };

                $(window).on({
                    'beforeunload.idlePI': unload,
                    'unload.idlePI': unload,
                    'pagehide.idlePI': unload
                });

                // #41767
                $('#pixad1032').on('click', 'a', function() {
                    if ('styleme' === $(this).data('source')) {
                        _piq.push(['trackEvent', 'yahoo 大聯盟導購', '金鑽版位點擊']);
                    }
                });

                var pixad1032ImpTracking = function() {
                    var container = $('#pixad1032');

                    if (0 === container.find('a').length) {
                        setTimeout(pixad1032ImpTracking, 500);
                        return;
                    }

                    if ('styleme' == container.find('a').data('source')) {
                        _piq.push(['trackEvent', 'yahoo 大聯盟導購', '金鑽版位曝光']);
                    }
                };
                pixad1032ImpTracking();
            });
        })(jQuery);
    </script>
    <script src="//front.pixfs.net/js/pixinsight.min.js?v=99980588?v=b27bf7fe9e1f0fca830e1381a52f804b"></script>


    <!-- Modified: 1486718791 -->
    <!-- async script -->
    <script type="text/javascript">
        & lt;
        !--
        jQuery.ajaxSetup({
            cache: true
        });
        jQuery.getScript("//js.pixplug.in/addon/1/production.js?v=1399949830", function(data, textStatus) {
            jQuery.pixAddonFacebookPushButton({
                "show_faces": "true",
                "width": "600",
                "position": "top",
                "colorscheme": "light",
                "addon_username": "stevenhgm",
                "addon_expired_at": 0,
                "addon_ismobile": false,
                "addon_isvip": false,
                "addon_is_allow_setting": true,
                "ab_testing_seed": 1232136999
            });
        });
        jQuery.getScript("//js.pixplug.in/addon/76/production.js?v=1383114692", function(data, textStatus) {
            jQuery.pixArticleSwitcher({
                "mode": "below-content",
                "default_css": "on",
                "color": "black",
                "addon_username": "stevenhgm",
                "addon_expired_at": 0,
                "addon_ismobile": false,
                "addon_isvip": false,
                "addon_is_allow_setting": true,
                "ab_testing_seed": 1232136999
            });
        });
        jQuery.getScript("//js.pixplug.in/addon/96/production.js?v=1380100897", function(data, textStatus) {
            jQuery.pix0rz({
                "panel": null,
                "addon_username": "stevenhgm",
                "addon_expired_at": 0,
                "addon_ismobile": false,
                "addon_isvip": false,
                "addon_is_allow_setting": true,
                "ab_testing_seed": 1232136999
            });
        });
        jQuery.ajaxSetup({
            cache: false
        });
        //--&gt;
    </script>

    <!-- load sync script -->
    <script src="//js.pixplug.in/addon/84/production.js?v=1386731952" type="text/javascript"></script>

    <!-- execute sync addon -->
    <script type="text/javascript">
        jQuery(function($) {
            $("#content img").lazyload({
                effect: "fadeIn",
                placeholder: "http://s.pixfs.net/js/jquery.lazyload/grey.gif"
            });
        });
    </script>



    <script>
        pix.stylemeTags = [];
    </script>
    <script src="//front.pixfs.net/js/styleme.min.js?v=f0e1deed?v=b27bf7fe9e1f0fca830e1381a52f804b" crossorigin="anonymous"></script>

    <script>
        (function() {
            pix.octopusTags = null;
            if (null === pix.octopusTags || undefined === pix.octopusTags) {
                return;
            }
            for (var i = 0; i & lt; pix.octopusTags.length; i++) {
                if ('' === pix.octopusTags[i]) {
                    continue;
                }
                _piq.push(['trackEvent', 'otopusTag', '', pix.octopusTags[i]]);
            }
        })();
    </script>


    <script src="//front.pixfs.net/module/topbar/js/blogtopbar.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b" crossorigin="anonymous"></script>

    <script>
        var nineyi_group = "X1";
        var nineyi_keyindex = "0";
        var nineyi_match = "";
        var nineyi_id = "pix91_a7fb7b77a05dabae9054b8973856eaea";
        var nineyi_products = [{
            "asset": "0104",
            "image": "http:\/\/pic.pimg.tw\/pixnetvisual\/1446126120-4162329176_s.jpg?v=1446126272",
            "title": "MissHana\u82b1\u5a1c\u5c0f\u59d0\u5b8c\u7f8e\u7121\u75d5\u4e09\u8272\u906e\u7455\u818f",
            "oprice": "380",
            "nprice": "299",
            "link": "http:\/\/www.86shops.com.tw\/SalePage\/Index\/1256490"
        }, {
            "asset": "0138",
            "image": "http:\/\/pic.pimg.tw\/pixnetvisual\/1446126147-4136062762_s.jpg?v=1446126272",
            "title": "E\u2027Heart \u4f0a\u5fc3 \u6301\u4e45\u96b1\u5f62\u96d9\u9762\u96d9\u773c\u76ae\u8cbc",
            "oprice": "348",
            "nprice": "180",
            "link": "http:\/\/www.86shops.com.tw\/SalePage\/Index\/344734"
        }, {
            "asset": "0143",
            "image": "http:\/\/pic.pimg.tw\/pixnetvisual\/1446126150-2749437497_s.jpg?v=1446126272",
            "title": "3CE (3CONCEPT EYES) \u8d85\u986f\u8272\u5507\u818f",
            "oprice": "499",
            "nprice": "399",
            "link": "http:\/\/www.86shops.com.tw\/SalePage\/Index\/1610019"
        }, {
            "asset": "0223",
            "image": "http:\/\/pic.pimg.tw\/pixnetvisual\/1446126232-3103690318_s.jpg?v=1446126273",
            "title": "ND \u812b\u6bdb\u871c\u881f\/\u9664\u6bdb\u871c\u881f 220g",
            "oprice": "299",
            "nprice": "299",
            "link": "http:\/\/www.86shops.com.tw\/SalePage\/Index\/1035850"
        }, {
            "asset": "0160",
            "image": "http:\/\/pic.pimg.tw\/pixnetvisual\/1446126167-2508883353_s.jpg?v=1446126272",
            "title": "\u97d3\u570b RiRe \u9ed1\u982d\u7c89\u523a\u6e05\u6f54\u5237 \u4e59\u652f\u5165(\u5167\u9644\u6e05\u6f54\u4e7320mL)",
            "oprice": "290",
            "nprice": "290",
            "link": "http:\/\/www.86shops.com.tw\/SalePage\/Index\/640966"
        }, {
            "asset": "0109",
            "image": "http:\/\/pic.pimg.tw\/pixnetvisual\/1446126124-168867797_s.jpg?v=1446126272",
            "title": "Miss Hana \u82b1\u5a1c\u5c0f\u59d0 \u6c34\u611f\u63a7\u8272CC\u971c",
            "oprice": "349",
            "nprice": "299",
            "link": "http:\/\/www.86shops.com.tw\/SalePage\/Index\/668815"
        }];
    </script>
    <script id="idleTemplate" type="text/x-jsrender" data-main="//front.pixfs.net/module/idlePop/js/idlePop.min.js?v=b27bf7fe9e1f0fca830e1381a52f804b">
        &lt;link rel="stylesheet" href="//front.pixfs.net/module/idlePop/css/idlePop.min.css?v=6057ab06?v=b27bf7fe9e1f0fca830e1381a52f804b"&gt; &lt;div class="modal idle-pop" tabindex="-1" role="dialog" aria-describedby="dialog"&gt; &lt;div class="modal-bg"&gt;&lt;/div&gt; &lt;div class="modal-dialog"&gt; &lt;a class="modal-close" data-close="【 關閉 X 】"&gt;&lt;/a&gt; &lt;div class="modal-content"&gt; &lt;div class="modal-header"&gt;本網頁已閒置超過 3 分鐘。請點 &lt;kbd&gt;關閉&lt;/kbd&gt; 或 &lt;kbd&gt;點擊&lt;/kbd&gt;任一空白處,即可回到網頁&lt;/div&gt; &lt;div class="modal-body"&gt; &lt;div class="blogger-info"&gt; &lt;a class="blogger-info__avatar" href="//www.pixnet.net/blog/profile/{{:user.name}}"&gt;&lt;img src="{{:user.avatar}}" alt="{{:user.name}} 的大頭貼"&gt;&lt;/a&gt; &lt;div class="blogger-info__profile"&gt; &lt;div class="blogger-info__row"&gt; &lt;dl&gt; &lt;dt&gt;部落格名稱&lt;/dt&gt; &lt;dd&gt;&lt;a href="{{:blog.link}}"&gt;{{:blog.name}}&lt;/a&gt;&lt;/dd&gt; &lt;/dl&gt; &lt;/div&gt; &lt;div class="blogger-info__row"&gt; &lt;dl&gt; &lt;dt&gt;人氣&lt;/dt&gt; &lt;dd data-unit="人"&gt;{{:blog.hits.total}}&lt;/dd&gt; &lt;dt&gt;好友數&lt;/dt&gt; &lt;dd data-unit="人"&gt;{{:user.friends_count}}&lt;/dd&gt; &lt;dt&gt;文章總數&lt;/dt&gt; &lt;dd data-unit="篇"&gt;{{:blog.articles_count}}&lt;/dd&gt; &lt;/dl&gt; &lt;/div&gt; &lt;div class="blogger-info__row"&gt; &lt;a class="blogger-info__follow" href="http://panel.pixnet.cc/pixfront/addsubspopup?fromuser={{:user.name}}&amp;user={{:user.name}}&amp;popup=1" target="pix_add_sub" data-followers="{{:user.subscribers_count}}"&gt;加入訂閱&lt;/a&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="idle-adsense"&gt; &lt;/div&gt; &lt;div class="idle-related-posts"&gt; {{for posts}} &lt;a class="idle-related-post" href="{{:link}}"&gt; &lt;img src="{{:thumb}}" alt="文章縮圖"&gt; &lt;div class="idle-related-post__detail"&gt; &lt;h4&gt;{{:title}}&lt;/h4&gt; &lt;div class="idle-related-post__desc" data-readmore="繼續閱讀"&gt;{{:body}}&lt;/div&gt; &lt;/div&gt; &lt;/a&gt; {{/for}} &lt;/div&gt; &lt;/div&gt; &lt;div class="modal-footer"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt;
    </script>


    <script src="//front.pixfs.net/js/hide-ad-checker.min.js?v=8e1fb39e?v=b27bf7fe9e1f0fca830e1381a52f804b" crossorigin="anonymous"></script>


    <script type="text/javascript" id="">
        jQuery("div").find(".article a").find(':contains("1314.ws")').length & amp; & amp;
        dataLayer.push({
            event: "spam-detected"
        });
    </script>
    <script type="text/javascript" id="">
        function updateQueryStringParameter(a, b, c) {
            var d = new RegExp("([?\x26])" + b + "\x3d.*?(\x26|$)", "i"),
                e = -1 !== a.indexOf("?") ? "\x26" : "?";
            return a.match(d) ? a.replace(d, "$1" + b + "\x3d" + c + "$2") : a + e + b + "\x3d" + c
        }
        jQuery(".article-body").on("click", "a", function() {
            var a = this.href;
            0 & lt; = a.toLowerCase().indexOf("klook.com") & amp; & amp; - 1 == a.toLowerCase().indexOf("aid") ? (a = updateQueryStringParameter(a, "aid", "11"), jQuery(this).attr("href", a), dataLayer.push({
                event: "genericEvent",
                eventUA: "UA-65168598-20",
                eventCategory: "Klook \u7121AID\u9023\u7d50\u8f49\u63db\uff08\u6b63\u78ba\uff09",
                eventAction: "Click",
                eventLabel: "http:\/\/stevenhgm.pixnet.net\/blog\/post\/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29",
                eventNonInteraction: "true"
            })) : 0 & lt; = a.toLowerCase().indexOf("hotelscombined.com") & amp; & amp; - 1 == a.toLowerCase().indexOf("a_aid") ?
                (a = updateQueryStringParameter(a, "a_aid", "132653"), a = updateQueryStringParameter(a, "label", "link_replace"), jQuery(this).attr("href", a), dataLayer.push({
                    event: "genericEvent",
                    eventUA: "UA-65168598-1",
                    eventCategory: "HotelsCombined \u7121AID\u9023\u7d50\u8f49\u63db",
                    eventAction: "Click",
                    eventLabel: "http:\/\/stevenhgm.pixnet.net\/blog\/post\/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29",
                    eventNonInteraction: "true"
                })) : 0 & lt; = a.toLowerCase().indexOf("booking.com") & amp; & amp; - 1 == a.toLowerCase().indexOf("aid") ? (a = updateQueryStringParameter(a, "aid", "835804"), a = updateQueryStringParameter(a,
                "label", "link_replace"), jQuery(this).attr("href", a), dataLayer.push({
                event: "genericEvent",
                eventUA: "UA-65168598-1",
                eventCategory: "Booking.com \u7121AID\u9023\u7d50\u8f49\u63db",
                eventAction: "Click",
                eventLabel: "http:\/\/stevenhgm.pixnet.net\/blog\/post\/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29",
                eventNonInteraction: "true"
            })) : 0 & lt; = a.toLowerCase().indexOf("agoda.com") & amp; & amp; - 1 == a.toLowerCase().indexOf("cid") & amp; & amp;
            (a = updateQueryStringParameter(a, "cid", "1658048"), jQuery(this).attr("href", a), dataLayer.push({
                event: "genericEvent",
                eventUA: "UA-65168598-1",
                eventCategory: "Agoda.com \u7121AID\u9023\u7d50\u8f49\u63db",
                eventAction: "Click",
                eventLabel: "http:\/\/stevenhgm.pixnet.net\/blog\/post\/39926056-%e6%96%b0%e7%ab%b9%e5%b0%96%e7%9f%b3_%e7%be%8e%e6%a8%b9%e7%87%9f%e5%9c%b0%e8%b3%9e%e6%a5%93-%282%29",
                eventNonInteraction: "true"
            }))
        });
    </script>
    <script type="text/javascript" id="">
        (function(c) {
            var a = c(document.body),
                g = 1 === ~~a.data("in-more-read-button-test1-period"),
                d = a.data("ab-testing-seed"),
                h = "yep" === a.data("mobile-mode"),
                k = 1 === ~~a.data("is-from-fb");
            a.find("#read-all \x3e a");
            var b, e, f;
            g & amp; & amp;
            0 === ~~(10 * Math.random()) & amp; & amp;
            h & amp; & amp;
            (b = 0 === d % 2 ? "1B" : "1A", b += k ? " \u4f86\u6e90FB" : " \u4f86\u6e90\u975eFB", e = Math.floor((new Date).getTime()), c(window).on("beforeunload", function(a) {
                    f = Math.floor((new Date).getTime());
                    _piq.push(["trackEvent", "more_read_button_article", "article stay time", b, f - e])
                }),
                c(function() {
                    _piq.push(["trackEvent", "more_read_button_article", "imps", b]);
                    _piq.push(["trackEvent", "more_read_button_article", "imps-debug-seed", b, d])
                }))
        })(jQuery);
    </script>
    <script type="text/javascript" id="">
        var _comscore = _comscore || [];
        _comscore.push({
            c1: "2",
            c2: "14383407",
            options: {
                url_append: "comscorekw\x3dTravel"
            }
        });
        (function() {
            var a = document.createElement("script"),
                b = document.getElementsByTagName("script")[0];
            a.async = !0;
            a.src = ("https:" == document.location.protocol ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
            b.parentNode.insertBefore(a, b)
        })();
    </script>
    <div style="display: none" id="comscorekw" data-value="comscorekw=Travel"></div>
    <noscript>
  &lt;img src="http://b.scorecardresearch.com/p?c1=2&amp;amp;c2=14383407&amp;amp;cv=2.0&amp;amp;cj=1"&gt;
</noscript>
    <img style="visibility: hidden;" src="//tags.bluekai.com/site/27675?id=2DE7B66BC2869D58E462F17202212B81&amp;ret=html&amp;phint=__bk_t%3D%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%E8%B3%9E%E6%A5%93%20%282%29%20%40%20%E5%8F%B2%E8%92%82%E6%96%87%E7%9A%84%E5%AE%B6_%E8%97%8D%E5%A4%A9%20%3A%3A%20%E7%97%9E%E5%AE%A2%E9%82%A6%20PIXNET%20%3A%3A&amp;phint=__bk_k%3D%E8%97%8D%E5%A4%A9%E9%83%A8%E8%90%BD%E5%AE%A2%2C%E9%83%A8%E8%90%BD%E5%AE%A2%E8%97%8D%E5%A4%A9%2C%E5%8F%B2%E8%92%82%E6%96%87%E8%97%8D%E5%A4%A9%2C%E5%8F%B2%E8%92%82%E6%96%87%E7%9A%84%E5%AE%B6%2C%E8%97%8D%E5%A4%A9%E5%AE%B6%E6%97%8F%2C%E9%9C%B2%E7%87%9F%E6%97%85%E9%81%8A%2C%E8%97%8D%E5%A4%A9%E7%97%9E%E5%AE%A2%E5%B9%AB%2C%E5%9C%8B%E5%85%A7%E6%97%85%E9%81%8A%2C%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%2C%E6%96%B0%E7%AB%B9%E5%B0%96%E7%9F%B3_%E7%BE%8E%E6%A8%B9%E7%87%9F%E5%9C%B0%E8%B3%9E%E6%A5%93%20%282%29&amp;phint=__bk_l%3Dhttp%3A%2F%2Fstevenhgm.pixnet.net%2Fblog%2Fpost%2F39926056-%25e6%2596%25b0%25e7%25ab%25b9%25e5%25b0%2596%25e7%259f%25b3_%25e7%25be%258e%25e6%25a8%25b9%25e7%2587%259f%25e5%259c%25b0%25e8%25b3%259e%25e6%25a5%2593-%25282%2529&amp;r=96649251" width="0" height="0" />
    <script src="https://n-cdn.areyouahuman.com/play/ZQp6LCe0OO3LeZB6ES1CZrJvMefQTtT9oZjddBS5?AYAH_P2=2DE7B66BC2869D58E462F17202212B81&amp;AYAH_F1=Lotame" async=""></script><iframe style="position: absolute; overflow: hidden; visibility: hidden; height: 1px; width: 1px; bottom: 1px; left: 1px;" src="http://bcp.crwdcntrl.net/5/c=508/rand=1486718795361/pv=y/rt=ifr"></iframe></body>

</html>