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
body,html{cursor:crosshair; !important;}
a:hover{cursor:crosshair;text-decoration: none !important;}

.adsense { display: none !important; } /*隱藏廣告*/

body,html{cursor:crosshair; !important;}
a:hover{cursor:crosshair;text-decoration: none !important;}


/*右邊未讀訊息往右展開*/
#filter_tab { display: flex; flex-flow: row-reverse nowrap; }
#filter_tab a {
height: 25px !important;
margin-top: 0 !important;
transition: max-width 200ms ease-in, margin-left 200ms ease-in, padding 200ms ease-in;
margin-left: 6px;
max-width: 50px;
padding: 0 12px;
}#filter_tab a.off_tab {
margin-left: 0;
max-width: 0;
padding: 0;
}
#filter_tab:hover a { margin-left: 6px; max-width: 50px; padding: 0 12px; }
.timeline_control a { border-radius: 10px; }

/*右邊新未讀訊息去掉文字只留圖案*/
#filter_tab a { font-size: 0px; }
#filter_tab a * { font-size: 1rem; }
.timeline_control a i { margin-right: 0; }#noti_np_text,#noti_re_text,#noti_pp_text { display: none; }
.updater_link span { display: none; }
.timeline-holder {cursor:crosshair; !important;}

/*噗串篩選上面噗寶*/
li:has(> #all_plurks) { position: relative; }
li:has(> #all_plurks)::before {
content:"";
background:no-repeat center / contain;
height:0; width:100%;
transition:height .3s;
display:block;
/*圖片*/ background-image:url(https://images.plurk.com/4F8yWlt6RQnk2l1O0R3R2I.png);
position: absolute;
bottom: 100%;
left: 0;
top:-42px
}
li:has(> #all_plurks):hover::before { /*大小*/ height:38px !important;}

/*+畫面佈景--------------------------------------------------*/
body, html
{
background:#000 url(https://i.meee.com.tw/VIL6lko.png) top center  no-repeat; }

/* 河道高度固定 */
#timeline_holder {height: calc(100vh - 42px) !important; }

/* 噗首背景 */
.timeline-cnt .plurk .plurk_cnt {
background-color: rgba(255, 255, 255, 0.7) !important;
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px); }



/* 噗串背景 */
#form_holder { background:rgba(255, 255, 255, 0.7);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px); }

/* 河道噗文固定寬高設定 */
#form_holder{z-index:5000;}

/*噗內每則回應背景*/
.list .plurk_cnt {
background: none;
transition: background 0.3s;
border-radius: 5px; }

/*噗內輸入區*/
.response_box, .mini_form {
background-color: transparent !important;
background: none;
border-top: none !important; }

/* 消音噗透明度 */
.muted { opacity: 0 !important; transition: opacity:0 ;}
.muted:hover { opacity: 0 !important; }

.bottom_start, #time_show { display:none !important; }
.day_start { opacity:0 !important; }

.name {
text-shadow: #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px; }


/*更新的按鈕*/
#updater .item a {
background-color: #ffffff;
}
/*更新的按鈕:滑鼠移至*/
#updater .item a:hover {
background-color:#859cad;}
#updater .item a:hover * {
color:#FFFFFF !important;}

/*頻道的普通按鈕*/
#filter_tab a {
background-color:#859cad;
color:#FFFFFF !important;}

/*整體按鈕設定*/

a.friend_man
{
background:#aebecf !important;
border:1px solid #aebecf !important;
color:#FFFFFF !important;
text-decoration:none !important;
-moz-border-radius:4px; /*圓角*/
-khtml-border-radius:4px;
-webkit-border-top-left-radius:4px;
-webkit-border-top-right-radius:4px;
-webkit-border-bottom-right-radius:4px;
-webkit-border-bottom-left-radius:4px;
}

/*選到的看噗標籤*/
#filter_tab a.filter_selected
{
outline: 0 !important;
border: none!important;
color:#FFFFFF !important;}

/*友粉數量按紐*/
.show_all_friends a, .show_mutual_friends a {
font-size: 12px; }

/*無回應*/
.list .empty
{color: #555!important; }

/*使用者名稱*/
#main_poster .qual_holder
{top center no-repeat !important;
color: #aaa;
font-size: 13px; }

/*語助詞*/
.qualifier, .m_qualifier, .r_qualifier
{
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-size: 12px; }

/*搜尋面板文字輸入區*/
input#current_query
{
background: #fff !important;
border: 0px;
width: 100%;
font-size: 12px;
color: #333!important;
height: 44px;
-khtml-border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px; }

/*更新通知*/
#updater
{color: #4f6275;font-size: 12px;!important; }
#updater a
{color: #4f6275;
text-decoration: none; }
#alert_beacon
{color:#4f6275;
margin:0 2px; }
#updater #noti_np #noti_np_text
{color:#4f6275;
font-size: 12px; }
.td_qual a
{color:#4d7373;
text-decoration: none !important; }
.td_qual span a:hover
{color:#4d7373;
text-decoration: none !important; }
#updater #noti_np a
{color:#4d7373;
text-decoration: none !important; }
#updater #noti_re #noti_re_view #noti_re_text
{color:#4d7373;
font-size: 12px; }
#updater #noti_re #noti_re_view a
{color:#4d7373;
font-size: 12px; }

/*未選到的看噗標籤*/
#filter_tab a.off_tab
{background: #fff!important;
color:#668c8c!important;
border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
filter: alpha(opacity=70) !important;
opacity: 0.7!important; }

/*標籤移動過去的效果*/
#filter_tab a.off_tab:hover
{text-decoration: none;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
filter: alpha(opacity=80) !important;
opacity: 0.8 !important;
background: #fff!important; }

.unread_generic /*未讀噗的數目*/
{
/*底色*/ background: none;
color:#668c8c!important;
}


/*噗浪右邊訊息,新回應的圓角及顏色*/
._lc_ .response_count{border-radius: 10px;}
._lc_ .new .response_count{
/*背景色*/
background:none !important;
/*字體大小*/
font-size:12px; }
*噗首大小*/
._lc_ .plurk td{ font-size:12px;}
/*回文區*/
._lc_ .list .text_holder{ font-size:12px; }
body{ font-size:12px; }
._lc_ .plurk td{ font-size:12px;} /*噗首大小*/
._lc_ .list .text_holder{ font-size:12px;} /*噗內文*/

/*大頭貼*/
.dash-segment img.profile-pic
{
border: 0px solid #bbb;
box-shadow: 0px 0px 0px rgba(255,255,255,0.8);}

/*關於我*/
p#about_me
{
font-size:12px; !important;
}
/*姓名*/
div#full_name
{
font-size:13px !important;
}

/*卡馬數字*/
#karma {
/*字色*/ color:#699fb5;
/*陰影*/ text-shadow:#d3781099 0 0 6px; }
.karma_hover
{
/*字體*/ font-family:verdana;
/*文字大小*/ font-size:15px; }

/*卡馬文字*/
.dash-stats-karma::before {
    content: "厭世值";
    position:absolute;
color:#699fb5;
    left:143px;
    top:53px;
 font-family:verdana;
 font-size:28px;
 text-shadow:#d3781099 0 0 6px;
}
.karma_hover {
    color:transparent;
}


/*發噗區*/
#main_poster .input_holder { border-radius:0; background:none; border:none; }
/*文字框*/
#input_big {
/*這裡勿動*/ font-size:inherit;
/*圓角*/ border-radius:5px;
/*底色*/ background:(255, 255, 255, 0.8);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
/*字距*/ letter-spacing:2px;
/*行高*/ line-height:2em;
/*漸變速度*/ transition:background 0.6s;}

/*發噗區整體*/
.dash-segment-post .segment-content {
background:(255, 255, 255, 0.8);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
font-size: 12px;}

#input_big:focus {
/*輸入中底色*/ background:#fffc;
}
/*圖片分享上方細線取消*/
#main_poster .preview-list { border-top:0; padding-top:4px; }

/*發語詞*/
#main_poster .m_qualifier {
/*圓角*/ border-radius: 4px;
padding: 3px 6px;
}
#main_poster .qual_holder, #main_poster .m_qualifier, #main_poster .m_qualifier i:before { font-size:inherit; }


/*功能按鈕*/
#main_poster .icons_holder li { font-size:13px; width: 15px; line-height: 0px; margin-top:5px; margin-left:5px; }
#main_poster .pif-emoticon:after { display:none; }


textarea#input_big_private, textarea#input_big, textarea #input_big .content, textarea#input_permalink, input#current_query, td.td_cnt textarea, textarea#input_small
{
background: rgba(255,255,255,0.2) !important;
border: 0 !important;
line-height: 24px;
height: 28px;
font-size: 12px !important;
border-radius: 5px !important;
box-shadow: 0pt 0px 0pt rgba(0,0,0,0.02), 0pt 0px 0px rgba(0,0,0,0.01) inset;
transition: background 0.6s ease;
}
#input_big[style="height: 37px;"] {
height: 28px !important;
}
td.td_cnt textarea, textarea#input_small
{
font-size: 12px !important;
line-height: 1.6em !important;
letter-spacing: 0.13em !important;
border-bottom: 0px solid rgba(137,137,137,0.89) !important;
border-radius: 0px !important;
}

/*各圖示*/
.pif-emoticon.cmp_emoticon_off, /*表情符號*/
.pif-media.cmp_media_off, /*分享資訊*/
.pif-sync.cmp_sync_off, /*同步更新*/
.pif-anynomous.cmp_anynomous_off, /*偷偷說*/
.pif-privacy.cmp_privacy_off /*私人訊息及隱私選項*/
{ font-size: 12px !important;}


/*發噗鈕*/
.submit_img {
poster_holder .char_updater 
/*把不透明度調回100%*/ opacity:1;
/*圖片自動大小*/ content:url(https://emos.plurk.com/6adf8c78a5d8a3a388ee7b23f35b68e2_w20_h20.gif);
width: auto;
height: auto;
/*圖片位置*/
bottom:20px;
margin-left:-1px;
/*圖片背景透明*/
background: transparent !important;}


/*浪上噗內容的連結*/
.plurk a.ex_link, .text_holder a.ex_link,
.plurk a.ex_link:visited, .plurk a.ex_link:active,
.plurk_content a.ex_link
{
color: #365899 !important;
text-decoration: none !important;
background: none !important;
border: 0 !important;
}
/*滑鼠移至的連結*/
.plurk a.ex_link:hover, .text_holder a.ex_link:hover,
.plurk_content a.ex_link:hover
{
color: #5686BF !important;
text-decoration: none !important;
background: none !important;
border-bottom: 0 !important;
}
new .response_count
{
background: #85b4c9 !important; /*換成綠底色*/
}

.unread #alert_beacon /*通知數字:未讀*/
{
background:none !important;
}


/*自介連結去底線*/
#dashboard_holder a:hover { text-decoration:none; }
/*滑鼠移至的連結*/
div#plurk-dashboard a:hover,
p#about_me a:hover
{
color: #003D79 !important;
text-decoration: none !important;
border-bottom: 0 !important;
}

/*個人資料區整體*/
.dash-segment-profile .segment-content {
font-size: 12px;
}
/*個人頭像*/
#plurk-dashboard .dash-group-left #dash-profile img.profile-pic {
opacity: 0.8;
border-radius: 10px 10px 10px 10px;
}
/*個人頭像:滑鼠移至*/
#plurk-dashboard .dash-group-left #dash-profile img.profile-pic:hover {
opacity: 1;
border-radius: 10px 10px 10px 10px;
}


/*趴趴氣泡*/
.timeline-cnt .plurk_cnt::after {
/*這些不動*/ position:absolute;
/*圖片*/ content:url(https://images.plurk.com/7MLESI7gU2TanYkqzG08Zu.gif);
/*位置*/ right:1px;
/*位置*/ top:-30px;
}

/*排版*/
.timeline-cnt .plurk_cnt { padding:5px 30px 5px 5px; }
.timeline-cnt .tr_cnt { margin:20px; display:inline; }
.td_img { position:absolute; top: 0px; left:0px; margin:5px; border-radius:50%; overflow:hidden; z-index:1; }

/*噗串與噗首圓角*/ .timeline-cnt .plurk_cnt, #form_holder { border-radius:13px; }

/*氣泡*/
.td_response_count {
/*這些不動*/ position:relative; line-height:8px; padding:5px 7px; z-index:1; display:block;
/*這些不動*/ border-radius:30px; font-size:10px; width:min-content; max-height:20px;
/*位置*/ bottom:52px;
/*位置*/ right:28px;
/*顏色*/ background: #6C9EB7;
/*字色*/ color:#66798c;
/*字體*/ font-family:微軟正黑體;
}

.td_response_count * { background:inherit!important; }
.td_response_count::after { content:""; position:absolute; left:9px; bottom:-5px; background:inherit; clip-path:polygon(0 0, 100% 0, 0 100%); height:10px; width:10px; }
[data-respcount="0"] .td_response_count { display:none; }

/*新回應人物圖*/
.timeline-cnt .new .plurk_cnt::after {
/*圖片*/ content:url(https://images.plurk.com/7MLESI7gU2TanYkqzG08Zu.gif);
}

/*新回應氣泡*/
.new .td_response_count {
/*顏色*/ background: #899FBD;
/*字色*/ color:#8f8f8f;
}

/*時間橫線隱藏*/
#bottom_line { display:none !important; }
/*時間日期標籤隱藏*/
.bottom_start, #time_show { display:none !important; }

/*隱藏喜歡&轉噗數*/
.response_info .favorite_count { display: none !important; }
.response_info .replurk_count { display: none !important; }
._lch_#layout_content_html#layout_content_html {z-index: auto !important;}

/*統計區塊隱藏卡馬以外的所有東西*/
#dash-stats > :not(.dash-stats-karma) { display: none; }


/*隱藏的*/
#div_loading, .loading, .loading_div,  /*噗浪loading圖*/
#m_or_f,  /*性別*/
#karma_arrow, .link_arrow, .cmp_points-arrow,
.cmp_karma_up, .cmp_karma_down,
a.link_arrow,  a.link_arrow link_badges,  /*卡馬小箭頭*/
.snowflake,  /*雪花*/
#bottom_line,
.profile-icons,
.bottom_start, #time_show,
.response_info .favorite_count,
.response_info .replurk_count
{ display : none !important; transform: scale(0); }
#plurk_ads a { overflow: hidden;_overflow: none; }

/* 頭貼欄隱藏性別、噗幣圖示 */
#m_or_f, .profile-icons {
display: none;}
/*卡馬箭頭隱藏*/ .karma_hover #karma_arrow { display:none; }
/* 隱藏徽章 */
.dash-segment-award {
display: none !important; }

body *:not(.dash-stats-karma::before){font-size:13px;}

.timeline-cnt .td_qual > span {
  position: absolute;
  transform: translate(-5px, -170%);
}


/*消音的噗*/
.timeline-cnt .plurk.muted { /*指上前透明度*/ opacity:0 ;}
.timeline-cnt .plurk.muted:hover { /*指上後透明度*/ opacity:0; }


/*噗首功能按鈕顏色統一*/
/*一般狀態*/ .manager > a { color: #7691ad !important; }
/*一般狀態滑鼠指上*/ .manager > a:hover { color: #4f6275 !important; }
/*去除底色*/ .manager > a:is(*, :hover) { background: none !important; }

/*單獨噗串內按鈕*/
._lch_ ~ .pop-window .manager .response,
._lch_ ~ .pop-window .manager .like-off,
._lch_ ~ .pop-window .manager .replurk-off,
._lch_ ~ .pop-window .manager .mark-off,
._lch_ ~ .pop-window .manager > a.gift,
._lch_ ~ .pop-window .manager .option  {
color:#7691ad; 
background: none !important; }

/*單獨噗串內按鈕滑鼠移至*/
._lch_ ~ .pop-window .manager .response:hover,
._lch_ ~ .pop-window .manager .like-off:hover,
._lch_ ~ .pop-window .manager .replurk-off:hover,
._lch_ ~ .pop-window .manager .mark-off:hover,
._lch_ ~ .pop-window .manager > a.gift:hover,
._lch_ ~ .pop-window .manager .option:hover,
._lch_ ~ .pop-window .manager .like-on:hover,
._lch_ ~ .pop-window .manager .replurk-on:hover,
._lch_ ~ .pop-window .manager .mark-on:hover {
color: #4f6275;
background: none !important; }


/*捲軸調整*/
' {}:not(*) /* { */, /*
}*/
::-webkit-scrollbar {
width: 5px;
}
:not(*) /* { */, /*
}*/
::-webkit-scrollbar-track {
-webkit-border-radius: 10px;
border-radius: 10px;
}
:not(*) /* { */, /*
}*/
::-webkit-scrollbar-thumb {
-webkit-border-radius: 4px;
border-radius: 4px;
background: #fff;
}
' {}


/*已選的噗串篩選按鈕數字白色*/
#filter_tab a.filter_selected .unread_generic { color:#fff!important; }
li:has(> #all_plurks):hover::before { /*大小*/ height: 20px;}

/*回應內容*/
.response_box .list .plurk_cnt {background:none !important; }
/*回應內容:滑鼠移至*/
.response_box .list .plurk_cnt:hover {background:none !important; }


/* ========== 面板設定 ========== */

/* 主控台置於上方 */
#dashboard_holder {
position: absolute;
top: 0;
left: 0;
width: 100%;
margin: 0;
padding: 0;
/* padding-top: inherit; */
max-width: none;
min-width: 0;
z-index: 2100;
pointer-events: none;
}
#plurk-dashboard .dash-group-left { padding-right: 0; }
.dash-segment-profile .segment-content:last-child {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.dash-segment-profile .segment-content:last-child {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.dash-segment-stats .segment-content { border-top-left-radius: 0; }
.dash-segment-friends .segment-content { border-bottom-left-radius: 0; }

/* 主控台收合 */
#plurk-dashboard .dash-group-left,
#plurk-dashboard .dash-group-right {
transform: translateY(-100%);
transition: transform 1s;
pointer-events: auto;
}
/* 主控台展開 */
#plurk-dashboard .dash-group-left:hover,
#plurk-dashboard .dash-group-right:hover,
#plurk-dashboard .dash-group-left:hover + .dash-group-right,
#plurk-dashboard .dash-group-left:has(+ .dash-group-right:hover),
._lch_:has(~ .karma_tooltip:hover) #plurk-dashboard .dash-group-left,
._lch_:has(~ .karma_tooltip:hover) #plurk-dashboard .dash-group-right,
._lch_:has(~ .friend-fan-editor-popview:hover) #plurk-dashboard .dash-group-left,
._lch_:has(~ .friend-fan-editor-popview:hover) #plurk-dashboard .dash-group-right {
transform: none;
}

/* 主控台面板排版 */
#plurk-dashboard,
#plurk-dashboard .dash-group-left,
#plurk-dashboard .dash-group-right,
#plurk-dashboard .dash-group-left .dash-segment,
#plurk-dashboard .dash-group-right .dash-segment {
display: flex;
flex-flow: row nowrap;
align-items: stretch;
justify-content: stretch;
width: auto;
height: auto;
}
#plurk-dashboard {
justify-content: center;
}
#plurk-dashboard .dash-group-right {
width: 400px;
flex-flow: row wrap;
}
#plurk-dashboard .dash-segment-profile .segment-content:first-child {
width: 200px;
}
#plurk-dashboard .dash-group-right .dash-segment-fans,
#plurk-dashboard .dash-group-right .dash-segment-friends {
width: 50%;
}
#plurk-dashboard .dash-segment-fans .segment-content,
#plurk-dashboard .dash-segment-friends .segment-content {
width: 100%;
}
#plurk-dashboard .dash-group-right .dash-segment-stats
{
width: 100%;
}
#plurk-dashboard .dash-segment-friends {
margin-right: 0;
}
#plurk-dashboard .dash-segment-fans .segment-content,
#plurk-dashboard .dash-segment-friends .segment-content{
margin-top: 0;
}

