@opendesign-plus-test/components 0.0.1-rc.152 → 0.0.1-rc.154

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.
Files changed (48) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +2 -2
  3. package/dist/components/meeting/OMeetingMinutes.vue.d.ts +2 -348
  4. package/dist/components/meeting/index.d.ts +1 -174
  5. package/dist/components/meeting/types.d.ts +0 -1
  6. package/dist/components/sig/OSigDetail.vue.d.ts +1 -1
  7. package/dist/components/sig/OSigList.vue.d.ts +2 -0
  8. package/dist/components/sig/components/OSigItem.vue.d.ts +4 -1
  9. package/dist/components.cjs.js +36 -36
  10. package/dist/components.css +1 -1
  11. package/dist/components.es.js +6081 -6068
  12. package/dist/treeshaking/components/activity/OActivityApproval.css +8 -8
  13. package/dist/treeshaking/components/footer/components/FooterList.css +109 -96
  14. package/dist/treeshaking/components/footer/components/FooterList.vue.mjs +1 -1
  15. package/dist/treeshaking/components/header/OHeader.css +25 -15
  16. package/dist/treeshaking/components/header/OHeader.vue.mjs +1 -1
  17. package/dist/treeshaking/components/header/components/HeaderContent.css +185 -185
  18. package/dist/treeshaking/components/header/components/HeaderContent.vue.mjs +1 -1
  19. package/dist/treeshaking/components/header/components/HeaderFlatten.css +74 -75
  20. package/dist/treeshaking/components/header/components/HeaderFlatten.vue.mjs +1 -1
  21. package/dist/treeshaking/components/meeting/OMeetingMinutes.css +223 -176
  22. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue.d.ts +2 -348
  23. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue.mjs +6 -373
  24. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue2.mjs +356 -0
  25. package/dist/treeshaking/components/meeting/OMeetingMinutes2.css +11 -0
  26. package/dist/treeshaking/components/meeting/components/OMeetingSendMinutesDialog.css +53 -53
  27. package/dist/treeshaking/components/meeting/components/OMeetingSendMinutesDialog.vue.mjs +1 -1
  28. package/dist/treeshaking/components/meeting/index.d.ts +1 -174
  29. package/dist/treeshaking/components/meeting/index.mjs +12 -13
  30. package/dist/treeshaking/components/meeting/types.d.ts +0 -1
  31. package/dist/treeshaking/components/sig/OSigDetail.css +7 -3
  32. package/dist/treeshaking/components/sig/OSigDetail.vue.d.ts +1 -1
  33. package/dist/treeshaking/components/sig/OSigDetail.vue.mjs +6 -3
  34. package/dist/treeshaking/components/sig/OSigList.css +165 -134
  35. package/dist/treeshaking/components/sig/OSigList.vue.d.ts +2 -0
  36. package/dist/treeshaking/components/sig/OSigList.vue.mjs +118 -103
  37. package/dist/treeshaking/components/sig/components/OSigDetailInfoCard.css +1 -1
  38. package/dist/treeshaking/components/sig/components/OSigItem.css +31 -367
  39. package/dist/treeshaking/components/sig/components/OSigItem.vue.d.ts +4 -1
  40. package/dist/treeshaking/components/sig/components/OSigItem.vue.mjs +6 -4
  41. package/dist/treeshaking/components/sig/components/OSigMember.css +1 -1
  42. package/dist/treeshaking/components/sig/components/OSigRepo.css +15 -2
  43. package/dist/treeshaking/components/sig/components/OSigUserContribute.css +7 -0
  44. package/dist/treeshaking/components/video/OVideoDetail.css +7 -7
  45. package/dist/treeshaking/i18n/en.mjs +1 -1
  46. package/dist/treeshaking/i18n/zh.mjs +1 -1
  47. package/package.json +3 -3
  48. package/dist/treeshaking/components/meeting/OMeetingMinutes.vue3.mjs +0 -5
@@ -24,12 +24,12 @@
24
24
  --link-gap: var(--o-gap-4);
