@zkwq/business 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/AggsItemH.css +8 -13
- package/dist/css/AggsItemH.min.css +1 -1
- package/dist/css/AggsItemV.css +200 -0
- package/dist/css/AggsItemV.min.css +1 -0
- package/dist/css/ReadableItem.css +390 -0
- package/dist/css/ReadableItem.min.css +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +10600 -12145
- package/dist/index.min.css +1 -1
- package/dist/index.min.js +14 -27
- package/dist/index.umd.cjs +8 -25
- package/dist/index.umd.min.cjs +6 -19
- package/dist/static/app-pdf.png +0 -0
- package/package.json +6 -2
- package/vite.config.js +13 -9
package/dist/css/AggsItemH.css
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.niubi{
|
|
3
|
-
width: 100px;
|
|
4
|
-
background: red;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
2
|
|
|
8
3
|
|
|
9
4
|
|
|
@@ -14,7 +9,7 @@
|
|
|
14
9
|
|
|
15
10
|
|
|
16
11
|
|
|
17
|
-
[data-v-
|
|
12
|
+
[data-v-1c213a27]:export {
|
|
18
13
|
primary: #2F3A91;
|
|
19
14
|
success: #67C23A;
|
|
20
15
|
warning: #FF791A;
|
|
@@ -76,7 +71,7 @@
|
|
|
76
71
|
|
|
77
72
|
|
|
78
73
|
|
|
79
|
-
.aggs_item[data-v-
|
|
74
|
+
.aggs_item[data-v-1c213a27] {
|
|
80
75
|
width: 100%;
|
|
81
76
|
height: auto;
|
|
82
77
|
overflow: hidden;
|
|
@@ -85,12 +80,12 @@
|
|
|
85
80
|
padding-bottom: 12px;
|
|
86
81
|
border-bottom: 1px solid #DCDFE6;
|
|
87
82
|
}
|
|
88
|
-
.aggs_item .name[data-v-
|
|
83
|
+
.aggs_item .name[data-v-1c213a27] {
|
|
89
84
|
width: 100px;
|
|
90
85
|
color: #8590a6;
|
|
91
86
|
padding: 2px 8px;
|
|
92
87
|
}
|
|
93
|
-
.aggs_item .item[data-v-
|
|
88
|
+
.aggs_item .item[data-v-1c213a27] {
|
|
94
89
|
flex: 1;
|
|
95
90
|
height: auto;
|
|
96
91
|
overflow: hidden;
|
|
@@ -98,23 +93,23 @@
|
|
|
98
93
|
flex-direction: row;
|
|
99
94
|
flex-wrap: wrap;
|
|
100
95
|
}
|
|
101
|
-
.aggs_item .item li[data-v-
|
|
96
|
+
.aggs_item .item li[data-v-1c213a27] {
|
|
102
97
|
padding: 2px 8px;
|
|
103
98
|
cursor: pointer;
|
|
104
99
|
margin: 0px 8px;
|
|
105
100
|
margin-bottom: 4px;
|
|
106
101
|
}
|
|
107
|
-
.aggs_item .item li[data-v-
|
|
102
|
+
.aggs_item .item li[data-v-1c213a27]:hover {
|
|
108
103
|
background: #6d75b2;
|
|
109
104
|
color: white;
|
|
110
105
|
border-radius: 4px;
|
|
111
106
|
}
|
|
112
|
-
.aggs_item .item .selected[data-v-
|
|
107
|
+
.aggs_item .item .selected[data-v-1c213a27] {
|
|
113
108
|
background: #6d75b2;
|
|
114
109
|
color: white;
|
|
115
110
|
border-radius: 4px;
|
|
116
111
|
}
|
|
117
|
-
.aggs_item .more[data-v-
|
|
112
|
+
.aggs_item .more[data-v-1c213a27] {
|
|
118
113
|
width: 50px;
|
|
119
114
|
height: auto;
|
|
120
115
|
overflow: hidden;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
[data-v-1c213a27]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.aggs_item[data-v-1c213a27]{width:100%;height:auto;overflow:hidden;display:flex;padding-top:12px;padding-bottom:12px;border-bottom:1px solid #dcdfe6}.aggs_item .name[data-v-1c213a27]{width:100px;color:#8590a6;padding:2px 8px}.aggs_item .item[data-v-1c213a27]{flex:1;height:auto;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.aggs_item .item li[data-v-1c213a27]{padding:2px 8px;cursor:pointer;margin:0 8px;margin-bottom:4px}.aggs_item .item li[data-v-1c213a27]:hover{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .item .selected[data-v-1c213a27]{background:#6d75b2;color:#fff;border-radius:4px}.aggs_item .more[data-v-1c213a27]{width:50px;height:auto;overflow:hidden;text-align:center;color:#2f3a91;cursor:pointer;padding-top:4px}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-2cf185c6]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
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
|
+
.v-leave-active[data-v-2cf185c6],
|
|
75
|
+
.v-enter-active[data-v-2cf185c6] {
|
|
76
|
+
transition: 300ms max-height ease-in-out, 300ms padding-top ease-in-out, 300ms padding-bottom ease-in-out;
|
|
77
|
+
}
|
|
78
|
+
.text-overflow[data-v-2cf185c6] {
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
text-overflow: ellipsis;
|
|
81
|
+
white-space: nowrap;
|
|
82
|
+
}
|
|
83
|
+
.warp[data-v-2cf185c6] {
|
|
84
|
+
width: 100%;
|
|
85
|
+
height: auto;
|
|
86
|
+
overflow: hidden;
|
|
87
|
+
}
|
|
88
|
+
.warp .title__warp[data-v-2cf185c6] {
|
|
89
|
+
width: 100%;
|
|
90
|
+
padding: 12px 16px;
|
|
91
|
+
font-weight: 600;
|
|
92
|
+
font-size: 14px;
|
|
93
|
+
letter-spacing: 2px;
|
|
94
|
+
border-top: 1px solid #DCDFE6;
|
|
95
|
+
border-bottom: 1px solid #DCDFE6;
|
|
96
|
+
display: flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
justify-content: space-between;
|
|
99
|
+
}
|
|
100
|
+
.warp .title__warp .title[data-v-2cf185c6] {
|
|
101
|
+
flex: 1;
|
|
102
|
+
}
|
|
103
|
+
.warp .title__warp .icon[data-v-2cf185c6] {
|
|
104
|
+
padding: 2px;
|
|
105
|
+
background: #f0f1f7;
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
font-size: 16px;
|
|
111
|
+
transition: transform 0.3s;
|
|
112
|
+
}
|
|
113
|
+
.warp .title__warp .icon-active[data-v-2cf185c6] {
|
|
114
|
+
transform: rotate(-90deg);
|
|
115
|
+
}
|
|
116
|
+
.warp .item_warp[data-v-2cf185c6] {
|
|
117
|
+
width: 100%;
|
|
118
|
+
font-size: 14px;
|
|
119
|
+
overflow: hidden;
|
|
120
|
+
}
|
|
121
|
+
.warp .item_warp li[data-v-2cf185c6] {
|
|
122
|
+
width: 100%;
|
|
123
|
+
height: auto;
|
|
124
|
+
overflow: hidden;
|
|
125
|
+
padding: 5px 16px;
|
|
126
|
+
display: flex;
|
|
127
|
+
}
|
|
128
|
+
.warp .item_warp li .item[data-v-2cf185c6] {
|
|
129
|
+
width: 18px;
|
|
130
|
+
margin-right: 8px;
|
|
131
|
+
height: auto;
|
|
132
|
+
overflow: hidden;
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
display: flex;
|
|
135
|
+
align-items: center;
|
|
136
|
+
}
|
|
137
|
+
.warp .item_warp li .item[data-v-2cf185c6]:hover {
|
|
138
|
+
opacity: 0.9;
|
|
139
|
+
}
|
|
140
|
+
.warp .item_warp li .text[data-v-2cf185c6] {
|
|
141
|
+
flex: 1;
|
|
142
|
+
margin-right: 8px;
|
|
143
|
+
height: auto;
|
|
144
|
+
overflow: hidden;
|
|
145
|
+
cursor: pointer;
|
|
146
|
+
line-height: normal !important;
|
|
147
|
+
color: #121212;
|
|
148
|
+
font-size: 15px;
|
|
149
|
+
font-weight: 400;
|
|
150
|
+
}
|
|
151
|
+
.warp .item_warp li .text[data-v-2cf185c6]:hover {
|
|
152
|
+
opacity: 0.9;
|
|
153
|
+
}
|
|
154
|
+
.warp .item_warp li .num[data-v-2cf185c6] {
|
|
155
|
+
color: #8590a6;
|
|
156
|
+
font-size: 15px;
|
|
157
|
+
font-weight: 400;
|
|
158
|
+
max-width: calc(40% - 8px);
|
|
159
|
+
text-align: right;
|
|
160
|
+
display: flex;
|
|
161
|
+
align-items: center;
|
|
162
|
+
white-space: nowrap;
|
|
163
|
+
overflow: hidden;
|
|
164
|
+
text-overflow: ellipsis;
|
|
165
|
+
}
|
|
166
|
+
.warp .item_warp li[data-v-2cf185c6]:first-of-type {
|
|
167
|
+
margin-top: 8px;
|
|
168
|
+
}
|
|
169
|
+
.warp .item_warp li[data-v-2cf185c6]:last-of-type {
|
|
170
|
+
margin-bottom: 8px;
|
|
171
|
+
}
|
|
172
|
+
.warp .readmore[data-v-2cf185c6] {
|
|
173
|
+
text-align: center;
|
|
174
|
+
padding: 5px 0px;
|
|
175
|
+
cursor: pointer;
|
|
176
|
+
display: flex;
|
|
177
|
+
align-items: center;
|
|
178
|
+
justify-content: center;
|
|
179
|
+
color: #999;
|
|
180
|
+
}
|
|
181
|
+
.warp .readmore[data-v-2cf185c6]:hover {
|
|
182
|
+
color: #2F3A91;
|
|
183
|
+
}
|
|
184
|
+
.warp .readmore span[data-v-2cf185c6] {
|
|
185
|
+
font-size: 12px;
|
|
186
|
+
display: none;
|
|
187
|
+
}
|
|
188
|
+
.warp .readmore:hover span[data-v-2cf185c6] {
|
|
189
|
+
display: block !important;
|
|
190
|
+
transition: 0.5s;
|
|
191
|
+
}
|
|
192
|
+
.warp .Checkbox__label[data-v-2cf185c6] {
|
|
193
|
+
width: 180px;
|
|
194
|
+
height: auto;
|
|
195
|
+
overflow: hidden;
|
|
196
|
+
white-space: normal;
|
|
197
|
+
word-break: break-all;
|
|
198
|
+
word-wrap: break-word;
|
|
199
|
+
line-height: 20px;
|
|
200
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-2cf185c6]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.v-enter-active[data-v-2cf185c6],.v-leave-active[data-v-2cf185c6]{transition:.3s max-height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.text-overflow[data-v-2cf185c6]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.warp[data-v-2cf185c6]{width:100%;height:auto;overflow:hidden}.warp .title__warp[data-v-2cf185c6]{width:100%;padding:12px 16px;font-weight:600;font-size:14px;letter-spacing:2px;border-top:1px solid #dcdfe6;border-bottom:1px solid #dcdfe6;display:flex;align-items:center;justify-content:space-between}.warp .title__warp .title[data-v-2cf185c6]{flex:1}.warp .title__warp .icon[data-v-2cf185c6]{padding:2px;background:#f0f1f7;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:16px;transition:transform .3s}.warp .title__warp .icon-active[data-v-2cf185c6]{transform:rotate(-90deg)}.warp .item_warp[data-v-2cf185c6]{width:100%;font-size:14px;overflow:hidden}.warp .item_warp li[data-v-2cf185c6]{width:100%;height:auto;overflow:hidden;padding:5px 16px;display:flex}.warp .item_warp li .item[data-v-2cf185c6]{width:18px;margin-right:8px;height:auto;overflow:hidden;cursor:pointer;display:flex;align-items:center}.warp .item_warp li .item[data-v-2cf185c6]:hover{opacity:.9}.warp .item_warp li .text[data-v-2cf185c6]{flex:1;margin-right:8px;height:auto;overflow:hidden;cursor:pointer;line-height:normal!important;color:#121212;font-size:15px;font-weight:400}.warp .item_warp li .text[data-v-2cf185c6]:hover{opacity:.9}.warp .item_warp li .num[data-v-2cf185c6]{color:#8590a6;font-size:15px;font-weight:400;max-width:calc(40% - 8px);text-align:right;display:flex;align-items:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.warp .item_warp li[data-v-2cf185c6]:first-of-type{margin-top:8px}.warp .item_warp li[data-v-2cf185c6]:last-of-type{margin-bottom:8px}.warp .readmore[data-v-2cf185c6]{text-align:center;padding:5px 0;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#999}.warp .readmore[data-v-2cf185c6]:hover{color:#2f3a91}.warp .readmore span[data-v-2cf185c6]{font-size:12px;display:none}.warp .readmore:hover span[data-v-2cf185c6]{display:block!important;transition:.5s}.warp .Checkbox__label[data-v-2cf185c6]{width:180px;height:auto;overflow:hidden;white-space:normal;word-break:break-all;word-wrap:break-word;line-height:20px}
|
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[data-v-53070acd]:export {
|
|
13
|
+
primary: #2F3A91;
|
|
14
|
+
success: #67C23A;
|
|
15
|
+
warning: #FF791A;
|
|
16
|
+
danger: #F1403C;
|
|
17
|
+
info: #8590a6;
|
|
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
|
+
.ContentItem.is-en[data-v-53070acd] {
|
|
75
|
+
font-family: Inter, Roboto, pingfang SC, hiragino sans gb, Apple SD Gothic Neo, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif, helvetica neue, arial, microsoft yahei ui, microsoft yahei, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
76
|
+
}
|
|
77
|
+
.ContentItem__title[data-v-53070acd] {
|
|
78
|
+
font-size: 18px;
|
|
79
|
+
color: #2F3A91;
|
|
80
|
+
font-weight: 600;
|
|
81
|
+
font-synthesis: style;
|
|
82
|
+
line-height: 1.6;
|
|
83
|
+
word-break: break-word;
|
|
84
|
+
cursor: pointer;
|
|
85
|
+
transition: color 0.3s;
|
|
86
|
+
}
|
|
87
|
+
.ContentItem__title a[data-v-53070acd] {
|
|
88
|
+
display: inline-block;
|
|
89
|
+
}
|
|
90
|
+
.ContentItem__title[data-v-53070acd]:hover {
|
|
91
|
+
color: rgba(47, 58, 145, 0.75);
|
|
92
|
+
}
|
|
93
|
+
.ContentItem__author[data-v-53070acd] {
|
|
94
|
+
margin-top: 6px;
|
|
95
|
+
}
|
|
96
|
+
.ContentItem__author.is-disabled .AuthorInfo__nameText[data-v-53070acd] {
|
|
97
|
+
cursor: auto;
|
|
98
|
+
}
|
|
99
|
+
.ContentItem__author.is-disabled .AuthorInfo__nameText[data-v-53070acd]:hover {
|
|
100
|
+
border: none;
|
|
101
|
+
color: #646464;
|
|
102
|
+
}
|
|
103
|
+
.MetaText[data-v-53070acd] {
|
|
104
|
+
color: #8590a6;
|
|
105
|
+
font-size: 14px;
|
|
106
|
+
}
|
|
107
|
+
.MetaText.is-en[data-v-53070acd] {
|
|
108
|
+
margin-right: 10px;
|
|
109
|
+
}
|
|
110
|
+
.ContentItem__meta[data-v-53070acd] {
|
|
111
|
+
margin-top: 8px;
|
|
112
|
+
}
|
|
113
|
+
.ContentItem__titleText[data-v-53070acd] {
|
|
114
|
+
margin-right: 10px;
|
|
115
|
+
}
|
|
116
|
+
.ContentItem__status[data-v-53070acd] {
|
|
117
|
+
font-size: 14px;
|
|
118
|
+
margin: 0 4px 0 -4px;
|
|
119
|
+
vertical-align: 1px;
|
|
120
|
+
}
|
|
121
|
+
.ContentItem__abstracts[data-v-53070acd] {
|
|
122
|
+
margin-top: 10px;
|
|
123
|
+
color: #8590a6;
|
|
124
|
+
}
|
|
125
|
+
.Keywords[data-v-53070acd] {
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-wrap: wrap;
|
|
128
|
+
line-height: 1.7;
|
|
129
|
+
}
|
|
130
|
+
.Keyword[data-v-53070acd] {
|
|
131
|
+
font-size: 14px;
|
|
132
|
+
color: #646464;
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
margin-right: 10px;
|
|
135
|
+
transition: all 0.3s;
|
|
136
|
+
word-break: break-word;
|
|
137
|
+
height: 24px;
|
|
138
|
+
}
|
|
139
|
+
.Keyword[data-v-53070acd]:hover {
|
|
140
|
+
border-bottom: 1px dotted #444;
|
|
141
|
+
color: #2F3A91;
|
|
142
|
+
}
|
|
143
|
+
.KeywordMore[data-v-53070acd] {
|
|
144
|
+
font-size: 14px;
|
|
145
|
+
color: #8590a6;
|
|
146
|
+
cursor: pointer;
|
|
147
|
+
}
|
|
148
|
+
.KeywordMore[data-v-53070acd]:hover {
|
|
149
|
+
opacity: 0.8;
|
|
150
|
+
}
|
|
151
|
+
.AuthorInfo[data-v-53070acd] {
|
|
152
|
+
display: flex;
|
|
153
|
+
}
|
|
154
|
+
.AuthorInfo .base-icon-s-custom[data-v-53070acd] {
|
|
155
|
+
color: #8590a6;
|
|
156
|
+
padding-top: 5px;
|
|
157
|
+
margin-right: 10px;
|
|
158
|
+
font-size: 15px;
|
|
159
|
+
transition: color 0.3s;
|
|
160
|
+
}
|
|
161
|
+
.AuthorInfo .base-icon-s-custom[data-v-53070acd]:hover {
|
|
162
|
+
color: #2F3A91;
|
|
163
|
+
}
|
|
164
|
+
.AuthorInfo__content[data-v-53070acd] {
|
|
165
|
+
flex: 1;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
display: inline-block;
|
|
168
|
+
line-height: 1.7;
|
|
169
|
+
}
|
|
170
|
+
.AuthorInfo__content .Button--more[data-v-53070acd] {
|
|
171
|
+
margin-left: 6px;
|
|
172
|
+
}
|
|
173
|
+
.AuthorInfo__content .Dot[data-v-53070acd] {
|
|
174
|
+
font-weight: 600;
|
|
175
|
+
margin: 0 4px 0 0 !important;
|
|
176
|
+
}
|
|
177
|
+
.AuthorInfo__extra[data-v-53070acd] {
|
|
178
|
+
font-size: 12px;
|
|
179
|
+
padding: 0 6px 0 0;
|
|
180
|
+
color: #8590a6;
|
|
181
|
+
cursor: pointer;
|
|
182
|
+
font-weight: 600;
|
|
183
|
+
}
|
|
184
|
+
.AuthorInfo__extra[data-v-53070acd]:hover {
|
|
185
|
+
opacity: 0.8;
|
|
186
|
+
}
|
|
187
|
+
.AuthorInfo__avatar[data-v-53070acd] {
|
|
188
|
+
vertical-align: top;
|
|
189
|
+
}
|
|
190
|
+
.AuthorInfo__name[data-v-53070acd] {
|
|
191
|
+
font-weight: 600;
|
|
192
|
+
margin-right: 6px;
|
|
193
|
+
font-size: 15px;
|
|
194
|
+
}
|
|
195
|
+
.AuthorInfo__name.AuthorInfo__name--light[data-v-53070acd] {
|
|
196
|
+
font-weight: 500;
|
|
197
|
+
}
|
|
198
|
+
.ContentItem__label[data-v-53070acd] {
|
|
199
|
+
color: #8590a6;
|
|
200
|
+
margin-right: 4px;
|
|
201
|
+
}
|
|
202
|
+
.ContentItem__comma[data-v-53070acd] {
|
|
203
|
+
color: #8590a6;
|
|
204
|
+
}
|
|
205
|
+
.ContentItem__source .ContentItem__comma[data-v-53070acd] {
|
|
206
|
+
margin-right: 2px;
|
|
207
|
+
}
|
|
208
|
+
.BookAuthor .AuthorInfo__nameText[data-v-53070acd] {
|
|
209
|
+
cursor: default;
|
|
210
|
+
}
|
|
211
|
+
.AuthorInfo__nameText[data-v-53070acd] {
|
|
212
|
+
cursor: pointer;
|
|
213
|
+
transition: all 0.3s;
|
|
214
|
+
color: #646464;
|
|
215
|
+
}
|
|
216
|
+
.AuthorInfo__nameText[data-v-53070acd]:hover {
|
|
217
|
+
border-bottom: 1px dotted #646464;
|
|
218
|
+
color: #2F3A91;
|
|
219
|
+
}
|
|
220
|
+
.AuthorInfo__nameText.is-disabled[data-v-53070acd] {
|
|
221
|
+
cursor: auto;
|
|
222
|
+
}
|
|
223
|
+
.AuthorInfo__nameText.is-disabled[data-v-53070acd]:hover {
|
|
224
|
+
border: none;
|
|
225
|
+
color: #646464;
|
|
226
|
+
}
|
|
227
|
+
.ContentItem__source[data-v-53070acd] {
|
|
228
|
+
font-weight: 500;
|
|
229
|
+
color: #646464;
|
|
230
|
+
font-size: 15px;
|
|
231
|
+
}
|
|
232
|
+
.ContentItem__source .Keyword[data-v-53070acd] {
|
|
233
|
+
background-color: #fff2e8 !important;
|
|
234
|
+
color: #ff791a !important;
|
|
235
|
+
}
|
|
236
|
+
.ContentItem__source .Keyword.is-last[data-v-53070acd] {
|
|
237
|
+
margin-right: 3px !important;
|
|
238
|
+
}
|
|
239
|
+
.ContentItem__metaSource[data-v-53070acd] {
|
|
240
|
+
transition: all 0.3s;
|
|
241
|
+
cursor: pointer;
|
|
242
|
+
}
|
|
243
|
+
.ContentItem__metaSource[data-v-53070acd]:hover {
|
|
244
|
+
color: #2F3A91;
|
|
245
|
+
border-bottom: 1px dotted #646464;
|
|
246
|
+
}
|
|
247
|
+
.RichContent[data-v-53070acd] {
|
|
248
|
+
line-height: 1.6;
|
|
249
|
+
}
|
|
250
|
+
.RichContent[data-v-53070acd]::after {
|
|
251
|
+
display: block;
|
|
252
|
+
content: "";
|
|
253
|
+
clear: both;
|
|
254
|
+
}
|
|
255
|
+
.RichContent .RichText[data-v-53070acd] {
|
|
256
|
+
margin-right: 4px;
|
|
257
|
+
}
|
|
258
|
+
.RichContent.is-collapsed[data-v-53070acd] {
|
|
259
|
+
cursor: pointer;
|
|
260
|
+
transition: color 0.14s ease-out;
|
|
261
|
+
}
|
|
262
|
+
.RichContent__inner[data-v-53070acd] {
|
|
263
|
+
font-size: 15px;
|
|
264
|
+
overflow: hidden;
|
|
265
|
+
}
|
|
266
|
+
.RichText[data-v-53070acd] {
|
|
267
|
+
word-break: break-word;
|
|
268
|
+
line-height: 1.6;
|
|
269
|
+
}
|
|
270
|
+
.RichContent.is-collapsed .RichText[data-v-53070acd] {
|
|
271
|
+
pointer-events: none;
|
|
272
|
+
}
|
|
273
|
+
.RichContent.is-collapsed:not(.RichContent--unescapable) .RichText[data-v-53070acd] {
|
|
274
|
+
white-space: normal;
|
|
275
|
+
}
|
|
276
|
+
.RichContent.is-collapsed .RichContent__inner[data-v-53070acd]:hover {
|
|
277
|
+
color: #646464;
|
|
278
|
+
}
|
|
279
|
+
.ContentItem__more[data-v-53070acd] {
|
|
280
|
+
height: auto;
|
|
281
|
+
padding: 0;
|
|
282
|
+
color: #2F3A91;
|
|
283
|
+
}
|
|
284
|
+
.ContentItem__more[data-v-53070acd]:hover, .ContentItem__more[data-v-53070acd]:focus {
|
|
285
|
+
color: rgba(47, 58, 145, 0.75);
|
|
286
|
+
background-color: transparent !important;
|
|
287
|
+
border-color: transparent !important;
|
|
288
|
+
}
|
|
289
|
+
.ContentItem__more .Icon[data-v-53070acd] {
|
|
290
|
+
fill: currentColor;
|
|
291
|
+
}
|
|
292
|
+
.ContentItem__less[data-v-53070acd] {
|
|
293
|
+
height: auto;
|
|
294
|
+
padding: 0;
|
|
295
|
+
margin-left: 0;
|
|
296
|
+
color: #2F3A91;
|
|
297
|
+
}
|
|
298
|
+
.ContentItem__less[data-v-53070acd]:hover, .ContentItem__less[data-v-53070acd]:focus {
|
|
299
|
+
color: rgba(47, 58, 145, 0.75);
|
|
300
|
+
background-color: transparent !important;
|
|
301
|
+
border-color: transparent !important;
|
|
302
|
+
}
|
|
303
|
+
.ContentItem__keywords[data-v-53070acd] {
|
|
304
|
+
margin-top: 8px;
|
|
305
|
+
}
|
|
306
|
+
.PatentMetaList[data-v-53070acd] {
|
|
307
|
+
display: flex;
|
|
308
|
+
width: 100%;
|
|
309
|
+
border: 1px solid #EBEBEB;
|
|
310
|
+
padding: 10px;
|
|
311
|
+
}
|
|
312
|
+
.PatentMetaListItem[data-v-53070acd] {
|
|
313
|
+
flex: 1;
|
|
314
|
+
color: #8590a6;
|
|
315
|
+
line-height: 1.5;
|
|
316
|
+
font-size: 15px;
|
|
317
|
+
text-align: center;
|
|
318
|
+
display: flex;
|
|
319
|
+
align-items: center;
|
|
320
|
+
justify-content: center;
|
|
321
|
+
}
|
|
322
|
+
.PatentMetaListItem > div[data-v-53070acd] {
|
|
323
|
+
text-align: left;
|
|
324
|
+
}
|
|
325
|
+
.PatentMetaListItem + .PatentMetaListItem[data-v-53070acd] {
|
|
326
|
+
border-left: 1px solid #eaebf4;
|
|
327
|
+
}
|
|
328
|
+
.ContentItem__links[data-v-53070acd] {
|
|
329
|
+
display: flex;
|
|
330
|
+
flex-wrap: wrap;
|
|
331
|
+
margin-top: 10px;
|
|
332
|
+
margin-bottom: -10px;
|
|
333
|
+
}
|
|
334
|
+
.ContentItem__links .MetaText[data-v-53070acd] {
|
|
335
|
+
line-height: 36px;
|
|
336
|
+
}
|
|
337
|
+
.ContentItem__links .base-icon-s-promotion[data-v-53070acd] {
|
|
338
|
+
margin-right: 10px;
|
|
339
|
+
color: #2F3A91;
|
|
340
|
+
}
|
|
341
|
+
.ContentItem__link[data-v-53070acd] {
|
|
342
|
+
padding: 6px 14px;
|
|
343
|
+
margin-bottom: 10px;
|
|
344
|
+
box-sizing: border-box;
|
|
345
|
+
border-radius: 4px;
|
|
346
|
+
display: flex;
|
|
347
|
+
align-items: center;
|
|
348
|
+
justify-content: center;
|
|
349
|
+
-webkit-font-smoothing: antialiased;
|
|
350
|
+
cursor: pointer;
|
|
351
|
+
color: #121212;
|
|
352
|
+
background-image: linear-gradient(0deg, #fff, #f3f5f8);
|
|
353
|
+
border: 2px solid #fff;
|
|
354
|
+
box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, 0.1), -8px -8px 20px 0 #fff, inset 0 4px 20px 0 hsla(0, 0%, 100%, 0.5);
|
|
355
|
+
transition: all 0.3s;
|
|
356
|
+
margin-right: 16px;
|
|
357
|
+
}
|
|
358
|
+
.ContentItem__link[data-v-53070acd]:hover {
|
|
359
|
+
color: #2F3A91;
|
|
360
|
+
background: #f3f5f8;
|
|
361
|
+
box-shadow: inset 8px 8px 20px 0 rgba(55, 99, 170, 0.11), inset -8px -8px 20px 0 #fff;
|
|
362
|
+
}
|
|
363
|
+
.ContentItem__linkDot[data-v-53070acd] {
|
|
364
|
+
width: 10px;
|
|
365
|
+
height: 10px;
|
|
366
|
+
border-radius: 50%;
|
|
367
|
+
background-color: #67C23A;
|
|
368
|
+
margin-right: 6px;
|
|
369
|
+
display: inline-block;
|
|
370
|
+
}
|
|
371
|
+
.ContentItem__linkLogo[data-v-53070acd] {
|
|
372
|
+
width: 20px;
|
|
373
|
+
height: 20px;
|
|
374
|
+
border-radius: 50%;
|
|
375
|
+
margin-right: 6px;
|
|
376
|
+
}
|
|
377
|
+
.ContentItem__linkDotMeta[data-v-53070acd] {
|
|
378
|
+
margin-left: auto;
|
|
379
|
+
display: inline-block;
|
|
380
|
+
font-weight: 600;
|
|
381
|
+
font-size: 12px;
|
|
382
|
+
color: #121212;
|
|
383
|
+
margin-bottom: 6px;
|
|
384
|
+
padding-top: 4px;
|
|
385
|
+
}
|
|
386
|
+
.ContentItem__pdf[data-v-53070acd] {
|
|
387
|
+
vertical-align: -2px;
|
|
388
|
+
display: inline-block;
|
|
389
|
+
margin-right: 10px;
|
|
390
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[data-v-53070acd]:export{primary:#2F3A91;success:#67C23A;warning:#FF791A;danger:#F1403C;info:#8590a6}.ContentItem.is-en[data-v-53070acd]{font-family:Inter,Roboto,pingfang SC,hiragino sans gb,Apple SD Gothic Neo,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,sans-serif,helvetica neue,arial,microsoft yahei ui,microsoft yahei,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.ContentItem__title[data-v-53070acd]{font-size:18px;color:#2f3a91;font-weight:600;font-synthesis:style;line-height:1.6;word-break:break-word;cursor:pointer;transition:color .3s}.ContentItem__title a[data-v-53070acd]{display:inline-block}.ContentItem__title[data-v-53070acd]:hover{color:rgba(47,58,145,.75)}.ContentItem__author[data-v-53070acd]{margin-top:6px}.ContentItem__author.is-disabled .AuthorInfo__nameText[data-v-53070acd]{cursor:auto}.ContentItem__author.is-disabled .AuthorInfo__nameText[data-v-53070acd]:hover{border:none;color:#646464}.MetaText[data-v-53070acd]{color:#8590a6;font-size:14px}.MetaText.is-en[data-v-53070acd]{margin-right:10px}.ContentItem__meta[data-v-53070acd]{margin-top:8px}.ContentItem__titleText[data-v-53070acd]{margin-right:10px}.ContentItem__status[data-v-53070acd]{font-size:14px;margin:0 4px 0 -4px;vertical-align:1px}.ContentItem__abstracts[data-v-53070acd]{margin-top:10px;color:#8590a6}.Keywords[data-v-53070acd]{display:flex;flex-wrap:wrap;line-height:1.7}.Keyword[data-v-53070acd]{font-size:14px;color:#646464;cursor:pointer;margin-right:10px;transition:all .3s;word-break:break-word;height:24px}.Keyword[data-v-53070acd]:hover{border-bottom:1px dotted #444;color:#2f3a91}.KeywordMore[data-v-53070acd]{font-size:14px;color:#8590a6;cursor:pointer}.KeywordMore[data-v-53070acd]:hover{opacity:.8}.AuthorInfo[data-v-53070acd]{display:flex}.AuthorInfo .base-icon-s-custom[data-v-53070acd]{color:#8590a6;padding-top:5px;margin-right:10px;font-size:15px;transition:color .3s}.AuthorInfo .base-icon-s-custom[data-v-53070acd]:hover{color:#2f3a91}.AuthorInfo__content[data-v-53070acd]{flex:1;overflow:hidden;display:inline-block;line-height:1.7}.AuthorInfo__content .Button--more[data-v-53070acd]{margin-left:6px}.AuthorInfo__content .Dot[data-v-53070acd]{font-weight:600;margin:0 4px 0 0!important}.AuthorInfo__extra[data-v-53070acd]{font-size:12px;padding:0 6px 0 0;color:#8590a6;cursor:pointer;font-weight:600}.AuthorInfo__extra[data-v-53070acd]:hover{opacity:.8}.AuthorInfo__avatar[data-v-53070acd]{vertical-align:top}.AuthorInfo__name[data-v-53070acd]{font-weight:600;margin-right:6px;font-size:15px}.AuthorInfo__name.AuthorInfo__name--light[data-v-53070acd]{font-weight:500}.ContentItem__label[data-v-53070acd]{color:#8590a6;margin-right:4px}.ContentItem__comma[data-v-53070acd]{color:#8590a6}.ContentItem__source .ContentItem__comma[data-v-53070acd]{margin-right:2px}.BookAuthor .AuthorInfo__nameText[data-v-53070acd]{cursor:default}.AuthorInfo__nameText[data-v-53070acd]{cursor:pointer;transition:all .3s;color:#646464}.AuthorInfo__nameText[data-v-53070acd]:hover{border-bottom:1px dotted #646464;color:#2f3a91}.AuthorInfo__nameText.is-disabled[data-v-53070acd]{cursor:auto}.AuthorInfo__nameText.is-disabled[data-v-53070acd]:hover{border:none;color:#646464}.ContentItem__source[data-v-53070acd]{font-weight:500;color:#646464;font-size:15px}.ContentItem__source .Keyword[data-v-53070acd]{background-color:#fff2e8!important;color:#ff791a!important}.ContentItem__source .Keyword.is-last[data-v-53070acd]{margin-right:3px!important}.ContentItem__metaSource[data-v-53070acd]{transition:all .3s;cursor:pointer}.ContentItem__metaSource[data-v-53070acd]:hover{color:#2f3a91;border-bottom:1px dotted #646464}.RichContent[data-v-53070acd]{line-height:1.6}.RichContent[data-v-53070acd]::after{display:block;content:"";clear:both}.RichContent .RichText[data-v-53070acd]{margin-right:4px}.RichContent.is-collapsed[data-v-53070acd]{cursor:pointer;transition:color .14s ease-out}.RichContent__inner[data-v-53070acd]{font-size:15px;overflow:hidden}.RichText[data-v-53070acd]{word-break:break-word;line-height:1.6}.RichContent.is-collapsed .RichText[data-v-53070acd]{pointer-events:none}.RichContent.is-collapsed:not(.RichContent--unescapable) .RichText[data-v-53070acd]{white-space:normal}.RichContent.is-collapsed .RichContent__inner[data-v-53070acd]:hover{color:#646464}.ContentItem__more[data-v-53070acd]{height:auto;padding:0;color:#2f3a91}.ContentItem__more[data-v-53070acd]:focus,.ContentItem__more[data-v-53070acd]:hover{color:rgba(47,58,145,.75);background-color:transparent!important;border-color:transparent!important}.ContentItem__more .Icon[data-v-53070acd]{fill:currentColor}.ContentItem__less[data-v-53070acd]{height:auto;padding:0;margin-left:0;color:#2f3a91}.ContentItem__less[data-v-53070acd]:focus,.ContentItem__less[data-v-53070acd]:hover{color:rgba(47,58,145,.75);background-color:transparent!important;border-color:transparent!important}.ContentItem__keywords[data-v-53070acd]{margin-top:8px}.PatentMetaList[data-v-53070acd]{display:flex;width:100%;border:1px solid #ebebeb;padding:10px}.PatentMetaListItem[data-v-53070acd]{flex:1;color:#8590a6;line-height:1.5;font-size:15px;text-align:center;display:flex;align-items:center;justify-content:center}.PatentMetaListItem>div[data-v-53070acd]{text-align:left}.PatentMetaListItem+.PatentMetaListItem[data-v-53070acd]{border-left:1px solid #eaebf4}.ContentItem__links[data-v-53070acd]{display:flex;flex-wrap:wrap;margin-top:10px;margin-bottom:-10px}.ContentItem__links .MetaText[data-v-53070acd]{line-height:36px}.ContentItem__links .base-icon-s-promotion[data-v-53070acd]{margin-right:10px;color:#2f3a91}.ContentItem__link[data-v-53070acd]{padding:6px 14px;margin-bottom:10px;box-sizing:border-box;border-radius:4px;display:flex;align-items:center;justify-content:center;-webkit-font-smoothing:antialiased;cursor:pointer;color:#121212;background-image:linear-gradient(0deg,#fff,#f3f5f8);border:2px solid #fff;box-shadow:8px 8px 20px 0 rgba(55,99,170,.1),-8px -8px 20px 0 #fff,inset 0 4px 20px 0 hsla(0,0%,100%,.5);transition:all .3s;margin-right:16px}.ContentItem__link[data-v-53070acd]:hover{color:#2f3a91;background:#f3f5f8;box-shadow:inset 8px 8px 20px 0 rgba(55,99,170,.11),inset -8px -8px 20px 0 #fff}.ContentItem__linkDot[data-v-53070acd]{width:10px;height:10px;border-radius:50%;background-color:#67c23a;margin-right:6px;display:inline-block}.ContentItem__linkLogo[data-v-53070acd]{width:20px;height:20px;border-radius:50%;margin-right:6px}.ContentItem__linkDotMeta[data-v-53070acd]{margin-left:auto;display:inline-block;font-weight:600;font-size:12px;color:#121212;margin-bottom:6px;padding-top:4px}.ContentItem__pdf[data-v-53070acd]{vertical-align:-2px;display:inline-block;margin-right:10px}
|