#plurk-dashboard .dash-segment-stats .segment-content {
width: 100%;
}
/* 主控台面板背景 */
.segment-content {
background-color: rgba(255, 255, 255, 0.7);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* 頭貼旋轉角度 */
#profile_pic {
transform: rotate(5deg); }

/*頭貼名字小噗寶*/
#dash-profile::before{
content:url(https://images.plurk.com/1ajwAbq47lyls0Fc8SL0Yq.gif);
position:absolute;
top:38px; /*距離下方位置*/
right:35px; /*距離右方位置*/
}

/* 自介欄排版 */
#plurk-dashboard .dash-segment-profile .segment-content:nth-child(2) {
position: relative;
display: flex;
flex-flow: column nowrap;
}
#dash-additional-info {
margin-bottom: auto;
}
/* 自介欄吊掛噗寶 */
#plurk-dashboard .dash-segment-profile .segment-content:nth-child(2)::before {
content: url(https://images.plurk.com/3KPC1239QXwrsDoNEIngu3.gif);
position: absolute;
top: 100%;
left: 500px;
width: auto;
height: auto;
display: block; }

/* 合併頭貼、自介欄 */
.dash-segment-profile .segment-content:first-child {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.dash-segment-profile .segment-content:last-child {
border-top-left-radius: 0;
border-bottom-left-radius: 0; }

/* 統計欄排版 */
.dash-segment-stats .segment-content {
display: flex;
flex-flow: column nowrap; }
/* 卡馬文字位置 */
#plurk-dashboard #dash-stats {
margin-left:165px;
margin-top:30px; }

