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
/* 此噗版由「如我協力創意工作室 Be Myself Inc.」 設計提供,僅供個人噗友自用,請勿改製再分享或用於商業等其他用途 */

/*噗浪佈景CSS* Wind OF LUD ******/
/*Design by Be Myself Inc. M6******/
/*Background image from* ******/
/***僅開放個人套用做為噗版,商業性質及其他利用方式請勿使用,謝謝****/

/*++++++++++++++++++++背景設定++++++++++++++++++++++*/

/*+畫面佈景--------------------------------------------------*/
body, html
{
background:#eee url(http://farm5.staticflickr.com/4085/5067922011_9a9ddf0b2e_o.jpg) center top no-repeat;
font-family: "微軟正黑體", Arial !important;
}

/*語言字型***/
body.language-large-font
{
font-family: "微軟正黑體", Arial !important;
letter-spacing:0.02em;
}

a {outline: 0 !important;} /*去除連結虛線框*/

/*+時間軸主題背景--------------------------------------------------*/
#timeline_holder
{
background:none;
border-top:0px solid #fff;
border-bottom:0px solid #fff;
}

/*+主控台主題背景--------------------------------------------------*/
#plurk-dashboard
{
border:0px solid #ccc !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

/*+發噗區: Plurk 每日照片 搜尋--------------------------------------------------*/
#pane_plurk,
#pane_daily_photo,
#pane_search
{
background:#eee repeat-x;
border:1px solid #ccc !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

/*+發噗區: 選項標籤--------------------------------------------------*/
#toggle_tab li,
#plurks_pane_li /*所有*/
{
color:#333;
border:0 !important;
font-size:15px !important;
height:22px;
text-transform:uppercase; /*皆大寫*/
}
#toggle_tab li.tt_selected /*正選*/
{
background:#eee !important;
border:1px solid #ccc !important;
border-bottom:0 !important;
color:#555 !important;
-khtml-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
}

/*+發噗區: 輸入欄位--------------------------------------------------*/

/*對齊中間***/
.plurkForm td {vertical-align:middle !important;}

/*主控台發噗區***/
textarea#input_big_private, /*發送私密噗視窗*/
textarea#input_big_private.content,
textarea#input_big,
textarea#input_permalink,
textarea#input_big.content
{
height:70px;
background:#FFF !important;
color:#000 !important;
font-size:19px;
wrap:soft;
filter: alpha(opacity=80) !important;opacity: 0.8 !important;
border-top: 1px solid #ccc !important;
border-left: 1px solid #ccc !important;
border-right: 1px solid #999 !important;
border-bottom: 1px solid #999 !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

/*搜尋面板文字輸入區***/
input#current_query
{
height:30px;
background:#FFF !important;
color:#000 !important;
font-size:19px;
wrap:soft;
filter: alpha(opacity=80) !important;opacity: 0.8 !important;
border-top: 1px solid #ccc !important;
border-left: 1px solid #ccc !important;
border-right: 1px solid #999 !important;
border-bottom: 1px solid #999 !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

/*每則噗回應發噗區***/
td.td_cnt textarea,
textarea#input_small
{
height:70px;
background:#FFF !important;
color:#000 !important;
font-size:11.5px !important;
line-height:160%;
letter-spacing:0.08em;
filter: alpha(opacity=80) !important;opacity: 0.8 !important;
border-top: 1px solid #ccc !important;
border-left: 1px solid #ccc !important;
border-right: 1px solid #999 !important;
border-bottom: 1px solid #999 !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

/*+私密plurk 語系與選項--------------------------------------------------*/
#more_options,
#more_options .on,
#more_options_link /*按鈕*/
{
background:none !important;
border:0 !important;
color:#555 !important;
font-size:12px !important;
}
#more_options_holder /*打開後*/
{
background:none !important;
color:#333 !important;
border:0 !important;
}
#more_options td {background: none;} /*標題*/
#more_options .caption {font-weight: bold;}
#more_options .caption select {border:1px solid #fff !important;} /*語言選單表格*/

/*++++++++++++++++++++各區設定++++++++++++++++++++++*/

/*+頁首頁尾--------------------------------------------------*/

/*去除小圖底線***/
#top_bar .on img {border: none;}

/*標題***/
#page_title
{
color:#FFF;
font-size:15px;
margin-top:2px;
}

/*通知數字***/
#alert_beacon
{
color:#eee;
margin:0 2px;
font-weight:bold; /*粗體*/
}

/*編輯文字***/
#top_bar .content a#edit_link {font-size:10px;background:none !important;}
#top_bar .content a:hover#edit_link {background:none !important;}

/*頁首左邊文字***/
#top_bar, #top_bar a
{
color:#eee !important;
font-size:11px;
}
#top_bar a:hover
{
color:#fff !important;
border:0 !important;
}

/*頁首右邊文字***/
#top_login, #top_login a {color:#eee !important;font-size:11px;}
#top_login a:hover {color:#fff !important;}

/*頁尾文字***/
#footer,
#footer a
{
color:#eee !important;
font-size:11px;
border:0 !important;
text-decoration:none !important;
font-weight:normal !important;
}
#footer a:hover
{
color:#fff !important;
border:0 !important;
text-decoration:none !important;
}

/*語言選單***/
#languge_selector
{
color:#eee;
font-size:11px;
font-weight:normal !important;
}

/*隱藏 找噗友聊天 按鈕***/
#chat_button {
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
z-index: -1;
height:0 !important;
width:0 !important;
overflow:hidden;
}

/*+時間顯示--------------------------------------------------*/

/*日軸***/
#timeline_bg .day_bg .div_inner /*底*/
{
background:#eee;
border-left:0px solid #ccc;
border-right:0px solid #ccc;
width: 21px;
height: 10px;
-moz-border-radius:0px 0px 5px 5px; /*圓角*/
-webkit-border-radius:0px 0px 5px 5px;
border-radius:0px 0px 5px 5px;
}

.day_start .bottom_start, .day_start .div_start /*字*/
{
color:#666 !important;
font-size: 10px !important;
margin-top:-11px;
margin-left:21px;
}

/*時軸***/
#bottom_line /*底*/
{
background:none !important;
border-top:0px solid #ccc ;
border-bottom:0px;
height:22px;
}

#timeline_bg .bottom_start , .bottom_end /*字*/
{
font-size:11px;
color:#999;
}

/*每則噗的對應時間:線上***/
#time_show {padding:0; margin:0;}
#time_show span
{
background:#eee;
border:0px solid #ccc;
border-bottom:0px dotted #ccc !important;
margin: -5px;
padding:1px 2px !important;
color: #666;
font-family: "微軟正黑體", Arial !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

/*+所有的Plurk 我的Plurk--------------------------------------------------*/
#filter_tab /*所有標籤*/
#filter_tab a.off_tab /*未選標籤*/
#filter_tab a.off_tab:hover
#filter_tab a.filter_selected /*正選(使用中)標籤*/
#filter_tab a.filter_selected:hover
.unread_generic /*未讀數字*/
#filter_tab a.filter_selected .unread_generic /*正選未讀數字*/

/*+更新通知 音樂播放器--------------------------------------------------*/
#updater, #music_player
{
background:#eee repeat;
border-color:#ccc !important;
color: #555 !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-size:12px !important;
}
#updater .text /*則數*/
{
color:#555
font-size:12px !important;
}
#updater a, #music_player a /*更新 檢視*/
{
color:#90c2cb !important;
font-size:12px !important;
}
#updater a:hover, #music_player a:hover /*滑鼠移至效果*/
{
color:#afcfe4 !important;
}

/*+時間軸主題---------------------------------------------------*/

/*這條時間軸是空白的 檢視所有的噗***/
#empty_timeline_bg {color:#ccc;text-transform: normal;font-size:0px; }
#empty_timeline_fg {color:#222;}
#empty_timeline_fg a {color:#444;}
#empty_timeline_fg a:hover {color:#111;text-transform: normal;}


/*更換 更新通知音效 按鈕: 彩色 ***/
.cmp_sound_off
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/black/volume_mute_12x9.png) 0 no-repeat;
width:16px;font-size:1px;height:16px;
background-position: 40% 40%; /*x軸40% y軸40%的地方固定*/
}
.cmp_sound_on
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/black/volume_12x9.png) 0 no-repeat;
width:16px;font-size:1px;height:16px;
background-position: 40% 40%; /*x軸40% y軸40%的地方固定*/
}

/*更換 往前往後 按鈕: 彩色***/
.cmp_arrow_right
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/arrow_right_alt1_32x32.png);
width:32px;height:32px;
margin:0;
}
.cmp_arrow_left
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/arrow_left_alt1_32x32.png);
width:32px;height:32px;
margin:0;
}
.cmp_back_to_today
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/first_16x16.png);
width:16px;height:16px;
margin-left:10px;
margin-top:10px;
}

