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
/*------計數--------*/
/*斑馬*/
.block_cnt .cboxAnchor:nth-of-type(3n-2)>table::before{
    content:url(https://i.imgur.com/xuLvEjp.png);
    position: absolute;
    right: 30px; 
    top: -30px;
    z-index:1;
}

/*犰狳*/
.block_cnt .cboxAnchor:nth-of-type(3n-1)>table::before{
    content:url(https://i.imgur.com/g0hsWTT.png);
    position: absolute;
    right: 30px;
    top: -30px;
    z-index:1;
}

/*裘恩*/
.block_cnt .cboxAnchor:nth-of-type(3n)>table::before{
    content:url(https://i.imgur.com/URzewfB.png);
    position: absolute;
    right: 30px;
    top: -35px;
    z-index:1;
}

/*圓圓對話框*/
.response_count{
    padding: 5px 10px;
    position: absolute;
    border-radius: 50%;
    top: -40px;
    right: 70px;
    text-align: left;
    background:#2d2d2d;
}

.response_count::after{
content: "";
    position: absolute;
    right: 4px;
    top: 23px;
    border-color: #2d2d2d #2d2d2d transparent transparent;
    border-style: solid solid solid solid;
    border-width: 5px 5px;
    height: 0px;
    width: 0px;
}

/*新噗對話框底色*/
._lc_ .new .response_count{
    background: #ba0000;
}

._lc_ .new .response_count::after{
    border-color: #ba0000 #ba0000 transparent transparent;
}

/*裘恩專用的對話框位置*/
.cboxAnchor:nth-of-type(3n) .response_count{
    right: 60px;
}