/* 隱藏統計欄標題、數據表格 */
#dash-stats > h2, #dash-stats-table {
display: none;
}
/* 去除卡馬值周圍留白 */
#plurk-dashboard #dash-stats .dash-stats-karma {
margin: 0;
min-width: 0;
}

/* 卡馬字體大小 */
#karma_holder {
font-size: 30px;
}
/* 統計欄像素小噗寶 */
.dash-segment-stats .segment-content::after {
content: url(https://images.plurk.com/2C4RA8NmZi9PQ0zEFkQTG2.gif);
width: auto;
height: auto;
margin-left:8px;
margin-top:-58px;
}

/* 朋友、粉絲欄內排版 */
#plurk-dashboard #dash-friends-pics, #plurk-dashboard #dash-fans-pics {
margin-top: 0;
}
/* 隱藏所有朋友、所有粉絲文字 */
.show_all_friends, .show_mutual_friends, .show_all_fans {
display: none;
}
/* 合併統計、朋友、粉絲欄 */
.dash-segment-stats .segment-content {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.dash-segment-friends .segment-content {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.dash-segment-fans .segment-content {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
}

/* 發噗區 */
#plurk-dashboard .dash-group-form {
position: fixed;
left: 0;
bottom: 21px;
width: auto;
transform: translateX(calc(50vw - 50% + 30px));
pointer-events: auto;
}
#plurk-dashboard .dash-group-form .segment-content {
min-height: 0;
}
#plurk-dashboard .dash-group-form .input_holder {
float: left;
}
#plurk-dashboard .dash-group-form .icons_holder {
margin: 0;
}
.plurkForm {
padding: 0;
}
.plurk_to {
clear: right;
}
.plurk_to:empty {
margin-top: 0;
}