/*更換 loading圖***/
/* 取代載入回噗的彈跳P */
.loading > img {
background: url(https://akira.eu.org/Zero-Memo/img/cat-loading-s.gif) no-repeat;
background-size: 90px;
width: 90px;
height: 90px;
padding-left: 90px;
margin-top: 17px;
}


/*+發噗區主題---------------------------------------------------*/

/*使用者名稱***/
#main_poster .qual_holder {color:#555;font-size:24px;}

/*語助詞***/
.q_says,.q_is /*說*/
{
background:#777;
color:#eee;
border:0 !important;
}
.qualifier, .m_qualifier, .r_qualifier /*所有*/
{
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border:0 !important;
}

.qual_menu .on /*滑鼠移至效果*/
{
background:#111 !important;
color:#fff !important;
}

/*尚餘字數***/
.char_updater {color:#444 !important;} /*尚餘字數*/
.char_highlight {color:#111 !important;background:none !important;} /*超過字數*/

/*每日照片文字***/
#pane_daily_photo a {color:#555 !important;font-size:15px!important;}
#pane_daily_photo a:hover {color:#222 !important;}

/*搜尋區文字***/
#pane_search {color:#555 !important;}
#pane_search a {color:#222 !important;}

/*搜尋趨勢標題***/
.hot_searches a {color:#444 !important;}
.hot_searches a:hover {color:#555 !important;}

/*分享搜尋結果***/
.share_search b {color:#444 !important;} /*標題*/
input#share_link
{
background:none !important;
color:#555555 !important;
border-color:#333333 !important;
}
#pane_search a:hover {color:#888 !important;}


/*更換 發噗按鈕***/
img[src="http://static.plurk.com/button/plurk.png"] /*隱藏原PLURK按鈕*/
{
filter:alpha(opacity=0);
-moz-opacity:.0;
opacity:.0;
}
.cmp_plurk /*換手寫體*/
{
background:#777 url('http://i614.photobucket.com/albums/tt230/m66660000/plurk/o.png');
-khtml-border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}

/*更改 搜尋面板按鈕***/
input.orange-but
{
background:#777!important;
border:1px solid #777 !important;
color:#FFF !important;
text-shadow:0px 0px 0px #ccc !important; /*陰影*/
-moz-box-shadow:0 0px 0 #000 !important;
-webkit-box-shadow:0 0px 0 #000 !important;
box-shadow:0 0px 0 #000 !important;
cursor:pointer;
font-size:13px;
padding:2px 4px;
vertical-align:middle;
width:auto;
}

/*表情選單列表***/
#emoticons_show /*圖片背景*/
{
background:#fff;
border-right:1px solid #fff;
border-bottom:1px solid #fff;
}
#emoticon_selecter /*選單背景*/
{
text-align:center;
position:absolute;
background:#eee !important;
border:1px solid #eee !important;
width:500px !important;
overflow:no;
-khtml-border-radius:5px !important;
-moz-border-radius: 5px !important;
-webkit-border-radius: 5px !important;
}
#emoticon_selecter img {border:1px solid #fff !important; }
#emoticon_selecter a:hover img {border:1px dotted #555 !important;}
#emoticons_tabs ul li a, /*項目 所有*/
#emoticons_tabs ul li
{
background:#eee !important;
color:#444 !important;
font-size:12px;
font-weight: regular;
text-transform:normal;
margin-left:0px;
border:0!important;
padding:3px 5px;
filter:alpha(opacity=98);opacity:0.98; /*透明度*/
}
#emoticons_tabs ul li.current /*項目 正選*/
{
background:#eee !important;
border:0;
border-bottom:2px dotted #555 !important;
font-weight:bold;
}

/*+主控台主題---------------------------------------------------*/
#plurk-dashboard
{
color:#666 !important;
font-size: 12px;
line-height:160%;
}
#plurk-dashboard a,
#plurk-dashboard a:link,
#plurk-dashboard a:visited,
#plurk-dashboard a:active
{
color:#90c2cb !important;
font-weight:normal !important;
text-decoration:none !important;
}
#plurk-dashboard a:hover
{
color:#afcfe4 !important;
font-weight:normal !important;
text-decoration:none !important;
}

/*個人圖像***/
#profile_pic {width:100px;border:2px solid #fff !important;}
#profile_pic:hover {width:auto;}

/*個人資料***/
#full_name
{
color:#222 !important;
font-size:17px !important;
}

/*統計 朋友 粉絲***/
#dash-stats, #dash-friends , #dash-fans
{
text-align:center;
font-size: 11px;
}
#dash-stats h2, #dash-fans h2, #dash-friends h2 /*標題*/
{
background:none !important;
border:0 !important;
color:#222 !important;
}
div #fan_holder .friend_holder /*粉絲區連結*/
{
color:#888 !important;
}

/*統計資料***/
#dash-stats table {margin-top:0;}
#dash-stats table,
#dash-stats, /*項目*/
#dash-stats table td /*數值*/
{
color:#888 !important;
font-size:11px !important;
}

/*卡馬***/
#karma {color:#ffce3b;font-size:24px;}
.karma_hover {color:#ccc;font-size:20px;}
.karma_arrow {filter:alpha(opacity=0); -moz-opacity:0; opacity:0;}
.cmp_karma_up,.cmp_karma_down
{
background:transparent url(/static/icons/icons_png.png) 0 -28px no-repeat;
width:0px;
height:0px;
margin-top: 0px;
}
.link_arrow,.cmp_points-arrow
{
height:0 !important;
font-size:0 !important;
position:absolute;
opacity:0 !important;
filter:alpha(opacity=0) !important;
zoom=1;
}
.cmp_karma_up {filter:alpha(opacity=0)!important; opacity:0!important;}
.cmp_karma_down {filter:alpha(opacity=0)!important; opacity:0!important;}
a.link_arrow {filter:alpha(opacity=0)!important; opacity:0!important;}
a.link_arrow line_badges {filter:alpha(opacity=0)!important; opacity:0!important;}

#dash-stats h3 /*卡馬背景*/
{
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background: #999 repeat-x bottom right !important;
border:1px solid #ccc;
font-weight: bolder;
margin-left:0;
text-align:center;
}

/*更改 小徽章排列方式: 緊密排排站***/
.award_bar
{
width:200px !important;
height:50px !important;
}
.award_bar div
{
padding:0 !important;
margin:0 !important;
}

/*朋友粉絲圖像***/
.friend_holder table {margin-top:0px;margin-left:auto;margin-right:auto;}
.friend_holder td {padding:2px 3px 2px;}
.friend_holder .user_link {
height:24px!important;width:24px!important;
border:0 !important;
}
.friend_holder img {width:24px;height:24px;}

/*隱藏 朋友搜尋,入門說明,邀請朋友,分享連結,社交小圖示***/
#dash-friends p, #dash-friends form,
div #tw_help,
div a#dashboard-invite,
div #sharePlurk,
.dash-icon
{
filter:alpha(opacity=0) !important;
-moz-opacity:0 !important;
opacity: 0 !important;
height:0 !important;
width:0 !important;
overflow:hidden;
}

/*更改 朋友粉絲與發送私密噗按鈕***/
.friend_man.add_follow,
.friend_man.remove,
.friend_man.add_friend,
.friend_man.pending,
.friend_man.block,
.friend_man.private_plurk
{
background:#336774 !important;
border-top: 1px solid #ccc;
border-left: 1px solid #ccc;
border-right: 1px solid #999;
border-bottom: 1px solid #999;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}

/*++++++++++++++++++++每一則噗++++++++++++++++++++++*/
/*+浪上的噗:未打開前---------------------------------------------------*/
.plurk_cnt
{
background:#FFF !important;
font-size:12.5px;
font-family:"微軟正黑體", Arial !important;
line-height: 1.6em;
letter-spacing:0.08em;
padding:2px;
-khtml-border-radius: 0px 0px 6px 6px; /*圓角*/
-moz-border-radius: 0px 0px 6px 6px;
-webkit-border-radius: 0px 0px 6px 6px;
border-top: 0px solid #ccc; /*框線*/
border-left: 0px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}

/*噗文字***/
.td_cnt .text_holder,
#timeline_holder table td,
#timeline_holder .plurk_cnt
{
color:#666 !important;
font-family:"微軟正黑體", Arial !important;
}

/*噗整體底色***/
#timeline_holder .plurk_cnt,
.plurk_cnt,
.plurk_box .list,
.list .plurk_cnt,
.list .plurk_cnt tr,
.plurk_box .mini_form,
td.td_cnt texture,
textarea#input_small
{
background:#FFF !important;
}

/*噗上的連結***/
.plurk a.ex_link,
.plurk a.ex_link:visited,
.plurk a.ex_link:active
{
color:#90c2cb !important;
font-weight:bold !important;
text-decoration:none;
}

.plurk a.ex_link:hover /*滑鼠移至效果*/
{
color:#afcfe4 !important;
text-decoration:none;
font-weight:bold;
}

/*噗上的人名***/


/*刪除編輯消音取消***/
.manager,
.manager a,
.manager .action,
.manager .cancel,
.manager .delete,
.unmute,
.mute
{
font-size:10px !important;
color:#888 !important;
}

/*+浪上的噗:影音圖片--------------------------------------------------*/
.youtube img,.pictureservices img {border:none;}
.youtube:hover img,.pictureservices:hover img {border:1px solid #ccc;}
.video:hover img,.pictureservices:hover img {border:1px solid #ccc;}

/*+浪上的噗:回應數--------------------------------------------------*/
.td_response_count {padding-top:0px;} /*對齊*/
.response_count
{
background:#eee repeat !important;
color:#222 !important;
-moz-border-radius: 0px 5px 5px 0px;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 0px;
-webkit-border-top-left-radius: 0px;
padding-left: 4px;
padding-right: 5px;
padding-bottom: 2.7px;
padding-top: 2.7px;
margin-top: 5px;
margin-left: 0px;
}

.new .response_count /*新回應*/
{
background:#afcfe4 !important;
color:#fff !important;
}
.dots .inner /*中間的...*/
{
background:none;
border:none;
height:0;
width:0;
padding:0;
font-size:0px;
}

/*+浪上的噗:打開後--------------------------------------------------*/

/*回應列表***/
.list table /*寬度*/
{
width:98% !important;
margin-top:2px;
}

/*回應列表框線***/
.plurk_box .list
{
border-top: 0px solid #444; /*框線*/
border-left: 0px solid #444;
border-right: 1px solid #ccc;
border-bottom: 0px solid #444;
}
.plurk_box .mini_form
{
background:#eee repeat !important;
border-top: 0px solid #444; /*框線*/
border-left: 0px solid #444;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.info_box
{
background:#eee repeat !important;
border-top: 0px solid #444; /*框線*/
border-left: 0px solid #444;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}

/*回應列表標題***/
.plurk_box .caption
{
background:#eee;
color:#999 !important;
font-size:11px;
letter-spacing:0.09em;
text-align:center !important;
border-top: 1px solid #ccc; /*框線*/
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
-moz-border-radius:5px 5px 5px 5px;
-khtml-border-radius:5px 5px 5px 5px;
-webkit-border-radius:5px 5px 5px 5px;
}

/*回應列表展開***/
.list .plurk_cnt
{
border:0 !important;
border-bottom:1px solid #ccc !important;
font-size:12px !important;
font-family: Arial !important;
}

/*原噗者的回應***/
.list .highlight_owner .td_cnt {background:#f4f4f4;} /*背景色*/

/*尚無回應 來搶第一個吧 : )***/
.list .empty
{
color:#999 !important;
}

/*+回應時間標示--------------------------------------------------*/
div.response_time .holder
{
color:#888;
font-size:10px;
letter-spacing:0.04em;
background:#FFF !important;
-khtml-border-radius: 0px 0px 6px 6px; /*圓角*/
-moz-border-radius: 0px 0px 6px 6px;
-webkit-border-radius: 0px 0px 6px 6px;
}
.response_time.plurk_cnt {padding:0 !important;}

/*++++++++++++++++++++單噗頁面++++++++++++++++++++++*/

/*+浪上的噗:主噗文--------------------------------------------------*/
.user-nick {color: #444 !important;} /*使用者名稱*/
.user-nick:hover {color:#444 !important;}
div.bigplurk h1.content .plurk_content {color:#666 !important;} /*文字內容*/
div.bigplurk h1.content a.ex_link {color:#90c2cb !important; } /*連結顏色*/
div.bigplurk h1.content a.ex_link:hover {color:#afcfe4 !important;}

/*噗內容***/
div.contentwrapper h1.content
{
background:#fff repeat !important;
border-top: 0px solid #ccc !important; /*框線*/
border-left: 0px solid #ccc !important;
border-right: 1px solid #ccc !important;
border-bottom: 0px solid #ccc !important;
-moz-border-radius:6px 6px 0px 0px;
-webkit-border-radius:6px 6px 0px 0px;
-khtml-border-radius:6px 6px 0px 0px;
}
div.time
{
background:#fff repeat !important;
border-top: 0px solid #ccc !important; /*框線*/
border-left: 0px solid #ccc !important;
border-right: 1px solid #ccc!important;
border-bottom: 1px solid #ccc !important;
-moz-border-radius:0px 0px 6px 6px;
-webkit-border-radius:0px 0px 6px 6px;
-khtml-border-radius: 0px 0px 6px 6px;
}

/*噗主代表圖***/
img.bubble_edge {filter:alpha(opacity=0)!important;opacity:0!important;} /*箭頭*/
div.user img
{
padding:0px;
background:none !important;
border:0 !important;
}

/*+上一則 下一則訊息--------------------------------------------------*/
#plurk_nav a:link, #plurk_nav a:visited, #plurk_nav a:active {color:#90c2cb !important;}
#plurk_nav a:hover {color:#afcfe4 !important;}
#prev_plurk, #next_plurk
{
background:#fff repeat !important;
-khtml-border-radius: 0px 0px 6px 6px; /*圓角*/
-moz-border-radius: 0px 0px 6px 6px;
-webkit-border-radius: 0px 0px 6px 6px;
border-top: 0px solid #ccc; /*框線*/
border-left: 0px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}

/*+回應列表--------------------------------------------------*/
#plurk_responses h2 {color:#666;font-size:18px;} /*標題*/
div #plurk_responses h2 a {color:#555 !important;font-size:18px;}
div #plurk_responses h2 a:hover {color:#666 !important;font-size:18px;}
.stbuttontext {color:#777 !important;} /*ShareThis連結*/
.stbuttontext:hover {color:#555 !important;}

#plurk_responses
{
background:#eee;
border-top:1px solid #ccc;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
border-bottom:1px solid #ccc;
-khtml-border-radius: 22px;
-moz-border-radius: 22px;
-webkit-border-radius: 22px;
padding:20px;
}

/*個人暱稱***/
.user {color:#333 !important;}
.user:hover {color:#333 !important;}

/*連結***/
.plurk_content a.ex_link {color:#90c2cb !important;}
.plurk_content a.ex_link:hover {color:#afcfe4 !important;}

/*回應內容***/
.message
{
background:none !important;
border-top: 0px solid #ccc !important; /*框線*/
border-left: 0px solid #ccc !important;
border-right: 0px solid #ccc !important;
border-bottom: 1px solid #ccc !important;
}
ul.responses .message a {line-height:18px;padding:2px;}

/*每則噗時間***/
ul.responses li:hover span.time {color:#777;text-transform: normal;}

/*原噗者背景***/
.highlight_owner .plurk_content {background:#f4f4f4 !important;}

/*噗友代表圖***/
img.avatar
{
border:0 !important;
background:none !important;
}

/*+輸入訊息區--------------------------------------------------*/
#reply #reply_box
{
background:none;
border:0 !important;
}
div#reply_box_holder .plurkaction {border:0 !important;}

/*使用者名稱***/
#reply_box_holder .qual_holder {color:#555555 !important;font-size: 21px;}

/*輸入內容***/
#reply_box #input_big
{
font-size:19px;
}

/*登入或註冊以回應***/
div #not_logged_in h2 {color:#666 !important;background:none !important;}
div #not_logged_in h2 a {background:none !important;color:#666 !important;}
div #not_logged_in h2 a:hover {color: #333 !important;}

/*++++++++++++++++++++視窗設定++++++++++++++++++++++*/

/*+浪上噗友小視窗--------------------------------------------------*/
.AmiMenu.info_menu,
.AmiMenu.info_menu td.on,
.AmiMenu.info_menu .user_info.on,
.AmiMenu.info_menu .separator
{
background:#999 !important;
border:0 !important;
}
.AmiMenu.info_menu .block /*封鎖使用者*/
{
background:#666 !important;
border:0 !important;
}

/*下拉視窗箭頭***/
.cmp_tooltips-down
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/plurk/up_down/grey_down.png);
}
.cmp_tooltips-up
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/plurk/up_down/grey_up.png);
}

/*+說明小視窗--------------------------------------------------*/
.tooltip_cnt
{
background:#333;
color: #eee !important;
filter:alpha(opacity=80);opacity:0.8; /*透明度*/
border-top: 0px solid #ccc!important; /*框線*/
border-left: 0px solid #ccc !important;
border-right: 1px solid #444 !important;
border-bottom: 1px solid #444 !important;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.tooltip_cnt img {border:0 !important;} /*噗友代表圖*/
.AmiTT_main {background:none !important; border:0 !important;} /*背景箭頭*/

/*++++++++++++++++++++其他設定++++++++++++++++++++++*/

/*小徽章透明度變化***/
.award_bar img {filter:alpha(opacity=40) !important;opacity: 0.4 !important;}
.award_bar img:hover {filter:alpha(opacity=100) !important;opacity:1 !important;}

/***註冊使用BAR***/
#validate_email,
#sign_up_small,
#registerToday,
.plurk_box .login_to_see a,
.red_link,
.plurk_box .login_to_see
{
background:#eee repeat !important;
color:#222 !important;
border-top: 0px solid #444; /*框線*/
border-left: 0px solid #444;
border-right: 1px solid #ccc;
border-bottom: 0px solid #ccc;
}
#top_login a#sign_up
{
background:none !important;
color:#ccc !important;
border:0;
}



#plurk_ads
{
max-height:0px !important;max-width:0px !important;
background:rgba(255,255,255,0.9) !important;
border-bottom:1px dotted #eee !important;
border-top:1px dotted #eee !important;
font-size:11px !important;
color:#fff !important;
border-radius:3px;
-moz-transform: scale(0);
-khtml-transform: scale(0);
-webkit-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
}
#form_holder .caption {z-index:9999;position:relative;}

/*分享與表情選項圖片*/


/*同步訊息視窗*/
#sync_checked_form
{
font-size:12px !important;
color:#333;
width:240px;
background:#e1e1e1;
border-color:#ddd !important;
top:-60px !important;
border-radius:2px;
}
#sync_checked_ul a {color:#333;}
.upper_arrow {filter:alpha(opacity=0) !important; opacity:0 !important; zoom:1;}

/*私訊圖示*/


/*轉噗圖示*/

/*說讚圖示*/
img[src="http://statics.plurk.com/ffdca9715cfcd8ea7adc140c1f9d37df.png"]
{filter:alpha(opacity=0); opacity:0; zoom:1;}
.favorite_icon
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/star.png) no-repeat 0 0;
}

/*單一噗頁面連結*/
.perma_link
{
margin-left:5px;
padding-left:19px;
background:url(http://i614.photobucket.com/albums/tt230/m66660000/icon/arrow/arrow10_gray2.gif) no-repeat 3px 6px;
}
.perma_link a,
.perma_link a:hover
{
text-decoration:none !important;
}

/*刪除與回覆回應圖示*/
.reply_to
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_dark/comment_stroke_12x11.png) no-repeat scroll 1px 2px;
}
.reply_to:hover
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/comment_stroke_12x11.png) no-repeat scroll 1px 2px;
}
.del_icon
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_dark/x_7x7.png) no-repeat scroll 5px 4px;
}
.del_icon:hover
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/x_7x7.png) no-repeat scroll 5px 4px;
}
div.response_time .holder a {color:#90c2cb !important;}

/*紅背景更正*/
.unread #alert_beacon, .unread_generic
{
background-color:#444;
color:#fff !important;
border-radius:3px;
}

/*無回應 : )*/
.list .empty
{
background:url(http://i614.photobucket.com/albums/tt230/m66660000/icon/icon1/16/uc-level-3-user-goal.png) no-repeat 50% 0px transparent;
height:32px;
color:#fff !important;
margin:20px 0 0 0;
padding:30px 0 0 0;
text-indent:-9999px;
}

/*單則噗連結*/
#plurk_responses ul.responses .message a.user {color:#111 !important;}
#plurk_responses ul.responses .message a {color:#90c2cb !important;}

/*單則噗廣告隱藏*/
div .adsense { display : none; height:0 !important; width:0 !important; }

/*分享人數圖片隱藏*/
#replurkers_holder { display : none; height:0 !important; width:0 !important; }

/*單則訊息連結頁去背景更正*/
div#plurk_responses h2 a,
#plurk_responses div.feed-link a,
#plurk_responses ul.responses,
#plurk_responses ul.responses .message,
#reply_box, #reply_box_holder
{
background:none !important;
border:0 !important;
}

/*隱藏已消音的噗*/
div.muted { opacity: 0.2 !important; zoom: 1; transition: opacity 1.5s ease;}
div.muted:hover { opacity: 1 !important; zoom: 1; transition: opacity 1.5s ease;}

/*----------河道瀏覽前後箭頭----------*/

/*更換往前往後按鈕*/
.cmp_arrow_right
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/arrow_right_alt1_32x32.png);
width:32px; height:32px;
}
.cmp_arrow_left
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/arrow_left_alt1_32x32.png);
width:32px; height:32px;
}

/*透明度變化*/
.cmp_arrow_right,
.cmp_arrow_left,
.cmp_back_to_today
{
opacity: 0.1; zoom:1;
transition: opacity 1.5s ease;
}
.cmp_arrow_right:hover,
.cmp_arrow_left:hover,
.cmp_back_to_today:hover
{
opacity: 0.9; zoom:1;
transition: opacity 1.5s ease;
}
.browse_button .cmp_arrow_right:before,
.browse_button .cmp_arrow_left:before,
.browse_button .cmp_back_to_today:before
{ opacity: 0 !important; }

div.cmp_back_to_today.pif-arrow-left, /*左方回到最前*/
div.cmp_back_to_today.pif-arrow-right /*右方回到最前*/
{
font-size: 10px !important;
color:#898989 !important;
background: none !important;
margin-left: -10px !important;
}
div.cmp_back_to_today.pif-arrow-left::before,
div.cmp_back_to_today.pif-arrow-right::before
{
font-size: 10px !important;
color: #bbb !important;
}

/*河道上大頭貼改圓角的方式*/
.p_img{border-bottom:none;}
.p_img img {border-radius:10px;}
/*6px數值可以自己換,若寫50%即是圓形*/

/****◆ 噗浪訊息區塊加圓角的方法◆****/
/*噗首*/ .timeline-cnt .plurk_cnt {
/*圓角*/ border-radius:15px; /*數字越大越圓,可調整*/}

.plurk_box, .response_box, .plurkForm, .mini_form, #resp_banner_ads {
border-radius:15px;
}

/*一般游標*/
*, body, a, a:hover {
cursor: url(https://images.plurk.com/6YIF468yshPEpBVq4BagjA.gif), auto;
}

/*連結游標*/
a:hover, {
cursor: url(https://images.plurk.com/6YIF468yshPEpBVq4BagjA.gif), auto;
}

/*按鈕的未讀數量背景色*/
.unread #alert_beacon, .unread_generic{background:#5680b3;}

/* 從[偵探的甜甜圈投餵噗寶] 修改 原噗https://www.plurk.com/p/oh1etq */
/* 貓貓提供https://www.plurk.com/p/oh7fhn */
/* 建議先ctrl+F找出前佈景裡把有用到#dynamic_logo和#creature相關的語法都刪掉 */

/* 待機圖片 */

#dynamic_logo{
width:144px; /* 圖片寬度 */
height:120px; /* 圖片高度 */
background:url(https://images.plurk.com/3rWlSWfsEiJrszBT9VgSza.gif) no-repeat; /* 圖片網址 */
cursor:url(https://images.plurk.com/1lXzW3PzKLVrWmpM7C0iJp.png), auto; /* 游標圖片,尺寸限制128x128內,超過尺寸不會顯示 */
/* filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.3)); 陰影 */
overflow: hidden;
z-index:1000;
background-size:contain;
position: fixed; /* 固定位置在視窗右下 */
bottom: 10px;
right: 10px;
}


/* 滑鼠移上來換圖片 */

#dynamic_logo::after{
content:"";
background:url(https://images.plurk.com/gG02UGSpIhnHdIidTrgnI.gif) no-repeat; /* 圖片網址 */
width:144px; /* 圖片寬度 */
height:120px; /* 圖片高度 */
display:none;
background-size:contain;
}

#dynamic_logo:hover{
background:url();
}

#dynamic_logo:hover::after{
display:block;
}


/* 滑鼠點擊換圖片 */
/* 以下兩個圖片網址需相同 */

img#creature{
width:144px; /* 圖片寬度 */
height:120px; /* 圖片高度 */
display:none;
}

#dynamic_logo:active>img#creature{
display:block;
background:url(https://images.plurk.com/3VRckEEqBKehwJjI8pynWF.gif) no-repeat; /* 圖片網址 */
padding-right:144px; /* 需同圖片寬度 */
background-size:contain;
}

img#creature:hover{
display:block;
background:url(https://images.plurk.com/3VRckEEqBKehwJjI8pynWF.gif) no-repeat; /* 圖片網址同上 */
padding-right:144px; /* 需同圖片寬度 */
cursor:url(https://images.plurk.com/3SQ6jzFptcsNTfczSSvMol.png), auto; /* 點擊後游標圖片,尺寸限制128x128內,超過尺寸不會顯示 */
background-size:contain;
}

/*噗幣旁圖案*/
#dash-profile {
background: url(https://i.imgur.com/YEYQAe2.gif) no-repeat;

background-position: 90% bottom;

}

/*自訂橫條背景色*/
' {}:not(*)/* { */,/* } */
#top_bar .bar-color {
background: rgba(0, 0, 0, 0);
}
' {}

/*喜歡按鈕(未點選狀態)*/
._lc_ .manager .like-off{
content: url(https://images.plurk.com/5kGT4MKeyOCT5TdHdT9Qgj.gif);
}
/*喜歡按鈕(滑鼠移至)*/
._lc_ .manager .like-off:hover{
content: url(https://images.plurk.com/41ePh3sPWorMc81A1KmIlS.gif);
}
/*喜歡按鈕(已點選狀態)*/
._lc_ .manager .like-on{
content: url(https://images.plurk.com/41ePh3sPWorMc81A1KmIlS.gif);
}

/*轉噗按鈕(未點選狀態)*/
._lc_ .manager .replurk-off{
content: url(https://images.plurk.com/3fHUMFKrYL13rYFsmZnQ1y.gif );
}
/*轉噗按鈕(滑鼠移至)*/
._lc_ .manager .replurk-off:hover{
content: url(https://images.plurk.com/QY08XxM8BmtG58vOwREcD.gif);
}
/*轉噗按鈕(已點選狀態)*/
._lc_ .manager .replurk-on{
content: url(https://images.plurk.com/QY08XxM8BmtG58vOwREcD.gif );
}

/*消音按鈕(未點選狀態)*/
._lc_ .manager .mute-off{
content: url(https://images.plurk.com/6xqhw9JPdsR7IpgfRWslNV.gif);
}
/*消音按鈕(滑鼠移至)*/
._lc_ .manager .mute-off:hover{
content: url(https://images.plurk.com/4wnAuASYdHFGVaC1NP2hsP.gif );
}
/*消音按鈕(已點選狀態)*/
._lc_ .manager .mute-on{
content: url(https://images.plurk.com/4wnAuASYdHFGVaC1NP2hsP.gif );
}

/*書籤按鈕(未點選狀態)*/
._lc_ .manager .mark-off{
content: url(https://images.plurk.com/759sJh5ZC0tiiu5DVHx9hI.gif);
}
/*書籤按鈕(滑鼠移至)*/
._lc_ .manager .mark-off:hover{
content: url(https://images.plurk.com/2I9ZZx5NUzAIZRzyT5UhHK.gif );
}
/*書籤按鈕(已點選狀態)*/
._lc_ .manager .mark-on{
content: url(https://images.plurk.com/2I9ZZx5NUzAIZRzyT5UhHK.gif );
}

/*噗幣按鈕*/
._lc_ .manager >a.gift{
content: url(https://images.plurk.com/31skeTTkzPIziavrewTpds.gif );
}
/*噗幣按鈕(滑鼠移至)*/
._lc_ .manager >a.gift:hover{
content: url(https://images.plurk.com/31skeTTkzPIziavrewTpds.gif );
}

/*發噗按鈕背景色*/
.submit_img_color {background: #fdc23e;}

/*//=====時間軸=====//*/

/*時間軸圖案*/
.timeline-bg {
background-image:url(https://images.plurk.com/7qahiSwQhev0A9LsXYlcCM.png); /*自行貼上網址*/
background-repeat:repeat-x;
background-position:bottom;}

/*時間軸線透明度*/
.div_bottom{filter:alpha(opacity=0.00); opacity: 0.00; zoom:1;} /*時間小區塊*/ /*opacity為透明度 0.00即消失*/
#bottom_line {opacity: 0.5;} /*直線*/ /*opacity為透明度 0.00即消失*/

/*更改已無未讀訊息之提示文字*/
#empty_timeline_fg span { color:#4F4F4F; } /*上排文字顏色*/
#empty_timeline_fg span a {display: none;} /*隱藏下排預設文字*/
#empty_timeline_fg span:after {
content: 'Face the Fear, Build the Future.'; /*想要的文字*/
color:#fc3a3a;} /*下排文字顏色*/

/****◆ 主控台的好友圖改圓角◆****/
.friend_holder img{border-radius:6px;}

/*自介區塊噗寶*/
#dash-additional-info:after {
/*這裡勿動*/ position: absolute;
/*圖片*/ content: url(https://images.plurk.com/2NkQU5QsIqaUXszY7VyZVt.png);
/*左右位置*/ right: 0px; /*right可改left*/
/*上下位置*/ bottom: 0px; /*bottom可改top*/
}

/*噗上風鈴*/

.cboxAnchor[data-type="plurk"]>table{
position: relative;
}

.cboxAnchor[data-type="plurk"]>table::before{
content:"";
color:red;
position: absolute;
width:27px;
height:58px;
right: 00px;
top:20px;
background-image:url(https://images.plurk.com/1oShAHxVgYftzaof5u9Uhj.gif ); /*可替換圖片*/
z-index:100;
background-size:contain;
background-repeat: no-repeat;
}

/*好友區塊噗寶*/
#dash-friends:after {
/*這裡勿動*/ position: absolute;
/*圖片*/ content: url(https://emos.plurk.com/cc36d6d40c1cc30b0132c38bd3e1b93a_w28_h27.gif);
/*左右位置*/ right: 0px; /*right可改left*/
/*上下位置*/ bottom: 0px; /*bottom可改top*/
}

/*粉絲區塊噗寶*/
#dash-fans:after {
/*這裡勿動*/ position: absolute;
/*圖片*/ content: url(https://emos.plurk.com/33958b8f02a3d8cff23a209e3885370d_w28_h27.gif);
/*左右位置*/ right: 0px; /*right可改left*/
/*上下位置*/ bottom: 0px; /*bottom可改top*/
}

/*小圖示標示噗主*/
.list .highlight_owner .plurk_cnt, .list
.highlight_owner {
background-image: url(https://images.plurk.com/6tUkewaE7GprrMvrbWC08u.png)!important;/*圖片網址*/
background-repeat: no-repeat !important;/*使圖片不重複,刪除會撲滿*/
background-position: right bottom;/*把圖放在右下角*/
border-radius: 5px;/*設定圓角*/
}

/*回應數樣式*/
.response_count {
/*這裡勿動*/ padding:var(--padding_tb) var(--padding_lr); line-height:1em;
/*這裡勿動*/ position:relative; padding-right:calc(var(--padding_lr) + var(--notches_size));
/*這裡勿動*/ clip-path:polygon(0 0, 100% 0, calc(100% - var(--notches_size)) 50%, 100% 100%, 0 100%);
/*計數標籤上下位置*/ top:0px;
/*計數標籤左右位置*/ left:5px;
/*數字大小*/ font-size:12px;
/*計數標籤顏色*/ background:#6abdc8;
/*三角形缺口的寬度*/ --notches_size:12px;
/*數字左右的空間寬度*/ --padding_lr:6px;
/*數字上下的空間寬度*/ --padding_tb:6px;
}
.td_response_count {
/*計數標籤陰影*/ filter:drop-shadow(0 2px 0 #0003);
}

/*滾軸*/
::-webkit-scrollbar-thumb {
background:#afcfe4 !important; /*滾軸顏色*/
border-radius: 6px !important;/*圓角*/
}

::-webkit-scrollbar-thumb:hover {
background: #fff;
}

::-webkit-scrollbar
{
width:8px;/*大小*/
background:#f4f4f4 !important; /*背條顏色*/
border-radius: 7px !important;
}

/*頭貼離邊界距離+圓角*/
.plurk .p_img { margin: 5px; }

/*個人資料區整體*/
.dash-segment-profile .segment-content {
background-color: rgba(255, 255, 255, 0.9);
opacity: 0.7;
transition: 1s;
}
/*個人資料區整體:滑鼠移至*/
.dash-segment-profile .segment-content:hover {
opacity: 1;
}
/*發噗區整體*/
.dash-segment-post .segment-content {
background-color: rgba(255, 255, 255, 0.9);
opacity: 0.7;
transition: 1s;
}
/*發噗區整體:滑鼠移至*/
.dash-segment-post .segment-content:hover {
opacity: 1;
}
/*卡碼資訊區整體*/
.dash-segment-stats .segment-content {
background-color: rgba(255, 255, 255, 0.9);
opacity: 0.7;
transition: 1s;
}
/*卡碼資訊區整體:滑鼠移至*/
.dash-segment-stats .segment-content:hover {
opacity: 1;
}
/*好友區整體*/
.dash-segment-friends .segment-content {
background-color: rgba(255, 255, 255, 0.9);
opacity: 0.7;
transition: 1s;
}
/*好友區整體:滑鼠移至*/
.dash-segment-friends .segment-content:hover {
opacity: 1;
}
/*紛絲區整體*/
.dash-segment-fans .segment-content {
background-color: rgba(255, 255, 255, 0.9);
opacity: 0.7;
transition: 1s;
}
/*紛絲區整體:滑鼠移至*/
.dash-segment-fans .segment-content:hover {
opacity: 1;
}

/*徽章區*/
#plurk-dashboard .dash-segment-award {
opacity: 0.9;
transition: 1s;
}
/*徽章區:滑鼠移至*/
#plurk-dashboard .dash-segment-award:hover {
opacity: 1;
}

/*噗主名稱旁加線條*/
._lc_ .list .highlight_owner .plurk_cnt, ._lc_ .list .highlight_owner .plurk_cnt:hover { border-left: 3px solid #afcfe4 !important; }

/*噗首半透明,滑鼠移上後恢復*/
.timeline-cnt .plurk {
/*透明度*/ opacity: 0.9; /* 0是完全透明,1是完全不透明 */
/*速度*/ transition: opacity .6s;
}
.timeline-cnt .plurk.display { opacity: 1; }

/*噗內整體調整*/
#form_holder {
opacity: 0.9;
}

/*Date* 2010-10-23 *******************/
/***僅開放個人套用做為噗版,商業性質及其他利用方式請勿使用,謝謝****/
/*Design by Be Myself Inc. M6 reeditdate2012-03-05********************/

/* 此噗版由「如我協力創意工作室 Be Myself Inc.」 設計提供,僅供個人噗友自用,請勿改製再分享或用於商業等其他用途 */