@opendesign-plus-test/components 0.0.1-rc.21 → 0.0.1-rc.22

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 (148) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +428 -137
  3. package/dist/components/OBanner.vue.d.ts +10 -1
  4. package/dist/components/OFooter.vue.d.ts +1 -1
  5. package/dist/components/OHeaderSearch.vue.d.ts +4 -4
  6. package/dist/components/activity/OActivityApproval.vue.d.ts +277 -0
  7. package/dist/components/activity/OActivityForm.vue.d.ts +140 -0
  8. package/dist/components/activity/OMyActivityCalendar.vue.d.ts +2 -0
  9. package/dist/components/activity/config.d.ts +15 -0
  10. package/dist/components/activity/data.d.ts +51 -0
  11. package/dist/components/activity/index.d.ts +332 -0
  12. package/dist/components/activity/types.d.ts +72 -0
  13. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +309 -0
  14. package/dist/components/meeting/OMeetingForm.vue.d.ts +156 -0
  15. package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +582 -0
  16. package/dist/components/meeting/OSigMeetingCalendar.vue.d.ts +24 -0
  17. package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +27 -0
  18. package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +664 -0
  19. package/dist/components/meeting/components/OMeetingDetail.vue.d.ts +12 -0
  20. package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +5 -0
  21. package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +17 -0
  22. package/dist/components/meeting/components/OSigMeetingAside.vue.d.ts +16 -0
  23. package/dist/components/meeting/config.d.ts +27 -0
  24. package/dist/components/meeting/types.d.ts +140 -0
  25. package/dist/components/meeting/utils.d.ts +21 -0
  26. package/dist/components.cjs.js +224 -3
  27. package/dist/components.css +1 -1
  28. package/dist/components.es.js +43019 -2293
  29. package/dist/index.d.ts +2 -0
  30. package/package.json +6 -3
  31. package/scripts/generate-components-index.js +4 -0
  32. package/src/assets/meeting/svg-icons/icon-all.svg +3 -0
  33. package/src/assets/meeting/svg-icons/icon-backward.svg +4 -0
  34. package/src/assets/meeting/svg-icons/icon-calendar.svg +3 -0
  35. package/src/assets/meeting/svg-icons/icon-cancel.svg +4 -0
  36. package/src/assets/meeting/svg-icons/icon-captions.svg +4 -0
  37. package/src/assets/meeting/svg-icons/icon-close-captions.svg +6 -0
  38. package/src/assets/meeting/svg-icons/icon-close-fullscreen.svg +6 -0
  39. package/src/assets/meeting/svg-icons/icon-copy.svg +3 -0
  40. package/src/assets/meeting/svg-icons/icon-create.svg +5 -0
  41. package/src/assets/meeting/svg-icons/icon-delete.svg +7 -0
  42. package/src/assets/meeting/svg-icons/icon-empty.svg +31 -0
  43. package/src/assets/meeting/svg-icons/icon-empty_dark.svg +49 -0
  44. package/src/assets/meeting/svg-icons/icon-event.svg +3 -0
  45. package/src/assets/meeting/svg-icons/icon-export.svg +3 -0
  46. package/src/assets/meeting/svg-icons/icon-forward.svg +4 -0
  47. package/src/assets/meeting/svg-icons/icon-fullscreen.svg +6 -0
  48. package/src/assets/meeting/svg-icons/icon-help.svg +3 -0
  49. package/src/assets/meeting/svg-icons/icon-important.svg +4 -0
  50. package/src/assets/meeting/svg-icons/icon-info.svg +3 -0
  51. package/src/assets/meeting/svg-icons/icon-meet.svg +3 -0
  52. package/src/assets/meeting/svg-icons/icon-meeting-message.svg +5 -0
  53. package/src/assets/meeting/svg-icons/icon-meeting.svg +4 -0
  54. package/src/assets/meeting/svg-icons/icon-play.svg +5 -0
  55. package/src/assets/meeting/svg-icons/icon-playing-tip.svg +7 -0
  56. package/src/assets/meeting/svg-icons/icon-playing.svg +5 -0
  57. package/src/assets/meeting/svg-icons/icon-question.svg +4 -0
  58. package/src/assets/meeting/svg-icons/icon-sound.svg +5 -0
  59. package/src/assets/meeting/svg-icons/icon-speaker.svg +3 -0
  60. package/src/assets/meeting/svg-icons/icon-summit.svg +3 -0
  61. package/src/assets/meeting/svg-icons/icon-telligent.svg +3 -0
  62. package/src/assets/meeting/svg-icons/icon-tip.svg +3 -0
  63. package/src/assets/meeting/svg-icons/icon-todo.svg +4 -0
  64. package/src/assets/meeting/transparent.png +0 -0
  65. package/src/assets/svg-icons/icon-chevron-up.svg +3 -0
  66. package/src/assets/svg-icons/icon-filter.svg +3 -0
  67. package/src/assets/svg-icons/icon-loading.svg +4 -0
  68. package/src/assets/svg-icons/icon-search.svg +3 -0
  69. package/src/assets/svg-icons/icon-tips.svg +3 -0
  70. package/src/components/OBanner.vue +11 -3
  71. package/src/components/OFooter.vue +1 -1
  72. package/src/components/activity/OActivityApproval.vue +775 -0
  73. package/src/components/activity/OActivityForm.vue +540 -0
  74. package/src/components/activity/OMyActivityCalendar.vue +13 -0
  75. package/src/components/activity/config.ts +130 -0
  76. package/src/components/activity/data.ts +365 -0
  77. package/src/components/activity/index.ts +24 -0
  78. package/src/components/activity/types.ts +78 -0
  79. package/src/components/common/MoreText.vue +119 -0
  80. package/src/components/common/ThFilter.vue +326 -0
  81. package/src/components/events/OEventsApply.vue +2 -86
  82. package/src/components/events/OEventsCalendar.vue +0 -25
  83. package/src/components/events/OEventsList.vue +0 -51
  84. package/src/components/events/index.ts +1 -0
  85. package/src/components/meeting/OMeetingCalendar.vue +865 -0
  86. package/src/components/meeting/OMeetingForm.vue +1035 -0
  87. package/src/components/meeting/OMeetingPlayback.vue +439 -0
  88. package/src/components/meeting/OMyMeetingCalendar.vue +1534 -0
  89. package/src/components/meeting/OSigMeetingCalendar.vue +411 -0
  90. package/src/components/meeting/components/OMeetingCalendarList.vue +462 -0
  91. package/src/components/meeting/components/OMeetingCalendarSelector.vue +206 -0
  92. package/src/components/meeting/components/OMeetingDetail.vue +176 -0
  93. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +611 -0
  94. package/src/components/meeting/components/OMeetingPlaybackVideo.vue +741 -0
  95. package/src/components/meeting/components/OSigMeetingAside.vue +197 -0
  96. package/src/components/meeting/config.ts +110 -0
  97. package/src/components/meeting/index.ts +45 -0
  98. package/src/components/meeting/types.ts +167 -0
  99. package/src/components/meeting/utils.ts +106 -0
  100. package/src/draft/Footer.vue +4 -4
  101. package/src/env.d.ts +15 -0
  102. package/src/i18n/en.ts +140 -0
  103. package/src/i18n/index.ts +18 -4
  104. package/src/i18n/zh.ts +140 -0
  105. package/src/index.ts +2 -0
  106. package/tsconfig.json +6 -2
  107. package/vite.config.ts +25 -9
  108. package/npmcachae/_cacache/content-v2/sha512/05/f7/dd881de8b21208ea65cfce17c65f29964c3897505819f81151b9798a3a6ab1a1114324192354ead15cd2c8d93f76cc9929af168066ec9cc7878d0fd87578 +0 -1
  109. package/npmcachae/_cacache/content-v2/sha512/08/b7/879230f8c2f3765920a6fd6113f4687141f1f645f96af7d95a0dee9113d1095d000fb78a5dd55c1860bbfb9b698ef6281b3874b03b2384222f61fe055fc4 +0 -1
  110. package/npmcachae/_cacache/content-v2/sha512/10/a0/a6626613c03ee052925a762e8675878efdf83dac64fafea43beb2a875f7d7c3907bb0ee30761253cd16021fd58911449594e1d3358675cbb7c48e62f220a +0 -1
  111. package/npmcachae/_cacache/content-v2/sha512/2e/a6/7cbcf55a98bbe2ca881d10e982ebf59211a0ec051eaf46eb1914df66cc35ae502ed6888850e51d8f45cd92695bac16961a642bc41508f8d5160a9ab617ab +0 -1
  112. package/npmcachae/_cacache/content-v2/sha512/92/8d/e5259c5d5cc2a625247f3c4d809192ca9482467e23683d74924a11e91a7997ad890b3d26adaf34df66d5329cc7a5fbde6713110cad05107a0b504e4fd4e8 +0 -1
  113. package/npmcachae/_cacache/content-v2/sha512/e9/45/9597d870127c35681155cec5fe52fde4e1aa0f778b996ee371e856aca850ee4c13aba74b0c3d3a89ff0ea4c9e1d33e64e53c31dc9cede0b31012695ee659 +0 -1
  114. package/npmcachae/_cacache/index-v5/16/4a/7195fcc6857299c4ab7e26014a8ae6e3c396507a2c8db3da1b74b005d574 +0 -3
  115. package/npmcachae/_cacache/index-v5/58/f0/4fe556f104b09be642895a82afa463fe560d9a0dc8f507efeef825a6905e +0 -3
  116. package/npmcachae/_cacache/index-v5/67/7d/0b50dc4c09555fc922ccf43c46994f1a0a5ff47dc0a5d5cf41437ac2d3e6 +0 -3
  117. package/npmcachae/_cacache/index-v5/8f/28/353f8839e030ab11aab3e7d9f1b8c053403e9f593cf6d4aa6ec8fdd7610d +0 -3
  118. package/npmcachae/_cacache/index-v5/97/10/0fcf20eb29d0726bd820822f6729718464b591b0e6901217c956740e943c +0 -3
  119. package/npmcachae/_cacache/index-v5/db/89/a0a4f35f593105624ab39339962d9e9b5cc65ed0c346b0732fb8dd73721d +0 -3
  120. package/npmcachae/_logs/2026-03-26T14_10_35_885Z-debug-0.log +0 -171
  121. package/npmcachae/_logs/2026-03-26T14_10_38_617Z-debug-0.log +0 -4227
  122. package/npmcachae/_logs/2026-03-26T14_10_45_316Z-debug-0.log +0 -4228
  123. package/npmcachae/_logs/2026-03-26T14_10_48_169Z-debug-0.log +0 -4228
  124. package/npmcachae/_logs/2026-03-26T14_10_51_306Z-debug-0.log +0 -464
  125. package/npmcachae/_logs/2026-03-26T14_10_53_911Z-debug-0.log +0 -464
  126. package/npmcachae/_logs/2026-03-26T14_10_56_398Z-debug-0.log +0 -464
  127. package/npmcachae/_logs/2026-03-26T14_10_58_861Z-debug-0.log +0 -464
  128. package/npmcachae/_logs/2026-03-26T14_11_01_337Z-debug-0.log +0 -464
  129. package/npmcachae/_logs/2026-03-26T14_11_03_851Z-debug-0.log +0 -464
  130. package/npmcachae/_logs/2026-03-26T14_11_08_024Z-debug-0.log +0 -464
  131. package/npmcachae/_update-notifier-last-checked +0 -0
  132. package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/3e/17/1865217b9acb9f4921c53a09b5c76587cd2ab748beb2699ff6cfb1341d73b1aa56ed91ffc5ab2c9c9b3fbe626103b35d9a79ff29ff6b8cbb8d89755fe1a2 +0 -1
  133. package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/a6/15/47bb7552ec9248079e839a5feecc1742d4de19524fdf041cf581701cf4760a5025106036145e279ba193b07c8fa5b07ae3d75f1b6032f0cb2219115b6167 +0 -1
  134. package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/d1/4c/133b32e09c97101a27a07cc4432f94e470cff02d120d21babcea77c3f5cd436793516dc1a8e282ee1a568f923c148b1a48f4a43233462a530d35e8b41c67 +0 -1
  135. package/src/components/meeting/npmcachae/_cacache/index-v5/54/0d/a4909047714a0a7198bb9bd37020992464e47c79a791889919b84d90aab0 +0 -3
  136. package/src/components/meeting/npmcachae/_cacache/index-v5/8e/2b/21a79778e2ac08cf5663baf83cb35f951995a496007eb2e2f7fba54021a4 +0 -3
  137. package/src/components/meeting/npmcachae/_cacache/index-v5/eb/a0/b70c8132e5b57a0f1e129b8cc941796420a9c147c0baa680710083740898 +0 -2
  138. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_03_54_955Z-debug-0.log +0 -277
  139. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_03_57_842Z-debug-0.log +0 -277
  140. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_00_016Z-debug-0.log +0 -277
  141. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_02_191Z-debug-0.log +0 -277
  142. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_04_425Z-debug-0.log +0 -277
  143. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_06_642Z-debug-0.log +0 -277
  144. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_08_826Z-debug-0.log +0 -277
  145. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_36_140Z-debug-0.log +0 -433
  146. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_39_573Z-debug-0.log +0 -433
  147. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_42_134Z-debug-0.log +0 -212
  148. package/src/components/meeting/npmcachae/_update-notifier-last-checked +0 -0
package/dist/index.d.ts CHANGED
@@ -10,8 +10,10 @@ import { default as OSection } from './components/OSection.vue';
10
10
  import { default as OSourceCode } from './components/OSourceCode.vue';
11
11
  import { default as OThemeSwitcher } from './components/OThemeSwitcher.vue';
12
12
  export { OBanner, OCookieNotice, OFooter, OHeader, OHeaderMoblie, OHeaderSearch, OHeaderUser, OPlusConfigProvider, OSection, OSourceCode, OThemeSwitcher };
13
+ export * from './components/activity';
13
14
  export * from './components/element-plus';
14
15
  export * from './components/events';
16
+ export * from './components/meeting';
15
17
  declare const _default: {
16
18
  install: (app: any) => void;
17
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendesign-plus-test/components",
3
- "version": "0.0.1-rc.21",
3
+ "version": "0.0.1-rc.22",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -29,12 +29,13 @@
29
29
  "@opensig/opendesign": "1.0.2",
30
30
  "@vueuse/core": "10.11.1",
31
31
  "aos": "^2.3.4",
32
+ "dayjs": "^1.11.13",
33
+ "video.js": "^8.23.7",
32
34
  "vue-dompurify-html": "^3.1.2",
33
35
  "@opendesign-plus/styles": "0.0.1-rc.2",
34
36
  "@opendesign-plus/composables": "0.0.1-rc.6"
35
37
  },
36
38
  "devDependencies": {
37
- "vue": "^3.4.0",
38
39
  "@vitejs/plugin-vue": "^5.1.0",
39
40
  "element-plus": "^2.13.1",
40
41
  "sass": "^1.71.1",
@@ -43,11 +44,13 @@
43
44
  "unplugin-icons": "^0.14.1",
44
45
  "vite": "^6.2.3",
45
46
  "vite-plugin-dts": "^4.5.3",
47
+ "vue": "^3.4.0",
46
48
  "vue-tsc": "2.2.8"
47
49
  },
48
50
  "scripts": {
49
51
  "dev": "vite",
50
52
  "generate-components": "node scripts/generate-components-index.js",
51
- "build": "pnpm run generate-components && tsc --noEmit && vite build --mode library"
53
+ "build": "pnpm run generate-components && tsc --noEmit && vite build --mode library",
54
+ "build:watch": "vite build --mode library --watch"
52
55
  }
53
56
  }
@@ -4,7 +4,9 @@ import fs from 'fs';
4
4
  import path from 'path';
5
5
 
6
6
  // 组件目录路径
7
+ // eslint-disable-next-line no-undef
7
8
  const componentsDir = path.resolve(process.cwd(), 'src/components');
9
+ // eslint-disable-next-line no-undef
8
10
  const indexFilePath = path.resolve(process.cwd(), 'src/index.ts');
9
11
 
10
12
  // 生成组件索引文件