/* ==== 置中視窗 ==== */

/* 清除白色背景 (暫不支援 firefox) */
._lch_ ~ .pop-window .pop-window-view:has(.cbox_plurk_holder) {
background-color: transparent }
/* 噗首噗串背景、圓角 */
._lch_ ~ .pop-window .cbox_plurk_holder .plurk,
._lch_ ~ .pop-window #cbox_response {
background-color: rgba(255, 255, 255, 0.7);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border-radius:13px; }

/* 清除回應區背景、邊線 */
._lch_ ~ .pop-window #cbox_response .plurk,
._lch_ ~ .pop-window .response_box,
._lch_ ~ .pop-window .mini_form,
._lch_ ~ .pop-window .cbox_ads {
background-color: transparent !important;
background: none;
border-top: none;
}

/* id白色邊框 */
._lch_ ~ .pop-window .name {
text-shadow: #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px;
}
.profile-icons{
display: none;
}

/*更改箭頭+begin圖案*/

#timeline_holder .cmp_arrow_right { /*右邊的箭頭*/
content:url();
}
#timeline_holder .cmp_arrow_right+.cmp_back_to_today { /*右邊的begin*/
content:url();
right: 0;
}
#timeline_holder .cmp_arrow_left { /*左邊的箭頭*/
content:url();
}
#timeline_holder .cmp_arrow_left+.cmp_back_to_today { /*左邊的begin*/
content:url();
left: 0;
}
#timeline_holder .cmp_arrow_right, #timeline_holder .cmp_arrow_left {
margin-top: 50px; /*調整箭頭上下位置*/
}
#timeline_holder .cmp_back_to_today {
background: transparent;
color: transparent;
margin-left: 0;
padding: 0;
}