25
25
  }
26
26
  }
27
- @media (min-width: ) {
27
+ @media (max-width: 1200px) {
28
28
  .o-activity-table .activity-btn {
29
29
  --link-gap: var(--o-gap-3);
30
30
  }
31
31
  }
32
- @media (min-width: ) {
32
+ @media (max-width: 600px) {
33
33
  .o-activity-table .activity-btn {
34
34
  margin-top: var(--o-gap-2);
35
35
  }
@@ -142,7 +142,7 @@
142
142
  margin-left: var(--o-gap-3);
143
143
  }
144
144
  }
145
- @media (min-width: ) {
145
+ @media (max-width: 1200px) {
146
146
  .o-activity-table .dialog-footer .o-btn + .o-btn {
147
147
  margin-left: var(--o-gap-2);
148
148
  }
@@ -180,7 +180,7 @@
180
180
  padding-bottom: var(--o-gap-3);
181
181
  }
182
182
  }
183
- @media (min-width: ) {
183
+ @media (max-width: 1200px) {
184
184
  .o-activity-table .collapse-wrapper .o-collapse .o-collapse-item:last-child {
185
185
  padding-bottom: var(--o-gap-2);
186
186
  }
@@ -222,7 +222,7 @@
222
222
  margin-right: var(--o-gap-3);
223
223
  }
224
224
  }
225
- @media (min-width: ) {
225
+ @media (max-width: 1200px) {
226
226
  .o-activity-table .collapse-wrapper .o-collapse .act-sponsor {
227
227
  margin-right: var(--o-gap-2);
228
228
  }
@@ -257,7 +257,7 @@
257
257
  margin: 0 var(--o-gap-3);
258
258
  }
259
259
  }
260
- @media (min-width: ) {
260
+ @media (max-width: 1200px) {
261
261
  .o-activity-table .collapse-wrapper .o-collapse .o-collapse-item-header {
262
262
  margin: 0 var(--o-gap-2);
263
263
  }
@@ -271,7 +271,7 @@
271
271
  padding: var(--o-gap-2) var(--o-gap-3);
272
272
  }
273
273
  }
274
- @media (min-width: ) {
274
+ @media (max-width: 1200px) {
275
275
  .o-activity-table .collapse-wrapper .activity-detail {
276
276
  padding: var(--o-gap-2) var(--o-gap-2);
277
277
  }
@@ -291,7 +291,7 @@
291
291
  padding: var(--o-gap-2) var(--o-gap-3) 0;
292
292
  }
293
293
  }
294
- @media (min-width: ) {
294
+ @media (max-width: 1200px) {
295
295
  .o-activity-table .title-top {
296
296
  padding: var(--o-gap-2) var(--o-gap-2) 0;
297
297
  }
@@ -1,132 +1,132 @@
1
- .hover-icon-rotate .o-icon[data-v-d5ecd44e] {
1
+ .hover-icon-rotate .o-icon[data-v-69b84a8a] {
2
2
  transition: all var(--o-duration-m1) var(--o-easing-standard-in);
3
3
  }
4
4
  @media (hover: hover) {
5
- .hover-icon-rotate:hover .o-icon[data-v-d5ecd44e] {
5
+ .hover-icon-rotate:hover .o-icon[data-v-69b84a8a] {
6
6
  transform: rotate(-180deg);
7
7
  }
8
8
  }
9
- a[data-v-d5ecd44e] {
9
+ a[data-v-69b84a8a] {
10
10
  color: rgba(var(--o-white), 0.6);
11
11
  text-decoration: none;
12
12
  white-space: nowrap;
13
13
  }
14
14
  @media (hover: hover) {
15
- a[data-v-d5ecd44e]:hover {
15
+ a[data-v-69b84a8a]:hover {
16
16
  color: rgba(var(--o-white), 1);
17
17
  }
18
18
  }
19
- a[data-v-d5ecd44e]:active {
19
+ a[data-v-69b84a8a]:active {
20
20
  color: rgba(var(--o-white), 1);
21
21
  }
22
- .content[data-v-d5ecd44e] {
22
+ .content[data-v-69b84a8a] {
23
23
  padding: 16px 0 12px;
24
24
  border-top: 1px solid rgba(229, 229, 229, 0.12);
25
25
  border-bottom: 1px solid rgba(229, 229, 229, 0.12);
26
26
  }
27
- .info[data-v-d5ecd44e] {
27
+ .info[data-v-69b84a8a] {
28
28
  text-align: center;
29
29
  padding: 24px 0 16px;
30
30
  }
31
- .info .info-text[data-v-d5ecd44e] {
31
+ .info .info-text[data-v-69b84a8a] {
32
32
  color: var(--o-color-white);
33
33
  font-size: 20px;
34
34
  line-height: 28px;
35
35
  }
36
36
  @media (min-width: 1201px) and (max-width: 1680px) {
37
- .info .info-text[data-v-d5ecd44e] {
37
+ .info .info-text[data-v-69b84a8a] {
38
38
  font-size: 18px;
39
39
  line-height: 26px;
40
40
  }
41
41
  }
42
42
  @media (min-width: 841px) and (max-width: 1200px) {
43
- .info .info-text[data-v-d5ecd44e] {
43
+ .info .info-text[data-v-69b84a8a] {
44
44
  font-size: 16px;
45
45
  line-height: 24px;
46
46
  }
47
47
  }
48
48
  @media (min-width: 601px) and (max-width: 840px) {
49
- .info .info-text[data-v-d5ecd44e] {
49
+ .info .info-text[data-v-69b84a8a] {
50
50
  font-size: 16px;
51
51
  line-height: 24px;
52
52
  }
53
53
  }
54
54
  @media (max-width: 600px) {
55
- .info .info-text[data-v-d5ecd44e] {
55
+ .info .info-text[data-v-69b84a8a] {
56
56
  font-size: 14px;
57
57
  line-height: 22px;
58
58
  }
59
59
  }
60
- .info .info-logo[data-v-d5ecd44e] {
60
+ .info .info-logo[data-v-69b84a8a] {
61
61
  height: 32px;
62
62
  margin-top: 12px;
63
63
  }
64
- .quick-nav[data-v-d5ecd44e] {
64
+ .quick-nav[data-v-69b84a8a] {
65
65
  display: flex;
66
66
  justify-content: center;
67
67
  }
68
- .quick-nav .quick-title[data-v-d5ecd44e] {
68
+ .quick-nav .quick-title[data-v-69b84a8a] {
69
69
  color: var(--o-color-white);
70
70
  font-size: 20px;
71
71
  line-height: 28px;
72
72
  }
73
73
  @media (min-width: 1201px) and (max-width: 1680px) {
74
- .quick-nav .quick-title[data-v-d5ecd44e] {
74
+ .quick-nav .quick-title[data-v-69b84a8a] {
75
75
  font-size: 18px;
76
76
  line-height: 26px;
77
77
  }
78
78
  }
79
79
  @media (min-width: 841px) and (max-width: 1200px) {
80
- .quick-nav .quick-title[data-v-d5ecd44e] {
80
+ .quick-nav .quick-title[data-v-69b84a8a] {
81
81
  font-size: 16px;
82
82
  line-height: 24px;
83
83
  }
84
84
  }
85
85
  @media (min-width: 601px) and (max-width: 840px) {
86
- .quick-nav .quick-title[data-v-d5ecd44e] {
86
+ .quick-nav .quick-title[data-v-69b84a8a] {
87
87
  font-size: 16px;
88
88
  line-height: 24px;
89
89
  }
90
90
  }
91
91
  @media (max-width: 600px) {
92
- .quick-nav .quick-title[data-v-d5ecd44e] {
92
+ .quick-nav .quick-title[data-v-69b84a8a] {
93
93
  font-size: 14px;
94
94
  line-height: 22px;
95
95
  }
96
96
  }
97
- .quick-nav .nav-item[data-v-d5ecd44e] {
97
+ .quick-nav .nav-item[data-v-69b84a8a] {
98
98
  margin-top: 8px;
99
99
  font-size: 14px;
100
100
  line-height: 22px;
101
101
  }
102
102
  @media (min-width: 1201px) and (max-width: 1680px) {
103
- .quick-nav .nav-item[data-v-d5ecd44e] {
103
+ .quick-nav .nav-item[data-v-69b84a8a] {
104
104
  font-size: 14px;
105
105
  line-height: 18px;
106
106
  }
107
107
  }
108
108
  @media (min-width: 841px) and (max-width: 1200px) {
109
- .quick-nav .nav-item[data-v-d5ecd44e] {
109
+ .quick-nav .nav-item[data-v-69b84a8a] {
110
110
  font-size: 12px;
111
111
  line-height: 18px;
112
112
  }
113
113
  }
114
114
  @media (min-width: 601px) and (max-width: 840px) {
115
- .quick-nav .nav-item[data-v-d5ecd44e] {
115
+ .quick-nav .nav-item[data-v-69b84a8a] {
116
116
  font-size: 12px;
117
117
  line-height: 18px;
118
118
  }
119
119
  }
120
120
  @media (max-width: 600px) {
121
- .quick-nav .nav-item[data-v-d5ecd44e] {
121
+ .quick-nav .nav-item[data-v-69b84a8a] {
122
122
  font-size: 12px;
123
123
  line-height: 18px;
124
124
  }
125
125
  }
126
- .quick-nav .nav + .nav[data-v-d5ecd44e] {
126
+ .quick-nav .nav + .nav[data-v-69b84a8a] {
127
127
  margin-left: 88px;
128
128
  }
129
- .friendship-link[data-v-d5ecd44e] {
129
+ .friendship-link[data-v-69b84a8a] {
130
130
  margin-top: 32px;
131
131
  display: flex;
132
132
  justify-content: center;
@@ -134,121 +134,122 @@ a[data-v-d5ecd44e]:active {
134
134
  line-height: 18px;
135
135
  }
136
136
  @media (min-width: 1201px) and (max-width: 1680px) {
137
- .friendship-link[data-v-d5ecd44e] {
137
+ .friendship-link[data-v-69b84a8a] {
138
138
  font-size: 12px;
139
139
  line-height: 18px;
140
140
  }
141
141
  }
142
142
  @media (min-width: 841px) and (max-width: 1200px) {
143
- .friendship-link[data-v-d5ecd44e] {
143
+ .friendship-link[data-v-69b84a8a] {
144
144
  font-size: 12px;
145
145
  line-height: 18px;
146
146
  }
147
147
  }
148
148
  @media (min-width: 601px) and (max-width: 840px) {
149
- .friendship-link[data-v-d5ecd44e] {
149
+ .friendship-link[data-v-69b84a8a] {
150
150
  font-size: 12px;
151
151
  line-height: 18px;
152
152
  }
153
153
  }
154
154
  @media (max-width: 600px) {
155
- .friendship-link[data-v-d5ecd44e] {
155
+ .friendship-link[data-v-69b84a8a] {
156
156
  font-size: 12px;
157
157
  line-height: 18px;
158
158
  }
159
159
  }
160
- .friendship-link .friendship-link-title[data-v-d5ecd44e] {
160
+ .friendship-link .friendship-link-title[data-v-69b84a8a] {
161
161
  color: var(--o-color-white);
162
162
  flex-shrink: 0;
163
163
  }
164
- .friendship-link .friendship-link-box[data-v-d5ecd44e] {
164
+ .friendship-link .friendship-link-box[data-v-69b84a8a] {
165
165
  display: flex;
166
166
  align-items: center;
167
167
  flex-wrap: wrap;
168
168
  margin-left: 32px;
169
169
  }
170
- .friendship-link a[data-v-d5ecd44e] {
170
+ .friendship-link a[data-v-69b84a8a] {
171
171
  margin-right: 24px;
172
172
  }
173
- .footer-bottom[data-v-d5ecd44e] {
173
+ .footer-bottom[data-v-69b84a8a] {
174
174
  padding: 16px 0 32px;
175
175
  display: flex;
176
176
  align-items: center;
177
177
  justify-content: space-between;
178
178
  }
179
- .footer-logo img[data-v-d5ecd44e] {
179
+ .footer-logo img[data-v-69b84a8a] {
180
180
  height: 46px;
181
181
  }
182
- .footer-logo .email[data-v-d5ecd44e] {
182
+ .footer-logo .email[data-v-69b84a8a] {
183
183
  color: var(--o-color-white);
184
184
  margin-top: 4px;
185
185
  font-size: 14px;
186
186
  line-height: 22px;
187
187
  }
188
188
  @media (min-width: 1201px) and (max-width: 1680px) {
189
- .footer-logo .email[data-v-d5ecd44e] {
189
+ .footer-logo .email[data-v-69b84a8a] {
190
190
  font-size: 14px;
191
191
  line-height: 18px;
192
192
  }
193
193
  }
194
194
  @media (min-width: 841px) and (max-width: 1200px) {
195
- .footer-logo .email[data-v-d5ecd44e] {
195
+ .footer-logo .email[data-v-69b84a8a] {
196
196
  font-size: 12px;
197
197
  line-height: 18px;
198
198
  }
199
199
  }
200
200
  @media (min-width: 601px) and (max-width: 840px) {
201
- .footer-logo .email[data-v-d5ecd44e] {
201
+ .footer-logo .email[data-v-69b84a8a] {
202
202
  font-size: 12px;
203
203
  line-height: 18px;
204
204
  }
205
205
  }
206
206
  @media (max-width: 600px) {
207
- .footer-logo .email[data-v-d5ecd44e] {
207
+ .footer-logo .email[data-v-69b84a8a] {
208
208
  font-size: 12px;
209
209
  line-height: 18px;
210
210
  }
211
211
  }
212
- .footer-option-item[data-v-d5ecd44e] {
212
+ .footer-option-item[data-v-69b84a8a] {
213
213
  display: flex;
214
214
  align-items: center;
215
215
  justify-content: center;
216
+ flex-wrap: wrap;
216
217
  }
217
- .footer-option-item a[data-v-d5ecd44e] {
218
+ .footer-option-item a[data-v-69b84a8a] {
218
219
  color: rgba(var(--o-white), 0.8);
219
220
  font-size: 14px;
220
221
  line-height: 22px;
221
222
  }
222
223
  @media (min-width: 1201px) and (max-width: 1680px) {
223
- .footer-option-item a[data-v-d5ecd44e] {
224
+ .footer-option-item a[data-v-69b84a8a] {
224
225
  font-size: 14px;
225
226
  line-height: 18px;
226
227
  }
227
228
  }
228
229
  @media (min-width: 841px) and (max-width: 1200px) {
229
- .footer-option-item a[data-v-d5ecd44e] {
230
+ .footer-option-item a[data-v-69b84a8a] {
230
231
  font-size: 12px;
231
232
  line-height: 18px;
232
233
  }
233
234
  }
234
235
  @media (min-width: 601px) and (max-width: 840px) {
235
- .footer-option-item a[data-v-d5ecd44e] {
236
+ .footer-option-item a[data-v-69b84a8a] {
236
237
  font-size: 12px;
237
238
  line-height: 18px;
238
239
  }
239
240
  }
240
241
  @media (max-width: 600px) {
241
- .footer-option-item a[data-v-d5ecd44e] {
242
+ .footer-option-item a[data-v-69b84a8a] {
242
243
  font-size: 12px;
243
244
  line-height: 18px;
244
245
  }
245
246
  }
246
- .footer-option-item .o-divider[data-v-d5ecd44e] {
247
+ .footer-option-item .o-divider[data-v-69b84a8a] {
247
248
  height: 12px;
248
249
  --o-divider-label-gap: 0 8px;
249
250
  --o-divider-bd-color: rgba(var(--o-white), 0.6);
250
251
  }
251
- .license[data-v-d5ecd44e] {
252
+ .license[data-v-69b84a8a] {
252
253
  display: flex;
253
254
  align-items: center;
254
255
  justify-content: center;
@@ -258,34 +259,34 @@ a[data-v-d5ecd44e]:active {
258
259
  line-height: 22px;
259
260
  }
260
261
  @media (min-width: 1201px) and (max-width: 1680px) {
261
- .license[data-v-d5ecd44e] {
262
+ .license[data-v-69b84a8a] {
262
263
  font-size: 14px;
263
264
  line-height: 18px;
264
265
  }
265
266
  }
266
267
  @media (min-width: 841px) and (max-width: 1200px) {
267
- .license[data-v-d5ecd44e] {
268
+ .license[data-v-69b84a8a] {
268
269
  font-size: 12px;
269
270
  line-height: 18px;
270
271
  }
271
272
  }
272
273
  @media (min-width: 601px) and (max-width: 840px) {
273
- .license[data-v-d5ecd44e] {
274
+ .license[data-v-69b84a8a] {
274
275
  font-size: 12px;
275
276
  line-height: 18px;
276
277
  }
277
278
  }
278
279
  @media (max-width: 600px) {
279
- .license[data-v-d5ecd44e] {
280
+ .license[data-v-69b84a8a] {
280
281
  font-size: 12px;
281
282
  line-height: 18px;
282
283
  }
283
284
  }
284
- .license .license-text[data-v-d5ecd44e] {
285
+ .license .license-text[data-v-69b84a8a] {
285
286
  color: rgba(var(--o-white), 0.6);
286
287
  margin-right: 4px;
287
288
  }
288
- .copyright[data-v-d5ecd44e] {
289
+ .copyright[data-v-69b84a8a] {
289
290
  display: flex;
290
291
  align-items: center;
291
292
  justify-content: center;
@@ -296,167 +297,179 @@ a[data-v-d5ecd44e]:active {
296
297
  line-height: 22px;
297
298
  }
298
299
  @media (min-width: 1201px) and (max-width: 1680px) {
299
- .copyright[data-v-d5ecd44e] {
300
+ .copyright[data-v-69b84a8a] {
300
301
  font-size: 14px;
301
302
  line-height: 18px;
302
303
  }
303
304
  }
304
305
  @media (min-width: 841px) and (max-width: 1200px) {
305
- .copyright[data-v-d5ecd44e] {
306
+ .copyright[data-v-69b84a8a] {
306
307
  font-size: 12px;
307
308
  line-height: 18px;
308
309
  }
309
310
  }
310
311
  @media (min-width: 601px) and (max-width: 840px) {
311
- .copyright[data-v-d5ecd44e] {
312
+ .copyright[data-v-69b84a8a] {
312
313
  font-size: 12px;
313
314
  line-height: 18px;
314
315
  }
315
316
  }
316
317
  @media (max-width: 600px) {
317
- .copyright[data-v-d5ecd44e] {
318
+ .copyright[data-v-69b84a8a] {
318
319
  font-size: 12px;
319
320
  line-height: 18px;
320
321
  }
321
322
  }
322
- .copyright .copyright-left[data-v-d5ecd44e] {
323
+ .copyright .copyright-left[data-v-69b84a8a] {
323
324
  display: flex;
324
325
  }
325
- .copyright .filing[data-v-d5ecd44e] {
326
+ .copyright .filing[data-v-69b84a8a] {
326
327
  display: flex;
327
328
  margin-left: 16px;
328
329
  }
329
- .copyright .filing-img[data-v-d5ecd44e] {
330
+ .copyright .filing-img[data-v-69b84a8a] {
330
331
  height: 18px;
331
332
  }
332
- .copyright .beian-info[data-v-d5ecd44e] {
333
+ .copyright .beian-info[data-v-69b84a8a] {
333
334
  margin-left: 4px;
334
335
  }
335
- .footer-right[data-v-d5ecd44e] {
336
+ .footer-right[data-v-69b84a8a] {
336
337
  display: flex;
337
338
  flex-shrink: 0;
338
339
  }
339
- .footer-right .code-pop[data-v-d5ecd44e] {
340
+ .footer-right .code-pop[data-v-69b84a8a] {
340
341
  display: flex;
341
342
  flex-direction: column;
342
343
  align-items: center;
343
344
  }
344
- .footer-right .code-pop img[data-v-d5ecd44e] {
345
+ .footer-right .code-pop img[data-v-69b84a8a] {
345
346
  width: 64px;
346
347
  }
347
- .footer-right .code-pop .txt[data-v-d5ecd44e] {
348
+ .footer-right .code-pop .txt[data-v-69b84a8a] {
348
349
  margin-top: 4px;
349
350
  color: var(--o-color-white);
350
351
  font-size: 14px;
351
352
  line-height: 22px;
352
353
  }
353
354
  @media (min-width: 1201px) and (max-width: 1680px) {
354
- .footer-right .code-pop .txt[data-v-d5ecd44e] {
355
+ .footer-right .code-pop .txt[data-v-69b84a8a] {
355
356
  font-size: 14px;
356
357
  line-height: 18px;
357
358
  }
358
359
  }
359
360
  @media (min-width: 841px) and (max-width: 1200px) {
360
- .footer-right .code-pop .txt[data-v-d5ecd44e] {
361
+ .footer-right .code-pop .txt[data-v-69b84a8a] {
361
362
  font-size: 12px;
362
363
  line-height: 18px;
363
364
  }
364
365
  }
365
366
  @media (min-width: 601px) and (max-width: 840px) {
366
- .footer-right .code-pop .txt[data-v-d5ecd44e] {
367
+ .footer-right .code-pop .txt[data-v-69b84a8a] {
367
368
  font-size: 12px;
368
369
  line-height: 18px;
369
370
  }
370
371
  }
371
372
  @media (max-width: 600px) {
372
- .footer-right .code-pop .txt[data-v-d5ecd44e] {
373
+ .footer-right .code-pop .txt[data-v-69b84a8a] {
373
374
  font-size: 12px;
374
375
  line-height: 18px;
375
376
  }
376
377
  }
377
- .footer-right .code-pop + .code-pop[data-v-d5ecd44e] {
378
+ .footer-right .code-pop + .code-pop[data-v-69b84a8a] {
378
379
  margin-left: 16px;
379
380
  }
380
381
  @media (max-width: 1680px) {
381
- .info[data-v-d5ecd44e] {
382
+ .info[data-v-69b84a8a] {
382
383
  padding: 16px 0 12px;
383
384
  }
384
- .info .info-logo[data-v-d5ecd44e] {
385
+ .info .info-logo[data-v-69b84a8a] {
385
386
  margin-top: 8px;
386
387
  }
387
- .content[data-v-d5ecd44e] {
388
+ .content[data-v-69b84a8a] {
388
389
  padding: 12px 0 8px;
389
390
  }
390
- .friendship-link[data-v-d5ecd44e] {
391
+ .friendship-link[data-v-69b84a8a] {
391
392
  margin-top: 24px;
392
393
  }
393
- .footer-bottom[data-v-d5ecd44e] {
394
+ .footer-bottom[data-v-69b84a8a] {
394
395
  padding: 16px 0 24px;
395
396
  }
396
- .footer-right .code-pop img[data-v-d5ecd44e] {
397
+ .footer-right .code-pop img[data-v-69b84a8a] {
397
398
  width: 56px;
398
399
  }
399
400
  }
400
401
  @media (max-width: 1200px) {
401
- .info[data-v-d5ecd44e] {
402
+ .info[data-v-69b84a8a] {
402
403
  padding: 12px 0 8px;
403
404
  }
404
- .content[data-v-d5ecd44e] {
405
+ .content[data-v-69b84a8a] {
405
406
  padding: 8px 0;
406
407
  }
407
- .quick-nav .nav + .nav[data-v-d5ecd44e] {
408
+ .quick-nav .nav + .nav[data-v-69b84a8a] {
408
409
  margin-left: auto;
409
410
  }
410
- .friendship-link[data-v-d5ecd44e] {
411
+ .friendship-link[data-v-69b84a8a] {
411
412
  margin-top: 16px;
412
413
  }
413
- .footer-bottom[data-v-d5ecd44e] {
414
+ .footer-bottom[data-v-69b84a8a] {
414
415
  padding: 12px 0 16px;
415
416
  }
416
417
  }
417
418
  @media (max-width: 840px) {
418
- .info[data-v-d5ecd44e] {
419
+ .info[data-v-69b84a8a] {
419
420
  padding: 24px 0 16px;
420
421
  }
421
- .info .info-logo[data-v-d5ecd44e] {
422
+ .info .info-logo[data-v-69b84a8a] {
422
423
  height: 30px;
423
424
  margin-top: 12px;
424
425
  }
425
- .content[data-v-d5ecd44e] {
426
+ .content[data-v-69b84a8a] {
426
427
  padding: 16px 0;
427
428
  }
428
- .friendship-link[data-v-d5ecd44e] {
429
+ .friendship-link[data-v-69b84a8a] {
429
430
  margin-top: 0;
430
431
  }
431
- .friendship-link .friendship-link-box[data-v-d5ecd44e] {
432
- margin-right: 24px;
432
+ .friendship-link .friendship-link-box[data-v-69b84a8a] {
433
+ margin-left: 24px;
433
434
  }
434
- .footer-bottom[data-v-d5ecd44e] {
435
+ .footer-bottom[data-v-69b84a8a] {
435
436
  padding: 16px 0 24px;
436
437
  flex-direction: column;
437
438
  }
438
- .copyright[data-v-d5ecd44e] {
439
+ .copyright[data-v-69b84a8a] {
439
440
  flex-direction: column;
440
441
  }
441
- .copyright .copyright-left[data-v-d5ecd44e] {
442
+ .copyright .copyright-left[data-v-69b84a8a] {
442
443
  justify-content: center;
443
444
  flex-wrap: wrap;
444
445
  }
445
- .copyright .filing[data-v-d5ecd44e] {
446
+ .copyright .filing[data-v-69b84a8a] {
446
447
  margin: 4px 0 0;
447
448
  }
448
- .footer-right[data-v-d5ecd44e] {
449
+ .footer-right[data-v-69b84a8a] {
449
450
  margin-top: 24px;
450
451
  }
451
- .footer-right .code-pop img[data-v-d5ecd44e] {
452
+ .footer-right .code-pop img[data-v-69b84a8a] {
452
453
  width: 78px;
453
454
  }
454
- .footer-right .code-pop + .code-pop[data-v-d5ecd44e] {
455
+ .footer-right .code-pop + .code-pop[data-v-69b84a8a] {
455
456
  margin-left: 80px;
456
457
  }
457
458
  }
458
459
  @media (max-width: 600px) {
459
- .footer-right .code-pop + .code-pop[data-v-d5ecd44e] {
460
+ .friendship-link[data-v-69b84a8a] {
461
+ flex-direction: column;
462
+ }
463
+ .friendship-link .friendship-link-title[data-v-69b84a8a] {
464
+ margin-bottom: 8px;
465
+ }
466
+ .friendship-link .friendship-link-box[data-v-69b84a8a] {
467
+ margin-left: 0;
468
+ }
469
+ .friendship-link a[data-v-69b84a8a] {
470
+ margin: 4px 24px 0 0;
471
+ }
472
+ .footer-right .code-pop + .code-pop[data-v-69b84a8a] {
460
473
  margin-left: 60px;
461
474
  }
462
475
  }
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./FooterList.vue2.mjs";
2
2
  import './FooterList.css';
3
3
  import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
4
- const FooterList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d5ecd44e"]]);
4
+ const FooterList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-69b84a8a"]]);
5
5
  export {
6
6
  FooterList as default
7
7
  };