@@ -93,8 +95,10 @@ export default {
93
95
  // 执行生成
94
96
  try {
95
97
  const success = generateComponentsIndex();
98
+ // eslint-disable-next-line no-undef
96
99
  process.exit(success ? 0 : 1);
97
100
  } catch (error) {
98
101
  console.error('执行脚本时发生错误:', error);
102
+ // eslint-disable-next-line no-undef
99
103
  process.exit(1);
100
104
  }
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M10 14.267c-0.413 0-0.817-0.043-1.211-0.131h-0.001c-0.329-0.073-0.652-0.176-0.968-0.31-0.318-0.135-0.618-0.295-0.902-0.482-0.314-0.207-0.607-0.446-0.878-0.718s-0.511-0.564-0.718-0.878c-0.187-0.283-0.348-0.584-0.482-0.902-0.134-0.316-0.237-0.639-0.31-0.968v0c-0.087-0.394-0.131-0.798-0.131-1.211s0.044-0.817 0.131-1.212v0c0.073-0.33 0.176-0.652 0.31-0.968 0.134-0.318 0.295-0.618 0.482-0.902v0c0.207-0.314 0.446-0.607 0.718-0.878s0.564-0.511 0.878-0.718c0.283-0.187 0.584-0.347 0.902-0.482 0.316-0.134 0.639-0.237 0.968-0.31v0c0.394-0.087 0.798-0.131 1.211-0.131s0.817 0.044 1.212 0.131v0c0.33 0.073 0.652 0.176 0.968 0.31 0.318 0.134 0.618 0.295 0.902 0.482 0.314 0.207 0.607 0.446 0.878 0.718s0.511 0.564 0.718 0.878v0c0.187 0.283 0.347 0.584 0.482 0.902 0.134 0.316 0.237 0.639 0.31 0.968v0.001c0.087 0.394 0.131 0.798 0.131 1.211v4.667c0 0.129-0.023 0.248-0.068 0.358v0c-0.046 0.11-0.114 0.21-0.205 0.302s-0.192 0.159-0.302 0.205v0c-0.11 0.046-0.229 0.068-0.358 0.068h-4.667zM16.4 13.333c0 0.129 0.023 0.248 0.068 0.358s0.114 0.211 0.205 0.302c0.091 0.091 0.192 0.159 0.302 0.205v0c0.11 0.046 0.229 0.068 0.358 0.068h4.667c0.413 0 0.817-0.044 1.212-0.131v0c0.329-0.073 0.652-0.176 0.968-0.31 0.318-0.134 0.618-0.295 0.902-0.482 0.314-0.207 0.607-0.446 0.878-0.718s0.511-0.564 0.718-0.878v0c0.187-0.283 0.347-0.584 0.482-0.902 0.134-0.316 0.237-0.639 0.31-0.968v0c0.087-0.394 0.131-0.798 0.131-1.211s-0.044-0.817-0.131-1.212c-0.073-0.33-0.176-0.652-0.31-0.968-0.134-0.318-0.295-0.618-0.482-0.902v0c-0.207-0.314-0.447-0.607-0.718-0.878s-0.564-0.511-0.878-0.718c-0.283-0.187-0.584-0.347-0.902-0.482-0.316-0.134-0.639-0.237-0.968-0.31-0.394-0.087-0.798-0.131-1.212-0.131s-0.817 0.044-1.212 0.131c-0.33 0.073-0.652 0.176-0.968 0.31-0.318 0.134-0.618 0.295-0.902 0.482-0.314 0.207-0.607 0.446-0.878 0.718s-0.511 0.564-0.718 0.878c-0.187 0.283-0.348 0.584-0.482 0.902-0.134 0.316-0.237 0.639-0.31 0.968-0.087 0.394-0.131 0.798-0.131 1.212v4.667zM22 12.4h-3.733v-3.733c0-0.287 0.031-0.568 0.094-0.84 0.048-0.208 0.114-0.413 0.199-0.612 0.087-0.206 0.191-0.401 0.311-0.586 0.14-0.215 0.303-0.416 0.489-0.601s0.386-0.349 0.601-0.489l0.001-0.001c0.184-0.12 0.379-0.224 0.585-0.311 0.2-0.085 0.404-0.151 0.612-0.199 0.273-0.063 0.553-0.094 0.84-0.094s0.567 0.031 0.84 0.094c0.208 0.048 0.413 0.114 0.613 0.199 0.206 0.087 0.401 0.191 0.586 0.311 0.215 0.14 0.416 0.304 0.601 0.489s0.349 0.386 0.489 0.601c0.12 0.184 0.224 0.38 0.311 0.586 0.085 0.2 0.151 0.404 0.199 0.612 0.063 0.273 0.094 0.553 0.094 0.84s-0.031 0.568-0.094 0.84c-0.048 0.208-0.114 0.413-0.199 0.612-0.087 0.206-0.191 0.401-0.311 0.586v0c-0.14 0.215-0.303 0.416-0.489 0.601s-0.386 0.349-0.601 0.489c-0.184 0.12-0.38 0.224-0.586 0.311-0.2 0.085-0.404 0.151-0.613 0.199h-0.001c-0.273 0.063-0.552 0.094-0.84 0.094zM13.733 12.4v-3.733c0-0.287-0.031-0.568-0.094-0.84-0.048-0.208-0.114-0.413-0.199-0.612-0.087-0.206-0.191-0.401-0.311-0.586-0.14-0.215-0.303-0.416-0.489-0.601s-0.386-0.349-0.601-0.489c-0.184-0.12-0.38-0.224-0.586-0.311-0.2-0.085-0.404-0.151-0.612-0.199-0.273-0.063-0.553-0.094-0.841-0.094s-0.567 0.031-0.84 0.094c-0.208 0.048-0.413 0.114-0.612 0.199-0.206 0.087-0.401 0.191-0.586 0.311v0c-0.215 0.14-0.416 0.303-0.601 0.489s-0.349 0.386-0.489 0.601v0c-0.12 0.184-0.224 0.38-0.311 0.586-0.085 0.2-0.151 0.404-0.199 0.612-0.063 0.273-0.094 0.553-0.094 0.84s0.031 0.568 0.094 0.84c0.048 0.208 0.114 0.413 0.199 0.612 0.087 0.206 0.191 0.401 0.311 0.586 0.14 0.215 0.304 0.416 0.489 0.601s0.386 0.349 0.601 0.489c0.184 0.12 0.38 0.224 0.586 0.311 0.2 0.085 0.404 0.151 0.612 0.199v0c0.273 0.063 0.553 0.094 0.84 0.094h3.733zM16.4 16c0-0.258 0.091-0.478 0.273-0.66 0.091-0.091 0.192-0.159 0.302-0.205s0.229-0.068 0.358-0.068h4.667c0.414 0 0.817 0.044 1.212 0.131 0.329 0.073 0.652 0.176 0.968 0.31 0.318 0.134 0.618 0.295 0.902 0.482 0.314 0.207 0.607 0.446 0.878 0.718s0.511 0.564 0.718 0.878c0.187 0.283 0.347 0.584 0.482 0.902 0.134 0.316 0.237 0.639 0.31 0.968 0.087 0.394 0.131 0.798 0.131 1.212s-0.044 0.817-0.131 1.212c-0.073 0.33-0.176 0.652-0.31 0.968-0.134 0.318-0.295 0.618-0.482 0.902-0.207 0.314-0.447 0.607-0.718 0.878s-0.564 0.511-0.878 0.718c-0.283 0.187-0.584 0.347-0.902 0.482-0.316 0.134-0.639 0.237-0.968 0.31-0.394 0.087-0.798 0.131-1.212 0.131s-0.817-0.044-1.212-0.131c-0.33-0.073-0.652-0.176-0.968-0.31-0.318-0.134-0.618-0.295-0.902-0.482-0.314-0.207-0.607-0.446-0.878-0.718s-0.511-0.564-0.718-0.878c-0.187-0.283-0.348-0.584-0.482-0.902-0.134-0.316-0.237-0.639-0.31-0.968v0c-0.087-0.394-0.131-0.798-0.131-1.212v-4.667zM10 15.067c-0.413 0-0.817 0.044-1.212 0.131v0c-0.329 0.073-0.652 0.176-0.968 0.31-0.318 0.134-0.618 0.295-0.902 0.482-0.314 0.207-0.607 0.446-0.878 0.718s-0.511 0.564-0.718 0.878c-0.187 0.283-0.348 0.584-0.482 0.901-0.134 0.316-0.237 0.639-0.31 0.968-0.087 0.394-0.131 0.798-0.131 1.212s0.044 0.817 0.131 1.212c0.073 0.329 0.176 0.652 0.31 0.968 0.134 0.318 0.295 0.618 0.482 0.902v0c0.207 0.314 0.446 0.607 0.718 0.878s0.564 0.511 0.878 0.718c0.283 0.187 0.584 0.347 0.902 0.482 0.316 0.134 0.639 0.237 0.968 0.31 0.394 0.087 0.798 0.131 1.212 0.131s0.817-0.044 1.212-0.131v0c0.33-0.073 0.652-0.176 0.968-0.31 0.318-0.134 0.618-0.295 0.902-0.482 0.314-0.207 0.607-0.446 0.878-0.718s0.511-0.564 0.718-0.878v0c0.187-0.283 0.347-0.584 0.482-0.902 0.134-0.316 0.237-0.639 0.31-0.968 0.087-0.394 0.131-0.798 0.131-1.212v-4.667c0-0.258-0.091-0.478-0.273-0.66-0.091-0.091-0.192-0.159-0.302-0.205s-0.229-0.068-0.358-0.068h-4.667zM13.733 16.933v3.733c0 0.287-0.031 0.567-0.094 0.84-0.048 0.208-0.114 0.413-0.199 0.612-0.087 0.206-0.191 0.401-0.311 0.585v0c-0.14 0.215-0.303 0.416-0.489 0.601s-0.386 0.349-0.601 0.489c-0.184 0.12-0.38 0.224-0.586 0.311-0.2 0.085-0.404 0.151-0.612 0.199-0.273 0.063-0.553 0.094-0.841 0.094s-0.567-0.031-0.84-0.094h-0.001c-0.208-0.048-0.412-0.114-0.612-0.199-0.206-0.087-0.401-0.191-0.586-0.311v0c-0.215-0.14-0.416-0.303-0.601-0.489s-0.349-0.386-0.489-0.601c-0.12-0.184-0.224-0.38-0.311-0.586-0.085-0.2-0.151-0.404-0.199-0.612-0.063-0.273-0.094-0.553-0.094-0.84s0.031-0.568 0.094-0.841c0.048-0.208 0.114-0.412 0.199-0.612 0.087-0.206 0.191-0.401 0.311-0.586 0.14-0.215 0.304-0.416 0.489-0.601s0.386-0.349 0.601-0.489c0.184-0.12 0.38-0.224 0.586-0.311 0.2-0.085 0.404-0.151 0.612-0.199h0.001c0.273-0.063 0.553-0.094 0.84-0.094h3.733zM22 16.933h-3.733v3.733c0 0.287 0.031 0.567 0.094 0.84 0.048 0.208 0.114 0.413 0.199 0.612 0.087 0.206 0.191 0.401 0.311 0.586 0.14 0.215 0.303 0.416 0.489 0.601s0.386 0.349 0.601 0.489c0.184 0.12 0.379 0.224 0.586 0.311 0.2 0.085 0.404 0.151 0.612 0.199 0.273 0.063 0.553 0.094 0.84 0.094s0.567-0.031 0.84-0.094c0.208-0.048 0.413-0.114 0.613-0.199 0.206-0.087 0.401-0.191 0.586-0.311 0.215-0.141 0.416-0.304 0.601-0.489s0.349-0.386 0.489-0.601c0.12-0.184 0.224-0.38 0.311-0.586 0.085-0.2 0.151-0.404 0.199-0.612 0.063-0.273 0.094-0.553 0.094-0.84s-0.031-0.568-0.094-0.841c-0.048-0.208-0.114-0.412-0.199-0.612-0.087-0.206-0.191-0.401-0.311-0.586-0.141-0.215-0.304-0.416-0.489-0.601s-0.386-0.349-0.601-0.489c-0.184-0.12-0.38-0.224-0.586-0.311-0.2-0.085-0.404-0.151-0.613-0.199-0.273-0.063-0.553-0.094-0.84-0.094z"></path>
3
+ </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 fill="none" stroke="#fff" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="4" stroke-width="2.25" d="M4.065 10.125l-2.565 1.875c0-5.805 4.695-10.5 10.5-10.5 5.79 0 10.5 4.695 10.5 10.5 0 5.79-4.71 10.5-10.5 10.5-2.715 0-5.175-1.035-7.035-2.715"></path>
3
+ <path fill="#fff" d="M11.685 10.11c0.57 0 1.095 0.135 1.56 0.405 0.45 0.27 0.825 0.645 1.080 1.14 0.27 0.48 0.405 1.035 0.405 1.665 0 0.675-0.15 1.26-0.435 1.77-0.3 0.495-0.705 0.885-1.215 1.155s-1.080 0.405-1.68 0.405c-0.72 0-1.35-0.165-1.89-0.51-0.525-0.345-0.9-0.84-1.11-1.515l1.365-0.78c0.135 0.435 0.33 0.75 0.615 0.96 0.27 0.225 0.6 0.33 0.99 0.33 0.33 0 0.615-0.075 0.855-0.24 0.24-0.15 0.42-0.36 0.525-0.63 0.12-0.255 0.18-0.555 0.18-0.87 0-0.33-0.060-0.63-0.18-0.9-0.105-0.27-0.285-0.48-0.525-0.645s-0.54-0.24-0.885-0.24c-0.675 0-1.2 0.315-1.56 0.945l-1.185-0.585 0.66-5.385h5.010v1.455h-3.555l-0.315 2.37c0.18-0.105 0.375-0.18 0.6-0.225 0.21-0.045 0.435-0.075 0.69-0.075z"></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 d="M6.463 4.976a.7.7 0 0 1 .095 1.394l-.095.006H4.471a.14.14 0 0 0-.13.093l-.007.043v1.856h15.329l.001-1.856a.14.14 0 0 0-.093-.13l-.043-.007h-2.055a.7.7 0 0 1-.095-1.394l.095-.006h2.055c.801 0 1.46.614 1.53 1.397l.006.14v12.359c0 .801-.614 1.46-1.397 1.53l-.14.006H4.47c-.801 0-1.46-.614-1.53-1.397l-.006-.14V6.511c0-.801.614-1.46 1.397-1.53l.14-.006zm13.201 4.792H4.335v9.103c0 .06.039.111.093.13l.043.007h15.057c.06 0 .111-.039.13-.093l.007-.043-.001-9.103zm-3.482 5.663a.7.7 0 0 1 .095 1.394l-.095.006H7.817a.7.7 0 0 1-.095-1.394l.095-.006zm0-3.346a.7.7 0 0 1 .095 1.394l-.095.006H7.817a.7.7 0 0 1-.095-1.394l.095-.006zm-.696-8.467c.354 0 .647.263.694.605l.006.095v2.804a.7.7 0 0 1-1.394.095l-.006-.095V4.318a.7.7 0 0 1 .7-.7m-6.937-.026c.354 0 .647.263.694.605l.006.095v2.804a.7.7 0 0 1-1.394.095l-.006-.095V4.292a.7.7 0 0 1 .7-.7m4.946 1.384a.7.7 0 0 1 .095 1.394l-.095.006H10.53a.7.7 0 0 1-.095-1.394l.095-.006z"></path>
3
+ </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 fill="#bbbabf" d="M0 12c0-6.63 5.37-12 12-12 6.615 0 12 5.37 12 12 0 6.615-5.385 12-12 12-6.63 0-12-5.385-12-12z"></path>
3
+ <path fill="#fff" d="M4.8 11.985c0-0.555 0.45-0.99 1.005-0.99h12.375c0.555 0 1.005 0.435 1.005 0.99 0 0.57-0.45 1.005-1.005 1.005h-12.375c-0.555 0-1.005-0.435-1.005-1.005z"></path>
4
+ </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 fill="#fff" d="M17.857 6.045c-0.15-0.030-0.3-0.045-0.45-0.045h-10.823c-0.15 0-0.3 0.015-0.45 0.045-0.12 0.030-0.247 0.068-0.367 0.12-0.113 0.045-0.225 0.105-0.338 0.18s-0.225 0.165-0.322 0.27c-0.098 0.098-0.188 0.21-0.262 0.322s-0.135 0.225-0.188 0.345c-0.045 0.12-0.083 0.24-0.113 0.367-0.030 0.143-0.045 0.3-0.045 0.45v7.793c0 0.15 0.015 0.308 0.045 0.45 0.030 0.128 0.067 0.247 0.113 0.367 0.053 0.12 0.112 0.232 0.188 0.345s0.165 0.225 0.262 0.323c0.098 0.105 0.21 0.195 0.322 0.27s0.225 0.135 0.338 0.18c0.12 0.052 0.248 0.090 0.367 0.12 0.15 0.030 0.3 0.053 0.45 0.053h10.823c0.15 0 0.3-0.023 0.45-0.053 0.12-0.030 0.247-0.067 0.367-0.12 0.113-0.045 0.225-0.105 0.337-0.18s0.225-0.165 0.323-0.27c0.097-0.098 0.188-0.21 0.27-0.323 0.067-0.112 0.128-0.225 0.18-0.345 0.045-0.12 0.083-0.24 0.113-0.367 0.030-0.142 0.052-0.3 0.052-0.45v-7.793c0-0.15-0.023-0.308-0.052-0.45-0.030-0.127-0.067-0.247-0.113-0.367-0.052-0.12-0.112-0.232-0.18-0.345-0.082-0.113-0.173-0.225-0.27-0.322-0.098-0.105-0.21-0.195-0.323-0.27s-0.225-0.135-0.337-0.18c-0.12-0.053-0.247-0.090-0.367-0.12zM6.585 7.087h10.822c0.083 0 0.158 0.007 0.233 0.030 0.052 0.007 0.105 0.030 0.157 0.053 0.060 0.022 0.105 0.045 0.158 0.082 0.060 0.038 0.112 0.082 0.165 0.135 0.052 0.045 0.098 0.105 0.135 0.165 0.030 0.045 0.060 0.098 0.082 0.15s0.038 0.112 0.053 0.165c0.015 0.075 0.023 0.15 0.023 0.233v7.792c0 0.082-0.008 0.157-0.023 0.232-0.015 0.053-0.030 0.113-0.053 0.165s-0.052 0.105-0.082 0.15c-0.037 0.060-0.082 0.12-0.135 0.165-0.053 0.052-0.105 0.097-0.165 0.135-0.053 0.038-0.098 0.060-0.158 0.082-0.052 0.023-0.105 0.045-0.157 0.052-0.075 0.023-0.15 0.030-0.233 0.030h-10.822c-0.082 0-0.158-0.008-0.232-0.030-0.053-0.008-0.105-0.030-0.158-0.052-0.060-0.023-0.105-0.045-0.158-0.082-0.060-0.038-0.113-0.082-0.165-0.135-0.053-0.045-0.098-0.105-0.135-0.165-0.030-0.045-0.060-0.098-0.083-0.15s-0.037-0.112-0.053-0.165c-0.015-0.075-0.022-0.15-0.022-0.232v-7.793c0-0.082 0.007-0.158 0.022-0.232 0.015-0.053 0.030-0.113 0.053-0.165s0.053-0.105 0.083-0.15c0.037-0.060 0.083-0.12 0.135-0.165 0.053-0.053 0.105-0.098 0.165-0.135 0.053-0.038 0.098-0.060 0.158-0.082 0.053-0.022 0.105-0.045 0.158-0.053 0.075-0.022 0.15-0.030 0.232-0.030z"></path>
3
+ <path fill="#fff" d="M11.7 13.44l-0.75-0.435c-0.262 0.413-0.615 0.615-1.057 0.615-0.413 0-0.743-0.143-0.998-0.443-0.248-0.3-0.375-0.712-0.375-1.237 0-0.518 0.127-0.93 0.375-1.23 0.255-0.3 0.585-0.45 0.998-0.45 0.442 0 0.795 0.203 1.057 0.608l0.75-0.435c-0.172-0.353-0.412-0.623-0.727-0.795-0.308-0.18-0.668-0.262-1.073-0.262-0.442 0-0.84 0.098-1.207 0.307s-0.66 0.51-0.877 0.893c-0.21 0.39-0.315 0.848-0.315 1.365s0.105 0.967 0.315 1.357c0.217 0.39 0.51 0.683 0.877 0.893s0.765 0.315 1.207 0.315c0.405 0 0.765-0.090 1.073-0.27 0.315-0.173 0.555-0.443 0.727-0.795zM16.365 13.44l-0.75-0.435c-0.27 0.413-0.622 0.615-1.065 0.615-0.412 0-0.742-0.143-0.99-0.443-0.255-0.3-0.383-0.712-0.383-1.237 0-0.518 0.128-0.93 0.383-1.23 0.247-0.3 0.578-0.45 0.99-0.45 0.443 0 0.795 0.203 1.065 0.608l0.75-0.435c-0.173-0.353-0.42-0.623-0.728-0.795-0.315-0.18-0.668-0.262-1.072-0.262-0.442 0-0.848 0.098-1.215 0.307s-0.66 0.51-0.87 0.893c-0.217 0.39-0.322 0.848-0.322 1.365s0.105 0.967 0.322 1.357c0.21 0.39 0.503 0.683 0.87 0.893s0.773 0.315 1.215 0.315c0.405 0 0.758-0.090 1.072-0.27 0.307-0.173 0.555-0.443 0.728-0.795z"></path>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#fff" d="M6.585 18h4.635c0.308 0 0.548-0.24 0.548-0.547s-0.24-0.547-0.548-0.547h-4.635c-0.082 0-0.158-0.008-0.232-0.030-0.053-0.008-0.105-0.030-0.158-0.053-0.060-0.023-0.105-0.045-0.158-0.082-0.060-0.038-0.113-0.083-0.165-0.135-0.053-0.045-0.097-0.105-0.135-0.165-0.030-0.045-0.060-0.098-0.083-0.15s-0.037-0.113-0.053-0.165c-0.015-0.075-0.022-0.15-0.022-0.232v-7.793c0-0.082 0.008-0.158 0.022-0.232 0.015-0.053 0.030-0.113 0.053-0.165s0.053-0.105 0.083-0.15c0.038-0.060 0.083-0.12 0.135-0.165 0.053-0.053 0.105-0.098 0.165-0.135 0.053-0.038 0.098-0.060 0.158-0.082 0.053-0.022 0.105-0.045 0.158-0.053 0.075-0.022 0.15-0.030 0.232-0.030h10.822c0.083 0 0.158 0.007 0.233 0.030 0.052 0.007 0.105 0.030 0.157 0.053 0.060 0.022 0.105 0.045 0.158 0.082 0.060 0.037 0.112 0.082 0.165 0.135 0.052 0.045 0.098 0.105 0.135 0.165 0.030 0.045 0.060 0.098 0.082 0.15s0.038 0.113 0.053 0.165c0.015 0.075 0.023 0.15 0.023 0.232v3.12c0 0.3 0.24 0.54 0.54 0.54 0.307 0 0.547-0.24 0.547-0.54v-3.12c0-0.15-0.023-0.308-0.053-0.45-0.030-0.128-0.067-0.248-0.112-0.368-0.053-0.12-0.112-0.233-0.18-0.345-0.082-0.112-0.172-0.225-0.27-0.322-0.098-0.105-0.21-0.195-0.322-0.27s-0.225-0.135-0.338-0.18c-0.12-0.053-0.247-0.090-0.367-0.12-0.15-0.030-0.3-0.045-0.45-0.045h-10.822c-0.15 0-0.3 0.015-0.45 0.045-0.12 0.030-0.247 0.067-0.367 0.12-0.113 0.045-0.225 0.105-0.338 0.18s-0.225 0.165-0.322 0.27c-0.098 0.098-0.188 0.21-0.262 0.322s-0.135 0.225-0.188 0.345c-0.045 0.12-0.083 0.24-0.113 0.368-0.030 0.142-0.045 0.3-0.045 0.45v7.793c0 0.15 0.015 0.307 0.045 0.45 0.030 0.128 0.067 0.247 0.113 0.367 0.053 0.12 0.112 0.232 0.188 0.345s0.165 0.225 0.262 0.323c0.098 0.105 0.21 0.195 0.322 0.27s0.225 0.135 0.338 0.18c0.12 0.053 0.248 0.090 0.367 0.12 0.15 0.030 0.3 0.053 0.45 0.053z"></path>
3
+ <path fill="#fff" d="M11.647 13.447l-0.749-0.434c-0.265 0.41-0.619 0.614-1.061 0.614-0.41 0-0.742-0.149-0.994-0.448-0.253-0.301-0.379-0.713-0.379-1.237 0-0.518 0.127-0.926 0.379-1.225 0.253-0.301 0.584-0.45 0.994-0.45 0.442 0 0.796 0.201 1.061 0.605l0.749-0.434c-0.171-0.354-0.413-0.62-0.726-0.795-0.311-0.177-0.669-0.266-1.073-0.266-0.442 0-0.847 0.104-1.214 0.312-0.365 0.208-0.656 0.506-0.872 0.895-0.214 0.389-0.322 0.841-0.322 1.359s0.107 0.971 0.322 1.359c0.216 0.387 0.506 0.686 0.872 0.895 0.367 0.208 0.771 0.312 1.214 0.312 0.404 0 0.762-0.089 1.073-0.266 0.313-0.177 0.555-0.442 0.726-0.795zM12.23 12.848c-0.086-0.276-0.129-0.579-0.129-0.907 0-0.518 0.107-0.971 0.321-1.359 0.216-0.389 0.506-0.687 0.872-0.895 0.367-0.208 0.772-0.312 1.214-0.312 0.404 0 0.761 0.089 1.073 0.266 0.313 0.176 0.555 0.441 0.726 0.795l-0.749 0.434c-0.265-0.404-0.619-0.605-1.061-0.605-0.41 0-0.742 0.15-0.994 0.45-0.232 0.275-0.358 0.642-0.376 1.102-0.353 0.291-0.656 0.639-0.895 1.031z"></path>
4
+ <path fill="#fff" d="M16.852 12.075c-0.24-0.053-0.48-0.075-0.727-0.075-0.255 0-0.495 0.023-0.735 0.075-0.195 0.045-0.39 0.105-0.585 0.188-0.188 0.082-0.367 0.18-0.54 0.293-0.188 0.12-0.367 0.263-0.533 0.428s-0.307 0.345-0.427 0.533c-0.113 0.173-0.21 0.352-0.293 0.54-0.082 0.195-0.143 0.39-0.188 0.585-0.053 0.24-0.075 0.48-0.075 0.735 0 0.247 0.023 0.487 0.075 0.727 0.045 0.195 0.105 0.39 0.188 0.585 0.082 0.188 0.18 0.367 0.293 0.54 0.12 0.188 0.262 0.367 0.427 0.532 0.165 0.158 0.345 0.308 0.533 0.428 0.172 0.112 0.352 0.21 0.54 0.293s0.383 0.142 0.577 0.188c0.24 0.052 0.487 0.075 0.742 0.075 0.247 0 0.488-0.023 0.727-0.075 0.195-0.045 0.39-0.105 0.585-0.188 0.188-0.082 0.367-0.18 0.54-0.293 0.188-0.12 0.367-0.27 0.533-0.428 0.165-0.165 0.307-0.345 0.427-0.532 0.113-0.173 0.21-0.352 0.293-0.54 0.082-0.195 0.143-0.39 0.188-0.585 0.053-0.24 0.082-0.48 0.082-0.727 0-0.255-0.030-0.495-0.082-0.735-0.045-0.195-0.105-0.39-0.188-0.585-0.082-0.188-0.18-0.367-0.293-0.54-0.12-0.188-0.262-0.367-0.427-0.533s-0.345-0.308-0.533-0.428c-0.172-0.112-0.352-0.21-0.54-0.293-0.195-0.082-0.39-0.143-0.585-0.188zM16.125 13.043c0.172 0 0.352 0.023 0.518 0.060 0.135 0.030 0.262 0.075 0.383 0.128 0.128 0.053 0.255 0.12 0.367 0.195 0.135 0.082 0.255 0.188 0.375 0.3 0.112 0.12 0.217 0.24 0.3 0.375 0.075 0.112 0.143 0.24 0.195 0.367 0.052 0.12 0.097 0.247 0.127 0.383 0.038 0.165 0.060 0.345 0.060 0.525 0 0.172-0.023 0.345-0.060 0.518-0.030 0.128-0.075 0.255-0.127 0.383s-0.12 0.255-0.195 0.367c-0.082 0.135-0.188 0.255-0.3 0.375-0.12 0.112-0.24 0.217-0.375 0.3-0.113 0.075-0.24 0.143-0.367 0.195-0.12 0.052-0.247 0.097-0.383 0.127-0.165 0.038-0.345 0.053-0.518 0.053-0.18 0-0.352-0.015-0.518-0.053-0.135-0.030-0.262-0.075-0.39-0.127s-0.255-0.12-0.367-0.195c-0.135-0.082-0.255-0.188-0.375-0.3-0.113-0.12-0.218-0.24-0.3-0.375-0.075-0.113-0.143-0.24-0.195-0.367s-0.098-0.255-0.128-0.383c-0.038-0.173-0.060-0.345-0.060-0.518 0-0.18 0.023-0.36 0.060-0.525 0.030-0.135 0.075-0.263 0.128-0.383 0.053-0.128 0.12-0.255 0.195-0.367 0.082-0.135 0.188-0.255 0.3-0.375 0.12-0.113 0.24-0.218 0.375-0.3 0.112-0.075 0.24-0.143 0.367-0.195 0.12-0.053 0.247-0.098 0.383-0.128 0.165-0.038 0.345-0.060 0.525-0.060z"></path>
5
+ <path fill="#fff" d="M17.138 15.855h-1.8c-0.3 0-0.525-0.225-0.525-0.518 0-0.3 0.225-0.525 0.525-0.525h1.8c0.292 0 0.517 0.225 0.517 0.525 0 0.293-0.225 0.518-0.517 0.518z"></path>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#fff" d="M5.25 9.375v-0.75c0-0.207 0.168-0.375 0.375-0.375h2.25c0.207 0 0.375-0.168 0.375-0.375v-2.25c0-0.207 0.168-0.375 0.375-0.375h0.75c0.207 0 0.375 0.168 0.375 0.375v3.75c0 0.207-0.168 0.375-0.375 0.375h-3.75c-0.207 0-0.375-0.168-0.375-0.375z"></path>
3
+ <path fill="#fff" d="M5.25 13.875v0.75c0 0.207 0.168 0.375 0.375 0.375h2.25c0.207 0 0.375 0.168 0.375 0.375v2.25c0 0.207 0.168 0.375 0.375 0.375h0.75c0.207 0 0.375-0.168 0.375-0.375v-3.75c0-0.207-0.168-0.375-0.375-0.375h-3.75c-0.207 0-0.375 0.168-0.375 0.375z"></path>
4
+ <path fill="#fff" d="M18 9.375v-0.75c0-0.207-0.168-0.375-0.375-0.375h-2.25c-0.207 0-0.375-0.168-0.375-0.375v-2.25c0-0.207-0.168-0.375-0.375-0.375h-0.75c-0.207 0-0.375 0.168-0.375 0.375v3.75c0 0.207 0.168 0.375 0.375 0.375h3.75c0.207 0 0.375-0.168 0.375-0.375z"></path>
5
+ <path fill="#fff" d="M18 13.875v0.75c0 0.207-0.168 0.375-0.375 0.375h-2.25c-0.207 0-0.375 0.168-0.375 0.375v2.25c0 0.207-0.168 0.375-0.375 0.375h-0.75c-0.207 0-0.375-0.168-0.375-0.375v-3.75c0-0.207 0.168-0.375 0.375-0.375h3.75c0.207 0 0.375 0.168 0.375 0.375z"></path>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="30" height="32" viewBox="0 0 30 32">
2
+ <path opacity="0.8" fill="#000" d="M12.983 5.523c0.341 0 0.667 0.14 0.902 0.388l6.569 6.917c0.142 0.15 0.243 0.331 0.297 0.526 0.054 0.141 0.085 0.295 0.085 0.457 0 0.108-0.014 0.213-0.040 0.314l-0 13.942c0 1.964-1.592 3.556-3.556 3.556h-13.296c-1.964 0-3.556-1.592-3.556-3.556v-18.987c0-1.964 1.592-3.556 3.556-3.556zM11.528 8.011l-7.582 0.001c-0.589 0-1.067 0.478-1.067 1.067v18.987c0 0.589 0.478 1.067 1.067 1.067h13.296c0.589 0 1.067-0.478 1.067-1.067l-0.002-13.012-3.149 0.002c-1.935 0-3.515-1.547-3.555-3.482l-0.075-3.561zM9.777 24.987c0.491 0 0.889 0.398 0.889 0.889s-0.398 0.889-0.889 0.889h-4.432c-0.491 0-0.889-0.398-0.889-0.889s0.398-0.889 0.889-0.889h4.432zM26.256 0.269c1.964 0 3.556 1.592 3.556 3.556v18.012c0 1.964-1.592 3.556-3.556 3.556h-2.586c-0.687 0-1.244-0.557-1.244-1.244s0.557-1.244 1.244-1.244h2.586c0.589 0 1.067-0.478 1.067-1.067v-18.012c0-0.589-0.478-1.067-1.067-1.067h-13.27c-0.496 0-0.912 0.338-1.032 0.796l-2.514 0.002c0.137-1.838 1.672-3.287 3.546-3.287h13.27zM12.112 21.432c0.491 0 0.889 0.398 0.889 0.889s-0.398 0.889-0.889 0.889h-6.743c-0.491 0-0.889-0.398-0.889-0.889s0.398-0.889 0.889-0.889h6.743zM14.234 17.876c0.491 0 0.889 0.398 0.889 0.889s-0.398 0.889-0.889 0.889h-8.853c-0.491 0-0.889-0.398-0.889-0.889s0.398-0.889 0.889-0.889h8.853zM14.052 9.7l0.039 1.821c0.012 0.58 0.486 1.045 1.066 1.045l1.617-0.002-2.722-2.864z"></path>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path opacity="0.8" fill="#000" d="M14.721 5.872c-0.348 0.077-0.688 0.186-1.021 0.327-0.335 0.142-0.652 0.311-0.951 0.508-0.331 0.219-0.641 0.471-0.927 0.758s-0.54 0.596-0.758 0.928c-0.197 0.299-0.367 0.616-0.508 0.951-0.141 0.333-0.249 0.674-0.326 1.021-0.092 0.416-0.139 0.843-0.139 1.28s0.046 0.864 0.139 1.28c0.077 0.347 0.186 0.688 0.326 1.021 0.142 0.335 0.312 0.652 0.508 0.951 0.219 0.332 0.471 0.641 0.758 0.927 0.197 0.197 0.404 0.378 0.622 0.542-0.066 0.026-0.131 0.053-0.197 0.081-0.545 0.23-1.060 0.506-1.546 0.826-0.544 0.358-1.050 0.771-1.52 1.241s-0.883 0.976-1.241 1.519c-0.32 0.486-0.595 1.001-0.826 1.546-0.229 0.54-0.405 1.091-0.531 1.653-0.152 0.683-0.228 1.384-0.228 2.101 0 0.523 0.411 0.933 0.934 0.933s0.933-0.411 0.933-0.933c0-0.591 0.064-1.168 0.192-1.73 0.1-0.441 0.24-0.874 0.419-1.298 0.184-0.433 0.402-0.843 0.655-1.23 0.292-0.445 0.629-0.859 1.012-1.242s0.798-0.721 1.243-1.012c0.387-0.253 0.797-0.472 1.23-0.655 0.424-0.179 0.856-0.319 1.297-0.419 0.562-0.128 1.139-0.192 1.73-0.192 0.437 0 0.863-0.046 1.28-0.138 0.348-0.077 0.688-0.186 1.021-0.327 0.335-0.142 0.652-0.311 0.951-0.508 0.332-0.219 0.641-0.471 0.928-0.758s0.54-0.596 0.758-0.928c0.197-0.299 0.366-0.616 0.508-0.951 0.141-0.333 0.25-0.674 0.327-1.021 0.092-0.416 0.138-0.843 0.138-1.28s-0.046-0.863-0.138-1.28c-0.077-0.348-0.186-0.688-0.327-1.021-0.142-0.335-0.311-0.652-0.508-0.951-0.219-0.332-0.472-0.641-0.758-0.928s-0.596-0.539-0.928-0.758c-0.299-0.197-0.616-0.366-0.951-0.508-0.333-0.141-0.674-0.25-1.021-0.327-0.417-0.092-0.843-0.138-1.28-0.138s-0.864 0.046-1.28 0.138zM18.208 15.034c-0.2 0.131-0.411 0.243-0.635 0.338-0.217 0.092-0.439 0.164-0.665 0.216-0.295 0.068-0.598 0.102-0.908 0.102s-0.614-0.034-0.909-0.102l-0.001-0c-0.226-0.052-0.448-0.124-0.665-0.216-0.223-0.095-0.435-0.207-0.635-0.338-0.232-0.152-0.449-0.329-0.65-0.529s-0.378-0.418-0.529-0.651c-0.131-0.2-0.243-0.412-0.338-0.635-0.092-0.217-0.163-0.439-0.216-0.665-0.068-0.295-0.102-0.598-0.102-0.909s0.034-0.614 0.102-0.909c0.052-0.226 0.124-0.448 0.216-0.665 0.094-0.224 0.207-0.435 0.338-0.635 0.152-0.233 0.328-0.45 0.529-0.651s0.418-0.377 0.65-0.529c0.2-0.131 0.412-0.243 0.635-0.338 0.217-0.092 0.439-0.164 0.665-0.216 0.295-0.068 0.598-0.102 0.909-0.102s0.613 0.034 0.908 0.102c0.227 0.052 0.449 0.124 0.665 0.216 0.224 0.094 0.435 0.207 0.635 0.338 0.233 0.152 0.45 0.329 0.65 0.529s0.378 0.418 0.53 0.651c0.13 0.2 0.243 0.412 0.337 0.635 0.092 0.217 0.164 0.439 0.216 0.665 0.068 0.295 0.102 0.598 0.102 0.909s-0.034 0.614-0.102 0.909c-0.052 0.226-0.124 0.448-0.216 0.665-0.094 0.223-0.207 0.435-0.337 0.635-0.152 0.233-0.329 0.45-0.53 0.651s-0.417 0.377-0.65 0.529z"></path>
3
+ <path opacity="0.8" fill="#000" d="M29.066 23.155c0.523 0 0.934-0.411 0.934-0.933 0-0.53-0.056-1.048-0.168-1.554-0.093-0.419-0.225-0.83-0.395-1.232-0.171-0.405-0.376-0.788-0.614-1.149-0.265-0.402-0.571-0.777-0.919-1.125s-0.723-0.654-1.125-0.919c-0.247-0.163-0.505-0.311-0.773-0.442 0.124-0.102 0.243-0.211 0.358-0.326 0.241-0.241 0.454-0.501 0.637-0.78 0.167-0.252 0.309-0.519 0.429-0.802 0.119-0.282 0.211-0.569 0.276-0.863 0.077-0.35 0.116-0.708 0.116-1.075s-0.039-0.725-0.116-1.075c-0.065-0.294-0.157-0.581-0.276-0.863-0.12-0.283-0.262-0.55-0.429-0.802v-0.001c-0.184-0.278-0.397-0.538-0.637-0.779s-0.501-0.453-0.779-0.637c-0.252-0.166-0.52-0.309-0.803-0.429-0.281-0.119-0.569-0.211-0.863-0.276-0.35-0.077-0.708-0.116-1.074-0.116-0.523 0-0.934 0.411-0.934 0.933s0.411 0.933 0.934 0.933c0.24 0 0.475 0.026 0.703 0.079 0.173 0.040 0.342 0.095 0.507 0.165 0.171 0.072 0.333 0.159 0.487 0.258 0.18 0.117 0.347 0.254 0.503 0.409s0.292 0.323 0.409 0.503c0.1 0.153 0.185 0.315 0.258 0.486 0.070 0.166 0.125 0.334 0.165 0.507 0.053 0.229 0.079 0.463 0.079 0.704s-0.026 0.475-0.079 0.704c-0.040 0.173-0.095 0.341-0.165 0.507-0.072 0.171-0.158 0.333-0.258 0.486-0.117 0.18-0.254 0.348-0.409 0.503s-0.323 0.292-0.503 0.409c-0.154 0.1-0.316 0.186-0.487 0.258-0.165 0.070-0.335 0.125-0.507 0.165-0.228 0.053-0.463 0.079-0.703 0.079-0.258 0-0.478 0.091-0.66 0.273s-0.273 0.402-0.273 0.66 0.091 0.478 0.273 0.66c0.182 0.182 0.402 0.273 0.66 0.273 0.404 0 0.798 0.044 1.182 0.132 0.298 0.068 0.59 0.163 0.876 0.283 0.294 0.124 0.572 0.272 0.834 0.444 0.303 0.198 0.586 0.429 0.848 0.69s0.492 0.545 0.691 0.848c0.171 0.262 0.319 0.54 0.443 0.833 0.121 0.286 0.215 0.578 0.283 0.876 0.088 0.384 0.132 0.778 0.132 1.182 0 0.523 0.41 0.933 0.933 0.933zM20.439 18.945c-0.256-0.178-0.523-0.341-0.8-0.488-0.462-0.245-0.633-0.8-0.387-1.262s0.799-0.632 1.262-0.387c0.351 0.186 0.688 0.392 1.012 0.619 0.378 0.265 0.738 0.557 1.077 0.876 0.331 0.311 0.638 0.642 0.921 0.993 0.253 0.315 0.487 0.647 0.701 0.995 0.245 0.4 0.46 0.813 0.643 1.24 0.159 0.37 0.294 0.75 0.406 1.14 0.097 0.337 0.175 0.677 0.234 1.020 0.093 0.54 0.139 1.088 0.139 1.644 0 0.523-0.411 0.933-0.934 0.933s-0.933-0.411-0.933-0.933c0-0.468-0.041-0.93-0.122-1.384-0.046-0.257-0.105-0.513-0.178-0.765-0.089-0.308-0.195-0.609-0.32-0.901-0.149-0.349-0.324-0.688-0.525-1.015-0.17-0.277-0.356-0.541-0.557-0.793-0.23-0.287-0.48-0.558-0.751-0.812-0.279-0.262-0.574-0.502-0.885-0.718z"></path>
4
+ <path opacity="0.8" fill="#000" d="M7.933 9.387c-0.16 0.080-0.333 0.16-0.48 0.267-0.187 0.12-0.347 0.253-0.507 0.413-0.147 0.147-0.293 0.32-0.4 0.493-0.107 0.16-0.187 0.32-0.267 0.493-0.067 0.16-0.12 0.333-0.16 0.507-0.053 0.227-0.080 0.453-0.080 0.693 0 0.253 0.027 0.48 0.080 0.707 0.040 0.173 0.093 0.347 0.16 0.507 0.080 0.173 0.16 0.333 0.267 0.493 0.107 0.173 0.253 0.347 0.4 0.493 0.16 0.16 0.32 0.293 0.507 0.413 0.147 0.107 0.32 0.187 0.48 0.267 0.173 0.067 0.333 0.12 0.507 0.16 0.24 0.053 0.467 0.080 0.707 0.080 0.267 0 0.48 0.093 0.667 0.267 0.173 0.187 0.267 0.413 0.267 0.667s-0.093 0.48-0.267 0.653c-0.187 0.187-0.4 0.28-0.667 0.28-0.4 0-0.8 0.040-1.187 0.133-0.293 0.067-0.587 0.16-0.867 0.28-0.293 0.12-0.573 0.267-0.84 0.44-0.293 0.2-0.587 0.427-0.84 0.693-0.267 0.267-0.493 0.547-0.693 0.853-0.173 0.253-0.32 0.533-0.44 0.827s-0.227 0.573-0.293 0.88c-0.080 0.387-0.133 0.773-0.133 1.187 0 0.52-0.4 0.933-0.92 0.933-0.533 0-0.933-0.413-0.933-0.933 0-0.533 0.053-1.053 0.16-1.56 0.093-0.413 0.227-0.827 0.4-1.227 0.173-0.413 0.373-0.8 0.613-1.16 0.267-0.4 0.573-0.773 0.92-1.12s0.72-0.653 1.12-0.92c0.253-0.16 0.507-0.307 0.773-0.44-0.12-0.107-0.24-0.213-0.36-0.333-0.24-0.24-0.453-0.493-0.64-0.773-0.16-0.253-0.307-0.52-0.427-0.8s-0.213-0.573-0.267-0.867c-0.080-0.347-0.12-0.707-0.12-1.080 0-0.36 0.040-0.72 0.12-1.067 0.053-0.293 0.147-0.587 0.267-0.867s0.267-0.547 0.427-0.8c0.187-0.28 0.4-0.533 0.64-0.773 0.24-0.253 0.507-0.453 0.787-0.64 0.253-0.173 0.52-0.307 0.8-0.427s0.573-0.213 0.867-0.28c0.347-0.080 0.707-0.12 1.067-0.12 0.52 0 0.933 0.413 0.933 0.933s-0.413 0.933-0.933 0.933c-0.24 0-0.467 0.027-0.707 0.080-0.173 0.040-0.333 0.093-0.507 0.16v0z"></path>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M5.61 4.335c0.36 0 0.675 0.27 0.735 0.615l0.015 0.135v14.97c0 0.21 0.15 0.39 0.345 0.435l0.105 0.015h10.71c0.225 0 0.405-0.15 0.45-0.345v-11.82c0-0.42 0.345-0.75 0.75-0.75 0.375 0 0.675 0.27 0.75 0.615v11.85c0 1.005-0.765 1.83-1.74 1.935l-0.21 0.015h-10.71c-1.020 0-1.845-0.765-1.95-1.755v-15.165c0-0.42 0.33-0.75 0.75-0.75z"></path>
3
+ <path d="M20.19 4.335c0.405 0 0.75 0.33 0.75 0.75 0 0.36-0.27 0.675-0.615 0.735l-0.135 0.015h-16.335c-0.42 0-0.75-0.345-0.75-0.75 0-0.375 0.255-0.675 0.615-0.735l0.135-0.015h16.335z"></path>
4
+ <path d="M14.25 1.935c0.405 0 0.75 0.33 0.75 0.75 0 0.36-0.27 0.675-0.615 0.735l-0.135 0.015h-4.545c-0.405 0-0.75-0.345-0.75-0.75 0-0.375 0.27-0.675 0.615-0.75h4.68z"></path>
5
+ <path d="M10.095 9.405c0.36 0 0.675 0.27 0.735 0.615l0.015 0.135v6.495c0 0.405-0.345 0.75-0.75 0.75-0.375 0-0.675-0.27-0.75-0.615v-6.63c0-0.405 0.33-0.75 0.75-0.75z"></path>
6
+ <path d="M14.595 9.405c0.36 0 0.675 0.27 0.735 0.615l0.015 0.135v6.495c0 0.405-0.345 0.75-0.75 0.75-0.375 0-0.675-0.27-0.75-0.615v-6.63c0-0.405 0.33-0.75 0.75-0.75z"></path>
7
+ </svg>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="206px" height="180px" viewBox="0 0 206 180" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <defs>
4
+ <rect id="path-1" x="0" y="0" width="206" height="180"></rect>
5
+ <linearGradient x1="49.999996%" y1="0.000591140195%" x2="49.999996%" y2="60.7008904%" id="linearGradient-3">
6
+ <stop stop-color="#01489F" stop-opacity="0.150376967" offset="0%"></stop>
7
+ <stop stop-color="#01489F" stop-opacity="0" offset="100%"></stop>
8
+ </linearGradient>
9
+ </defs>
10
+ <g id="会议页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
11
+ <g id="在线会议" transform="translate(-1137.000000, -388.000000)">
12
+ <g id="编组-63备份-2" transform="translate(260.000000, 247.000000)">
13
+ <g id="会议页面-空状态icon" transform="translate(877.000000, 141.000000)">
14
+ <mask id="mask-2" fill="white">
15
+ <use xlink:href="#path-1"></use>
16
+ </mask>
17
+ <g id="蒙版"></g>
18
+ <path d="M152.867261,131.088856 C195.292055,139.512762 224.857143,158.430303 224.857143,180.416864 L-18.1428571,180.416864 C-18.1428571,158.430303 11.4222311,139.512762 53.8470251,131.088856 C55.178629,133.659964 57.8627129,135.416864 60.9571429,135.416864 L145.757143,135.416864 C148.841601,135.416864 151.518354,133.671269 152.853402,131.114077 Z" id="形状结合" fill="url(#linearGradient-3)" mask="url(#mask-2)"></path>
19
+ <path d="M153.763602,79.6449682 L153.763602,127.444968 C153.763602,131.863246 150.18188,135.444968 145.763602,135.444968 L60.9636017,135.444968 C56.5453237,135.444968 52.9636017,131.863246 52.9636017,127.444968 L52.9636017,79.6449682 L153.763602,79.6449682 Z M119.563602,94.9449682 L87.1636017,94.9449682 C85.1753766,94.9449682 83.5636017,96.5567431 83.5636017,98.5449682 C83.5636017,100.533193 85.1753766,102.144968 87.1636017,102.144968 L119.563602,102.144968 C121.551827,102.144968 123.163602,100.533193 123.163602,98.5449682 C123.163602,96.5567431 121.551827,94.9449682 119.563602,94.9449682 Z" id="形状结合备份-2" fill-opacity="0.2" fill="#01489F" mask="url(#mask-2)"></path>
20
+ <path d="M141.163602,50.8449682 L153.763602,79.6449682 L141.162602,79.6439682 L141.163602,50.8449682 Z M65.5636017,79.6439682 L52.9636017,79.6449682 L65.5636017,50.8449682 L65.5636017,79.6439682 Z" id="形状结合备份-3" fill-opacity="0.4" fill="#01489F" fill-rule="nonzero" mask="url(#mask-2)"></path>
21
+ <rect id="矩形备份-2" fill-opacity="0.304966" fill="#01489F" mask="url(#mask-2)" x="65.5636017" y="50.8449682" width="75.6" height="28.8"></rect>
22
+ <polygon id="路径-8备份" fill-opacity="0.2" fill="#01489F" mask="url(#mask-2)" points="91.4067882 34.6162946 97.0636017 31.9398399 76.3636017 19.3449682 78.5179397 39.2574421 84.4501253 36.7740389 88.7670427 41.8449682 88.7670427 35.6102033 79.5991513 23.598583"></polygon>
23
+ <path d="M88.9636017,44.5449682 C90.3081532,57.035751 94.7603019,63.2811424 102.320048,63.2811424 C113.659667,63.2811424 116.912645,46.0841419 108.189633,45.9132014 C99.4666199,45.7422608 98.6170728,63.2227824 121.864718,65.7525822 C145.112363,68.2823821 133.790154,84.0662064 126.47837,84.1449682" id="路径-9备份" stroke-opacity="0.2" stroke="#01489F" stroke-width="0.758814333" opacity="0.5" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="3.035257203238351,3.035257203238351" mask="url(#mask-2)"></path>
24
+ <path d="M170.00977,113.438857 C169.189214,114.689001 168.585928,115.440278 168.199914,115.692688 C167.103493,116.409624 166.114657,116.570611 165.444312,116.570611 C163.907778,116.570611 167.074574,116.199929 168.199914,114.944344 C168.95014,114.107288 169.838036,112.840829 170.863602,111.144968 L170.00977,111.144968 L169.066444,112.32939 C168.771686,111.956129 168.390509,111.769498 167.922911,111.769498 C167.221515,111.769498 165.409844,112.077211 164.715955,114.059442 C164.253362,115.380929 163.302578,116.544209 161.863602,117.549284 C163.942681,118.610196 165.962451,118.610196 167.922911,117.549284 C169.883371,116.488372 170.578991,115.11823 170.00977,113.438857 Z" id="路径-14备份" fill-opacity="0.2" fill="#01489F" mask="url(#mask-2)" transform="translate(166.363602, 114.744968) rotate(-3.000000) translate(-166.363602, -114.744968) "></path>
25
+ <path d="M46.1120883,65.6592731 C44.7171422,67.8470256 43.6915568,69.1617605 43.035332,69.6034778 C41.1714162,70.8581154 39.4903961,71.1398431 38.350809,71.1398431 C35.7387017,71.1398431 41.1222538,70.4911496 43.035332,68.2938765 C44.3107177,66.8290278 45.8201407,64.6127251 47.5636017,61.6449682 L46.1120883,61.6449682 L44.5084331,63.7177069 C44.0073452,63.0644994 43.3593433,62.7378958 42.5644275,62.7378958 C41.372054,62.7378958 38.292214,63.2763937 37.1126022,66.7452969 C36.3261944,69.0578992 34.709861,71.0936405 32.2636017,72.852521 C35.7980363,74.7091173 39.2316448,74.7091173 42.5644275,72.852521 C45.8972104,70.9959249 47.0797639,68.5981755 46.1120883,65.6592731 Z" id="路径-14备份" fill-opacity="0.2" fill="#01489F" mask="url(#mask-2)" transform="translate(39.913602, 67.944968) rotate(-3.000000) translate(-39.913602, -67.944968) "></path>
26
+ <path d="M181.492462,91.7954746 C181.74071,91.7836879 181.951511,91.9753781 181.963297,92.2236266 C182.264298,98.5632654 178.904496,103.441201 171.959805,106.805792 C171.736144,106.914152 171.466988,106.820682 171.358627,106.597021 C171.250267,106.37336 171.343737,106.104204 171.567398,105.995844 C178.206651,102.779232 181.346983,98.2199344 181.06431,92.2663098 C181.052523,92.0180613 181.244213,91.8072612 181.492462,91.7954746 Z" id="路径-6" fill-opacity="0.2" fill="#01489F" mask="url(#mask-2)"></path>
27
+ </g>
28
+ </g>
29
+ </g>
30
+ </g>
31
+ </svg>
@@ -0,0 +1,49 @@
1
+ <svg width="320.000000" height="280.000000" viewBox="0 0 320 280" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <defs>
3
+ <clipPath id="clip832_47109">
4
+ <rect id="空内容" width="320.000000" height="280.000000" fill="white" fill-opacity="0"/>
5
+ </clipPath>
6
+ <linearGradient x1="160.000000" y1="203.999634" x2="160.000000" y2="250.525574" id="paint_linear_832_47113_0" gradientUnits="userSpaceOnUse">
7
+ <stop stop-color="#418CFF" stop-opacity="0.200000"/>
8
+ <stop offset="1.000000" stop-color="#418CFF" stop-opacity="0.000000"/>
9
+ </linearGradient>
10
+ </defs>
11
+ <g clip-path="url(#clip832_47109)">
12
+ <mask id="mask832_47110" mask-type="alpha" maskUnits="userSpaceOnUse" x="0.000000" y="0.000000" width="320.000000" height="280.000000">
13
+ <rect id="蒙版" width="320.000000" height="280.000000" fill="#D8D8D8" fill-opacity="1.000000"/>
14
+ <rect id="蒙版" x="0.500000" y="0.500000" width="319.000000" height="279.000000" stroke="#979797" stroke-opacity="0" stroke-width="1.000000"/>
15
+ </mask>
16
+ <g mask="url(#mask832_47110)">
17
+ <path id="形状结合" d="M82.5635 204C16.7947 217.145 -29 246.52 -29 280.648L349 280.648C349 246.52 303.205 217.145 237.437 204C235.692 207.917 231.765 210.648 227.2 210.648L92.8 210.648C88.2349 210.648 84.3079 207.917 82.5635 204Z" clip-rule="evenodd" fill="url(#paint_linear_832_47113_0)" fill-opacity="1.000000" fill-rule="evenodd"/>
18
+ </g>
19
+ <g mask="url(#mask832_47110)">
20
+ <g opacity="0.800000">
21
+ <g opacity="0.400000">
22
+ <path id="形状结合备份 2" d="M238.41 123.892L81.6099 123.892L81.6099 199.492C81.6099 205.678 86.6243 210.692 92.8098 210.692L227.21 210.692C233.396 210.692 238.41 205.678 238.41 199.492L238.41 123.892ZM185.2 147.692L134.8 147.692C131.707 147.692 129.2 150.2 129.2 153.292C129.2 156.385 131.707 158.892 134.8 158.892L185.2 158.892C188.293 158.892 190.8 156.385 190.8 153.292C190.8 150.2 188.293 147.692 185.2 147.692Z" clip-rule="evenodd" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
23
+ </g>
24
+ <g opacity="0.500000">
25
+ <path id="形状结合备份 3" d="M101.21 79.0912L218.81 79.0912L238.41 123.891L218.8 123.891L218.8 79.0925L101.209 79.0925L101.21 79.0912ZM101.2 79.1135L81.6099 123.891L101.2 123.891L101.2 101.492L101.2 79.1135Z" clip-rule="evenodd" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
26
+ </g>
27
+ <g opacity="0.600000">
28
+ <rect id="矩形备份 2" x="101.209961" y="79.092285" width="117.599998" height="44.799999" fill="#418CFF" fill-opacity="1.000000"/>
29
+ </g>
30
+ <g opacity="0.500000">
31
+ <path id="路径 8备份" d="M141.41 53.84L150.21 49.68L118.01 30.09L121.36 61.06L130.58 57.2L137.3 65.09L137.3 55.39L123.04 36.7L141.41 53.84Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
32
+ </g>
33
+ <g opacity="0.500000">
34
+ <path id="路径 9备份" d="M137.1 69.36L137.08 69.34C137.05 69.05 137.25 68.79 137.55 68.76C137.84 68.73 138.1 68.93 138.13 69.23L138.12 69.25L137.62 69.31L164.2 97.36C162.45 98.04 160.51 98.43 158.38 98.43C141.01 98.43 137.7 70.16 137.61 69.31L137.1 69.36ZM167.76 95.4C166.68 96.19 165.49 96.85 164.2 97.36L195.59 130.5C195.49 130.6 195.43 130.74 195.43 130.89C195.43 131.19 195.67 131.42 195.97 131.42L195.99 131.4L195.98 130.89C207.36 130.74 224.93 106.21 188.78 102.28C179.4 101.26 172.54 98.67 167.76 95.4ZM167.76 95.4C154.13 86.07 157.47 71.22 167.51 71.42C178.24 71.63 177.32 88.38 167.76 95.4Z" fill="#D8D8D8" fill-opacity="0" fill-rule="evenodd"/>
35
+ <path id="路径 9备份" d="M137.61 69.29C137.61 69.29 140.74 98.43 158.38 98.43C176.02 98.43 181.08 71.68 167.51 71.42C153.94 71.15 152.62 98.34 188.78 102.28C224.95 106.21 207.34 130.76 195.96 130.89" stroke="#418CFF" stroke-opacity="0.800000" stroke-width="1.062340" stroke-linejoin="round" stroke-linecap="round" stroke-dasharray="4.24936 4.24936"/>
36
+ </g>
37
+ <g opacity="0.300000">
38
+ <path id="路径-14备份" d="M263.56 176.16C262.39 178.17 261.51 179.39 260.94 179.81C259.29 181.01 257.77 181.34 256.73 181.4C254.34 181.52 259.23 180.69 260.87 178.65C261.97 177.29 263.25 175.25 264.7 172.53L263.38 172.6L262.01 174.52C261.52 173.96 260.91 173.7 260.19 173.74C259.1 173.8 256.31 174.42 255.39 177.56C254.78 179.65 253.4 181.53 251.24 183.21C254.56 184.69 257.7 184.52 260.66 182.72C263.62 180.91 264.58 178.72 263.56 176.16Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
39
+ </g>
40
+ <g opacity="0.300000">
41
+ <path id="路径-14备份" d="M70.75 101.63C68.76 105.14 67.27 107.27 66.29 108.01C63.5 110.11 60.91 110.69 59.14 110.78C55.08 110.99 63.39 109.54 66.18 105.98C68.04 103.6 70.21 100.03 72.68 95.28L70.42 95.4L68.1 98.75C67.27 97.77 66.23 97.32 65 97.38C63.15 97.48 58.41 98.57 56.86 104.05C55.82 107.71 53.48 111 49.82 113.93C55.46 116.53 60.8 116.25 65.82 113.1C70.85 109.94 72.49 106.12 70.75 101.63Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
42
+ </g>
43
+ <g opacity="0.300000">
44
+ <path id="路径" d="M281.54 142.79C281.93 142.77 282.25 143.07 282.27 143.45C282.74 153.32 277.51 160.9 266.71 166.14C266.36 166.31 265.94 166.16 265.78 165.81C265.61 165.47 265.75 165.05 266.1 164.88C276.43 159.87 281.31 152.78 280.87 143.52C280.85 143.13 281.15 142.81 281.54 142.79Z" fill="#418CFF" fill-opacity="1.000000" fill-rule="evenodd"/>
45
+ </g>
46
+ </g>
47
+ </g>
48
+ </g>
49
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M25.088 14.216l-0.852 0.781c-0.385 0.353-0.411 0.933-0.058 1.319s0.933 0.411 1.319 0.058l2.116-1.938c0.193-0.177 0.349-0.374 0.467-0.591 0.092-0.17 0.162-0.351 0.208-0.546 0.045-0.189 0.067-0.378 0.063-0.566-0.004-0.222-0.041-0.444-0.112-0.665s-0.17-0.423-0.297-0.605c-0.107-0.155-0.235-0.295-0.382-0.422-0.151-0.13-0.314-0.237-0.488-0.321-0.223-0.107-0.464-0.176-0.724-0.207l-5.601-0.661c-0.031-0.012-0.159-0.053-0.187-0.073-0.021-0.026-0.113-0.124-0.128-0.155l-2.377-5.087c-0.11-0.235-0.25-0.441-0.42-0.618v0c-0.133-0.138-0.285-0.259-0.454-0.362-0.165-0.1-0.338-0.177-0.517-0.232v0c-0.211-0.064-0.432-0.096-0.662-0.096s-0.451 0.032-0.662 0.096v0c-0.179 0.054-0.352 0.131-0.517 0.232-0.17 0.103-0.321 0.224-0.454 0.362-0.17 0.177-0.31 0.383-0.42 0.618l-2.377 5.087c-0.021 0.026-0.1 0.135-0.128 0.155-0.031 0.012-0.153 0.069-0.187 0.073l-5.601 0.661c-0.26 0.031-0.501 0.1-0.724 0.207v0c-0.174 0.084-0.336 0.191-0.488 0.321-0.147 0.127-0.275 0.267-0.382 0.422-0.127 0.182-0.226 0.384-0.297 0.605s-0.109 0.443-0.112 0.665c-0.003 0.188 0.018 0.377 0.063 0.566 0.047 0.194 0.116 0.376 0.208 0.546 0.118 0.217 0.274 0.414 0.467 0.591l4.119 3.773c0.018 0.029 0.099 0.137 0.11 0.171 0.001 0.009 0.002 0.025 0.004 0.044 0.005 0.054 0.013 0.133 0.008 0.159l-1.093 5.462c-0.051 0.255-0.060 0.505-0.028 0.749 0.025 0.191 0.076 0.378 0.152 0.562 0.074 0.179 0.168 0.343 0.28 0.493 0.133 0.177 0.293 0.333 0.479 0.47s0.384 0.241 0.593 0.315c0.177 0.062 0.362 0.101 0.555 0.118 0.198 0.017 0.392 0.009 0.581-0.025h0.001c0.242-0.043 0.478-0.127 0.705-0.253l4.953-2.737c0.032-0.008 0.159-0.050 0.193-0.050 0.032 0.008 0.163 0.033 0.193 0.050l4.831 2.669c0.233 0.129 0.473 0.214 0.72 0.256h0.001c0.192 0.033 0.388 0.039 0.588 0.020 0.195-0.019 0.382-0.061 0.56-0.126v0c0.211-0.077 0.411-0.187 0.598-0.329s0.347-0.305 0.478-0.488c0.111-0.154 0.201-0.323 0.271-0.506 0.072-0.188 0.119-0.379 0.139-0.573 0.026-0.25 0.008-0.504-0.053-0.762l-2.084-8.779c-0.121-0.509-0.615-0.813-1.124-0.693s-0.813 0.615-0.693 1.124l2.084 8.779c0.020 0.084 0.018 0.161-0.007 0.229s-0.071 0.129-0.141 0.181c-0.069 0.053-0.14 0.081-0.213 0.087s-0.147-0.013-0.223-0.055l-4.831-2.669c-0.171-0.094-0.347-0.165-0.53-0.212v0c-0.183-0.047-0.372-0.071-0.566-0.071s-0.384 0.024-0.566 0.071c-0.183 0.047-0.359 0.118-0.53 0.212l-4.953 2.737c-0.075 0.041-0.148 0.059-0.219 0.055s-0.142-0.032-0.21-0.082c-0.069-0.050-0.116-0.109-0.142-0.176s-0.031-0.142-0.014-0.226l1.093-5.462c0.039-0.195 0.053-0.387 0.041-0.579s-0.048-0.381-0.109-0.57c-0.062-0.189-0.144-0.363-0.248-0.525s-0.229-0.309-0.375-0.443l-4.119-3.773c-0.063-0.058-0.104-0.122-0.122-0.191s-0.014-0.145 0.012-0.227c0.026-0.081 0.067-0.145 0.123-0.191s0.126-0.074 0.211-0.084l5.601-0.661c0.195-0.023 0.381-0.069 0.558-0.138s0.345-0.161 0.504-0.276c0.159-0.115 0.299-0.245 0.42-0.392s0.223-0.308 0.306-0.486l2.377-5.087c0.036-0.077 0.084-0.135 0.145-0.173s0.133-0.058 0.218-0.058c0.085 0 0.157 0.019 0.218 0.058s0.109 0.096 0.144 0.173l2.377 5.087c0.083 0.178 0.185 0.34 0.306 0.486s0.261 0.277 0.42 0.392c0.159 0.115 0.327 0.207 0.504 0.276s0.363 0.115 0.558 0.138l5.601 0.661c0.085 0.010 0.155 0.038 0.211 0.084s0.097 0.109 0.123 0.191c0.026 0.081 0.030 0.157 0.012 0.227s-0.059 0.133-0.122 0.191l-1.263 1.157zM10.007 15.327l2 2c0.369 0.37 0.95 0.37 1.32 0s0.37-0.95 0-1.32l-2-2c-0.369-0.37-0.95-0.37-1.32 0s-0.37 0.95 0 1.32z"></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 d="M12.285 23.25h-6.015c-1.935 0-3.51-1.59-3.51-3.525v-15.465c0-1.95 1.575-3.51 3.51-3.51h8.205v4.68c0 1.29 1.050 2.34 2.34 2.34h4.695v4.275c-1.29-1.2-3.030-1.935-4.92-1.935-4.020 0-7.275 3.255-7.275 7.275 0 2.4 1.17 4.53 2.97 5.865zM15.42 5.43v-4.68l6.090 6.090h-4.695c-0.765 0-1.395-0.63-1.395-1.41zM10.725 17.385c0-3.24 2.625-5.865 5.865-5.865s5.85 2.625 5.85 5.865c0 3.24-2.61 5.865-5.85 5.865s-5.865-2.625-5.865-5.865zM17.46 14.82c-0.285-0.27-0.72-0.27-0.99 0-0.285 0.285-0.285 0.72 0 1.005l0.87 0.87h-3.33c-0.39 0-0.705 0.3-0.705 0.705 0 0.39 0.315 0.705 0.705 0.705h3.33l-0.885 0.87c-0.27 0.27-0.27 0.72 0 0.99 0.285 0.285 0.72 0.285 1.005 0l2.025-2.025c0.045-0.030 0.075-0.075 0.12-0.12 0.12-0.135 0.18-0.285 0.18-0.42 0-0.15-0.060-0.3-0.195-0.45-0.030-0.030-0.060-0.060-0.090-0.090l-2.040-2.040z"></path>
3
+ </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 fill="none" stroke="#fff" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="4" stroke-width="2.25" d="M19.92 10.125l2.58 1.875c0-5.805-4.71-10.5-10.5-10.5-5.805 0-10.5 4.695-10.5 10.5 0 5.79 4.695 10.5 10.5 10.5 2.7 0 5.16-1.035 7.020-2.715"></path>
3
+ <path fill="#fff" d="M11.685 10.11c0.57 0 1.095 0.135 1.56 0.405 0.45 0.27 0.825 0.645 1.080 1.14 0.27 0.48 0.405 1.035 0.405 1.665 0 0.675-0.15 1.26-0.435 1.77-0.3 0.495-0.705 0.885-1.215 1.155s-1.080 0.405-1.68 0.405c-0.72 0-1.35-0.165-1.89-0.51-0.525-0.345-0.9-0.84-1.11-1.515l1.365-0.78c0.135 0.435 0.33 0.75 0.615 0.96 0.27 0.225 0.6 0.33 0.99 0.33 0.33 0 0.615-0.075 0.855-0.24 0.24-0.15 0.42-0.36 0.525-0.63 0.12-0.255 0.18-0.555 0.18-0.87 0-0.33-0.060-0.63-0.18-0.9-0.105-0.27-0.285-0.48-0.525-0.645s-0.54-0.24-0.885-0.24c-0.675 0-1.2 0.315-1.56 0.945l-1.185-0.585 0.66-5.385h5.010v1.455h-3.555l-0.315 2.37c0.18-0.105 0.375-0.18 0.6-0.225 0.21-0.045 0.435-0.075 0.69-0.075z"></path>
4
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#fff" d="M9.75 5.625v0.75c0 0.202-0.172 0.375-0.375 0.375h-2.25c-0.21 0-0.375 0.165-0.375 0.375v2.25c0 0.203-0.173 0.375-0.375 0.375h-0.75c-0.21 0-0.375-0.172-0.375-0.375v-3.75c0-0.21 0.165-0.375 0.375-0.375h3.75c0.203 0 0.375 0.165 0.375 0.375z"></path>
3
+ <path fill="#fff" d="M9.75 17.625v-0.75c0-0.21-0.172-0.375-0.375-0.375h-2.25c-0.21 0-0.375-0.172-0.375-0.375v-2.25c0-0.21-0.173-0.375-0.375-0.375h-0.75c-0.21 0-0.375 0.165-0.375 0.375v3.75c0 0.203 0.165 0.375 0.375 0.375h3.75c0.203 0 0.375-0.172 0.375-0.375z"></path>
4
+ <path fill="#fff" d="M13.5 5.625v0.75c0 0.202 0.165 0.375 0.375 0.375h2.25c0.203 0 0.375 0.165 0.375 0.375v2.25c0 0.203 0.165 0.375 0.375 0.375h0.75c0.203 0 0.375-0.172 0.375-0.375v-3.75c0-0.21-0.172-0.375-0.375-0.375h-3.75c-0.21 0-0.375 0.165-0.375 0.375z"></path>
5
+ <path fill="#fff" d="M13.5 17.625v-0.75c0-0.21 0.165-0.375 0.375-0.375h2.25c0.203 0 0.375-0.172 0.375-0.375v-2.25c0-0.21 0.165-0.375 0.375-0.375h0.75c0.203 0 0.375 0.165 0.375 0.375v3.75c0 0.203-0.172 0.375-0.375 0.375h-3.75c-0.21 0-0.375-0.172-0.375-0.375z"></path>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path opacity="0.8" fill="#000" d="M16 0.371c1.623 0 3.214 0.248 4.731 0.729 0.59 0.187 0.916 0.817 0.729 1.406s-0.817 0.916-1.406 0.729c-1.299-0.412-2.662-0.624-4.054-0.624-7.394 0-13.389 5.994-13.389 13.389s5.994 13.389 13.389 13.389c7.394 0 13.389-5.994 13.389-13.389 0-4.287-2.027-8.235-5.402-10.747-0.496-0.369-0.599-1.071-0.23-1.567s1.071-0.599 1.567-0.23c3.937 2.931 6.305 7.541 6.305 12.544 0 8.632-6.997 15.629-15.629 15.629s-15.629-6.997-15.629-15.629c0-8.632 6.997-15.629 15.629-15.629zM16 22.816c1.002 0 1.814 0.812 1.814 1.814s-0.812 1.814-1.814 1.814c-1.002 0-1.814-0.812-1.814-1.814s0.812-1.814 1.814-1.814zM16.349 6.831c3.423 0 6.198 2.775 6.198 6.198 0 3.086-2.268 5.689-5.196 6.114-0.085 0.020-0.255 0.278-0.302 0.479 0 0-0.004 0.031-0.012 0.094v1.317c0 0.619-0.501 1.12-1.12 1.12-0.567 0-1.036-0.421-1.11-0.968 0 0-0.003-0.051-0.010-0.152v-1.317c0-1.154 0.814-2.461 2.133-2.77 1.929-0.283 3.378-1.946 3.378-3.916 0-2.186-1.772-3.958-3.958-3.958s-3.958 1.772-3.958 3.958c0 0.619-0.501 1.12-1.12 1.12s-1.12-0.501-1.12-1.12c0-3.423 2.775-6.198 6.198-6.198z"></path>
3
+ </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 fill="#ffbb08" d="M19.995 23.88c-0.375 0-0.705-0.12-0.99-0.375l-6.675-5.88c-0.105-0.090-0.21-0.135-0.33-0.135-0.060 0.030-0.285 0.090-0.345 0.135l-6.675 5.88c-0.15 0.135-0.315 0.24-0.495 0.3s-0.375 0.090-0.585 0.075c-0.21-0.015-0.39-0.060-0.57-0.15-0.165-0.075-0.33-0.195-0.465-0.36-0.24-0.27-0.375-0.6-0.375-0.99v-18.39c0-0.285 0.030-0.57 0.090-0.855 0.060-0.24 0.135-0.465 0.225-0.705 0.105-0.225 0.21-0.435 0.345-0.645 0.15-0.225 0.315-0.435 0.51-0.615 0.195-0.195 0.405-0.375 0.63-0.51 0.195-0.135 0.42-0.255 0.645-0.36 0.225-0.090 0.465-0.165 0.705-0.21 0.27-0.060 0.555-0.090 0.855-0.090h10.995c0.54 0 1.065 0.090 1.56 0.3 0.225 0.105 0.45 0.225 0.645 0.36 0.225 0.135 0.435 0.315 0.63 0.51 0.36 0.36 0.645 0.78 0.855 1.26 0.090 0.24 0.165 0.465 0.225 0.705 0.060 0.285 0.090 0.57 0.090 0.855v18.39c0 0.42-0.15 0.765-0.435 1.065-0.15 0.15-0.315 0.255-0.495 0.33s-0.36 0.105-0.57 0.105z"></path>
3
+ <path fill="#fff" d="M9.495 3.99c-0.57 0-1.005 0.435-1.005 1.005 0 0.555 0.435 1.005 1.005 1.005h4.995c0.57 0 1.005-0.45 1.005-1.005 0-0.57-0.435-1.005-1.005-1.005h-4.995z"></path>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path opacity="0.8" fill="#000" d="M17.7 4.894l10.85 9.191c0.359 0.304 0.566 0.751 0.566 1.221 0 0.884-0.716 1.6-1.6 1.6 0 0-0.665-0-1.994-0.001l0 9.901c0 0.473-0.351 0.863-0.807 0.925 0 0-0.042 0.003-0.127 0.009-0.515 0-0.933-0.418-0.933-0.933 0 0 0-3.389 0-10.167 0-0.884 0.716-1.6 1.6-1.6 0 0 0.51-0 1.53-0.001l-10.292-8.72c-0.262-0.222-0.63-0.249-0.918-0.082 0 0-0.039 0.028-0.118 0.083l-10.248 8.725 1.474-0.004c0.828-0.003 1.512 0.625 1.596 1.431 0 0 0.003 0.055 0.009 0.164l0 8.436c0 0.442 0.358 0.8 0.8 0.8 0 0 3.095 0 9.285 0 0.442 0 0.8-0.358 0.8-0.8 0 0 0-2.081 0-6.243 0-0.442-0.358-0.8-0.8-0.8 0 0-1.608 0-4.824 0-0.442 0-0.8 0.358-0.8 0.8 0 0 0 1.402 0 4.207 0 0.515-0.418 0.933-0.933 0.933s-0.933-0.418-0.933-0.933c0 0 0-1.402 0-4.207 0-1.473 1.194-2.667 2.667-2.667 0 0 1.608 0 4.824 0 1.473 0 2.667 1.194 2.667 2.667 0 0 0 2.081 0 6.243 0 1.473-1.194 2.667-2.667 2.667 0 0-3.095 0-9.285 0-1.473 0-2.667-1.194-2.667-2.667 0 0-0-2.721-0.001-8.164l-1.932 0.006c-0.412 0.001-0.806-0.156-1.102-0.435 0 0-0.040-0.042-0.121-0.127-0.573-0.673-0.492-1.683 0.181-2.256 0 0 3.6-3.066 10.8-9.199 0.994-0.847 2.456-0.849 3.453-0.005 0 0 0 0 0 0z"></path>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M16.933 4v1.733h8.4c0.163 0 0.323 0.017 0.479 0.050 0.137 0.030 0.272 0.072 0.404 0.128 0.131 0.055 0.254 0.122 0.37 0.199 0.125 0.083 0.242 0.179 0.35 0.287s0.204 0.225 0.287 0.35c0.077 0.116 0.143 0.24 0.199 0.37 0.056 0.132 0.098 0.266 0.128 0.404 0.034 0.156 0.050 0.315 0.050 0.479v7.222c0 0.523-0.411 0.933-0.933 0.933s-0.933-0.411-0.933-0.933v-7.222c0-0.055-0.010-0.106-0.029-0.154s-0.178-0.178-0.217-0.217c-0.047-0.020-0.098-0.029-0.154-0.029h-18.667c-0.055 0-0.106 0.010-0.153 0.029v0 0 0c-0.047 0.020-0.178 0.178-0.217 0.217-0.020 0.047-0.029 0.098-0.029 0.154v13.333c0 0.055 0.010 0.106 0.029 0.153v0c0.020 0.047 0.178 0.178 0.217 0.217 0.047 0.020 0.098 0.029 0.153 0.029h18.667c0.055 0 0.107-0.010 0.154-0.029s0.178-0.178 0.217-0.217c0.019-0.047 0.029-0.098 0.029-0.153v-2.953c0-0.523 0.411-0.933 0.933-0.933s0.933 0.411 0.933 0.933v2.953c0 0.163-0.017 0.323-0.050 0.479-0.030 0.137-0.072 0.272-0.128 0.404-0.055 0.131-0.121 0.254-0.199 0.37-0.083 0.125-0.179 0.242-0.287 0.35s-0.225 0.204-0.35 0.287c-0.116 0.077-0.24 0.143-0.37 0.199-0.132 0.056-0.266 0.098-0.404 0.128-0.156 0.034-0.316 0.051-0.479 0.051h-0.44l2.42 2.42c0.37 0.37 0.37 0.95 0 1.32s-0.95 0.37-1.32 0l-3.74-3.74h-12.507l-3.74 3.74c-0.37 0.37-0.95 0.37-1.32 0s-0.369-0.95 0-1.32l2.42-2.42h-0.44c-0.163 0-0.323-0.017-0.479-0.050v0c-0.137-0.030-0.272-0.072-0.404-0.128-0.131-0.055-0.254-0.122-0.37-0.199v0c-0.125-0.083-0.242-0.178-0.35-0.287s-0.204-0.225-0.287-0.35v0c-0.077-0.116-0.143-0.24-0.199-0.37-0.056-0.132-0.098-0.266-0.128-0.404v0c-0.034-0.156-0.050-0.315-0.050-0.479v-13.333c0-0.163 0.017-0.323 0.050-0.479 0.030-0.137 0.072-0.272 0.128-0.404 0.055-0.131 0.121-0.254 0.199-0.37 0.083-0.125 0.179-0.242 0.287-0.35s0.225-0.204 0.35-0.287c0.116-0.077 0.24-0.143 0.37-0.199 0.132-0.056 0.266-0.098 0.404-0.128v0c0.156-0.034 0.315-0.050 0.479-0.050h8.4v-1.733c0-0.523 0.411-0.933 0.933-0.933s0.933 0.411 0.933 0.933zM18.72 17.392l4.615-4.741c0.365-0.374 0.357-0.955-0.018-1.32s-0.955-0.357-1.32 0.018l-3.906 4.012-3.532-4.067c-0.195-0.169-0.421-0.244-0.678-0.225s-0.47 0.125-0.639 0.32l-4.615 5.333c-0.342 0.395-0.3 0.975 0.095 1.317s0.974 0.3 1.316-0.095l3.91-4.518 3.397 3.925c0.169 0.195 0.381 0.302 0.639 0.32s0.541-0.111 0.736-0.28z"></path>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M16.492 6.153v-1.6c0-0.483-0.379-0.861-0.861-0.861s-0.861 0.379-0.861 0.861v1.6h-7.753c-0.151 0-0.297 0.016-0.441 0.047v0c-0.127 0.028-0.251 0.067-0.373 0.119s-0.235 0.112-0.341 0.184c-0.116 0.076-0.223 0.165-0.323 0.265s-0.188 0.208-0.265 0.323c-0.071 0.107-0.132 0.221-0.183 0.341s-0.091 0.245-0.119 0.373c-0.031 0.144-0.047 0.291-0.047 0.441v12.308c0 0.151 0.016 0.297 0.047 0.441v0c0.028 0.127 0.067 0.251 0.119 0.373s0.112 0.235 0.183 0.341v0c0.076 0.116 0.165 0.223 0.265 0.323s0.208 0.188 0.323 0.264v0c0.107 0.071 0.221 0.132 0.341 0.184s0.245 0.091 0.373 0.119v0 0c0.144 0.031 0.291 0.047 0.441 0.047h0.407l-2.233 2.233c-0.341 0.341-0.341 0.877 0 1.219s0.877 0.341 1.219 0l3.452-3.452h5.772c0.483 0 0.861-0.379 0.861-0.861s-0.379-0.861-0.861-0.861h-8.616c-0.051 0-0.099-0.009-0.141-0.027-0.036-0.036-0.183-0.157-0.2-0.2v0 0c-0.017-0.044-0.027-0.091-0.027-0.141v-12.308c0-0.051 0.009-0.099 0.027-0.141 0.036-0.036 0.157-0.183 0.2-0.2v0 0 0c0.044-0.019 0.091-0.027 0.141-0.027h17.231c0.051 0 0.099 0.009 0.141 0.027 0.036 0.036 0.183 0.157 0.2 0.2s0.027 0.091 0.027 0.141v6.667c0 0.483 0.379 0.861 0.861 0.861s0.861-0.379 0.861-0.861v-6.667c0-0.151-0.016-0.297-0.047-0.441-0.027-0.127-0.067-0.251-0.119-0.373s-0.112-0.235-0.184-0.341c-0.076-0.116-0.165-0.223-0.265-0.323s-0.208-0.188-0.323-0.265c-0.107-0.071-0.221-0.132-0.341-0.184s-0.245-0.091-0.373-0.119c-0.144-0.031-0.291-0.047-0.441-0.047h-7.753zM18.141 16.916l4.26-4.376c0.336-0.345 0.329-0.881-0.016-1.219s-0.881-0.329-1.219 0.016l-3.605 3.704-3.26-3.755c-0.18-0.156-0.388-0.225-0.625-0.208s-0.433 0.116-0.589 0.296l-4.26 4.923c-0.316 0.365-0.277 0.9 0.088 1.215s0.9 0.277 1.215-0.088l3.609-4.171 3.136 3.623c0.156 0.18 0.352 0.279 0.589 0.296s0.499-0.103 0.679-0.259z"></path>
3
+ <path d="M24.388 21.947c0.169-0.033 0.351-0.001 0.515 0.108 1.117 0.965 1.355 1.259 1.561 1.573 0.185 0.283 0.345 0.581 0.48 0.899 0.133 0.313 0.236 0.635 0.308 0.961 0.088 0.396 0.132 0.803 0.132 1.219 0 0.189-0.075 0.359-0.196 0.48s-0.291 0.196-0.48 0.196c-0.189 0-0.359-0.075-0.48-0.196s-0.196-0.291-0.196-0.48c0-0.324-0.035-0.639-0.105-0.947-0.055-0.24-0.131-0.476-0.228-0.707-0.1-0.236-0.219-0.46-0.357-0.671-0.159-0.243-0.344-0.469-0.548-0.675-0.44-0.341-0.692-0.607-0.82-0.821-0.112-0.344-0.112-0.349-0.112-0.353l0.005-0.012c0.197-0.456 0.356-0.543 0.521-0.575z"></path>
4
+ <path d="M21.784 16.184c0.867 0 1.651 0.351 2.219 0.919s0.919 1.352 0.919 2.219c0 0.867-0.351 1.651-0.919 2.219s-1.352 0.919-2.219 0.919c-0.324 0-0.639 0.035-0.947 0.105-0.24 0.055-0.476 0.131-0.707 0.228-0.236 0.1-0.46 0.219-0.671 0.357-0.243 0.159-0.469 0.344-0.68 0.553s-0.395 0.436-0.553 0.679c-0.139 0.211-0.257 0.435-0.357 0.671-0.097 0.231-0.173 0.465-0.228 0.707-0.071 0.308-0.105 0.623-0.105 0.947-1.392-0.38-1.312-0.809-1.221-1.219 0.073-0.327 0.176-0.648 0.308-0.961 0.133-0.316 0.293-0.616 0.48-0.899 0.208-0.315 0.448-0.609 0.72-0.881s0.567-0.512 0.881-0.72c0.259-0.171 0.532-0.319 0.82-0.445-0.521-0.592-0.88-1.384-0.88-2.259 0-0.867 0.351-1.651 0.919-2.219s1.352-0.919 2.219-0.919zM21.784 17.539c-0.493 0-0.939 0.2-1.261 0.523s-0.523 0.769-0.523 1.261c0 0.493 0.2 0.939 0.523 1.261s0.769 0.523 1.261 0.523c0.493 0 0.939-0.2 1.261-0.523s0.523-0.769 0.523-1.261c0-0.493-0.2-0.939-0.523-1.261s-0.769-0.523-1.261-0.523z"></path>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path fill="#408eff" d="M32 16c0 8.837-7.163 16-16 16s-16-7.163-16-16c0-8.837 7.163-16 16-16s16 7.163 16 16z"></path>
3
+ <path fill="#fff" d="M16.817 6.167v1.517h7.35c0.143 0 0.283 0.015 0.419 0.044 0.12 0.026 0.238 0.063 0.353 0.112 0.114 0.048 0.222 0.106 0.324 0.174 0.109 0.073 0.211 0.156 0.306 0.251s0.178 0.197 0.251 0.306c0.067 0.102 0.125 0.21 0.174 0.324s0.086 0.233 0.112 0.353c0.029 0.136 0.044 0.276 0.044 0.419v6.319c0 0.457-0.359 0.817-0.817 0.817s-0.817-0.359-0.817-0.817v-6.319c0-0.048-0.009-0.093-0.026-0.134s-0.156-0.156-0.19-0.19c-0.041-0.017-0.086-0.026-0.135-0.026h-16.333c-0.048 0-0.093 0.009-0.134 0.026v0 0 0c-0.041 0.017-0.156 0.156-0.19 0.19-0.017 0.041-0.026 0.086-0.026 0.134v11.667c0 0.048 0.008 0.093 0.026 0.134l0 0c0.017 0.041 0.156 0.156 0.19 0.19 0.041 0.017 0.086 0.026 0.134 0.026h16.333c0.048 0 0.093-0.009 0.135-0.026s0.156-0.156 0.19-0.19c0.017-0.041 0.026-0.086 0.026-0.134v-2.584c0-0.457 0.359-0.817 0.817-0.817s0.817 0.359 0.817 0.817v2.584c0 0.143-0.015 0.282-0.044 0.419-0.026 0.12-0.063 0.238-0.112 0.353-0.048 0.114-0.106 0.222-0.174 0.324-0.073 0.109-0.156 0.212-0.251 0.306s-0.197 0.178-0.306 0.251c-0.102 0.067-0.21 0.125-0.324 0.174-0.115 0.049-0.233 0.086-0.353 0.112-0.137 0.030-0.276 0.044-0.419 0.044h-0.385l2.117 2.117c0.323 0.323 0.323 0.832 0 1.155s-0.832 0.323-1.155 0l-3.272-3.273h-10.944l-3.273 3.273c-0.323 0.323-0.832 0.323-1.155 0s-0.323-0.832 0-1.155l2.118-2.117h-0.385c-0.143 0-0.282-0.015-0.419-0.044l-0-0c-0.12-0.026-0.238-0.063-0.353-0.112s-0.222-0.106-0.324-0.174v0c-0.109-0.073-0.211-0.156-0.306-0.251s-0.178-0.197-0.251-0.306v0c-0.067-0.102-0.125-0.21-0.174-0.324s-0.086-0.233-0.112-0.353v0c-0.029-0.136-0.044-0.276-0.044-0.419v-11.667c0-0.143 0.015-0.282 0.044-0.419 0.026-0.12 0.063-0.238 0.112-0.353s0.106-0.222 0.174-0.324c0.073-0.109 0.156-0.211 0.251-0.306s0.197-0.178 0.306-0.251c0.102-0.067 0.21-0.125 0.324-0.174s0.233-0.086 0.353-0.112h0c0.136-0.029 0.276-0.044 0.419-0.044h7.35v-1.517c0-0.457 0.359-0.817 0.817-0.817s0.817 0.359 0.817 0.817zM18.38 17.884l4.038-4.148c0.319-0.328 0.312-0.836-0.016-1.155s-0.836-0.312-1.155 0.015l-3.418 3.511-3.091-3.559c-0.171-0.148-0.368-0.213-0.593-0.197s-0.411 0.11-0.559 0.28l-4.038 4.667c-0.299 0.346-0.263 0.853 0.083 1.152s0.853 0.263 1.152-0.083l3.421-3.953 2.972 3.435c0.147 0.171 0.334 0.264 0.559 0.28s0.473-0.097 0.644-0.245z"></path>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#fff" opacity="0.196078" d="M24 12c0 6.627-5.373 12-12 12s-12-5.373-12-12c0-6.627 5.373-12 12-12s12 5.373 12 12z"></path>
3
+ <path fill="#fff" d="M0 12c0 6.627 5.372 12 12 12s12-5.372 12-12c0-6.627-5.372-12-12-12s-12 5.372-12 12zM0.192 12c0-6.523 5.284-11.807 11.807-11.807 6.519 0 11.807 5.284 11.807 11.807 0 6.519-5.288 11.807-11.807 11.807-6.523 0-11.807-5.288-11.807-11.807z"></path>
4
+ <path fill="#fff" d="M16.579 13.354l-5.838 3.225c-0.639 0.35-1.451 0.139-1.816-0.473-0.115-0.192-0.177-0.412-0.177-0.635v-6.446c0-0.704 0.597-1.278 1.332-1.278 0.231 0 0.458 0.058 0.662 0.169l5.838 3.225c0.639 0.35 0.858 1.131 0.493 1.743-0.119 0.196-0.289 0.358-0.493 0.47z"></path>
5
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#0071f3" d="M9.669 4.029l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM12.669 7.526l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM6.669 8.52l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM15.669 9.531l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM3.669 11.023l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM18.669 11.777l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM20.349 13.234l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM5.349 13.989l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM17.349 15.497l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM8.349 16.474l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM14.349 17.486l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM11.349 20.486l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857z"></path>
3
+ <path fill="none" stroke="#0071f3" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="4" stroke-width="1.71" d="M4.491 10.989v3M7.491 8.486v7.989M10.491 3.994v16.491M13.491 7.491v9.994M16.491 9.497v6M19.491 11.743v1.491"></path>
4
+ <path fill="#0071f3" d="M10.491 3.497c0.274 0 0.497 0.223 0.497 0.497v16.491c0 0.274-0.223 0.514-0.497 0.514s-0.497-0.24-0.497-0.514v-16.491c0-0.274 0.223-0.497 0.497-0.497zM13.491 6.994c0.274 0 0.497 0.223 0.497 0.497v9.994c0 0.274-0.223 0.514-0.497 0.514s-0.497-0.24-0.497-0.514v-9.994c0-0.274 0.223-0.497 0.497-0.497zM7.491 7.989c0.274 0 0.497 0.223 0.497 0.497v7.989c0 0.274-0.223 0.497-0.497 0.497s-0.497-0.223-0.497-0.497v-7.989c0-0.274 0.223-0.497 0.497-0.497zM16.491 9c0.274 0 0.497 0.223 0.497 0.497v6c0 0.274-0.223 0.497-0.497 0.497s-0.497-0.223-0.497-0.497v-6c0-0.274 0.223-0.497 0.497-0.497zM4.491 10.491c0.274 0 0.497 0.223 0.497 0.497v3c0 0.274-0.223 0.497-0.497 0.497s-0.497-0.223-0.497-0.497v-3c0-0.274 0.223-0.497 0.497-0.497zM19.491 11.246c0.274 0 0.497 0.223 0.497 0.497v1.491c0 0.291-0.223 0.514-0.497 0.514s-0.497-0.223-0.497-0.514v-1.491c0-0.274 0.223-0.497 0.497-0.497z"></path>
5
+ <path fill="none" stroke="#0071f3" stroke-linejoin="miter" stroke-linecap="butt" stroke-miterlimit="4" stroke-width="1.71" d="M22.989 12.497c0-0.274-0.223-0.497-0.497-0.497s-0.497 0.223-0.497 0.497c0 0.274 0.223 0.497 0.497 0.497s0.497-0.223 0.497-0.497zM1.989 12.497c0-0.274-0.223-0.497-0.497-0.497s-0.497 0.223-0.497 0.497c0 0.274 0.223 0.497 0.497 0.497s0.497-0.223 0.497-0.497z"></path>
6
+ <path fill="#0071f3" d="M22.491 12.994c0.274 0 0.497-0.223 0.497-0.497s-0.223-0.497-0.497-0.497c-0.274 0-0.497 0.223-0.497 0.497s0.223 0.497 0.497 0.497zM1.491 12.994c0.274 0 0.497-0.223 0.497-0.497s-0.223-0.497-0.497-0.497c-0.274 0-0.497 0.223-0.497 0.497s0.223 0.497 0.497 0.497z"></path>
7
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#0071f3" d="M9.669 4.029l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM12.669 7.526l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM6.669 8.52l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM15.669 9.531l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM3.669 11.023l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM18.669 11.777l-0.034-0.034c0-0.48 0.377-0.857 0.857-0.857s0.857 0.377 0.857 0.857l-0.034 0.034h-1.646zM20.349 13.234l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM5.349 13.989l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM17.349 15.497l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM8.349 16.474l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM14.349 17.486l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857zM11.349 20.486l-0.034-0.034h-1.646l-0.034 0.034c0 0.48 0.377 0.857 0.857 0.857s0.857-0.377 0.857-0.857z"></path>
3
+ <path fill="none" stroke="#0071f3" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="4" stroke-width="1.71" d="M4.491 10.989v3M7.491 8.486v7.989M10.491 3.994v16.491M13.491 7.491v9.994M16.491 9.497v6M19.491 11.743v1.491"></path>
4
+ <path fill="#0071f3" d="M22.491 12.994c0.274 0 0.497-0.223 0.497-0.497s-0.223-0.497-0.497-0.497c-0.274 0-0.497 0.223-0.497 0.497s0.223 0.497 0.497 0.497zM1.491 12.994c0.274 0 0.497-0.223 0.497-0.497s-0.223-0.497-0.497-0.497c-0.274 0-0.497 0.223-0.497 0.497s0.223 0.497 0.497 0.497z"></path>
5
+ </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 fill="#5fe06c" d="M12 0c-6.63 0-12 5.37-12 12 0 6.615 5.37 12 12 12 6.615 0 12-5.385 12-12 0-6.63-5.385-12-12-12z"></path>
3
+ <path fill="#fff" d="M10.995 15.225c0 0.12 0 0.195 0 0.21 0 0.57 0.435 1.005 1.005 1.005 0.555 0 0.99-0.435 0.99-1.005 0-0.045 0-0.135 0-0.27-0.015-0.435-0.015-0.705 0-0.795 0.015-0.060 0.090-0.285 0.15-0.375 0.12-0.195 0.525-0.51 1.2-0.93 0.12-0.075 0.21-0.12 0.24-0.15 0.27-0.18 0.51-0.39 0.72-0.63 0.255-0.27 0.48-0.585 0.675-0.93 0.165-0.33 0.3-0.66 0.375-1.005 0.090-0.36 0.15-0.72 0.15-1.11 0-0.33-0.045-0.66-0.105-0.975-0.060-0.255-0.15-0.525-0.255-0.78s-0.24-0.495-0.39-0.72c-0.165-0.255-0.36-0.495-0.57-0.705-0.225-0.225-0.465-0.405-0.705-0.57-0.24-0.15-0.48-0.285-0.735-0.39-0.255-0.12-0.525-0.195-0.78-0.255-0.315-0.075-0.645-0.105-0.96-0.105-0.345 0-0.675 0.030-0.99 0.105-0.255 0.060-0.51 0.15-0.765 0.255-0.27 0.105-0.51 0.24-0.735 0.39-0.255 0.165-0.48 0.36-0.705 0.57-0.21 0.21-0.405 0.45-0.57 0.705-0.15 0.225-0.285 0.465-0.39 0.72s-0.195 0.51-0.24 0.78c-0.075 0.315-0.105 0.645-0.105 0.975 0 0.57 0.435 1.005 0.99 1.005 0.57 0 1.005-0.435 1.005-1.005 0-0.195 0.015-0.39 0.060-0.585 0.030-0.135 0.075-0.255 0.135-0.39s0.12-0.27 0.21-0.39c0.090-0.15 0.195-0.27 0.33-0.405 0.12-0.12 0.255-0.225 0.39-0.33 0.135-0.075 0.255-0.15 0.405-0.195 0.12-0.060 0.255-0.105 0.39-0.135 0.18-0.045 0.375-0.060 0.585-0.060 0.18 0 0.375 0.015 0.555 0.060 0.135 0.030 0.27 0.075 0.405 0.135 0.135 0.045 0.27 0.12 0.39 0.195 0.15 0.105 0.285 0.21 0.405 0.33 0.135 0.135 0.24 0.27 0.33 0.42 0.090 0.12 0.15 0.24 0.21 0.375s0.105 0.27 0.135 0.405c0.045 0.18 0.060 0.375 0.060 0.57 0 0.21-0.030 0.42-0.075 0.63-0.045 0.18-0.12 0.36-0.21 0.54-0.090 0.15-0.18 0.3-0.3 0.435-0.135 0.165-0.3 0.315-0.48 0.45-0.36 0.21-0.78 0.48-0.99 0.645-0.465 0.345-0.795 0.675-0.99 0.99-0.15 0.225-0.255 0.42-0.315 0.63-0.075 0.18-0.105 0.375-0.135 0.57-0.015 0.195-0.015 0.555 0 1.095zM12 17.25c-0.495 0-0.885 0.39-0.885 0.87s0.39 0.87 0.885 0.87c0.48 0 0.87-0.39 0.87-0.87s-0.39-0.87-0.87-0.87z"></path>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="#fff" d="M5.625 9.495h3.015c0.090 0 0.18-0.030 0.247-0.090l2.49-2.138c0.24-0.21 0.623-0.038 0.623 0.285v8.887c0 0.323-0.383 0.495-0.623 0.285l-2.49-2.153c-0.067-0.060-0.158-0.090-0.247-0.090h-3.015c-0.21 0-0.375-0.172-0.375-0.375v-4.237c0-0.203 0.165-0.375 0.375-0.375z"></path>
3
+ <path fill="#fff" d="M13.883 6c2.933 0.315 5.168 2.902 5.168 6 0 3.090-2.235 5.678-5.168 5.992-0.412 0.045-0.78-0.255-0.825-0.667s0.255-0.78 0.668-0.825c2.152-0.232 3.825-2.168 3.825-4.5 0-2.34-1.672-4.275-3.825-4.508-0.413-0.045-0.712-0.412-0.668-0.825 0.038-0.383 0.36-0.668 0.735-0.668h0.090z"></path>
4
+ <path fill="#fff" d="M13.050 9c1.688 0.15 3 1.433 3 3 0 1.507-1.23 2.76-2.835 2.977l-0.165 0.023v-6z"></path>
5
+ </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 d="M3.42 6.060c0-2.52 2.040-4.575 4.575-4.575 2.52 0 4.575 2.055 4.575 4.575s-2.055 4.575-4.575 4.575c-2.535 0-4.575-2.055-4.575-4.575zM15.015 10.47c0-1.8 1.455-3.27 3.255-3.27 1.815 0 3.27 1.47 3.27 3.27s-1.455 3.27-3.27 3.27c-1.8 0-3.255-1.47-3.255-3.27zM4.56 12.915h6.855c2.535 0 4.575 2.055 4.575 4.575 0 0.255-0.015 0.51-0.060 0.75-0.36 2.16-2.235 3.825-4.515 3.825h-6.855c-2.52 0-4.575-2.055-4.575-4.575s2.055-4.575 4.575-4.575zM17.595 17.49c0-0.75-0.135-1.455-0.375-2.115h3.51c1.8 0 3.255 1.455 3.255 3.255s-1.455 3.27-3.255 3.27h-4.995c1.155-1.125 1.86-2.685 1.86-4.41z"></path>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M10.633 5.457c-1.119 0.457-2.181 1.053-3.185 1.79-0.422 0.309-0.51 0.883-0.201 1.305s0.883 0.51 1.305 0.201c0.927-0.68 1.908-1.223 2.943-1.629 0.185-0.073 0.373-0.141 0.562-0.205 0.658-0.223 1.325-0.389 2.001-0.497 0.64-0.103 1.287-0.154 1.943-0.154s1.304 0.051 1.943 0.154v0c0.676 0.108 1.343 0.274 2.001 0.497 0.189 0.064 0.376 0.133 0.562 0.205v0c1.035 0.407 2.015 0.95 2.943 1.629 0.421 0.309 0.996 0.221 1.305-0.201s0.221-0.996-0.201-1.305c-1.005-0.736-2.067-1.333-3.185-1.79-0.271-0.111-0.545-0.213-0.823-0.307-0.755-0.256-1.52-0.447-2.297-0.572-0.739-0.119-1.488-0.179-2.247-0.179s-1.508 0.060-2.247 0.179v0c-0.776 0.125-1.541 0.316-2.296 0.572-0.277 0.094-0.552 0.197-0.823 0.307v0zM28.933 18.667v1.333c0 0.163-0.017 0.323-0.051 0.479-0.030 0.137-0.072 0.272-0.128 0.404-0.055 0.131-0.121 0.254-0.199 0.37-0.083 0.125-0.179 0.242-0.287 0.35s-0.225 0.204-0.35 0.287c-0.116 0.077-0.24 0.143-0.37 0.199-0.132 0.056-0.267 0.099-0.404 0.128-0.156 0.034-0.315 0.050-0.479 0.050h-21.333c-0.163 0-0.323-0.017-0.479-0.050-0.137-0.030-0.272-0.072-0.404-0.128-0.131-0.055-0.254-0.121-0.37-0.199-0.125-0.083-0.242-0.178-0.35-0.287s-0.204-0.225-0.287-0.35c-0.077-0.116-0.143-0.24-0.199-0.37s-0.098-0.266-0.128-0.404c-0.034-0.156-0.050-0.315-0.050-0.479v-8c0-0.163 0.017-0.323 0.050-0.479 0.030-0.137 0.072-0.272 0.128-0.404s0.121-0.254 0.199-0.37c0.083-0.125 0.179-0.242 0.287-0.35s0.225-0.204 0.35-0.287c0.116-0.077 0.24-0.143 0.37-0.199 0.132-0.056 0.266-0.098 0.404-0.128v0c0.156-0.034 0.315-0.050 0.479-0.050h21.333c0.163 0 0.323 0.017 0.479 0.050 0.137 0.030 0.272 0.072 0.404 0.128 0.131 0.055 0.254 0.122 0.37 0.199 0.125 0.083 0.241 0.178 0.35 0.287s0.204 0.225 0.287 0.35c0.077 0.116 0.143 0.24 0.199 0.37 0.056 0.132 0.099 0.266 0.128 0.404v0c0.034 0.156 0.050 0.315 0.050 0.478v4c0 0.523-0.411 0.933-0.933 0.933s-0.933-0.411-0.933-0.933v-4c0-0.055-0.010-0.106-0.029-0.154s-0.178-0.178-0.217-0.217c-0.047-0.020-0.098-0.029-0.154-0.029h-21.333c-0.055 0-0.106 0.010-0.153 0.029v0 0c-0.047 0.020-0.178 0.178-0.217 0.217-0.020 0.047-0.029 0.098-0.029 0.154v8c0 0.055 0.010 0.106 0.029 0.154s0.178 0.178 0.217 0.217c0.047 0.020 0.098 0.029 0.153 0.029h21.333c0.055 0 0.106-0.010 0.154-0.029s0.178-0.178 0.217-0.217c0.019-0.047 0.029-0.098 0.029-0.154v-1.333c0-0.523 0.411-0.933 0.933-0.933s0.933 0.411 0.933 0.933zM20.479 23.117v0c0.137 0.030 0.272 0.072 0.404 0.128 0.131 0.055 0.254 0.121 0.37 0.199 0.125 0.083 0.241 0.179 0.35 0.287s0.204 0.225 0.287 0.35c0.077 0.116 0.143 0.24 0.199 0.37 0.056 0.132 0.099 0.266 0.128 0.404v0c0.034 0.156 0.051 0.316 0.051 0.479s-0.017 0.323-0.051 0.479c-0.030 0.137-0.072 0.272-0.128 0.404-0.055 0.131-0.121 0.254-0.199 0.37-0.083 0.125-0.179 0.242-0.287 0.35s-0.225 0.204-0.35 0.287c-0.116 0.077-0.24 0.143-0.37 0.199-0.132 0.056-0.267 0.098-0.404 0.128-0.156 0.034-0.316 0.051-0.479 0.051h-8c-0.163 0-0.323-0.017-0.479-0.051-0.137-0.030-0.272-0.072-0.404-0.128-0.131-0.055-0.254-0.121-0.37-0.199-0.125-0.083-0.242-0.179-0.35-0.287s-0.204-0.225-0.287-0.35c-0.077-0.116-0.143-0.24-0.199-0.37-0.056-0.132-0.098-0.266-0.128-0.404-0.034-0.156-0.050-0.315-0.050-0.479s0.017-0.323 0.050-0.479c0.030-0.137 0.072-0.272 0.128-0.404 0.055-0.131 0.121-0.254 0.199-0.37 0.083-0.125 0.179-0.241 0.287-0.35s0.225-0.204 0.35-0.287c0.116-0.077 0.24-0.143 0.37-0.199 0.132-0.056 0.266-0.099 0.404-0.128 0.156-0.034 0.316-0.050 0.479-0.050h8c0.163 0 0.323 0.017 0.479 0.050zM20 24.933h-8c-0.055 0-0.106 0.010-0.153 0.029s-0.178 0.178-0.217 0.217c-0.020 0.047-0.029 0.098-0.029 0.154s0.010 0.106 0.029 0.153c0.020 0.047 0.178 0.178 0.217 0.217 0.047 0.020 0.098 0.029 0.153 0.029h8c0.055 0 0.106-0.010 0.154-0.029s0.178-0.178 0.217-0.217c0.019-0.047 0.029-0.098 0.029-0.153s-0.010-0.106-0.029-0.154v0c-0.020-0.047-0.178-0.178-0.217-0.217-0.047-0.019-0.098-0.029-0.154-0.029z"></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="#0071f3" d="M20.229 0.001l-0.257 0.699c-0.152 0.412-0.477 0.738-0.89 0.889l-0.699 0.258 0.699 0.257c0.413 0.152 0.738 0.477 0.89 0.89l0.257 0.699 0.258-0.699c0.152-0.413 0.477-0.738 0.889-0.89l0.699-0.257-0.699-0.258c-0.413-0.152-0.738-0.477-0.889-0.889l-0.258-0.699zM9.383 2.22l0.817-2.219 0.817 2.219c1.215 3.302 3.817 5.903 7.118 7.118l2.219 0.817-2.22 0.817c-3.301 1.214-5.903 3.817-7.117 7.118l-0.817 2.219-0.817-2.219c-1.215-3.301-3.816-5.903-7.117-7.118l-2.22-0.817 2.219-0.817c3.301-1.215 5.903-3.817 7.118-7.118zM19.868 18.014l0.515-1.399 0.514 1.399c0.304 0.825 0.954 1.475 1.779 1.779l1.398 0.515-1.398 0.514c-0.825 0.304-1.476 0.954-1.779 1.78l-0.514 1.398-0.515-1.398c-0.304-0.825-0.954-1.476-1.779-1.78l-1.399-0.514 1.399-0.515c0.825-0.304 1.476-0.954 1.779-1.779z"></path>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path opacity="0.6" fill="#000" d="M16.050 0.559c2.61 0 5.13 0.646 7.377 1.862 0.544 0.294 0.746 0.974 0.452 1.518s-0.974 0.746-1.518 0.452c-1.922-1.040-4.075-1.592-6.31-1.592-7.334 0-13.28 5.946-13.28 13.28s5.946 13.28 13.28 13.28c7.334 0 13.28-5.946 13.28-13.28 0-3.3-1.207-6.409-3.355-8.824-0.411-0.462-0.37-1.17 0.092-1.581s1.17-0.37 1.581 0.092c2.51 2.821 3.922 6.459 3.922 10.313 0 8.571-6.949 15.52-15.52 15.52s-15.52-6.949-15.52-15.52c0-8.571 6.949-15.52 15.52-15.52zM16.024 11.822c0.567 0.002 1.034 0.425 1.106 0.972l0.010 0.152-0.040 10.822c-0.002 0.619-0.506 1.118-1.124 1.116-0.567-0.002-1.034-0.425-1.106-0.972l-0.010-0.152 0.040-10.822c0.002-0.619 0.506-1.118 1.124-1.116zM16 7.232c1.001 0 1.813 0.812 1.813 1.813s-0.812 1.813-1.813 1.813c-1.001 0-1.813-0.812-1.813-1.813s0.812-1.813 1.813-1.813z"></path>
3
+ </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 fill="#ff6f6c" d="M23.25 4.74v14.505c0 0.54-0.12 1.065-0.315 1.56-0.21 0.465-0.495 0.9-0.87 1.26-0.36 0.375-0.78 0.66-1.26 0.87-0.495 0.21-1.020 0.315-1.56 0.315h-14.505c-0.3 0-0.585-0.045-0.87-0.105-0.225-0.045-0.465-0.12-0.69-0.21-0.48-0.21-0.9-0.495-1.26-0.87-0.195-0.195-0.375-0.39-0.51-0.615-0.135-0.21-0.255-0.42-0.36-0.645-0.21-0.495-0.3-1.020-0.3-1.56v-14.505c0-0.3 0.030-0.585 0.090-0.87 0.045-0.24 0.12-0.465 0.21-0.69 0.105-0.225 0.225-0.45 0.36-0.645 0.15-0.225 0.315-0.435 0.51-0.615 0.18-0.195 0.39-0.36 0.615-0.51 0.195-0.135 0.42-0.255 0.645-0.36 0.225-0.090 0.45-0.165 0.69-0.21 0.285-0.060 0.57-0.090 0.87-0.090h14.505c0.54 0 1.065 0.090 1.56 0.3 0.225 0.105 0.435 0.225 0.645 0.36 0.225 0.135 0.435 0.315 0.615 0.495 0.375 0.375 0.66 0.795 0.87 1.275 0.090 0.225 0.165 0.465 0.21 0.69 0.060 0.285 0.105 0.57 0.105 0.87z"></path>
3
+ <path fill="#fff" d="M8.010 10.14l2.55-2.55c0.405-0.405 0.405-1.020 0-1.425-0.39-0.39-1.020-0.39-1.41 0l-1.845 1.845-1.080-1.080c-0.39-0.39-1.020-0.39-1.41 0-0.405 0.39-0.405 1.020 0 1.41l1.785 1.8c0.24 0.225 0.465 0.345 0.705 0.345s0.48-0.12 0.705-0.345zM18.495 6.99h-6c-0.57 0-1.005 0.435-1.005 1.005 0 0.555 0.435 1.005 1.005 1.005h6c0.555 0 1.005-0.45 1.005-1.005 0-0.57-0.45-1.005-1.005-1.005zM7.245 13.995c-0.975 0-1.755 0.78-1.755 1.755 0 0.96 0.78 1.74 1.755 1.74 0.96 0 1.755-0.78 1.755-1.74 0-0.975-0.795-1.755-1.755-1.755zM18.495 14.745h-6.495c-0.57 0-1.005 0.435-1.005 1.005 0 0.555 0.435 0.99 1.005 0.99h6.495c0.555 0 1.005-0.435 1.005-0.99 0-0.57-0.45-1.005-1.005-1.005z"></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 fill="currentColor" d="M5.759 15.127c0.251 0.251 0.644 0.271 0.918 0.063l0.072-0.063 5.016-5.016c0.1-0.1 0.254-0.115 0.37-0.043l0.054 0.043 5.062 5.062c0.273 0.273 0.717 0.273 0.99 0 0.251-0.251 0.271-0.644 0.063-0.918l-0.063-0.072-5.062-5.062c-0.629-0.629-1.628-0.662-2.296-0.099l-0.108 0.099-5.016 5.016c-0.273 0.273-0.273 0.717 0 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="#000" d="M17.286 5c0.676 0 1.213 0.546 1.213 1.21 0 0.227-0.064 0.449-0.184 0.641l-0.065 0.093-1.24 1.62c-0.149 0.194-0.433 0.236-0.634 0.092-0.181-0.129-0.234-0.364-0.134-0.551l0.039-0.060 1.24-1.62c0.046-0.060 0.071-0.136 0.071-0.214 0-0.169-0.113-0.302-0.253-0.329l-0.054-0.005h-10.573c-0.064 0-0.126 0.022-0.179 0.064-0.126 0.099-0.162 0.281-0.092 0.426l0.036 0.059 4.207 5.495c0.138 0.18 0.221 0.394 0.243 0.617l0.006 0.112 0.015 3.985c0 0.088 0.033 0.171 0.087 0.232l0.045 0.042 1.525 1.158c0.052 0.040 0.114 0.060 0.176 0.060 0.146-0.001 0.274-0.116 0.301-0.275l0.005-0.062-0.020-5.134c-0.001-0.228 0.063-0.452 0.184-0.645l0.065-0.094 1.804-2.357c0.149-0.194 0.433-0.236 0.634-0.092 0.181 0.129 0.234 0.364 0.134 0.551l-0.039 0.060-1.805 2.357c-0.035 0.045-0.058 0.099-0.067 0.157l-0.005 0.059 0.020 5.134c0.003 0.663-0.533 1.212-1.209 1.214-0.23 0.001-0.454-0.063-0.647-0.183l-0.094-0.064-1.525-1.158c-0.267-0.203-0.436-0.506-0.471-0.834l-0.007-0.124-0.015-3.985c-0-0.059-0.015-0.115-0.041-0.165l-0.030-0.047-4.207-5.495c-0.401-0.523-0.308-1.272 0.211-1.682 0.183-0.145 0.405-0.234 0.637-0.256l0.117-0.006h10.573z"></path>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path fill="#000" opacity="0.15" d="M16 1.333c8.1 0 14.667 6.567 14.667 14.667s-6.567 14.667-14.667 14.667c-8.1 0-14.667-6.567-14.667-14.667s6.567-14.667 14.667-14.667zM16 4c-6.628 0-12 5.372-12 12s5.372 12 12 12c6.628 0 12-5.372 12-12s-5.372-12-12-12z"></path>
3
+ <path fill="#444" d="M16 1.333c8.1 0 14.667 6.567 14.667 14.667 0 0.736-0.597 1.333-1.333 1.333s-1.333-0.597-1.333-1.333c0-6.628-5.372-12-12-12-0.736 0-1.333-0.597-1.333-1.333s0.597-1.333 1.333-1.333z"></path>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
2
+ <path d="M23.399 22.031l0.116 0.099 3.68 3.672c0.365 0.364 0.365 0.955 0.001 1.32-0.328 0.328-0.839 0.361-1.204 0.1l-0.116-0.099-3.68-3.672c-0.365-0.364-0.365-0.955-0.001-1.32 0.328-0.328 0.839-0.361 1.204-0.1zM14.428 4.605c5.465 0 9.897 4.431 9.897 9.897s-4.431 9.897-9.897 9.897c-5.465 0-9.897-4.431-9.897-9.897s4.431-9.897 9.897-9.897zM14.428 6.472c-4.435 0-8.031 3.595-8.031 8.031s3.595 8.031 8.031 8.031c4.435 0 8.031-3.595 8.031-8.031s-3.595-8.031-8.031-8.031z"></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 d="M12.032 2.355c1.632 0 3.205 0.404 4.611 1.166 0.34 0.182 0.466 0.609 0.281 0.949s-0.609 0.463-0.949 0.281c-1.201-0.65-2.546-0.996-3.943-0.996-4.585 0-8.3 3.715-8.3 8.297 0 4.588 3.715 8.303 8.3 8.303s8.3-3.715 8.3-8.303c0-2.063-0.753-4.002-2.098-5.514-0.258-0.287-0.231-0.732 0.059-0.984 0.287-0.258 0.729-0.234 0.987 0.053 1.57 1.764 2.452 4.037 2.452 6.445 0 5.361-4.342 9.703-9.7 9.703s-9.7-4.342-9.7-9.703c0-5.355 4.342-9.697 9.7-9.697zM10.866 7.658c0-0.627 0.507-1.131 1.134-1.131s1.134 0.504 1.134 1.131c0 0.627-0.507 1.131-1.134 1.131s-1.134-0.504-1.134-1.131zM12.706 10.002c-0.044-0.346-0.337-0.609-0.691-0.609-0.387 0-0.7 0.311-0.703 0.697l-0.023 6.762 0.006 0.1c0.044 0.34 0.337 0.603 0.691 0.603 0.387 0.006 0.7-0.311 0.703-0.697l0.023-6.762-0.006-0.094z"></path>
3
+ </svg>
@@ -5,7 +5,11 @@ import { computed, ref } from 'vue';
5
5
  import { useScreen, useTheme } from '@opendesign-plus/composables';
6
6
  import ContentWrapper from './common/ContentWrapper.vue';
7
7
 
8
- const props = defineProps({
8
+ const props = withDefaults(defineProps<{
9
+ options: any;
10
+ size: string;
11
+ contentJustifyCenter: boolean;
12
+ }>(), {
9
13
  options: undefined,
10
14
  size: 'large',
11
15
  contentJustifyCenter: false,
@@ -94,7 +98,7 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
94
98
  </OCarousel>
95
99
 
96
100
  <OCarousel
97
- v-else="isPhone"
101
+ v-else-if="isPhone"
98
102
  class="banner-carousel"
99
103
  effect="gallery"
100
104
  indicator-click
@@ -103,7 +107,11 @@ const onClick = (href: string, hasBtn: boolean | undefined) => {
103
107
  :auto-play="true"
104
108
  @before-change="onBeforeChange"
105
109
  >
106
- <OCarouselItem v-for="(info, index) in bannerInfo" class="banner-item" :class="`banner-item${index}`">
110
+ <OCarouselItem
111
+ v-for="(info, index) in bannerInfo"
112
+ class="banner-item"
113
+ :class="`banner-item${index}`"
114
+ :key="index">
107
115
  <ContentWrapper class="banner-wrapper">
108
116
  <OFigure class="banner-bg" :src="info.bg" @click="onClick(info.href)" />
109
117
  </ContentWrapper>
@@ -3,7 +3,7 @@ import { ODivider } from '@opensig/opendesign';
3
3
 
4
4
  import ContentWrapper from './common/ContentWrapper.vue';
5
5
 
6
- const props = defineProps({
6
+ const props = withDefaults(defineProps(), {
7
7
  simple: false,
8
8
  atom: undefined,
9
9
  lang: undefined,