/*友粉只留按鈕*/ #dash-friends > h2, #dash-friends-pics, #dash-fans > h2, #dash-fans-pics { display: none; }


/*更改已無未讀訊息之提示文字*/
#empty_timeline_fg span { color:#FFFFFF; } /*上排文字顏色*/
#empty_timeline_fg span a {display: none;} /*隱藏下排預設文字*/



/* 承花互動噗寶 */

/* 用來觸發預先載入圖片的區域 */
#dynamic_logo::before {
position: absolute;
width: 0;
height: 0;
overflow: hidden;
z-index: -1;

/* 將下面有用到的圖片網址寫在這裡以預先載入,避免圖片載入時產生閃爍 */
content:
url('https://i.imgur.com/Kk4jOIC.png')
url('https://i.imgur.com/fDcv1zJ.png')
url('https://i.imgur.com/koba7up.png')
; /* <- 請不要刪掉這個分號 */
}

#dynamic_logo {
/* 將噗寶位置固定*/
position: absolute;
top:280px;
right:10px;
z-index: 1000;
overflow: hidden;

/* 為整個噗寶加上陰影 */
filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.3));

/* 待機時噗寶圖片寬高 */
width: 250px;
height: 250px;
/* 待機時噗寶圖片網址 */
background: url('https://i.imgur.com/Kk4jOIC.png') no-repeat left/contain;
}

