@zkwq/business 0.0.1
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/index.css +1 -0
- package/dist/index.js +21861 -0
- package/dist/index.umd.cjs +46 -0
- package/package.json +27 -0
- package/src/components/base/ui/alert/Alert.vue +94 -0
- package/src/components/base/ui/autocomplete/autocomplete-suggestions.vue +77 -0
- package/src/components/base/ui/autocomplete/autocomplete.vue +305 -0
- package/src/components/base/ui/backtop/main.vue +112 -0
- package/src/components/base/ui/button/Button.vue +84 -0
- package/src/components/base/ui/button/ButtonGroup.vue +10 -0
- package/src/components/base/ui/carousel/Carousel.vue +304 -0
- package/src/components/base/ui/carousel/CarouselItem.vue +137 -0
- package/src/components/base/ui/cascader/cascader.vue +650 -0
- package/src/components/base/ui/cascader-panel/cascader-menu.vue +138 -0
- package/src/components/base/ui/cascader-panel/cascader-node.vue +246 -0
- package/src/components/base/ui/cascader-panel/cascader-panel.vue +382 -0
- package/src/components/base/ui/cascader-panel/node.js +166 -0
- package/src/components/base/ui/cascader-panel/store.js +62 -0
- package/src/components/base/ui/checkbox/checkbox-button.vue +199 -0
- package/src/components/base/ui/checkbox/checkbox-group.vue +48 -0
- package/src/components/base/ui/checkbox/checkbox.vue +222 -0
- package/src/components/base/ui/col/col.js +71 -0
- package/src/components/base/ui/collapse/collapse-item.vue +180 -0
- package/src/components/base/ui/collapse/collapse.vue +73 -0
- package/src/components/base/ui/color-picker/color.js +317 -0
- package/src/components/base/ui/color-picker/components/alpha-slider.vue +132 -0
- package/src/components/base/ui/color-picker/components/hue-slider.vue +123 -0
- package/src/components/base/ui/color-picker/components/picker-dropdown.vue +119 -0
- package/src/components/base/ui/color-picker/components/predefine.vue +61 -0
- package/src/components/base/ui/color-picker/components/sv-panel.vue +100 -0
- package/src/components/base/ui/color-picker/draggable.js +36 -0
- package/src/components/base/ui/color-picker/index.js +2 -0
- package/src/components/base/ui/color-picker/main.vue +188 -0
- package/src/components/base/ui/date-picker/basic/date-table.vue +441 -0
- package/src/components/base/ui/date-picker/basic/month-table.vue +254 -0
- package/src/components/base/ui/date-picker/basic/time-spinner.vue +304 -0
- package/src/components/base/ui/date-picker/basic/year-table.vue +101 -0
- package/src/components/base/ui/date-picker/panel/date-range.vue +680 -0
- package/src/components/base/ui/date-picker/panel/date.vue +597 -0
- package/src/components/base/ui/date-picker/panel/month-range.vue +289 -0
- package/src/components/base/ui/date-picker/panel/time-range.vue +248 -0
- package/src/components/base/ui/date-picker/panel/time-select.vue +178 -0
- package/src/components/base/ui/date-picker/panel/time.vue +186 -0
- package/src/components/base/ui/date-picker/picker/date-picker.js +43 -0
- package/src/components/base/ui/date-picker/picker/time-picker.js +39 -0
- package/src/components/base/ui/date-picker/picker/time-select.js +21 -0
- package/src/components/base/ui/date-picker/picker.vue +942 -0
- package/src/components/base/ui/dialog/Index.vue +212 -0
- package/src/components/base/ui/directive/repeat-click.js +24 -0
- package/src/components/base/ui/directive/ripple.js +303 -0
- package/src/components/base/ui/divider/Divider.vue +37 -0
- package/src/components/base/ui/drawer/Drawer.vue +202 -0
- package/src/components/base/ui/dropdown/dropdown-item.vue +39 -0
- package/src/components/base/ui/dropdown/dropdown-menu.vue +63 -0
- package/src/components/base/ui/dropdown/dropdown.vue +308 -0
- package/src/components/base/ui/form/Form.vue +167 -0
- package/src/components/base/ui/form/FormItem.vue +334 -0
- package/src/components/base/ui/form/LabelWrap.vue +69 -0
- package/src/components/base/ui/icon/icon.vue +13 -0
- package/src/components/base/ui/image/image-viewer.vue +302 -0
- package/src/components/base/ui/image/main.vue +248 -0
- package/src/components/base/ui/index.js +189 -0
- package/src/components/base/ui/input/Input.vue +438 -0
- package/src/components/base/ui/input/calcTextareaHeight.js +104 -0
- package/src/components/base/ui/input-number/input-number.vue +285 -0
- package/src/components/base/ui/locale/format.js +32 -0
- package/src/components/base/ui/locale/index.js +48 -0
- package/src/components/base/ui/locale/lang/zh-CN.js +120 -0
- package/src/components/base/ui/menu/menu-item-group.vue +45 -0
- package/src/components/base/ui/menu/menu-item.vue +112 -0
- package/src/components/base/ui/menu/menu-mixin.js +44 -0
- package/src/components/base/ui/menu/menu.vue +312 -0
- package/src/components/base/ui/menu/submenu.vue +408 -0
- package/src/components/base/ui/message/index.js +2 -0
- package/src/components/base/ui/message/main.js +87 -0
- package/src/components/base/ui/message/main.vue +110 -0
- package/src/components/base/ui/message-box/main.js +216 -0
- package/src/components/base/ui/message-box/main.vue +323 -0
- package/src/components/base/ui/mixin/emitter.js +31 -0
- package/src/components/base/ui/mixin/focus.js +9 -0
- package/src/components/base/ui/mixin/locale.js +9 -0
- package/src/components/base/ui/mixin/migrating.js +33 -0
- package/src/components/base/ui/pagination/pager.vue +163 -0
- package/src/components/base/ui/pagination/pagination.jsx +391 -0
- package/src/components/base/ui/popover/directive.js +20 -0
- package/src/components/base/ui/popover/index.js +14 -0
- package/src/components/base/ui/popover/main.vue +236 -0
- package/src/components/base/ui/progress/Progress.vue +227 -0
- package/src/components/base/ui/radio/radio-button.vue +114 -0
- package/src/components/base/ui/radio/radio-group.vue +111 -0
- package/src/components/base/ui/radio/radio.vue +134 -0
- package/src/components/base/ui/row/row.js +47 -0
- package/src/components/base/ui/scrollbar/bar.jsx +91 -0
- package/src/components/base/ui/scrollbar/index.jsx +203 -0
- package/src/components/base/ui/scrollbar/util.js +32 -0
- package/src/components/base/ui/select/Option.vue +168 -0
- package/src/components/base/ui/select/OptionGroup.vue +60 -0
- package/src/components/base/ui/select/Select.vue +920 -0
- package/src/components/base/ui/select/SelectDropdown.vue +74 -0
- package/src/components/base/ui/select/navigation-mixin.js +54 -0
- package/src/components/base/ui/skeleton/index.js +8 -0
- package/src/components/base/ui/skeleton/src/img-placeholder.vue +16 -0
- package/src/components/base/ui/skeleton/src/index.vue +80 -0
- package/src/components/base/ui/skeleton/src/item.vue +22 -0
- package/src/components/base/ui/skeleton-item/index.js +8 -0
- package/src/components/base/ui/slider/button.vue +238 -0
- package/src/components/base/ui/slider/main.vue +427 -0
- package/src/components/base/ui/slider/marker.js +18 -0
- package/src/components/base/ui/style/alert.scss +147 -0
- package/src/components/base/ui/style/animations.scss +65 -0
- package/src/components/base/ui/style/autocomplete.scss +81 -0
- package/src/components/base/ui/style/backtop.scss +20 -0
- package/src/components/base/ui/style/button-group.scss +0 -0
- package/src/components/base/ui/style/button.scss +380 -0
- package/src/components/base/ui/style/carousel-item.scss +50 -0
- package/src/components/base/ui/style/carousel.scss +161 -0
- package/src/components/base/ui/style/cascader-panel.scss +120 -0
- package/src/components/base/ui/style/cascader.scss +185 -0
- package/src/components/base/ui/style/checkbox-button.scss +0 -0
- package/src/components/base/ui/style/checkbox-group.scss +0 -0
- package/src/components/base/ui/style/checkbox.scss +360 -0
- package/src/components/base/ui/style/col.scss +156 -0
- package/src/components/base/ui/style/collapse-item.scss +0 -0
- package/src/components/base/ui/style/collapse.scss +114 -0
- package/src/components/base/ui/style/color-picker.scss +387 -0
- package/src/components/base/ui/style/config.scss +4 -0
- package/src/components/base/ui/style/date-picker/date-picker.scss +97 -0
- package/src/components/base/ui/style/date-picker/date-range-picker.scss +101 -0
- package/src/components/base/ui/style/date-picker/date-table.scss +151 -0
- package/src/components/base/ui/style/date-picker/month-table.scss +82 -0
- package/src/components/base/ui/style/date-picker/picker-panel.scss +117 -0
- package/src/components/base/ui/style/date-picker/picker.scss +197 -0
- package/src/components/base/ui/style/date-picker/time-picker.scss +85 -0
- package/src/components/base/ui/style/date-picker/time-range-picker.scss +31 -0
- package/src/components/base/ui/style/date-picker/time-spinner.scss +110 -0
- package/src/components/base/ui/style/date-picker/year-table.scss +51 -0
- package/src/components/base/ui/style/date-picker.scss +12 -0
- package/src/components/base/ui/style/dialog.scss +123 -0
- package/src/components/base/ui/style/divider.scss +47 -0
- package/src/components/base/ui/style/drawer.scss +218 -0
- package/src/components/base/ui/style/dropdown-item.scss +0 -0
- package/src/components/base/ui/style/dropdown-menu.scss +0 -0
- package/src/components/base/ui/style/dropdown.scss +185 -0
- package/src/components/base/ui/style/form-item.scss +0 -0
- package/src/components/base/ui/style/form.scss +203 -0
- package/src/components/base/ui/style/function.scss +43 -0
- package/src/components/base/ui/style/icon.scss +1167 -0
- package/src/components/base/ui/style/image.scss +184 -0
- package/src/components/base/ui/style/index.scss +57 -0
- package/src/components/base/ui/style/input-number.scss +187 -0
- package/src/components/base/ui/style/input.scss +477 -0
- package/src/components/base/ui/style/menu-item-group.scss +0 -0
- package/src/components/base/ui/style/menu-item.scss +0 -0
- package/src/components/base/ui/style/menu.scss +294 -0
- package/src/components/base/ui/style/message-box.scss +231 -0
- package/src/components/base/ui/style/message.scss +120 -0
- package/src/components/base/ui/style/mixins.scss +196 -0
- package/src/components/base/ui/style/option-group.scss +42 -0
- package/src/components/base/ui/style/option.scss +36 -0
- package/src/components/base/ui/style/pagination.scss +295 -0
- package/src/components/base/ui/style/popover.scss +40 -0
- package/src/components/base/ui/style/popper.scss +102 -0
- package/src/components/base/ui/style/popup.scss +42 -0
- package/src/components/base/ui/style/progress.scss +141 -0
- package/src/components/base/ui/style/radio-button.scss +113 -0
- package/src/components/base/ui/style/radio-group.scss +9 -0
- package/src/components/base/ui/style/radio.scss +203 -0
- package/src/components/base/ui/style/ripple.scss +35 -0
- package/src/components/base/ui/style/row.scss +39 -0
- package/src/components/base/ui/style/scrollbar.scss +75 -0
- package/src/components/base/ui/style/select-dropdown.scss +59 -0
- package/src/components/base/ui/style/select.scss +154 -0
- package/src/components/base/ui/style/skeleton-item.scss +84 -0
- package/src/components/base/ui/style/skeleton.scss +40 -0
- package/src/components/base/ui/style/slider.scss +250 -0
- package/src/components/base/ui/style/switch.scss +116 -0
- package/src/components/base/ui/style/tabs.scss +602 -0
- package/src/components/base/ui/style/tag.scss +174 -0
- package/src/components/base/ui/style/tooltip.scss +146 -0
- package/src/components/base/ui/style/transition.scss +138 -0
- package/src/components/base/ui/style/upload.scss +603 -0
- package/src/components/base/ui/style/utils.scss +39 -0
- package/src/components/base/ui/style/var.scss +1007 -0
- package/src/components/base/ui/switch/index.vue +174 -0
- package/src/components/base/ui/tabs/tab-bar.vue +57 -0
- package/src/components/base/ui/tabs/tab-nav.vue +294 -0
- package/src/components/base/ui/tabs/tab-pane.vue +56 -0
- package/src/components/base/ui/tabs/tabs.vue +191 -0
- package/src/components/base/ui/tag/Tag.vue +60 -0
- package/src/components/base/ui/tooltip/tooltip.jsx +234 -0
- package/src/components/base/ui/upload/Index.vue +340 -0
- package/src/components/base/ui/upload/Upload.vue +216 -0
- package/src/components/base/ui/upload/UploadDragger.vue +70 -0
- package/src/components/base/ui/upload/UploadList.vue +100 -0
- package/src/components/base/ui/upload/ajax.js +85 -0
- package/src/components/base/ui/util/aria-dialog.js +90 -0
- package/src/components/base/ui/util/aria-utils.js +122 -0
- package/src/components/base/ui/util/clickoutside.js +76 -0
- package/src/components/base/ui/util/date-util.js +292 -0
- package/src/components/base/ui/util/date.js +370 -0
- package/src/components/base/ui/util/debounce.js +21 -0
- package/src/components/base/ui/util/deepmerge.js +100 -0
- package/src/components/base/ui/util/dom.js +215 -0
- package/src/components/base/ui/util/index.js +262 -0
- package/src/components/base/ui/util/menu/aria-menubar.js +14 -0
- package/src/components/base/ui/util/menu/aria-menuitem.js +49 -0
- package/src/components/base/ui/util/menu/aria-submenu.js +59 -0
- package/src/components/base/ui/util/merge.js +14 -0
- package/src/components/base/ui/util/popper.js +1235 -0
- package/src/components/base/ui/util/popup/index.js +218 -0
- package/src/components/base/ui/util/popup/popup-manager.js +194 -0
- package/src/components/base/ui/util/resize-events.js +32 -0
- package/src/components/base/ui/util/scroll-into-view.js +27 -0
- package/src/components/base/ui/util/scrollbar-width.js +29 -0
- package/src/components/base/ui/util/shared.js +7 -0
- package/src/components/base/ui/util/throttle.js +91 -0
- package/src/components/base/ui/util/types.js +24 -0
- package/src/components/base/ui/util/vdom.js +5 -0
- package/src/components/base/ui/util/vue-popper.js +188 -0
- package/src/components/normal/AggsItemH.vue +139 -0
- package/src/index.js +10 -0
- package/src/static/base-icons.ttf +0 -0
- package/src/static/base-icons.woff +0 -0
- package/src/static/label_bg.png +0 -0
- package/src/static/term-label-bg.png +0 -0
- package/src/style/app-article.scss +698 -0
- package/src/style/app-comment.scss +259 -0
- package/src/style/app-recommend.scss +48 -0
- package/src/style/app-richtext.scss +176 -0
- package/src/style/index.scss +523 -0
- package/vite.config.js +38 -0
|
@@ -0,0 +1,698 @@
|
|
|
1
|
+
@import "../components/base/ui/style/var";
|
|
2
|
+
.Article__root {
|
|
3
|
+
position: absolute;
|
|
4
|
+
width: 100%;
|
|
5
|
+
height: 100%;
|
|
6
|
+
background-color: $--color-white;
|
|
7
|
+
}
|
|
8
|
+
.Article__main {
|
|
9
|
+
min-height: calc(100vh - 303px);
|
|
10
|
+
}
|
|
11
|
+
.Article {
|
|
12
|
+
// background-color: #e9eff5;
|
|
13
|
+
background: #f3f5f8;
|
|
14
|
+
box-shadow: inset 8px 8px 20px 0 rgba(55,99,170,.11), inset -8px -8px 20px 0 #fff;
|
|
15
|
+
|
|
16
|
+
&.is-en {
|
|
17
|
+
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;
|
|
18
|
+
.RichText {
|
|
19
|
+
word-break: break-all;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.LabelWrapper {
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
justify-content: space-between;
|
|
26
|
+
margin-bottom: 10px;
|
|
27
|
+
}
|
|
28
|
+
.Label {
|
|
29
|
+
padding: 4px 0 4px 30px;;
|
|
30
|
+
font-size: 16px;
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
position: relative;
|
|
33
|
+
display: flex;
|
|
34
|
+
align-items: center;
|
|
35
|
+
justify-content: space-between;
|
|
36
|
+
background: url("../static/label_bg.png") no-repeat;
|
|
37
|
+
color: #FFF;
|
|
38
|
+
&:before {
|
|
39
|
+
content: "";
|
|
40
|
+
width: 8px;
|
|
41
|
+
height: 8px;
|
|
42
|
+
background-color: #ddbb34;
|
|
43
|
+
position: absolute;
|
|
44
|
+
left: 13px;
|
|
45
|
+
top: 11px;
|
|
46
|
+
}
|
|
47
|
+
&.LinkLabel {
|
|
48
|
+
background: none;
|
|
49
|
+
color: $--color-primary;
|
|
50
|
+
padding-left: 16px;
|
|
51
|
+
&:before {
|
|
52
|
+
left: 0;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.CCButton {
|
|
57
|
+
position: relative;
|
|
58
|
+
color: $--color-primary;
|
|
59
|
+
height: 28px;
|
|
60
|
+
line-height: 28px;
|
|
61
|
+
width: 100%;
|
|
62
|
+
background-color: #F3F5F8;
|
|
63
|
+
font-weight: 600;
|
|
64
|
+
box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1);
|
|
65
|
+
border: 1px solid $--color-primary;
|
|
66
|
+
cursor: default;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.ArticleContent {
|
|
70
|
+
width: 1200px;
|
|
71
|
+
margin: 0 auto;
|
|
72
|
+
display: flex;
|
|
73
|
+
padding: 16px 0;
|
|
74
|
+
}
|
|
75
|
+
.ArticleInfo {
|
|
76
|
+
width: 900px;
|
|
77
|
+
&.is-full {
|
|
78
|
+
width: 100%;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
.ArticleMeta {
|
|
82
|
+
width: 300px;
|
|
83
|
+
display: flex;
|
|
84
|
+
justify-content: end;
|
|
85
|
+
}
|
|
86
|
+
.ArticleMetaItems {
|
|
87
|
+
width: 100%;
|
|
88
|
+
padding: 4px 0;
|
|
89
|
+
// margin-right: -20px;
|
|
90
|
+
}
|
|
91
|
+
.ArticleMetaItem {
|
|
92
|
+
margin-left: 70px;
|
|
93
|
+
position: relative;
|
|
94
|
+
}
|
|
95
|
+
.ArticleMetaItem+.ArticleMetaItem {
|
|
96
|
+
margin-top: 24px;
|
|
97
|
+
}
|
|
98
|
+
.ArticleMetaItem__title {
|
|
99
|
+
color: $--color-primary;
|
|
100
|
+
font-size: 16px;
|
|
101
|
+
padding-left: 20px;
|
|
102
|
+
margin-bottom: 20px;
|
|
103
|
+
&:before {
|
|
104
|
+
content: "";
|
|
105
|
+
position: absolute;
|
|
106
|
+
left: 0;
|
|
107
|
+
width: 6px;
|
|
108
|
+
height: 16px;
|
|
109
|
+
background-color: $--color-primary;
|
|
110
|
+
border-radius: 4px;
|
|
111
|
+
top: 3px;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
.ArticleJournal {
|
|
115
|
+
width: 280px;
|
|
116
|
+
display: flex;
|
|
117
|
+
justify-content: end;
|
|
118
|
+
}
|
|
119
|
+
.JournalContent {
|
|
120
|
+
background-image: linear-gradient(0deg,#f3f6fc,#e9eef6);
|
|
121
|
+
border-radius: 2px;
|
|
122
|
+
display: flex;
|
|
123
|
+
align-items: center;
|
|
124
|
+
justify-content: center;
|
|
125
|
+
flex-direction: column;
|
|
126
|
+
padding: 20px;
|
|
127
|
+
max-width: 240px;
|
|
128
|
+
min-width: 210px;
|
|
129
|
+
max-height: 360px;
|
|
130
|
+
img {
|
|
131
|
+
border-radius: 2px;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
.JournalContent__title {
|
|
135
|
+
font-size: 16px;
|
|
136
|
+
font-weight: 500;
|
|
137
|
+
margin-top: 24px;
|
|
138
|
+
text-align: center;
|
|
139
|
+
}
|
|
140
|
+
.JournalContent__meta {
|
|
141
|
+
font-size: 15px;
|
|
142
|
+
color: $--color-text-secondary;
|
|
143
|
+
margin-top: 10px;
|
|
144
|
+
}
|
|
145
|
+
.ArticleInfo__title {
|
|
146
|
+
font-size: 22px;
|
|
147
|
+
font-weight: 600;
|
|
148
|
+
font-synthesis: style;
|
|
149
|
+
line-height: 32px;
|
|
150
|
+
color: $--color-primary;
|
|
151
|
+
}
|
|
152
|
+
.ArticleInfo__titleText {
|
|
153
|
+
margin-right: 12px;
|
|
154
|
+
}
|
|
155
|
+
.ArticleInfo__cc {
|
|
156
|
+
color: $--color-text-primary;
|
|
157
|
+
font-size: 15px;
|
|
158
|
+
font-weight: 600;
|
|
159
|
+
margin-top: 20px;
|
|
160
|
+
margin-bottom: 6px;
|
|
161
|
+
}
|
|
162
|
+
.ArticleInfo__line {
|
|
163
|
+
height: 1px;
|
|
164
|
+
width: 100%;
|
|
165
|
+
background-color: $--color-primary-light-8;
|
|
166
|
+
margin: 20px 0 14px;
|
|
167
|
+
}
|
|
168
|
+
.Link__line, .Recommendation__line {
|
|
169
|
+
height: 1px;
|
|
170
|
+
width: 100%;
|
|
171
|
+
background-color: $--color-primary-light-8;
|
|
172
|
+
}
|
|
173
|
+
.ArticleInfo__keywords {
|
|
174
|
+
display: flex;
|
|
175
|
+
flex-wrap: wrap;
|
|
176
|
+
align-items: center;
|
|
177
|
+
margin-bottom: 0px;
|
|
178
|
+
margin-top: 14px;
|
|
179
|
+
}
|
|
180
|
+
.ArticleInfo__keywordLabel {
|
|
181
|
+
margin-right: 8px;
|
|
182
|
+
margin-bottom: 8px;
|
|
183
|
+
color: $--color-text-secondary;
|
|
184
|
+
&.is-en {
|
|
185
|
+
margin-right: 8px;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
.ArticleInfo__keyword {
|
|
189
|
+
border-radius: 20px;
|
|
190
|
+
background-color: transparent;
|
|
191
|
+
border: 1px solid $--color-primary;
|
|
192
|
+
font-size: $--font-size-extra-small;
|
|
193
|
+
padding: 2px 8px;
|
|
194
|
+
color: $--color-primary;
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
margin-right: 8px;
|
|
197
|
+
margin-bottom: 8px;
|
|
198
|
+
height: auto;
|
|
199
|
+
white-space: normal;
|
|
200
|
+
transition: all .3s;
|
|
201
|
+
&:hover {
|
|
202
|
+
opacity: .8;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
.ArticleInfo__abstracts {
|
|
206
|
+
font-size: 15px;
|
|
207
|
+
line-height: 1.6;
|
|
208
|
+
text-align: justify;
|
|
209
|
+
margin-top: 12px;
|
|
210
|
+
.RichContent {
|
|
211
|
+
color: $--color-text-regular;
|
|
212
|
+
&::after {
|
|
213
|
+
display: block;
|
|
214
|
+
content: "";
|
|
215
|
+
clear: both;
|
|
216
|
+
}
|
|
217
|
+
.RichText {
|
|
218
|
+
margin-right: 4px;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
.RichContent.is-collapsed {
|
|
222
|
+
cursor: pointer;
|
|
223
|
+
transition: color .14s ease-out;
|
|
224
|
+
}
|
|
225
|
+
.RichContent__inner {
|
|
226
|
+
font-size: 15px;
|
|
227
|
+
overflow: hidden;
|
|
228
|
+
}
|
|
229
|
+
.RichText {
|
|
230
|
+
word-break: break-word;
|
|
231
|
+
}
|
|
232
|
+
.RichContent.is-collapsed .RichText {
|
|
233
|
+
pointer-events: none;
|
|
234
|
+
}
|
|
235
|
+
.RichContent.is-collapsed:not(.RichContent--unescapable) .RichText {
|
|
236
|
+
white-space: normal;
|
|
237
|
+
}
|
|
238
|
+
.RichContent.is-collapsed .RichContent__inner:hover {
|
|
239
|
+
color: $--color-text-primary;
|
|
240
|
+
}
|
|
241
|
+
.RichContent__more {
|
|
242
|
+
height: auto;
|
|
243
|
+
padding: 0;
|
|
244
|
+
color: $--color-primary;
|
|
245
|
+
&:hover, &:focus {
|
|
246
|
+
color: rgba(47,58,145, .8);
|
|
247
|
+
background-color: transparent!important;
|
|
248
|
+
border-color: transparent!important;
|
|
249
|
+
}
|
|
250
|
+
.Icon {
|
|
251
|
+
fill: currentColor;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
.RichContent__less {
|
|
255
|
+
height: auto;
|
|
256
|
+
padding: 0;
|
|
257
|
+
margin-left: 0;
|
|
258
|
+
color: $--color-primary;
|
|
259
|
+
&:hover, &:focus {
|
|
260
|
+
color: rgba(47,58,145, .8);
|
|
261
|
+
background-color: transparent!important;
|
|
262
|
+
border-color: transparent!important;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
.FullAbstracts {
|
|
267
|
+
white-space: normal;
|
|
268
|
+
word-break: break-word;
|
|
269
|
+
color: $--color-text-regular;
|
|
270
|
+
&:hover {
|
|
271
|
+
color: $--color-text-primary;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
.ArticleInfo__author {
|
|
275
|
+
.AuthorInfo {
|
|
276
|
+
display: flex;
|
|
277
|
+
align-items: center;
|
|
278
|
+
margin-top: 6px;
|
|
279
|
+
//font-style: italic;
|
|
280
|
+
.base-icon-s-custom {
|
|
281
|
+
color: $--color-text-secondary;
|
|
282
|
+
padding-top: 1px;
|
|
283
|
+
font-size: 15px;
|
|
284
|
+
margin-right: 10px;
|
|
285
|
+
transition: color .3s;
|
|
286
|
+
&:hover {
|
|
287
|
+
color: $--color-primary;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
.AuthorInfo__content {
|
|
292
|
+
flex: 1;
|
|
293
|
+
overflow: hidden;
|
|
294
|
+
display: inline-block;
|
|
295
|
+
line-height: 1.6;
|
|
296
|
+
.Button--more {
|
|
297
|
+
margin-left: 6px;
|
|
298
|
+
}
|
|
299
|
+
.Dot {
|
|
300
|
+
font-weight: 600;
|
|
301
|
+
margin: 0 4px 0 0!important;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
.AuthorInfo__extra {
|
|
305
|
+
font-size: $--font-size-extra-small;
|
|
306
|
+
padding: 0 6px 0 0;
|
|
307
|
+
color: #444;
|
|
308
|
+
cursor: pointer;
|
|
309
|
+
font-weight: 600;
|
|
310
|
+
&:hover {
|
|
311
|
+
opacity: .8;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
.AuthorInfo__avatar {
|
|
315
|
+
vertical-align: top;
|
|
316
|
+
}
|
|
317
|
+
.AuthorInfo__name {
|
|
318
|
+
font-weight: 600;
|
|
319
|
+
margin-right: 6px;
|
|
320
|
+
font-size: 15px;
|
|
321
|
+
&.AuthorInfo__name--light {
|
|
322
|
+
font-weight: 500;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
.AuthorInfo__nameText {
|
|
326
|
+
cursor: pointer;
|
|
327
|
+
transition: all .3s;
|
|
328
|
+
color: $--color-text-primary;
|
|
329
|
+
white-space: nowrap;
|
|
330
|
+
&:hover {
|
|
331
|
+
border-bottom: 1px dotted $--color-text-regular;
|
|
332
|
+
color: $--color-primary;
|
|
333
|
+
}
|
|
334
|
+
sup {
|
|
335
|
+
color: $--color-text-secondary;
|
|
336
|
+
font-size: 13px;
|
|
337
|
+
}
|
|
338
|
+
&.is-disabled {
|
|
339
|
+
cursor: auto;
|
|
340
|
+
&:hover {
|
|
341
|
+
border: none;
|
|
342
|
+
color: $--color-text-primary;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
.ArticleInfo__institution {
|
|
348
|
+
border-left: 4px solid #d5d8e9;
|
|
349
|
+
border-radius: 2px;
|
|
350
|
+
padding-left: 10px;
|
|
351
|
+
margin-top: 12px;
|
|
352
|
+
margin-bottom: 16px;
|
|
353
|
+
color: $--color-text-secondary;
|
|
354
|
+
font-size: 14px;
|
|
355
|
+
line-height: 1.7;
|
|
356
|
+
}
|
|
357
|
+
.ArticleInfo__institutionItem {
|
|
358
|
+
margin-right: 10px;
|
|
359
|
+
}
|
|
360
|
+
.ArticleInfo__institutionItemIndex {
|
|
361
|
+
color: $--color-primary;
|
|
362
|
+
}
|
|
363
|
+
.ArticleInfo__label {
|
|
364
|
+
color: $--color-text-secondary;
|
|
365
|
+
margin-right: 4px;
|
|
366
|
+
}
|
|
367
|
+
.ArticleInfo__comma {
|
|
368
|
+
color: $--color-text-secondary;
|
|
369
|
+
}
|
|
370
|
+
.ArticleInfo__source {
|
|
371
|
+
&.Classification {
|
|
372
|
+
line-height: 1.6;
|
|
373
|
+
}
|
|
374
|
+
&.Classification+&.Classification {
|
|
375
|
+
margin-top: 6px!important;
|
|
376
|
+
}
|
|
377
|
+
.ArticleInfo__comma {
|
|
378
|
+
margin-right: 2px;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
.ArticleInfo__source {
|
|
382
|
+
margin-top: 12px;
|
|
383
|
+
}
|
|
384
|
+
.MetaText {
|
|
385
|
+
color: $--color-text-secondary;
|
|
386
|
+
font-size: 15px;
|
|
387
|
+
&.is-en {
|
|
388
|
+
margin-right: 8px;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
.FoundationText {
|
|
392
|
+
line-height: 1.5;
|
|
393
|
+
}
|
|
394
|
+
.ArticleInfo__sourceTitle {
|
|
395
|
+
//font-style: italic;
|
|
396
|
+
font-weight: 500;
|
|
397
|
+
color: $--color-text-primary;
|
|
398
|
+
font-size: 15px;
|
|
399
|
+
.Keyword {
|
|
400
|
+
//background-color: #fff2e8!important;
|
|
401
|
+
color: $--color-primary!important;
|
|
402
|
+
&:after {
|
|
403
|
+
content: ',';
|
|
404
|
+
color: $--color-text-regular;
|
|
405
|
+
margin-right: 4px;
|
|
406
|
+
}
|
|
407
|
+
&.is-last {
|
|
408
|
+
// margin-right: 3px!important;
|
|
409
|
+
}
|
|
410
|
+
&.is-first {
|
|
411
|
+
// margin-left: -6px!important;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
.ArticleInfo__metaSource {
|
|
416
|
+
transition: all .3s;
|
|
417
|
+
&:hover {
|
|
418
|
+
color: $--color-primary;
|
|
419
|
+
border-bottom: 1px dotted $--color-text-regular;
|
|
420
|
+
}
|
|
421
|
+
cursor: pointer;
|
|
422
|
+
}
|
|
423
|
+
.LinkContent {
|
|
424
|
+
}
|
|
425
|
+
.Link {
|
|
426
|
+
width: 1200px;
|
|
427
|
+
margin: 0 auto;
|
|
428
|
+
padding: 0 0 20px 0;
|
|
429
|
+
}
|
|
430
|
+
.LinkList {
|
|
431
|
+
// padding: 20px 0;
|
|
432
|
+
display: flex;
|
|
433
|
+
flex-wrap: wrap;
|
|
434
|
+
// margin-bottom: -40px;
|
|
435
|
+
margin-right: -10px;
|
|
436
|
+
margin-bottom: -10px;
|
|
437
|
+
}
|
|
438
|
+
.LinkList__item {
|
|
439
|
+
padding: 0 12px;
|
|
440
|
+
height: 34px;
|
|
441
|
+
line-height: 34px;
|
|
442
|
+
box-sizing: border-box;
|
|
443
|
+
border-radius: 4px;
|
|
444
|
+
margin-right: 10px;
|
|
445
|
+
margin-bottom: 10px;
|
|
446
|
+
display: flex;
|
|
447
|
+
align-items: center;
|
|
448
|
+
justify-content: center;
|
|
449
|
+
-webkit-font-smoothing: antialiased;
|
|
450
|
+
transition: all .3s ease-in-out;
|
|
451
|
+
cursor: pointer;
|
|
452
|
+
border: 1px solid transparent;
|
|
453
|
+
background-image: linear-gradient(0deg,#fff,#f3f5f8);
|
|
454
|
+
box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1), -8px -8px 20px 0 #fff;
|
|
455
|
+
&:hover {
|
|
456
|
+
border-color: $--color-primary;
|
|
457
|
+
background: #ecf2fe none;
|
|
458
|
+
box-shadow: none;
|
|
459
|
+
color: $--color-primary;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
.LinkList__itemLogo {
|
|
463
|
+
height: 24px;
|
|
464
|
+
display: none;
|
|
465
|
+
margin-right: 10px;
|
|
466
|
+
}
|
|
467
|
+
.LinkList__itemText {
|
|
468
|
+
font-size: 14px;
|
|
469
|
+
position: relative;
|
|
470
|
+
}
|
|
471
|
+
.LinkList__itemLogo {
|
|
472
|
+
width: 20px;
|
|
473
|
+
height: 20px;
|
|
474
|
+
border-radius: 50%;
|
|
475
|
+
margin-right: 10px;
|
|
476
|
+
display: inline-block;
|
|
477
|
+
}
|
|
478
|
+
.LinkList__itemIcon {
|
|
479
|
+
width: 20px;
|
|
480
|
+
height: 20px;
|
|
481
|
+
border-radius: 50%;
|
|
482
|
+
margin-right: 6px;
|
|
483
|
+
}
|
|
484
|
+
.LinkList__itemDot {
|
|
485
|
+
width: 10px;
|
|
486
|
+
height: 10px;
|
|
487
|
+
border-radius: 50%;
|
|
488
|
+
background-color: $--color-success;
|
|
489
|
+
margin-right: 6px;
|
|
490
|
+
vertical-align: -1px;
|
|
491
|
+
display: inline-block;
|
|
492
|
+
}
|
|
493
|
+
.ArticleInfo__linkDot {
|
|
494
|
+
width: 10px;
|
|
495
|
+
height: 10px;
|
|
496
|
+
border-radius: 50%;
|
|
497
|
+
background-color: $--color-success;
|
|
498
|
+
margin-right: 6px;
|
|
499
|
+
vertical-align: -1px;
|
|
500
|
+
display: inline-block;
|
|
501
|
+
}
|
|
502
|
+
.ArticleInfo__articleType {
|
|
503
|
+
color: $--color-primary;
|
|
504
|
+
display: inline-block;
|
|
505
|
+
margin-right: 12px;
|
|
506
|
+
font-size: 13px;
|
|
507
|
+
vertical-align: 2px;
|
|
508
|
+
}
|
|
509
|
+
.ArticleInfo__linkDotMeta {
|
|
510
|
+
margin-left: auto;
|
|
511
|
+
display: inline-block;
|
|
512
|
+
font-weight: 600;
|
|
513
|
+
//font-style: italic;
|
|
514
|
+
font-size: 12px;
|
|
515
|
+
color: $--color-text-primary;
|
|
516
|
+
vertical-align: 2px;
|
|
517
|
+
}
|
|
518
|
+
.ArticleSection:nth-child(even) {
|
|
519
|
+
background-color: #FFF;
|
|
520
|
+
}
|
|
521
|
+
.ArticleSection:nth-child(odd) {
|
|
522
|
+
background-color: #f5f7fa;
|
|
523
|
+
}
|
|
524
|
+
.ArticleLegalContent {}
|
|
525
|
+
.ArticleLegal, .ArticleReference {
|
|
526
|
+
width: 1200px;
|
|
527
|
+
margin: 0 auto;
|
|
528
|
+
padding: 20px 0 0 0;
|
|
529
|
+
}
|
|
530
|
+
.ArticleReference {
|
|
531
|
+
.ArticleTable__table {
|
|
532
|
+
width: auto;
|
|
533
|
+
}
|
|
534
|
+
.ArticleTable__tableHead {
|
|
535
|
+
min-width: 180px;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
.RecommendationContent, .ReferenceContent{
|
|
539
|
+
.List {
|
|
540
|
+
margin-left: -20px;
|
|
541
|
+
margin-right: -20px;
|
|
542
|
+
}
|
|
543
|
+
.List__item {
|
|
544
|
+
&:after {
|
|
545
|
+
border: none;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
.ReferenceContent {
|
|
550
|
+
.RecommendationItem__title {
|
|
551
|
+
cursor: auto;
|
|
552
|
+
&:hover {
|
|
553
|
+
color: $--color-text-primary;
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
.RecommendationContent--light {
|
|
558
|
+
background-color: $--color-white;
|
|
559
|
+
}
|
|
560
|
+
.Recommendation {
|
|
561
|
+
width: 1200px;
|
|
562
|
+
margin: 0 auto;
|
|
563
|
+
padding: 20px 0 0 0;
|
|
564
|
+
}
|
|
565
|
+
.FullText {
|
|
566
|
+
width: 1200px;
|
|
567
|
+
margin: 0 auto;
|
|
568
|
+
padding: 20px 0;
|
|
569
|
+
}
|
|
570
|
+
.ArticleFullText {
|
|
571
|
+
.Label{
|
|
572
|
+
//margin-bottom: 16px;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
.FullTextContent {
|
|
576
|
+
font-size: 15px;
|
|
577
|
+
line-height: 1.6;
|
|
578
|
+
text-align: justify;
|
|
579
|
+
margin-top: 16px;
|
|
580
|
+
}
|
|
581
|
+
.FullText__label {
|
|
582
|
+
font-size: 16px;
|
|
583
|
+
font-weight: 600;
|
|
584
|
+
color: $--color-primary;
|
|
585
|
+
}
|
|
586
|
+
.ActionButton {
|
|
587
|
+
display: flex;
|
|
588
|
+
align-items: center;
|
|
589
|
+
justify-content: center;
|
|
590
|
+
box-sizing: border-box;
|
|
591
|
+
border-radius: 0;
|
|
592
|
+
min-width: 104px;
|
|
593
|
+
height: 36px;
|
|
594
|
+
padding: 0 24px;
|
|
595
|
+
color: #fff;
|
|
596
|
+
font-size: 14px;
|
|
597
|
+
line-height: 34px;
|
|
598
|
+
white-space: nowrap;
|
|
599
|
+
text-align: center;
|
|
600
|
+
text-decoration: none;
|
|
601
|
+
vertical-align: middle;
|
|
602
|
+
background-color: $--color-primary;
|
|
603
|
+
border: 1px solid transparent;
|
|
604
|
+
outline: 0 none;
|
|
605
|
+
cursor: pointer;
|
|
606
|
+
box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1);
|
|
607
|
+
width: 100%;
|
|
608
|
+
&:hover {
|
|
609
|
+
color: #fff;
|
|
610
|
+
background-color: $--color-primary;
|
|
611
|
+
opacity: .8;
|
|
612
|
+
}
|
|
613
|
+
&.is-collect {
|
|
614
|
+
color: #ddbb34;
|
|
615
|
+
}
|
|
616
|
+
&.is-active {
|
|
617
|
+
color: #ddbb34;
|
|
618
|
+
}
|
|
619
|
+
.Icon {
|
|
620
|
+
margin-right: 10px;
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
.ActionButton+.ActionButton {
|
|
624
|
+
margin-top: 16px;
|
|
625
|
+
}
|
|
626
|
+
.QuoteList {
|
|
627
|
+
margin-top: -6px;
|
|
628
|
+
margin-bottom: -6px;
|
|
629
|
+
}
|
|
630
|
+
.QuoteListItem {
|
|
631
|
+
padding: 6px 0;
|
|
632
|
+
display: flex;
|
|
633
|
+
line-height: 1.6;
|
|
634
|
+
&:last-child {
|
|
635
|
+
padding-top: 10px;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
.QuoteListItem+.QuoteListItem {
|
|
639
|
+
border-top: 1px solid #F6F6F6;
|
|
640
|
+
}
|
|
641
|
+
.QuoteListItem__label {
|
|
642
|
+
min-width: 90px;
|
|
643
|
+
}
|
|
644
|
+
.QuoteListItem__content {
|
|
645
|
+
color: $--color-text-secondary;
|
|
646
|
+
}
|
|
647
|
+
.QuoteListItem__action {
|
|
648
|
+
min-width: 72px;
|
|
649
|
+
text-align: center;
|
|
650
|
+
margin-left: auto;
|
|
651
|
+
}
|
|
652
|
+
.BigQuoteButton {
|
|
653
|
+
margin-bottom: 16px;
|
|
654
|
+
display: block;
|
|
655
|
+
}
|
|
656
|
+
.QuotePopper {
|
|
657
|
+
&.base-popper[x-placement^="bottom"] {
|
|
658
|
+
margin-top: 4px;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
.QuoteListItem__action {
|
|
662
|
+
.base-button {
|
|
663
|
+
height: auto;
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
.ArticleTable {
|
|
667
|
+
background-color: $--color-white;
|
|
668
|
+
padding: 10px 0 20px;
|
|
669
|
+
font-size: 15px;
|
|
670
|
+
}
|
|
671
|
+
.ArticleTable__table {
|
|
672
|
+
width: 100%;
|
|
673
|
+
}
|
|
674
|
+
.ArticleTable__tableRow {
|
|
675
|
+
line-height: 48px;
|
|
676
|
+
background-color: $--color-white;
|
|
677
|
+
}
|
|
678
|
+
.ArticleTable__tableRow--odd {
|
|
679
|
+
// background-color: $--color-primary-light-9;
|
|
680
|
+
}
|
|
681
|
+
.ArticleTable__tableHead {
|
|
682
|
+
background-color: $--color-white;
|
|
683
|
+
color: $--color-text-secondary;
|
|
684
|
+
font-weight: 500;
|
|
685
|
+
text-align: left;
|
|
686
|
+
user-select: none;
|
|
687
|
+
border-bottom: 1px solid #ebeef5;
|
|
688
|
+
}
|
|
689
|
+
.ArticleTable__tableData {
|
|
690
|
+
border-bottom: 1px solid #ebeef5;
|
|
691
|
+
&.is-active {
|
|
692
|
+
cursor: pointer;
|
|
693
|
+
transition: color .3s;
|
|
694
|
+
&:hover {
|
|
695
|
+
color: $--color-primary;
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
}
|