File size: 3,080 Bytes
dc9e27a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.markdownCon {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5,
    h6 {
        font-size: 16px;
    }

    p {
        color: rgba(18, 19, 22, 0.8);
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        margin: 0 0 16px 0;
    }

    ul {
        margin-bottom: 8px;
        padding-left: 22px;
    }

    li {
        color: rgba(18, 19, 22, 0.8);
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;

        p {
            margin-bottom: 4px;
        }
    }

    >p:last-child {
        margin-bottom: 0;
    }
}

.footerFlag {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--fill-2, #f4f5f9);
    color: var(--35-text-2, rgba(18, 19, 22, 0.35));
    font-size: 12px;
    font-weight: 600;
    margin-left: 2px;
    cursor: pointer;
    font-style: normal;

    /* 150% */
    &:hover {
        background: var(---Brand1-5, #3477eb);
        color: #fff;

        svg path {
            fill: #fff;
            fill-opacity: 1;
        }
    }
}

// .mergeQuoLi {
//     margin-bottom: 12px;
// }

li {
    cursor: pointer;

    .url {
        color: var(--60-text-3, rgba(18, 19, 22, 0.6));
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        max-width: 100%;
        height: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .title {
        color: var(---Brand1-5, #3477eb);
        font-size: 14px;
        line-height: 21px;
    }

    .summ {
        white-space: wrap;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.line {
    margin: 4px 8px;
    border: 1px solid #ebecf0;
    transform: scaleY(0.5);
}

:global {
    .iQuoPopover {
        max-width: 420px;
    }

    .mergeQuoPopover {
        border-radius: 12px;
        border: 1px solid var(----line-2, #ebecf0);
        background: var(---fill-0, #fff);
        box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.06);
        max-height: 240px;
        max-width: 420px;
        overflow-y: auto;

        .ant-popover-inner {
            padding: 8px !important;
        }

        .ant-popover-inner-content .line:last-child {
            display: none;
        }

        li {
            border-radius: 8px;
            padding: 8px;

            &:hover {
                background-color: #f4f5f9;
            }
        }
    }

    .mergeQuoPopover::-webkit-scrollbar {
        width: 6px;
    }

    .mergeQuoPopover::-webkit-scrollbar-track {
        background-color: rgba(255, 255, 255, 0);
        border-radius: 100px;
    }

    .mergeQuoPopover::-webkit-scrollbar-thumb {
        background-color: #ebecf0;
        border-radius: 20px;
    }
}