/* 用來顯示游標懸浮時噗寶圖片的區域 */
#dynamic_logo::after {
/* 讓此偽元素能夠顯示在畫面上並設定大小 */
content: '';
display: block;

/* 設定游標懸浮時噗寶圖片寬高與點擊前相同 */
width: 100%;
height: 100%;
/* 游標懸浮時噗寶圖片網址 */
background: url('https://i.imgur.com/fDcv1zJ.png') no-repeat left/contain;

/* 游標懸浮時游標圖片網址 (尺寸必須在 128x128 以內,超過的話會無法顯示) */
cursor: url(''), auto;
}

/* 用來顯示點擊後噗寶圖片的區域 */
#creature {
/* 點擊前先隱藏點擊後噗寶圖片 */
display: none;

/* 將預設噗寶圖片推出畫面外 */
padding-left: 100%;

/* 設定點擊後噗寶圖片寬高與點擊前相同 */
width: 100%;
height: 100%;
/* 點擊後噗寶圖片網址 */
background: url('https://i.imgur.com/koba7up.png') no-repeat left/contain;

/* 點擊後游標圖片網址 (尺寸必須在 128x128 以內,超過的話會無法顯示) */
cursor: url(''), auto;
}

/* 游標懸浮時隱藏待機時噗寶圖片 */
#dynamic_logo:hover {
background: none;
}
/* 游標未懸浮時隱藏懸浮時噗寶圖片 */
#dynamic_logo:not(:hover)::after {
background: none;
}
/* 點擊後顯示點擊後噗寶圖片,同時將懸浮時噗寶圖片推出畫面 */
#dynamic_logo:active #creature, #creature:hover {
display: block;
}



