@opendesign-plus-test/components 0.0.1-rc.43 → 0.0.1-rc.45
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/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +67 -47
- package/dist/components/OHeaderSearch.vue.d.ts +822 -500
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +86 -24
- package/dist/components/activity/index.d.ts +43 -12
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +86 -24
- package/dist/components/meeting/index.d.ts +43 -12
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +41 -41
- package/dist/components.css +1 -1
- package/dist/components.es.js +11228 -10253
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/activity/OActivityApproval.vue +4 -4
- package/src/components/activity/OActivityForm.vue +2 -2
- package/src/components/activity/OMyActivityCalendar.vue +26 -26
- package/src/components/activity/config.ts +1 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/element-plus/OElCookieNotice.vue +26 -26
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +16 -16
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/components/HeaderContent.vue +60 -60
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +3 -3
- package/src/components/meeting/OMeetingCalendar.vue +27 -27
- package/src/components/meeting/OMeetingForm.vue +16 -16
- package/src/components/meeting/OMeetingPlayback.vue +4 -4
- package/src/components/meeting/OMyMeetingCalendar.vue +25 -25
- package/src/components/meeting/OSigMeetingCalendar.vue +3 -3
- package/src/components/meeting/components/OMeetingCalendarList.vue +9 -9
- package/src/components/meeting/components/OMeetingDetail.vue +2 -2
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +5 -5
- package/src/components/meeting/components/OSigMeetingAside.vue +6 -6
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export * from './components/element-plus';
|
|
|
13
13
|
export * from './components/events';
|
|
14
14
|
export * from './components/header';
|
|
15
15
|
export * from './components/meeting';
|
|
16
|
+
export * from './components/search';
|
|
16
17
|
declare const _default: {
|
|
17
18
|
install: (app: any) => void;
|
|
18
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendesign-plus-test/components",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.45",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@opensig/opendesign": "1.
|
|
29
|
+
"@opensig/opendesign": "1.2.3",
|
|
30
30
|
"@vueuse/core": "10.11.1",
|
|
31
31
|
"aos": "^2.3.4",
|
|
32
32
|
"dayjs": "^1.11.13",
|
|
33
33
|
"video.js": "^8.23.7",
|
|
34
34
|
"vue-dompurify-html": "^3.1.2",
|
|
35
|
-
"@opendesign-plus/composables": "0.0.1-rc.
|
|
35
|
+
"@opendesign-plus/composables": "0.0.1-rc.8",
|
|
36
36
|
"@opendesign-plus/styles": "0.0.1-rc.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="#6f6f75" d="M22.5 12c0 5.799-4.701 10.5-10.5 10.5s-10.5-4.701-10.5-10.5c0-5.799 4.701-10.5 10.5-10.5s10.5 4.701 10.5 10.5z"></path>
|
|
3
|
+
<path fill="#ffffff" d="M15.3 7.631c0.274-0.197 0.657-0.172 0.903 0.074 0.273 0.273 0.273 0.717 0 0.99l-3.259 3.259 3.259 3.259c0.273 0.273 0.273 0.717 0 0.99-0.246 0.246-0.63 0.271-0.903 0.074l-0.087-0.074-3.259-3.259-3.259 3.259-0.087 0.074c-0.274 0.197-0.657 0.172-0.903-0.074-0.273-0.273-0.273-0.717 0-0.99l3.259-3.259-3.259-3.259c-0.273-0.273-0.273-0.717 0-0.99 0.246-0.246 0.63-0.271 0.903-0.074l0.087 0.074 3.259 3.259 3.259-3.259 0.087-0.074z"></path>
|
|
4
|
+
</svg>
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
-
<path fill="currentColor" d="
|
|
2
|
+
<path opacity="0.8" fill="currentColor" d="M5.616 4.34c0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v14.968c0 0.213 0.148 0.391 0.347 0.438l0.103 0.012h10.719c0.213 0 0.391-0.148 0.438-0.347l0.012-0.103v-11.712c0-0.414 0.336-0.75 0.75-0.75 0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v11.712c0 1.010-0.767 1.84-1.751 1.94l-0.199 0.010h-10.719c-1.010 0-1.84-0.767-1.94-1.751l-0.010-0.199v-14.968c0-0.414 0.336-0.75 0.75-0.75z"></path>
|
|
3
|
+
<path opacity="0.8" fill="currentColor" d="M20.19 4.34c0.414 0 0.75 0.336 0.75 0.75 0 0.368-0.265 0.674-0.615 0.738l-0.135 0.012h-16.333c-0.414 0-0.75-0.336-0.75-0.75 0-0.368 0.265-0.674 0.615-0.738l0.135-0.012h16.333z"></path>
|
|
4
|
+
<path opacity="0.8" fill="currentColor" d="M14.256 1.936c0.414 0 0.75 0.336 0.75 0.75 0 0.368-0.265 0.674-0.615 0.738l-0.135 0.012h-4.535c-0.414 0-0.75-0.336-0.75-0.75 0-0.368 0.265-0.674 0.615-0.738l0.135-0.012h4.535z"></path>
|
|
5
|
+
<path opacity="0.8" fill="currentColor" d="M10.096 9.419c0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v6.484c0 0.414-0.336 0.75-0.75 0.75-0.368 0-0.674-0.265-0.738-0.615l-0.012-0.135v-6.484c0-0.414 0.336-0.75 0.75-0.75z"></path>
|
|
6
|
+
<path opacity="0.8" fill="currentColor" d="M14.596 9.419c0.368 0 0.674 0.265 0.738 0.615l0.012 0.135v6.484c0 0.414-0.336 0.75-0.75 0.75-0.368 0-0.674-0.265-0.738-0.615l-0.012-0.135v-6.484c0-0.414 0.336-0.75 0.75-0.75z"></path>
|
|
3
7
|
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M22.5 12c0 5.799-4.701 10.5-10.5 10.5s-10.5-4.701-10.5-10.5c0-5.799 4.701-10.5 10.5-10.5s10.5 4.701 10.5 10.5z"></path>
|
|
3
|
+
<path fill="currentColor" d="M15.3 7.631c0.274-0.197 0.657-0.172 0.903 0.074 0.273 0.273 0.273 0.717 0 0.99l-3.259 3.259 3.259 3.259c0.273 0.273 0.273 0.717 0 0.99-0.246 0.246-0.63 0.271-0.903 0.074l-0.087-0.074-3.259-3.259-3.259 3.259-0.087 0.074c-0.274 0.197-0.657 0.172-0.903-0.074-0.273-0.273-0.273-0.717 0-0.99l3.259-3.259-3.259-3.259c-0.273-0.273-0.273-0.717 0-0.99 0.246-0.246 0.63-0.271 0.903-0.074l0.087 0.074 3.259 3.259 3.259-3.259 0.087-0.074z"></path>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path opacity="0.8" d="M19.724 4.238c1.105 0 2 0.895 2 2v6.772c0 0.387-0.313 0.7-0.7 0.7s-0.7-0.313-0.7-0.7v-0.816l-3.544 3.84c-0.248 0.268-0.661 0.301-0.948 0.075l-4.13-3.256-3.925 3.843c-0.249 0.243-0.632 0.264-0.904 0.064l-0.086-0.075c-0.27-0.276-0.266-0.72 0.011-0.99l4.365-4.273c0.251-0.246 0.647-0.267 0.923-0.050l4.104 3.235 4.134-4.478v-3.892c0-0.331-0.269-0.6-0.6-0.6h-15.45c-0.331 0-0.6 0.269-0.6 0.6v11.501c0 0.331 0.269 0.6 0.6 0.6h9.781c0.387 0 0.7 0.313 0.7 0.7s-0.313 0.7-0.7 0.7h-9.781c-1.105 0-2-0.895-2-2v-11.501c0-1.105 0.895-2 2-2h15.45zM9.532 8.878c0-0.695-0.579-1.259-1.294-1.259s-1.294 0.564-1.294 1.259c0 0.695 0.579 1.259 1.294 1.259s1.294-0.564 1.294-1.259zM16.561 18.645c-0.195-0.195-0.195-0.512 0-0.707l2.090-2.090c0.010-0.011 0.020-0.021 0.030-0.030l0.001-0.001c0.195-0.195 0.512-0.195 0.707 0l2.121 2.121c0.195 0.195 0.195 0.512 0 0.707s-0.512 0.195-0.707 0l-1.284-1.284v3.57c0 0.276-0.224 0.5-0.5 0.5s-0.5-0.224-0.5-0.5v-3.538l-1.251 1.251c-0.174 0.174-0.443 0.193-0.638 0.058l-0.069-0.058z"></path>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path fill="currentColor" d="M3.398 10.877c0-4.099 3.323-7.423 7.423-7.423s7.423 3.323 7.423 7.423c0 4.099-3.323 7.423-7.423 7.423s-7.423-3.323-7.423-7.423zM16.774 10.877c0-3.326-2.657-6.023-5.935-6.023s-5.935 2.696-5.935 6.023c0 3.326 2.657 6.023 5.935 6.023s5.935-2.696 5.935-6.023zM11.499 13.369c0 0.365-0.296 0.661-0.661 0.661s-0.661-0.296-0.661-0.661v-1.821h-1.775c-0.371 0-0.671-0.3-0.671-0.671s0.3-0.671 0.671-0.671h1.775v-1.821c0-0.365 0.296-0.661 0.661-0.661s0.661 0.296 0.661 0.661v1.821h1.775c0.371 0 0.671 0.3 0.671 0.671s-0.3 0.671-0.671 0.671h-1.775v1.821zM16.579 16.598c0.242-0.246 0.62-0.271 0.89-0.075l0.086 0.074 2.72 2.754c0.27 0.273 0.27 0.716 0.001 0.99-0.242 0.246-0.62 0.271-0.89 0.075l-0.086-0.074-2.72-2.754c-0.27-0.273-0.27-0.716-0.001-0.99z"></path>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
2
|
+
<path opacity="0.8" fill="currentColor" d="M17.947 4.273c-1.676-1.292-3.752-2.023-5.948-2.023-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75c4.032 0 7.604-2.47 9.066-6.156 0.153-0.385-0.035-0.821-0.42-0.974s-0.821 0.036-0.974 0.42c-1.237 3.119-4.26 5.209-7.672 5.209-4.556 0-8.25-3.694-8.25-8.25s3.694-8.25 8.25-8.25c1.837 0 3.574 0.604 4.983 1.673l-1.305 1.556c-0.077 0.092-0.021 0.232 0.098 0.246l4.873 0.539c0.106 0.012 0.191-0.088 0.16-0.191l-1.377-4.706c-0.034-0.115-0.182-0.146-0.259-0.054l-1.226 1.461z"></path>
|
|
3
|
+
</svg>
|
|
@@ -151,7 +151,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
151
151
|
background-size: contain;
|
|
152
152
|
background-repeat: no-repeat;
|
|
153
153
|
|
|
154
|
-
@include respond
|
|
154
|
+
@include respond('pad') {
|
|
155
155
|
height: var(--pad-height);
|
|
156
156
|
width: var(--pad-width);
|
|
157
157
|
}
|
|
@@ -169,15 +169,15 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
169
169
|
@include h4;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
@include respond
|
|
172
|
+
@include respond('laptop-pc_s') {
|
|
173
173
|
--banner-height: 400px;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
@include respond
|
|
176
|
+
@include respond('pad_h') {
|
|
177
177
|
--banner-height: 360px;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
-
@include respond
|
|
180
|
+
@include respond('<=pad_v') {
|
|
181
181
|
--banner-height: 184px;
|
|
182
182
|
}
|
|
183
183
|
}
|
|
@@ -194,15 +194,15 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
194
194
|
@include text2;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
-
@include respond
|
|
197
|
+
@include respond('laptop-pc_s') {
|
|
198
198
|
--banner-height: 280px;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
@include respond
|
|
201
|
+
@include respond('pad_h') {
|
|
202
202
|
--banner-height: 220px;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
@include respond
|
|
205
|
+
@include respond('<=pad_v') {
|
|
206
206
|
--banner-height: 120px;
|
|
207
207
|
}
|
|
208
208
|
|
|
@@ -210,7 +210,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
210
210
|
--pc-height: 100px !important;
|
|
211
211
|
--pc-width: 500px !important;
|
|
212
212
|
|
|
213
|
-
@include respond
|
|
213
|
+
@include respond('pad') {
|
|
214
214
|
--pc-height: 60px !important;
|
|
215
215
|
--pc-width: 300px !important;
|
|
216
216
|
}
|
|
@@ -229,15 +229,15 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
229
229
|
@include text2;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
@include respond
|
|
232
|
+
@include respond('laptop-pc_s') {
|
|
233
233
|
--banner-height: 220px;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
@include respond
|
|
236
|
+
@include respond('pad_h') {
|
|
237
237
|
--banner-height: 180px;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
-
@include respond
|
|
240
|
+
@include respond('<=pad_v') {
|
|
241
241
|
display: none;
|
|
242
242
|
}
|
|
243
243
|
|
|
@@ -245,7 +245,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
245
245
|
--pc-height: 80px !important;
|
|
246
246
|
--pc-width: 400px !important;
|
|
247
247
|
|
|
248
|
-
@include respond
|
|
248
|
+
@include respond('pad') {
|
|
249
249
|
--pc-height: 50px !important;
|
|
250
250
|
--pc-width: 250px !important;
|
|
251
251
|
}
|
|
@@ -260,11 +260,11 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
260
260
|
.banner-carousel {
|
|
261
261
|
width: 100%;
|
|
262
262
|
height: 100%;
|
|
263
|
-
@include respond
|
|
263
|
+
@include respond('>pad_v') {
|
|
264
264
|
--carousel-indicator-offset: 53px;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
@include respond
|
|
267
|
+
@include respond('<=pad_v') {
|
|
268
268
|
--carousel-indicator-offset: 1px;
|
|
269
269
|
}
|
|
270
270
|
|
|
@@ -287,14 +287,14 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
287
287
|
height: 100%;
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
@include respond
|
|
290
|
+
@include respond('pad') {
|
|
291
291
|
:deep(.o-figure-img) {
|
|
292
292
|
transition: object-position 0.3s ease;
|
|
293
293
|
object-position: var(--pad-offset);
|
|
294
294
|
}
|
|
295
295
|
}
|
|
296
296
|
|
|
297
|
-
@include respond
|
|
297
|
+
@include respond('phone') {
|
|
298
298
|
--figure-radius: 4px;
|
|
299
299
|
}
|
|
300
300
|
}
|
|
@@ -367,7 +367,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
367
367
|
.banner-attach {
|
|
368
368
|
height: 120px;
|
|
369
369
|
|
|
370
|
-
@include respond
|
|
370
|
+
@include respond('pad') {
|
|
371
371
|
height: 80px;
|
|
372
372
|
}
|
|
373
373
|
}
|
|
@@ -377,7 +377,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
|
|
|
377
377
|
.banner-attach {
|
|
378
378
|
height: 156px;
|
|
379
379
|
|
|
380
|
-
@include respond
|
|
380
|
+
@include respond('pad') {
|
|
381
381
|
height: 120px;
|
|
382
382
|
}
|
|
383
383
|
}
|
|
@@ -294,19 +294,19 @@ defineExpose({
|
|
|
294
294
|
<style lang="scss">
|
|
295
295
|
.o-cookie-notice-dlg-main {
|
|
296
296
|
--dlg-edge-gap: 32px;
|
|
297
|
-
@include respond
|
|
297
|
+
@include respond('laptop') {
|
|
298
298
|
--dlg-edge-gap: 24px;
|
|
299
299
|
}
|
|
300
|
-
@include respond
|
|
300
|
+
@include respond('phone') {
|
|
301
301
|
--dlg-edge-gap: 16px 24px;
|
|
302
302
|
}
|
|
303
303
|
|
|
304
304
|
--dlg-width: var(--grid-14);
|
|
305
|
-
@include respond
|
|
305
|
+
@include respond('pad_h') {
|
|
306
306
|
--dlg-edge-gap: 16px;
|
|
307
307
|
--dlg-width: var(--grid-8);
|
|
308
308
|
}
|
|
309
|
-
@include respond
|
|
309
|
+
@include respond('<=pad_v') {
|
|
310
310
|
--dlg-width: 100vw;
|
|
311
311
|
}
|
|
312
312
|
}
|
|
@@ -341,7 +341,7 @@ defineExpose({
|
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
.cookie-notice-content {
|
|
344
|
-
background-color: rgba(var(--o-
|
|
344
|
+
background-color: rgba(var(--o-grey-1), 0.9);
|
|
345
345
|
backdrop-filter: blur(5px);
|
|
346
346
|
box-shadow: var(--o-shadow-1);
|
|
347
347
|
}
|
|
@@ -354,13 +354,13 @@ defineExpose({
|
|
|
354
354
|
@media (1680px >= width >= 1201px) {
|
|
355
355
|
padding: 12px var(--layout-content-padding);
|
|
356
356
|
}
|
|
357
|
-
@include respond
|
|
357
|
+
@include respond('pad_h') {
|
|
358
358
|
padding: 8px var(--layout-content-padding);
|
|
359
359
|
}
|
|
360
360
|
@media (max-width: 840px) {
|
|
361
361
|
padding: 16px var(--layout-content-padding);
|
|
362
362
|
}
|
|
363
|
-
@include respond
|
|
363
|
+
@include respond('phone') {
|
|
364
364
|
padding: 16px var(--layout-content-padding);
|
|
365
365
|
}
|
|
366
366
|
&:not([type='zh']) {
|
|
@@ -377,13 +377,13 @@ defineExpose({
|
|
|
377
377
|
@media (1680px >= width >= 1201px) {
|
|
378
378
|
padding: 12px 0;
|
|
379
379
|
}
|
|
380
|
-
@include respond
|
|
380
|
+
@include respond('pad_h') {
|
|
381
381
|
padding: 8px 0;
|
|
382
382
|
}
|
|
383
383
|
@media (max-width: 840px) {
|
|
384
384
|
padding: 16px 0;
|
|
385
385
|
}
|
|
386
|
-
@include respond
|
|
386
|
+
@include respond('phone') {
|
|
387
387
|
padding: 16px 0;
|
|
388
388
|
}
|
|
389
389
|
&:not([type='zh']) {
|
|
@@ -403,13 +403,13 @@ defineExpose({
|
|
|
403
403
|
@media (max-width: 1680px) {
|
|
404
404
|
font-size: 14px;
|
|
405
405
|
}
|
|
406
|
-
@include respond
|
|
406
|
+
@include respond('<=pad_v') {
|
|
407
407
|
text-align: center;
|
|
408
408
|
}
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
.cookie-en-title {
|
|
412
|
-
@include respond
|
|
412
|
+
@include respond('<=pad_v') {
|
|
413
413
|
margin-left: auto;
|
|
414
414
|
}
|
|
415
415
|
}
|
|
@@ -419,7 +419,7 @@ defineExpose({
|
|
|
419
419
|
line-height: 22px;
|
|
420
420
|
margin-right: 8px;
|
|
421
421
|
text-align: start;
|
|
422
|
-
@include respond
|
|
422
|
+
@include respond('<=pad_v') {
|
|
423
423
|
font-size: 12px;
|
|
424
424
|
line-height: 18px;
|
|
425
425
|
}
|
|
@@ -429,7 +429,7 @@ defineExpose({
|
|
|
429
429
|
display: flex;
|
|
430
430
|
width: 100%;
|
|
431
431
|
margin-top: 8px;
|
|
432
|
-
@include respond
|
|
432
|
+
@include respond('<=pad_v') {
|
|
433
433
|
flex-direction: column;
|
|
434
434
|
}
|
|
435
435
|
}
|
|
@@ -444,10 +444,10 @@ defineExpose({
|
|
|
444
444
|
@media (1680px >= width >= 1201px) {
|
|
445
445
|
margin-right: 40px;
|
|
446
446
|
}
|
|
447
|
-
@include respond
|
|
447
|
+
@include respond('pad') {
|
|
448
448
|
margin-right: 24px;
|
|
449
449
|
}
|
|
450
|
-
@include respond
|
|
450
|
+
@include respond('<=pad_v') {
|
|
451
451
|
margin: 0;
|
|
452
452
|
}
|
|
453
453
|
}
|
|
@@ -461,7 +461,7 @@ defineExpose({
|
|
|
461
461
|
@media (1680px >= width >= 1201px) {
|
|
462
462
|
margin-left: 12px;
|
|
463
463
|
}
|
|
464
|
-
@include respond
|
|
464
|
+
@include respond('pad_h') {
|
|
465
465
|
margin-left: 8px;
|
|
466
466
|
}
|
|
467
467
|
@media (min-width: 841px) {
|
|
@@ -469,7 +469,7 @@ defineExpose({
|
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
@include respond
|
|
472
|
+
@include respond('<=pad_v') {
|
|
473
473
|
margin-top: 16px;
|
|
474
474
|
width: 100%;
|
|
475
475
|
display: grid;
|
|
@@ -514,7 +514,7 @@ defineExpose({
|
|
|
514
514
|
@media (1680px >= width >= 1201px) {
|
|
515
515
|
margin-top: 16px;
|
|
516
516
|
}
|
|
517
|
-
@include respond
|
|
517
|
+
@include respond('<=pad') {
|
|
518
518
|
margin-top: 12px;
|
|
519
519
|
}
|
|
520
520
|
}
|
|
@@ -532,7 +532,7 @@ defineExpose({
|
|
|
532
532
|
@media (1680px >= width >= 1201px) {
|
|
533
533
|
font-size: 18px;
|
|
534
534
|
}
|
|
535
|
-
@include respond
|
|
535
|
+
@include respond('<=pad') {
|
|
536
536
|
font-size: 16px;
|
|
537
537
|
}
|
|
538
538
|
}
|
|
@@ -541,7 +541,7 @@ defineExpose({
|
|
|
541
541
|
font-size: 14px;
|
|
542
542
|
color: var(--o-color-info3);
|
|
543
543
|
margin-left: 24px;
|
|
544
|
-
@include respond
|
|
544
|
+
@include respond('<=pad') {
|
|
545
545
|
font-size: 12px;
|
|
546
546
|
}
|
|
547
547
|
}
|
|
@@ -556,7 +556,7 @@ defineExpose({
|
|
|
556
556
|
margin-top: 12px;
|
|
557
557
|
font-size: 14px;
|
|
558
558
|
}
|
|
559
|
-
@include respond
|
|
559
|
+
@include respond('<=pad') {
|
|
560
560
|
margin-top: 8px;
|
|
561
561
|
}
|
|
562
562
|
@media (max-width: 840px) {
|
|
@@ -201,11 +201,11 @@ const props = withDefaults(defineProps<{
|
|
|
201
201
|
height: 32px;
|
|
202
202
|
margin-top: 12px;
|
|
203
203
|
|
|
204
|
-
@include respond
|
|
204
|
+
@include respond('<=laptop') {
|
|
205
205
|
margin-top: 8px;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
-
@include respond
|
|
208
|
+
@include respond('<=pad_v') {
|
|
209
209
|
height: 30px;
|
|
210
210
|
margin-top: 12px;
|
|
211
211
|
}
|
|
@@ -214,10 +214,10 @@ const props = withDefaults(defineProps<{
|
|
|
214
214
|
.atom-divider {
|
|
215
215
|
--o-divider-bd-color: rgba(229, 229, 229, 0.12);
|
|
216
216
|
--o-divider-gap: 16px;
|
|
217
|
-
@include respond
|
|
217
|
+
@include respond('laptop') {
|
|
218
218
|
--o-divider-gap: 12px;
|
|
219
219
|
}
|
|
220
|
-
@include respond
|
|
220
|
+
@include respond('pad_h') {
|
|
221
221
|
--o-divider-gap: 8px;
|
|
222
222
|
}
|
|
223
223
|
}
|
|
@@ -241,7 +241,7 @@ const props = withDefaults(defineProps<{
|
|
|
241
241
|
display: flex;
|
|
242
242
|
justify-content: space-between;
|
|
243
243
|
max-width: 1140px;
|
|
244
|
-
@include respond
|
|
244
|
+
@include respond('<=pad_v') {
|
|
245
245
|
display: none;
|
|
246
246
|
}
|
|
247
247
|
.category {
|
|
@@ -280,7 +280,7 @@ const props = withDefaults(defineProps<{
|
|
|
280
280
|
margin-right: 24px;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
@include respond
|
|
283
|
+
@include respond('<=pad') {
|
|
284
284
|
.friendship-link-title {
|
|
285
285
|
margin-right: 24px;
|
|
286
286
|
min-width: 48px;
|
|
@@ -290,7 +290,7 @@ const props = withDefaults(defineProps<{
|
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
@include respond
|
|
293
|
+
@include respond('<=pad_v') {
|
|
294
294
|
display: none;
|
|
295
295
|
}
|
|
296
296
|
}
|
|
@@ -301,14 +301,14 @@ const props = withDefaults(defineProps<{
|
|
|
301
301
|
padding: 8px 0 32px;
|
|
302
302
|
position: relative;
|
|
303
303
|
|
|
304
|
-
@include respond
|
|
304
|
+
@include respond('<=pad_v') {
|
|
305
305
|
margin: 0 auto;
|
|
306
306
|
padding: 0 0 24px;
|
|
307
307
|
flex-direction: column;
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
310
|
.inner-en {
|
|
311
|
-
@include respond
|
|
311
|
+
@include respond('<=pad_v') {
|
|
312
312
|
max-width: fit-content;
|
|
313
313
|
}
|
|
314
314
|
}
|
|
@@ -327,7 +327,7 @@ const props = withDefaults(defineProps<{
|
|
|
327
327
|
color: var(--o-color-white);
|
|
328
328
|
}
|
|
329
329
|
|
|
330
|
-
@include respond
|
|
330
|
+
@include respond('<=pad_v') {
|
|
331
331
|
text-align: center;
|
|
332
332
|
margin: 16px 0;
|
|
333
333
|
.show-pc {
|
|
@@ -355,7 +355,7 @@ const props = withDefaults(defineProps<{
|
|
|
355
355
|
}
|
|
356
356
|
}
|
|
357
357
|
|
|
358
|
-
@include respond
|
|
358
|
+
@include respond('<=pad_v') {
|
|
359
359
|
order: -1;
|
|
360
360
|
}
|
|
361
361
|
}
|
|
@@ -395,14 +395,14 @@ const props = withDefaults(defineProps<{
|
|
|
395
395
|
}
|
|
396
396
|
}
|
|
397
397
|
|
|
398
|
-
@include respond
|
|
398
|
+
@include respond('<=pad') {
|
|
399
399
|
flex-direction: column;
|
|
400
400
|
.filing {
|
|
401
401
|
margin-left: 6px;
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
@include respond
|
|
405
|
+
@include respond('<=pad_v') {
|
|
406
406
|
margin-top: 4px;
|
|
407
407
|
.filing {
|
|
408
408
|
margin-left: 4px;
|
|
@@ -457,19 +457,19 @@ const props = withDefaults(defineProps<{
|
|
|
457
457
|
}
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
-
@include respond
|
|
460
|
+
@include respond('pad_h') {
|
|
461
461
|
height: 18px;
|
|
462
462
|
}
|
|
463
463
|
}
|
|
464
464
|
.code-pop + .code-pop {
|
|
465
465
|
margin-left: 80px;
|
|
466
|
-
@include respond
|
|
466
|
+
@include respond('<=pad_v') {
|
|
467
467
|
margin-left: 64px;
|
|
468
468
|
}
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
@include respond
|
|
472
|
+
@include respond('<=pad_v') {
|
|
473
473
|
.code-box {
|
|
474
474
|
justify-content: space-between;
|
|
475
475
|
.code-pop {
|
|
@@ -564,7 +564,8 @@ const props = withDefaults(defineProps<{
|
|
|
564
564
|
}
|
|
565
565
|
}
|
|
566
566
|
}
|
|
567
|
-
|
|
567
|
+
|
|
568
|
+
@include respond('<=pad') {
|
|
568
569
|
.app-footer-pc {
|
|
569
570
|
display: none;
|
|
570
571
|
}
|