/* 隱藏內建讀取圖 */
.loading > img, ._lch_ ~ .pop-window .loading > img { display: none; }


/*小視窗內按鈕*/
._lch_ ~ .pop-window .manager .response,
._lch_ ~ .pop-window .manager .like-off,
._lch_ ~ .pop-window .manager .like-on,
._lch_ ~ .pop-window .manager .replurk-off,
._lch_ ~ .pop-window .manager .replurk-on,
._lch_ ~ .pop-window .manager .mark-off,
._lch_ ~ .pop-window .manager .mark-on,
._lch_ ~ .pop-window .manager > a.gift,
._lch_ ~ .pop-window .manager .option   {
color:#7691ad !important;
background: none !important; }

/*小視窗內按鈕滑鼠移至*/
._lch_ ~ .pop-window .manager .response:hover,
._lch_ ~ .pop-window .manager .like-off:hover,
._lch_ ~ .pop-window .manager .replurk-off:hover,
._lch_ ~ .pop-window .manager .mark-off:hover,
._lch_ ~ .pop-window .manager > a.gift:hover,
._lch_ ~ .pop-window .manager .option:hover,
._lch_ ~ .pop-window .manager .like-on:hover,
._lch_ ~ .pop-window .manager .replurk-on:hover,
._lch_ ~ .pop-window .manager .mark-on:hover {
color: #4f6275 !important;
background: none !important; }

/*頂端橫條改顏色*/'{}
:not(*) /* {*/,/*}*/ .bar-color {
/*背景透明*/ background:none !important; }
:not(*) /* {*/,/*}*/ #top_bar *, :not(*) /* {*/,/*}*/ #top_bar .bar-icon {
/*頂條文字顏色*/ color:#E0FFF; }
'{}
' {}:not(*)/*{*/,/*}*/#top_bar .item:hover { background-color: transparent !important; }
'{}