@cloudbase/weda-ui 0.2.13 → 0.2.16

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 (338) hide show
  1. package/README.md +7 -2
  2. package/package.json +41 -16
  3. package/src/configs/components/calendar.json +75 -0
  4. package/src/configs/components/carousel.json +273 -0
  5. package/src/configs/components/chart/statisticsCard.json +331 -0
  6. package/src/configs/components/dataView.json +139 -0
  7. package/src/configs/components/form/location.json +152 -0
  8. package/src/configs/components/form/uploaderFile.json +2 -1
  9. package/src/configs/components/graphicCard.json +399 -0
  10. package/src/configs/components/image.json +4 -0
  11. package/src/configs/components/link.json +2 -2
  12. package/src/configs/components/listView.json +230 -0
  13. package/src/configs/components/navLayout.json +350 -0
  14. package/src/configs/components/swiper.json +3 -3
  15. package/src/configs/index.js +16 -0
  16. package/src/mp/components/button/index.js +12 -13
  17. package/src/mp/components/button/index.wxml +1 -1
  18. package/src/{web/wedatheme/src/styles/assets → mp/components/calendar}/arrowright--line.svg +3 -4
  19. package/src/mp/components/calendar/index.js +238 -0
  20. package/src/mp/components/calendar/index.json +4 -0
  21. package/src/mp/components/calendar/index.wxml +37 -0
  22. package/src/mp/components/calendar/index.wxss +178 -0
  23. package/src/mp/components/carousel/index.js +88 -0
  24. package/src/mp/components/carousel/index.json +7 -0
  25. package/src/mp/components/carousel/index.wxml +6 -0
  26. package/src/mp/components/chart/statisticsCard/index.js +226 -0
  27. package/src/mp/components/chart/statisticsCard/index.json +4 -0
  28. package/src/mp/components/chart/statisticsCard/index.wxml +9 -0
  29. package/src/mp/components/chart/statisticsCard/index.wxss +45 -0
  30. package/src/mp/components/container/index.js +4 -0
  31. package/src/mp/components/dataView/index.js +34 -0
  32. package/src/mp/components/dataView/index.json +7 -0
  33. package/src/mp/components/dataView/index.wxml +15 -0
  34. package/src/{web/wedatheme/src/styles/theme/_icon.scss → mp/components/dataView/index.wxss} +0 -0
  35. package/src/mp/components/form/location/components/mapChoose/index.js +201 -0
  36. package/src/mp/components/form/location/components/mapChoose/index.json +4 -0
  37. package/src/mp/components/form/location/components/mapChoose/index.wxml +42 -0
  38. package/src/mp/components/form/location/components/mapChoose/index.wxss +188 -0
  39. package/src/mp/components/form/location/index.js +341 -0
  40. package/src/mp/components/form/location/index.json +6 -0
  41. package/src/mp/components/form/location/index.wxml +25 -0
  42. package/src/mp/components/form/location/index.wxss +91 -0
  43. package/src/mp/components/form/uploader/index.js +39 -35
  44. package/src/mp/components/form/uploaderFile/index.js +63 -30
  45. package/src/mp/components/form/uploaderFile/index.wxss +1 -0
  46. package/src/mp/components/graphicCard/chevron-right.svg +3 -0
  47. package/src/mp/components/graphicCard/index.js +205 -0
  48. package/src/mp/components/graphicCard/index.json +4 -0
  49. package/src/mp/components/graphicCard/index.wxml +29 -0
  50. package/src/mp/components/graphicCard/index.wxss +157 -0
  51. package/src/mp/components/image/index.js +53 -52
  52. package/src/mp/components/listView/arrow-right-line.svg +3 -0
  53. package/src/mp/components/listView/index.js +286 -0
  54. package/src/mp/components/listView/index.json +4 -0
  55. package/src/mp/components/listView/index.wxml +40 -0
  56. package/src/mp/components/listView/index.wxss +150 -0
  57. package/src/mp/components/listView/more-line.svg +3 -0
  58. package/src/mp/components/navLayout/index.js +123 -0
  59. package/src/mp/components/navLayout/index.json +7 -0
  60. package/src/mp/components/navLayout/index.wxml +25 -0
  61. package/src/mp/components/navLayout/index.wxss +1193 -0
  62. package/src/mp/components/swiper/index.wxml +2 -0
  63. package/src/mp/components/text/index.wxss +6 -6
  64. package/src/mp/index.json +9 -1
  65. package/src/mp/utils/debounce.js +133 -0
  66. package/src/mp/utils/dr_square_point.js +25 -0
  67. package/src/mp/utils/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.js +1336 -0
  68. package/src/mp/utils/spark-md5.js +776 -0
  69. package/src/mp/utils/tcb.js +18 -0
  70. package/src/web/components/button/index.tsx +1 -1
  71. package/src/web/components/calendar/index.css +382 -0
  72. package/src/web/components/calendar/index.jsx +312 -0
  73. package/src/web/components/calendar/util.js +90 -0
  74. package/src/web/components/carousel/index.css +119 -0
  75. package/src/web/components/carousel/index.tsx +417 -0
  76. package/src/web/components/chart/statisticsCard/index.css +62 -0
  77. package/src/web/components/chart/statisticsCard/index.tsx +286 -0
  78. package/src/web/components/chart/statisticsCard/interface.ts +14 -0
  79. package/src/web/components/dataView/index.tsx +20 -0
  80. package/src/web/components/dataView/interface.ts +6 -0
  81. package/src/web/components/form/input/index.css +41 -4
  82. package/src/web/components/form/input/index.tsx +1 -0
  83. package/src/web/components/form/location/common/mapChoose.css +178 -0
  84. package/src/web/components/form/location/common/mapChoose.jsx +343 -0
  85. package/src/web/components/form/location/common/mapView.jsx +190 -0
  86. package/src/web/components/form/location/common/propsConfig.js +54 -0
  87. package/src/web/components/form/location/common/selectModal.css +44 -0
  88. package/src/web/components/form/location/common/selectModal.jsx +82 -0
  89. package/src/web/components/form/location/common/useLocationInfo.js +100 -0
  90. package/src/web/components/form/location/components/LocationH5/index.css +243 -0
  91. package/src/web/components/form/location/components/LocationH5/location.h5.jsx +403 -0
  92. package/src/web/components/form/location/components/LocationPC/Header.jsx +109 -0
  93. package/src/web/components/form/location/components/LocationPC/index.css +44 -0
  94. package/src/web/components/form/location/components/LocationPC/location.PC.jsx +323 -0
  95. package/src/web/components/form/location/constants.js +4 -0
  96. package/src/web/{wedatheme/src/styles/theme/_timeline.scss → components/form/location/index.css} +0 -0
  97. package/src/web/components/form/location/index.jsx +25 -0
  98. package/src/web/components/form/uploader/uploader.h5.tsx +16 -10
  99. package/src/web/components/form/uploader/uploader.pc.tsx +15 -11
  100. package/src/web/components/form/uploaderFile/{uploadFile.h5.jsx → uploadFile.h5.tsx} +179 -148
  101. package/src/web/components/form/uploaderFile/{uploadFile.pc.jsx → uploadFile.pc.tsx} +79 -56
  102. package/src/web/components/graphicCard/index.css +163 -0
  103. package/src/web/components/graphicCard/index.tsx +309 -0
  104. package/src/web/components/image/image.tsx +107 -94
  105. package/src/web/components/image/index.tsx +1 -1
  106. package/src/web/components/index.js +13 -1
  107. package/src/web/components/listView/arrow-right-line.svg +3 -0
  108. package/src/web/components/listView/index.css +139 -0
  109. package/src/web/components/listView/index.tsx +354 -0
  110. package/src/web/components/listView/interface.ts +98 -0
  111. package/src/web/components/navLayout/index.css +332 -0
  112. package/src/web/components/navLayout/index.tsx +247 -0
  113. package/src/web/components/swiper/index.css +4 -0
  114. package/src/web/components/swiper/index.tsx +21 -14
  115. package/src/web/components/tabs/index.tsx +2 -2
  116. package/src/web/components/tabs/tabs.h5.tsx +7 -4
  117. package/src/web/components/uploaderFileView/index.css +9 -9
  118. package/src/web/components/uploaderFileView/index.jsx +34 -25
  119. package/src/web/types.d.ts +15 -14
  120. package/src/web/utils/debounce.js +98 -0
  121. package/src/web/utils/platform.js +31 -0
  122. package/src/web/utils/tcb.js +35 -0
  123. package/src/web/utils/tmap.js +4 -0
  124. package/src/web/wedatheme/.code.yml +0 -16
  125. package/src/web/wedatheme/.editorconfig +0 -9
  126. package/src/web/wedatheme/.eslintrc +0 -20
  127. package/src/web/wedatheme/.git +0 -1
  128. package/src/web/wedatheme/.gitignore +0 -5
  129. package/src/web/wedatheme/.npmrc +0 -1
  130. package/src/web/wedatheme/.orange-ci.yml +0 -55
  131. package/src/web/wedatheme/.vscode/extensions.json +0 -3
  132. package/src/web/wedatheme/.vscode/settings.json +0 -11
  133. package/src/web/wedatheme/README.md +0 -50
  134. package/src/web/wedatheme/i18n/README.md +0 -4
  135. package/src/web/wedatheme/i18n/translation/index.js +0 -10
  136. package/src/web/wedatheme/i18n/translation/zh.js +0 -15
  137. package/src/web/wedatheme/jsconfig.json +0 -15
  138. package/src/web/wedatheme/mock/app.js +0 -42
  139. package/src/web/wedatheme/mock/history-context.js +0 -8
  140. package/src/web/wedatheme/mock/index.js +0 -3
  141. package/src/web/wedatheme/mock/layout/AppLayout.jsx +0 -28
  142. package/src/web/wedatheme/mock/layout/MenuWithRouter.jsx +0 -50
  143. package/src/web/wedatheme/mock/layout/index.js +0 -1
  144. package/src/web/wedatheme/package-lock.json +0 -14335
  145. package/src/web/wedatheme/package.json +0 -61
  146. package/src/web/wedatheme/public/index.html +0 -19
  147. package/src/web/wedatheme/src/app.js +0 -22
  148. package/src/web/wedatheme/src/components/README.md +0 -4
  149. package/src/web/wedatheme/src/configs/menu.js +0 -9
  150. package/src/web/wedatheme/src/routes/wedatheme-index/Component.jsx +0 -402
  151. package/src/web/wedatheme/src/routes/wedatheme-index/Form.jsx +0 -729
  152. package/src/web/wedatheme/src/routes/wedatheme-index/FormItem.jsx +0 -18
  153. package/src/web/wedatheme/src/routes/wedatheme-index/WedathemeIndex.jsx +0 -1276
  154. package/src/web/wedatheme/src/routes/wedatheme-index/index.js +0 -1
  155. package/src/web/wedatheme/src/routes/weui2td/WEUI2TD.jsx +0 -3
  156. package/src/web/wedatheme/src/routes/weui2td/index.js +0 -1
  157. package/src/web/wedatheme/src/styles/_btn.scss +0 -24
  158. package/src/web/wedatheme/src/styles/_icon.scss +0 -653
  159. package/src/web/wedatheme/src/styles/_map.scss +0 -12
  160. package/src/web/wedatheme/src/styles/_middle.scss +0 -340
  161. package/src/web/wedatheme/src/styles/_upload.scss +0 -47
  162. package/src/web/wedatheme/src/styles/assets/alert-close.svg +0 -3
  163. package/src/web/wedatheme/src/styles/assets/and.svg +0 -12
  164. package/src/web/wedatheme/src/styles/assets/arrowdown--line.svg +0 -12
  165. package/src/web/wedatheme/src/styles/assets/arrowdown.svg +0 -12
  166. package/src/web/wedatheme/src/styles/assets/arrowleft--line.svg +0 -12
  167. package/src/web/wedatheme/src/styles/assets/arrowleft.svg +0 -12
  168. package/src/web/wedatheme/src/styles/assets/arrowright-blue--line.svg +0 -12
  169. package/src/web/wedatheme/src/styles/assets/arrowright.svg +0 -12
  170. package/src/web/wedatheme/src/styles/assets/arrowup--line.svg +0 -12
  171. package/src/web/wedatheme/src/styles/assets/arrowup.svg +0 -12
  172. package/src/web/wedatheme/src/styles/assets/bell-warning.svg +0 -3
  173. package/src/web/wedatheme/src/styles/assets/btnback.svg +0 -12
  174. package/src/web/wedatheme/src/styles/assets/calendar.svg +0 -12
  175. package/src/web/wedatheme/src/styles/assets/chartcolumn-1.svg +0 -12
  176. package/src/web/wedatheme/src/styles/assets/chartcolumn.svg +0 -12
  177. package/src/web/wedatheme/src/styles/assets/chartline-1.svg +0 -9
  178. package/src/web/wedatheme/src/styles/assets/chartline.svg +0 -9
  179. package/src/web/wedatheme/src/styles/assets/chartpie-1.svg +0 -12
  180. package/src/web/wedatheme/src/styles/assets/chartpie.svg +0 -12
  181. package/src/web/wedatheme/src/styles/assets/check-1.svg +0 -8
  182. package/src/web/wedatheme/src/styles/assets/check-2.svg +0 -1
  183. package/src/web/wedatheme/src/styles/assets/check.svg +0 -8
  184. package/src/web/wedatheme/src/styles/assets/close-1.svg +0 -8
  185. package/src/web/wedatheme/src/styles/assets/close.svg +0 -8
  186. package/src/web/wedatheme/src/styles/assets/consult.svg +0 -8
  187. package/src/web/wedatheme/src/styles/assets/convertip--blue.svg +0 -12
  188. package/src/web/wedatheme/src/styles/assets/convertip.svg +0 -12
  189. package/src/web/wedatheme/src/styles/assets/copy.svg +0 -12
  190. package/src/web/wedatheme/src/styles/assets/cur-active.svg +0 -12
  191. package/src/web/wedatheme/src/styles/assets/cur.svg +0 -12
  192. package/src/web/wedatheme/src/styles/assets/daily.svg +0 -13
  193. package/src/web/wedatheme/src/styles/assets/database.svg +0 -12
  194. package/src/web/wedatheme/src/styles/assets/datasheet.svg +0 -12
  195. package/src/web/wedatheme/src/styles/assets/delete-white.svg +0 -8
  196. package/src/web/wedatheme/src/styles/assets/delete.svg +0 -8
  197. package/src/web/wedatheme/src/styles/assets/detail.svg +0 -13
  198. package/src/web/wedatheme/src/styles/assets/dismiss.svg +0 -8
  199. package/src/web/wedatheme/src/styles/assets/download.svg +0 -12
  200. package/src/web/wedatheme/src/styles/assets/drop.svg +0 -15
  201. package/src/web/wedatheme/src/styles/assets/email-error.svg +0 -14
  202. package/src/web/wedatheme/src/styles/assets/email-warning.svg +0 -12
  203. package/src/web/wedatheme/src/styles/assets/email.svg +0 -14
  204. package/src/web/wedatheme/src/styles/assets/emailv.svg +0 -12
  205. package/src/web/wedatheme/src/styles/assets/error-1.svg +0 -8
  206. package/src/web/wedatheme/src/styles/assets/error-filled.svg +0 -3
  207. package/src/web/wedatheme/src/styles/assets/error.svg +0 -8
  208. package/src/web/wedatheme/src/styles/assets/externallink.svg +0 -12
  209. package/src/web/wedatheme/src/styles/assets/favorable.svg +0 -9
  210. package/src/web/wedatheme/src/styles/assets/filter.svg +0 -12
  211. package/src/web/wedatheme/src/styles/assets/firstpage.svg +0 -13
  212. package/src/web/wedatheme/src/styles/assets/folderclose.svg +0 -8
  213. package/src/web/wedatheme/src/styles/assets/folderopen.svg +0 -8
  214. package/src/web/wedatheme/src/styles/assets/fullscreenquit.svg +0 -12
  215. package/src/web/wedatheme/src/styles/assets/fullsreen.svg +0 -12
  216. package/src/web/wedatheme/src/styles/assets/globe-gray.svg +0 -12
  217. package/src/web/wedatheme/src/styles/assets/guide.svg +0 -9
  218. package/src/web/wedatheme/src/styles/assets/help.svg +0 -8
  219. package/src/web/wedatheme/src/styles/assets/hide.svg +0 -8
  220. package/src/web/wedatheme/src/styles/assets/info.svg +0 -8
  221. package/src/web/wedatheme/src/styles/assets/infoblue-1.svg +0 -8
  222. package/src/web/wedatheme/src/styles/assets/infoblue-filled.svg +0 -3
  223. package/src/web/wedatheme/src/styles/assets/infoblue.svg +0 -8
  224. package/src/web/wedatheme/src/styles/assets/jump-black.svg +0 -12
  225. package/src/web/wedatheme/src/styles/assets/jump.svg +0 -12
  226. package/src/web/wedatheme/src/styles/assets/lastpage.svg +0 -13
  227. package/src/web/wedatheme/src/styles/assets/loading.svg +0 -12
  228. package/src/web/wedatheme/src/styles/assets/local.svg +0 -10
  229. package/src/web/wedatheme/src/styles/assets/menu-fold-white.svg +0 -6
  230. package/src/web/wedatheme/src/styles/assets/menu-fold.svg +0 -6
  231. package/src/web/wedatheme/src/styles/assets/minus.svg +0 -12
  232. package/src/web/wedatheme/src/styles/assets/monitor.svg +0 -12
  233. package/src/web/wedatheme/src/styles/assets/more.svg +0 -8
  234. package/src/web/wedatheme/src/styles/assets/multi-line.svg +0 -12
  235. package/src/web/wedatheme/src/styles/assets/news.svg +0 -3
  236. package/src/web/wedatheme/src/styles/assets/not.svg +0 -12
  237. package/src/web/wedatheme/src/styles/assets/notice.svg +0 -8
  238. package/src/web/wedatheme/src/styles/assets/pencil.svg +0 -12
  239. package/src/web/wedatheme/src/styles/assets/pending-1.svg +0 -8
  240. package/src/web/wedatheme/src/styles/assets/pending-gray.svg +0 -8
  241. package/src/web/wedatheme/src/styles/assets/pending.svg +0 -8
  242. package/src/web/wedatheme/src/styles/assets/percent-blue.svg +0 -16
  243. package/src/web/wedatheme/src/styles/assets/percent.svg +0 -16
  244. package/src/web/wedatheme/src/styles/assets/phone-error.svg +0 -11
  245. package/src/web/wedatheme/src/styles/assets/phone-warning.svg +0 -9
  246. package/src/web/wedatheme/src/styles/assets/phone.svg +0 -12
  247. package/src/web/wedatheme/src/styles/assets/phonev.svg +0 -9
  248. package/src/web/wedatheme/src/styles/assets/plus.svg +0 -12
  249. package/src/web/wedatheme/src/styles/assets/qq.svg +0 -11
  250. package/src/web/wedatheme/src/styles/assets/realname.svg +0 -8
  251. package/src/web/wedatheme/src/styles/assets/realnamev.svg +0 -9
  252. package/src/web/wedatheme/src/styles/assets/refresh-blue.svg +0 -12
  253. package/src/web/wedatheme/src/styles/assets/refresh.svg +0 -12
  254. package/src/web/wedatheme/src/styles/assets/relationship-1.svg +0 -12
  255. package/src/web/wedatheme/src/styles/assets/relationship.svg +0 -12
  256. package/src/web/wedatheme/src/styles/assets/remind.svg +0 -8
  257. package/src/web/wedatheme/src/styles/assets/search.svg +0 -8
  258. package/src/web/wedatheme/src/styles/assets/setting.svg +0 -12
  259. package/src/web/wedatheme/src/styles/assets/shopcart.svg +0 -8
  260. package/src/web/wedatheme/src/styles/assets/show.svg +0 -8
  261. package/src/web/wedatheme/src/styles/assets/sort.svg +0 -12
  262. package/src/web/wedatheme/src/styles/assets/sortdown.svg +0 -12
  263. package/src/web/wedatheme/src/styles/assets/sortup.svg +0 -12
  264. package/src/web/wedatheme/src/styles/assets/success-1.svg +0 -8
  265. package/src/web/wedatheme/src/styles/assets/success-filled.svg +0 -3
  266. package/src/web/wedatheme/src/styles/assets/success.svg +0 -8
  267. package/src/web/wedatheme/src/styles/assets/table-1.svg +0 -12
  268. package/src/web/wedatheme/src/styles/assets/table.svg +0 -12
  269. package/src/web/wedatheme/src/styles/assets/tag.svg +0 -12
  270. package/src/web/wedatheme/src/styles/assets/time.svg +0 -12
  271. package/src/web/wedatheme/src/styles/assets/transfer.svg +0 -8
  272. package/src/web/wedatheme/src/styles/assets/trenddown.svg +0 -12
  273. package/src/web/wedatheme/src/styles/assets/trendup.svg +0 -12
  274. package/src/web/wedatheme/src/styles/assets/viewgrid.svg +0 -12
  275. package/src/web/wedatheme/src/styles/assets/viewlist.svg +0 -12
  276. package/src/web/wedatheme/src/styles/assets/warning-1.svg +0 -8
  277. package/src/web/wedatheme/src/styles/assets/warning-filled.svg +0 -3
  278. package/src/web/wedatheme/src/styles/assets/warning.svg +0 -8
  279. package/src/web/wedatheme/src/styles/assets/wechat-error.svg +0 -14
  280. package/src/web/wedatheme/src/styles/assets/wechat-warning.svg +0 -12
  281. package/src/web/wedatheme/src/styles/assets/wechat.svg +0 -12
  282. package/src/web/wedatheme/src/styles/assets/wechatv.svg +0 -12
  283. package/src/web/wedatheme/src/styles/assets/zoom-in-white.svg +0 -4
  284. package/src/web/wedatheme/src/styles/assets/zoom-in.svg +0 -4
  285. package/src/web/wedatheme/src/styles/assets/zoom-out-white.svg +0 -4
  286. package/src/web/wedatheme/src/styles/assets/zoom-out.svg +0 -4
  287. package/src/web/wedatheme/src/styles/index.scss +0 -18
  288. package/src/web/wedatheme/src/styles/main.css +0 -166
  289. package/src/web/wedatheme/src/styles/theme/_alert.scss +0 -73
  290. package/src/web/wedatheme/src/styles/theme/_badge.scss +0 -38
  291. package/src/web/wedatheme/src/styles/theme/_blank-page-v2.scss +0 -7
  292. package/src/web/wedatheme/src/styles/theme/_breadcrumb.scss +0 -8
  293. package/src/web/wedatheme/src/styles/theme/_bubble.scss +0 -24
  294. package/src/web/wedatheme/src/styles/theme/_button.scss +0 -212
  295. package/src/web/wedatheme/src/styles/theme/_card.scss +0 -12
  296. package/src/web/wedatheme/src/styles/theme/_cascader.scss +0 -43
  297. package/src/web/wedatheme/src/styles/theme/_checkbox&radio.scss +0 -83
  298. package/src/web/wedatheme/src/styles/theme/_datepicker.scss +0 -36
  299. package/src/web/wedatheme/src/styles/theme/_dialog.scss +0 -39
  300. package/src/web/wedatheme/src/styles/theme/_divider.scss +0 -1
  301. package/src/web/wedatheme/src/styles/theme/_drawer.scss +0 -15
  302. package/src/web/wedatheme/src/styles/theme/_dropdown.scss +0 -53
  303. package/src/web/wedatheme/src/styles/theme/_form.scss +0 -38
  304. package/src/web/wedatheme/src/styles/theme/_input&textarea&select.scss +0 -85
  305. package/src/web/wedatheme/src/styles/theme/_inputnumber.scss +0 -16
  306. package/src/web/wedatheme/src/styles/theme/_link.scss +0 -14
  307. package/src/web/wedatheme/src/styles/theme/_list.scss +0 -41
  308. package/src/web/wedatheme/src/styles/theme/_metrics-board.scss +0 -14
  309. package/src/web/wedatheme/src/styles/theme/_notification.scss +0 -27
  310. package/src/web/wedatheme/src/styles/theme/_pagination.scss +0 -22
  311. package/src/web/wedatheme/src/styles/theme/_popconfirm.scss +0 -4
  312. package/src/web/wedatheme/src/styles/theme/_progress.scss +0 -28
  313. package/src/web/wedatheme/src/styles/theme/_region-select.scss +0 -17
  314. package/src/web/wedatheme/src/styles/theme/_search.scss +0 -18
  315. package/src/web/wedatheme/src/styles/theme/_segment.scss +0 -69
  316. package/src/web/wedatheme/src/styles/theme/_slider.scss +0 -18
  317. package/src/web/wedatheme/src/styles/theme/_status.scss +0 -4
  318. package/src/web/wedatheme/src/styles/theme/_steps.scss +0 -68
  319. package/src/web/wedatheme/src/styles/theme/_switch.scss +0 -11
  320. package/src/web/wedatheme/src/styles/theme/_table.scss +0 -44
  321. package/src/web/wedatheme/src/styles/theme/_tabs.scss +0 -44
  322. package/src/web/wedatheme/src/styles/theme/_tag-search.scss +0 -9
  323. package/src/web/wedatheme/src/styles/theme/_tag.scss +0 -48
  324. package/src/web/wedatheme/src/styles/theme/_toast.scss +0 -3
  325. package/src/web/wedatheme/src/styles/theme/_transfer.scss +0 -9
  326. package/src/web/wedatheme/src/styles/theme/_tree.scss +0 -11
  327. package/src/web/wedatheme/src/styles/theme/_upload.scss +0 -14
  328. package/src/web/wedatheme/src/styles/theme/_variables.scss +0 -140
  329. package/src/web/wedatheme/src/styles/theme/index.scss +0 -91
  330. package/src/web/wedatheme/style-package/README.md +0 -31
  331. package/src/web/wedatheme/style-package/ef6fa527e24e354765d806b826b41391.svg +0 -627
  332. package/src/web/wedatheme/style-package/index.css +0 -3
  333. package/src/web/wedatheme/style-package/package.json +0 -15
  334. package/src/web/wedatheme/tea.config.js +0 -66
  335. package/src/web/wedatheme/webpack/css.config.js +0 -114
  336. package/src/web/wedatheme/webpack/plugins/css-package-plugin.js +0 -23
  337. package/src/web/wedatheme/webpack/plugins/inject-assets-plugin.js +0 -32
  338. package/src/web/wedatheme/webpack/plugins/package-json-plugin.js +0 -66
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>check</title>
4
- <g id="check" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M6.99382213e-07,-6.99382326e-07 L16.0000007,-6.99382326e-07 L16.0000007,15.9999993 L6.99382213e-07,15.9999993 L6.99382213e-07,-6.99382326e-07 Z" id="Rectangle-4117" transform="translate(8.000001, 7.999999) rotate(-179.999995) translate(-8.000001, -7.999999) "></path>
6
- <polygon id="Rectangle-4403-(Stroke)" fill-opacity="0.9" fill="#000000" points="12.6563473 3.69885254 13.5755863 4.6180914 6.43368578 11.7599897 1.97432327 7.3006289 2.89356196 6.38138986 6.43368578 9.9215126"></polygon>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>close</title>
4
- <g id="close" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M16,0 L16,16 L0,16 L0,0 L16,0 Z" id="矩形" opacity="0.600000024"></path>
6
- <polygon id="Vector-(Stroke)" fill-opacity="0.9" fill="#000000" points="4.00484467 4.92412162 4.92408347 4.00488281 7.99999809 7.08079767 11.0759125 4.00488281 11.9951515 4.92412162 8.91923666 8.00003624 11.9951515 11.0759506 11.0759125 11.9951897 7.99999809 8.91927481 4.92408347 11.9951897 4.00484467 11.0759506 7.08075953 8.00003624"></polygon>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>close备份</title>
4
- <g id="close备份" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M16,0 L16,16 L0,16 L0,0 L16,0 Z" id="矩形" opacity="0.600000024"></path>
6
- <polygon id="Vector-(Stroke)备份" fill-opacity="0.9" fill="#000000" points="2.00484467 3.38541373 3.38537559 2.00488281 8.00484467 6.62435225 12.6243134 2.00488281 14.0048447 3.38541373 9.38537523 8.00488281 14.0048447 12.6243515 12.6243134 14.0048828 8.00484467 9.38541337 3.38537559 14.0048828 2.00484467 12.6243515 6.6243141 8.00488281"></polygon>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>call</title>
4
- <g id="call" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="call-(Background)"></path>
6
- <path d="M13.4825051,12.8171852 L13.3561624,12.9841011 C13.1202914,13.3295496 12.7801529,13.5822696 12.3763039,13.7332771 C12.0956539,13.838218 11.9200083,13.86864 11.4670023,13.920594 C9.51865623,14.1028042 7.38953625,13.1934157 5.28719223,11.3231438 C3.88280025,10.0711296 2.83115892,8.50511063 2.32478994,6.9041524 C2.11109195,6.22714478 1.99983879,5.5767532 1.99983879,4.9880991 C1.9998388,4.28226 2.15923629,3.67085135 2.47981928,3.21158696 C2.78396528,2.79386125 3.3619399,2.44686495 4.23085689,2.11889746 C4.65696389,1.95806606 5.13791174,2.10548172 5.40071773,2.47745613 L7.06606242,4.83488566 C7.34084942,5.22387428 7.30315955,5.75267187 6.97603555,6.09879357 L6.7592997,6.32023674 L6.49703163,6.57442527 L6.3318705,6.76339012 C6.3090735,7.07011371 6.63614928,7.70116758 7.58846227,8.67568261 L7.8718485,8.94149835 C8.75002947,9.75141438 8.98641887,9.81637728 9.25618687,9.62851008 L9.34609166,9.55507716 C9.44154166,9.48246846 9.69138143,9.30858651 10.2242045,8.94226132 C10.5298465,8.73212772 10.9266683,8.70842588 11.2551493,8.88068449 L11.4975809,9.00891935 C13.1605699,9.89670117 13.9202626,10.4310354 13.9937356,10.9790772 L13.999595,11.0571221 C14.009419,11.6559958 13.8405711,12.3013286 13.4825051,12.8171852 Z M12.6446755,10.8549165 C12.2935775,10.6014062 11.7532216,10.2789771 11.0282816,9.89196836 L10.7907328,9.76629697 L10.0027079,10.3101357 C9.98437486,10.3220467 9.97594236,10.3267856 9.97927036,10.3229683 C9.11991538,10.9979073 8.37977768,10.8086203 6.88619176,9.38735252 C5.74004381,8.2149549 5.28625739,7.33947138 5.33425039,6.69455771 C5.3566604,6.34166599 5.59986335,6.0184986 5.83589835,5.8250895 C5.93630035,5.72853101 6.03512888,5.63144175 6.12416788,5.54117685 L6.24928995,5.41185861 L4.5840063,3.05447486 C3.88250528,3.31925225 3.4487012,3.57964701 3.29390619,3.792161 C3.10763918,4.05918221 2.9998388,4.47288604 2.99983879,4.98809911 C2.99983879,5.4685149 3.0939922,6.018829 3.27834219,6.60285999 C3.72852518,8.0261779 4.67843238,9.44076076 5.95223131,10.5763519 C7.86461925,12.2776359 9.73828863,13.0779192 11.3634866,12.9260223 L11.620994,12.8938873 C11.799034,12.868599 11.8995412,12.8439334 12.0260842,12.7966163 C12.2452352,12.7146715 12.4181121,12.5862009 12.5588601,12.3820312 C12.8260751,12.0557251 12.9687595,11.6381551 12.9953835,11.2417764 L12.999717,11.0731477 C13.000992,11.1553445 12.8854085,11.0287381 12.6446755,10.8549165 Z" fill-opacity="0.899999976" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>swap备份</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-560.000000, -267.000000)">
6
- <g id="swap备份" transform="translate(560.000000, 267.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="swap-(Background)"></path>
8
- <path d="M13.0082455,6.00005341 L9.16403675,2.2512092 L9.86220741,1.53527832 L14.5334187,6.0906086 C14.8737507,6.4224968 14.6388121,7.00005341 14.1633892,7.00005341 L1.25024414,7.00005245 L1.25024414,6.00005245 L13.0082455,6.00005341 Z M3.02026272,10.0000515 L6.83052635,13.6004915 L6.14371538,14.3273277 L1.47454067,9.91527557 C1.12609862,9.58601379 1.35906225,9.0000515 1.83855063,9.0000515 L14.75,9.00005245 L14.75,10.0000525 L3.02026272,10.0000515 Z M1.47454067,9.91527557 L1.81794643,9.55185795" id="swap" fill="#0052D9"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>swap</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-560.000000, -231.000000)">
6
- <g id="swap" transform="translate(560.000000, 231.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="swap-(Background)"></path>
8
- <path d="M13.0082455,6.00005341 L9.16403675,2.2512092 L9.86220741,1.53527832 L14.5334187,6.0906086 C14.8737507,6.4224968 14.6388121,7.00005341 14.1633892,7.00005341 L1.25024414,7.00005245 L1.25024414,6.00005245 L13.0082455,6.00005341 Z M3.02026272,10.0000515 L6.83052635,13.6004915 L6.14371538,14.3273277 L1.47454067,9.91527557 C1.12609862,9.58601379 1.35906225,9.0000515 1.83855063,9.0000515 L14.75,9.00005245 L14.75,10.0000525 L3.02026272,10.0000515 Z M1.47454067,9.91527557 L1.81794643,9.55185795" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>file-copy</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-176.000000, -411.000000)">
6
- <g id="file-copy" transform="translate(176.000000, 411.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="file-copy-(Background)"></path>
8
- <path d="M4.995296,1 L9.36583757,1 C9.63437033,1 9.89161921,1.10800019 10.0796757,1.29968914 L13.7139349,5.00414753 C13.8971767,5.19092894 13.9999113,5.44209194 14.0000963,5.70375013 L14.0046082,12.077734 C14.0046082,12.6623764 13.4845552,13 13.009264,13 L4.99995232,13 C4.5247221,13 4.00474429,12.662817 4.00460863,12.0783167 L3.99995232,1.92191112 C3.99995232,1.3372677 4.5200057,1 4.995296,1 Z M5.00457287,12 L13.0045528,12 L13.0003157,6.01275492 L9.00003576,6.01275492 L9.00003576,2 L4.99998808,2 L5.00457287,12 Z M12.3215017,5.01275492 L10.0000362,5.01275492 L10.0000362,2.64644825 L12.3215017,5.01275492 Z M2,14.0127563 C2,14.5650425 2.44771647,15.0127554 3,15.0127554 L11,15.0127554 L11,14.0127554 L3,14.0127563 L3,5.00001335 L2,5.00001335 L2,14.0127563 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>round-filled</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-932.000000, -951.000000)">
6
- <g id="round-filled" transform="translate(932.000000, 951.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="round-(Background)"></path>
8
- <path d="M13,8 C13,5.23857617 10.7614236,3 8,3 C5.23857617,3 3,5.23857617 3,8 C3,10.7614236 5.23857617,13 8,13 C10.7614236,13 13,10.7614236 13,8 Z" id="circle-(Stroke)" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>round</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-896.000000, -951.000000)">
6
- <g id="round" transform="translate(896.000000, 951.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="round-(Background)"></path>
8
- <path d="M11.5,8 C11.5,6.06700349 9.93299675,4.5 8,4.5 C6.06700349,4.5 4.5,6.06700349 4.5,8 C4.5,9.93299675 6.06700349,11.5 8,11.5 C9.93299675,11.5 11.5,9.93299675 11.5,8 Z M13,8 C13,5.23857617 10.7614236,3 8,3 C5.23857617,3 3,5.23857617 3,8 C3,10.7614236 5.23857617,13 8,13 C10.7614236,13 13,10.7614236 13,8 Z" id="circle-(Stroke)" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>root.list</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.900000036">
5
- <g id="Icons" transform="translate(-176.000000, -891.000000)">
6
- <g id="root.list" transform="translate(176.000000, 891.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="root.list-(Background)"></path>
8
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="矩形" opacity="9.99999975e-05"></path>
9
- <path d="M14.5,13 C14.5,13.552285 14.0522842,14 13.5,14 L2.5,14 C1.94771522,14 1.5,13.552285 1.5,13 L1.5,3 C1.5,2.44771525 1.94771525,2 2.5,2 L13.5,2 C14.0522847,2 14.5,2.44771525 14.5,3 L14.5,13 L14.5,13 Z M2.5,3 L2.5,13 L13.5,13 L13.5,3 L2.5,3 Z M4,4.5 L4,5.5 L12,5.5 L12,4.5 L4,4.5 Z M4,7 L4,8 L10,8 L10,7 L4,7 Z" id="root-list" fill="#000000"></path>
10
- </g>
11
- </g>
12
- </g>
13
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>server</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-320.000000, -711.000000)">
6
- <g id="server" transform="translate(320.000000, 711.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="server-(Background)"></path>
8
- <path d="M4,5.25 L4,4.25 L7,4.25 L7,5.25 L4,5.25 Z M2.00024414,2 L14.0002441,2 C14.2763338,2 14.5001698,2.223775 14.5002441,2.4998644 L14.501194,6.99988174 C14.5013294,7.27607727 14.2773895,7.50001764 14.001194,7.50001764 L2.00119394,7.50001764 C1.72510454,7.50001764 1.50126851,7.27624273 1.50119361,7.00015306 L1.50024414,2.50013584 C1.50024414,2.22394049 1.72404879,2 2.00024414,2 Z M2.5003798,3 L13.5003796,3 L13.5010586,6.50001764 L2.50105798,6.50001764 L2.5003798,3 Z M7.00010824,11.75 L7.00010824,10.75 L4.00010848,10.75 L4.00010848,11.75 L7.00010824,11.75 Z M2.00132918,8.50001383 L14.0013294,8.50001383 C14.2774715,8.50001383 14.5013294,8.72387171 14.5013294,9.00001383 L14.5013294,13.5 C14.5013294,13.7761421 14.2774715,14 14.0013294,14 L2.00132954,14 C1.72518718,14 1.50132921,13.7761421 1.50132921,13.5 L1.50132921,9.00001383 C1.50132921,8.72387123 1.72518685,8.50001383 2.00132918,8.50001383 Z M2.50132918,9.50001383 L13.5013294,9.50001383 L13.5013294,13 L2.50132918,13 L2.50132918,9.50001383 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>logo-windows</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-992.000000, -531.000000)">
6
- <g id="logo-windows" transform="translate(992.000000, 531.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="Rectangle-4386" fill-opacity="0" fill="#C4C4C4"></path>
8
- <path d="M14,3 L14,13 C14,13.5522852 13.5522842,14 13,14 L3,14 C2.44771504,14 2,13.5522842 2,13 L2,3 C2,2.44771504 2.44771528,2 3,2 L13,2 C13.5522852,2 14,2.44771528 14,3 Z M3,3 L3,7.5 L7.5,7.5 L7.5,3 L3,3 Z M13,13 L13,8.5 L8.5,8.5 L8.5,13 L13,13 Z M7.5,13 L3,13 L3,8.5 L7.5,8.5 L7.5,13 Z M13,7.5 L13,3 L8.5,3 L8.5,7.5 L13,7.5 Z" id="Union" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>delete</title>
4
- <g id="delete" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="delete-(Background)"></path>
6
- <path d="M6,6 L7,6 L7,12 L6,12 L6,6 Z M9,12 L10,12 L10,6 L9,6 L9,12 Z M14,3 L14,4 L13,4 L13,14 C13,14.5522852 12.5522842,15 12,15 L4,15 C3.44771504,15 3,14.5522842 3,14 L3,4 L2,4 L2,3 L5.5,3 L5.5,1.80000073 C5.5,1.35817304 5.85817218,1 6.30000019,1 L9.69999981,1 C10.1418276,1 10.5,1.35817215 10.5,1.80000013 L10.5,3 L14,3 Z M6.5,2 L9.5,2 L9.5,3 L6.5,3 L6.5,2 Z M4,14 L12,14 L12,4 L4,4 L4,14 Z" fill-opacity="0.9" fill="#fff"></path>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>delete</title>
4
- <g id="delete" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="delete-(Background)"></path>
6
- <path d="M6,6 L7,6 L7,12 L6,12 L6,6 Z M9,12 L10,12 L10,6 L9,6 L9,12 Z M14,3 L14,4 L13,4 L13,14 C13,14.5522852 12.5522842,15 12,15 L4,15 C3.44771504,15 3,14.5522842 3,14 L3,4 L2,4 L2,3 L5.5,3 L5.5,1.80000073 C5.5,1.35817304 5.85817218,1 6.30000019,1 L9.69999981,1 C10.1418276,1 10.5,1.35817215 10.5,1.80000013 L10.5,3 L14,3 Z M6.5,2 L9.5,2 L9.5,3 L6.5,3 L6.5,2 Z M4,14 L12,14 L12,4 L4,4 L4,14 Z" fill-opacity="0.9" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>detail</title>
4
- <g id="detail" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="minus-circle-(Background)"></path>
6
- <g id="编组" transform="translate(1.000000, 1.000000)" fill="#000000">
7
- <path d="M7,14 C3.13400674,14 0,10.8659935 0,7 C0,3.13400674 3.13400674,0 7,0 C10.8659935,0 14,3.13400674 14,7 C14,10.8659935 10.8659935,14 7,14 Z M7,13 C3.68629146,13 1,10.3137083 1,7 C1,3.68629146 3.68629146,1 7,1 C10.3137083,1 13,3.68629146 13,7 C13,10.3137083 10.3137083,13 7,13 Z" id="minus-circle"></path>
8
- <path d="M3.25,7.01241985 C3.25,6.59821239 3.58581543,6.26241985 4,6.26241985 C4.41418457,6.26241985 4.75,6.59821239 4.75,7.01241985 C4.75,7.42662731 4.41418457,7.76241985 4,7.76241985 C3.58581543,7.76241985 3.25,7.42662731 3.25,7.01241985 Z" id="ellipsis"></path>
9
- <path d="M6.25,7.01241985 C6.25,6.59821239 6.58581543,6.26241985 7,6.26241985 C7.41418457,6.26241985 7.75,6.59821239 7.75,7.01241985 C7.75,7.42662731 7.41418457,7.76241985 7,7.76241985 C6.58581543,7.76241985 6.25,7.42662731 6.25,7.01241985 Z" id="ellipsis备份"></path>
10
- <path d="M9.25,7.01241985 C9.25,6.59821239 9.58581543,6.26241985 10,6.26241985 C10.4141846,6.26241985 10.75,6.59821239 10.75,7.01241985 C10.75,7.42662731 10.4141846,7.76241985 10,7.76241985 C9.58581543,7.76241985 9.25,7.42662731 9.25,7.01241985 Z" id="ellipsis备份-2"></path>
11
- </g>
12
- </g>
13
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>close-circle-filled</title>
4
- <g id="close-circle-filled" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="close-circle-filled-(Background)"></path>
6
- <path d="M8,1 C4.13400912,1 1,4.13400483 1,8 C1,11.8659916 4.13400483,15 8,15 C11.8659916,15 15,11.8659954 15,8 C15,4.13400912 11.8659954,1 8,1 Z M8.00001192,7.29075146 L10.3291178,4.94753814 L11.0383558,5.65250731 L8.70499325,8 L11.0383472,10.3474894 L10.3291082,11.0524578 L8.00001144,8.70925426 L5.6709156,11.0524578 L4.9616766,10.3474884 L7.29503059,8 L4.96166778,5.65250683 L5.67090654,4.94753814 L8.00001192,7.29075146 Z" fill-opacity="0.9" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>download</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-464.000000, -591.000000)">
6
- <g id="download" transform="translate(464.000000, 591.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="download-(Background)"></path>
8
- <path d="M8.5,9.57746124 L8.49998093,0.5 L7.49998093,0.5 L7.5,9.57745647 L3.73641205,5.81387091 L3.02930534,6.5209775 L7.64644662,11.1381191 C7.84170875,11.3333813 8.15829124,11.3333813 8.35355339,11.1381192 C8.35355339,11.1381191 8.3535534,11.1381191 8.35355339,11.1381191 L12.9706955,6.52097702 L12.9706955,6.52097702 L12.2635889,5.81386995 L8.5,9.57746124 Z M2,13.0000238 C2,13.5523081 2.44771534,14.0000238 3,14.0000238 L13,14.0000238 C13.5522842,14.0000238 14,13.552309 14,13.0000238 L14,11.0000238 L13,11.0000238 L13,13.0000238 L3,13.0000238 L3,11.0000238 L2,11.0000238 L2,13.0000238 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,15 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>move</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-704.000000, -831.000000)">
6
- <g id="move" transform="translate(704.000000, 831.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="move-(Background)"></path>
8
- <g>
9
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="move-(Background)"></path>
10
- <path d="M4.5,13.5 C4.77614237,13.5 5,13.7238576 5,14 C5,14.2761424 4.77614237,14.5 4.5,14.5 C4.22385763,14.5 4,14.2761424 4,14 C4,13.7238576 4.22385763,13.5 4.5,13.5 Z M11.5,13.5 C11.7761424,13.5 12,13.7238576 12,14 C12,14.2761424 11.7761424,14.5 11.5,14.5 C11.2238576,14.5 11,14.2761424 11,14 C11,13.7238576 11.2238576,13.5 11.5,13.5 Z M4.5,9.5 C4.77614237,9.5 5,9.72385763 5,10 C5,10.2761424 4.77614237,10.5 4.5,10.5 C4.22385763,10.5 4,10.2761424 4,10 C4,9.72385763 4.22385763,9.5 4.5,9.5 Z M11.5,9.5 C11.7761424,9.5 12,9.72385763 12,10 C12,10.2761424 11.7761424,10.5 11.5,10.5 C11.2238576,10.5 11,10.2761424 11,10 C11,9.72385763 11.2238576,9.5 11.5,9.5 Z M4.5,5.5 C4.77614237,5.5 5,5.72385763 5,6 C5,6.27614237 4.77614237,6.5 4.5,6.5 C4.22385763,6.5 4,6.27614237 4,6 C4,5.72385763 4.22385763,5.5 4.5,5.5 Z M11.5,5.5 C11.7761424,5.5 12,5.72385763 12,6 C12,6.27614237 11.7761424,6.5 11.5,6.5 C11.2238576,6.5 11,6.27614237 11,6 C11,5.72385763 11.2238576,5.5 11.5,5.5 Z M4.5,1.5 C4.77614237,1.5 5,1.72385763 5,2 C5,2.27614237 4.77614237,2.5 4.5,2.5 C4.22385763,2.5 4,2.27614237 4,2 C4,1.72385763 4.22385763,1.5 4.5,1.5 Z M11.5,1.5 C11.7761424,1.5 12,1.72385763 12,2 C12,2.27614237 11.7761424,2.5 11.5,2.5 C11.2238576,2.5 11,2.27614237 11,2 C11,1.72385763 11.2238576,1.5 11.5,1.5 Z" id="形状结合" fill="#000000"></path>
11
- </g>
12
- </g>
13
- </g>
14
- </g>
15
- </svg>
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>email-error</title>
4
- <g id="email-error" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="mail-1" opacity="0.900000036">
6
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="mail-1-(Background)"></path>
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="矩形" opacity="9.99999975e-05"></path>
8
- <path d="M13.4990234,2.99890137 C14.0513086,2.99890137 14.4990234,3.44661665 14.4990234,3.99890137 L14.4990234,7.99990137 L13.4990234,7.99990137 L13.4990234,4.93316007 L7.99902344,8.59982681 L2.49902344,4.93315995 L2.49902344,11.9989014 L7.99902344,11.9989014 L7.99902344,12.9989014 L2.49902344,12.9989014 C1.94673866,12.9989014 1.49902344,12.5511866 1.49902344,11.9989014 L1.49902344,3.99890137 C1.49902344,3.44661689 1.94673872,2.99890137 2.49902344,2.99890137 L13.4990234,2.99890137 Z M13.0976353,3.99890137 L2.90041125,3.99890137 L7.99902344,7.39797592 L13.0976353,3.99890137 Z" id="形状结合" fill="#000000"></path>
9
- </g>
10
- <g id="error-circle-filled" transform="translate(9.000000, 9.000000)" fill="#E55E69" fill-opacity="0.9">
11
- <path d="M3.5,0 C1.56700456,0 0,1.56700242 0,3.5 C0,5.4329958 1.56700242,7 3.5,7 C5.4329958,7 7,5.4329977 7,3.5 C7,1.56700456 5.4329977,0 3.5,0 Z M3.74999905,4.24999714 L3.24999905,4.24999714 L3.24999905,1.50015152 L3.74999905,1.50015152 L3.74999905,4.24999714 Z M3.79714251,5 L3.79714251,5.59999704 L3.1971426,5.59999704 L3.1971426,5 L3.79714251,5 Z"></path>
12
- </g>
13
- </g>
14
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>email-warning</title>
4
- <g id="email-warning" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="mail-1" opacity="0.900000036">
6
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="mail-1-(Background)"></path>
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="矩形" opacity="9.99999975e-05"></path>
8
- <path d="M13.4990234,2.99890137 C14.0513086,2.99890137 14.4990234,3.44661665 14.4990234,3.99890137 L14.4990234,7.99990137 L13.4990234,7.99990137 L13.4990234,4.93316007 L7.99902344,8.59982681 L2.49902344,4.93315995 L2.49902344,11.9989014 L7.99902344,11.9989014 L7.99902344,12.9989014 L2.49902344,12.9989014 C1.94673866,12.9989014 1.49902344,12.5511866 1.49902344,11.9989014 L1.49902344,3.99890137 C1.49902344,3.44661689 1.94673872,2.99890137 2.49902344,2.99890137 L13.4990234,2.99890137 Z M13.0976353,3.99890137 L2.90041125,3.99890137 L7.99902344,7.39797592 L13.0976353,3.99890137 Z" id="形状结合" fill="#000000"></path>
9
- </g>
10
- <path d="M12.2528365,9.14692043 C12.3800882,8.95102674 12.634592,8.95102641 12.7618435,9.14692011 L12.7618435,9.14692011 L15.9357967,14.6623188 C16.0930883,14.9044566 15.9434458,15.25 15.6812929,15.25 L15.6812929,15.25 L9.31870675,15.2499996 C9.05655379,15.2499996 8.9069117,14.9044565 9.06420349,14.6623183 L9.06420349,14.6623183 Z M12.8527473,13.5501001 L12.2127055,13.5501001 L12.2127055,14.1965515 L12.8527473,14.1965515 L12.8527473,13.5501001 Z M12.8024815,11.0330283 L12.2690917,11.0330283 L12.2690917,13.0113687 L12.8024815,13.0113687 L12.8024815,11.0330283 Z" id="形状结合" fill="#EE8843"></path>
11
- </g>
12
- </svg>
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>mail-1</title>
4
- <g id="mail-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" opacity="0.900000036">
5
- <g>
6
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="mail-1-(Background)"></path>
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="矩形" opacity="9.99999975e-05"></path>
8
- <g id="mail">
9
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="mail-(Background)"></path>
10
- <path d="M2.49902344,2.99890137 L13.4990234,2.99890137 C14.0513086,2.99890137 14.4990234,3.44661665 14.4990234,3.99890137 L14.4990234,11.9989014 C14.4990234,12.5511856 14.0513077,12.9989014 13.4990234,12.9989014 L2.49902344,12.9989014 C1.94673866,12.9989014 1.49902344,12.5511866 1.49902344,11.9989014 L1.49902344,3.99890137 C1.49902344,3.44661689 1.94673872,2.99890137 2.49902344,2.99890137 Z M2.90041125,3.99890137 L7.99902344,7.39797592 L13.0976353,3.99890137 L2.90041125,3.99890137 Z M2.49902344,11.9989014 L13.4990234,11.9989014 L13.4990234,4.93316007 L7.99902344,8.59982681 L2.49902344,4.93315995 L2.49902344,11.9989014 Z" fill="#000000"></path>
11
- </g>
12
- </g>
13
- </g>
14
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>emailv</title>
4
- <g id="emailv" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="mail-1" opacity="0.900000036">
6
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="mail-1-(Background)"></path>
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="矩形" opacity="9.99999975e-05"></path>
8
- <path d="M13.4990234,2.99890137 C14.0513086,2.99890137 14.4990234,3.44661665 14.4990234,3.99890137 L14.4990234,7.99990137 L13.4990234,7.99990137 L13.4990234,4.93316007 L7.99902344,8.59982681 L2.49902344,4.93315995 L2.49902344,11.9989014 L7.99902344,11.9989014 L7.99902344,12.9989014 L2.49902344,12.9989014 C1.94673866,12.9989014 1.49902344,12.5511866 1.49902344,11.9989014 L1.49902344,3.99890137 C1.49902344,3.44661689 1.94673872,2.99890137 2.49902344,2.99890137 L13.4990234,2.99890137 Z M13.0976353,3.99890137 L2.90041125,3.99890137 L7.99902344,7.39797592 L13.0976353,3.99890137 Z" id="形状结合" fill="#000000"></path>
9
- </g>
10
- <path d="M16,12.5 C16,10.5670034 14.4329967,9 12.5,9 C10.5670034,9 9,10.5670034 9,12.5 C9,14.4329967 10.5670034,16 12.5,16 C14.4329967,16 16,14.4329967 16,12.5 Z M12,13.8534999 L14.25,11.60375 L13.8962498,11.25 L12,13.1465001 L11.10325,12.25 L10.75,12.60325 L12,13.8534999 Z" id="check-circle-filled" fill="#19B07E"></path>
11
- </g>
12
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>error-circle备份</title>
4
- <g id="error-circle备份" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L32,0 L32,32 L0,32 L0,0 Z" id="error-circle-(Background)"></path>
6
- <path d="M17,19 L15,19 L15,8.00073242 L17,8.00073242 L17,19 Z M14.7885742,21 L14.7885742,23.3999023 L17.1884766,23.3999023 L17.1884766,21 L14.7885742,21 Z M16,2 C8.26806641,2 2,8.26806641 2,16 C2,23.7319336 8.26806641,30 16,30 C23.7319336,30 30,23.7319336 30,16 C30,8.26806641 23.7319336,2 16,2 Z M16,4 C9.37255859,4 4,9.37255859 4,16 C4,22.6274414 9.37255859,28 16,28 C22.6274414,28 28,22.6274414 28,16 C28,9.37255859 22.6274414,4 16,4 Z" id="Union" fill-opacity="0.899999976" fill="#E34D59"></path>
7
- </g>
8
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M18.75 10C18.75 5.16751 14.8325 1.25 10 1.25C5.16751 1.25 1.25 5.16751 1.25 10C1.25 14.8325 5.16751 18.75 10 18.75C14.8325 18.75 18.75 14.8325 18.75 10ZM10.625 5.00038V11.875H9.375V5.00038H10.625ZM9.24286 13.75H10.7429V15.25H9.24286V13.75Z" fill="#E34D59"/>
3
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>error-circle</title>
4
- <g id="error-circle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="error-circle-(Background)"></path>
6
- <path d="M8.5,9.5 L7.5,9.5 L7.5,4.00036621 L8.5,4.00036621 L8.5,9.5 Z M7.39428711,10.5 L7.39428711,11.6999512 L8.59423828,11.6999512 L8.59423828,10.5 L7.39428711,10.5 Z M8,1 C4.1340332,1 1,4.1340332 1,8 C1,11.8659668 4.1340332,15 8,15 C11.8659668,15 15,11.8659668 15,8 C15,4.1340332 11.8659668,1 8,1 Z M8,2 C4.6862793,2 2,4.6862793 2,8 C2,11.3137207 4.6862793,14 8,14 C11.3137207,14 14,11.3137207 14,8 C14,4.6862793 11.3137207,2 8,2 Z" id="Union" fill-opacity="0.899999976" fill="#E34D59"></path>
7
- </g>
8
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>jump</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-704.000000, -351.000000)">
6
- <g id="jump" transform="translate(704.000000, 351.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="jump-(Background)"></path>
8
- <path d="M3,14 L13,14 C13.2651072,13.9996424 13.5192537,13.8941717 13.7067127,13.7067127 C13.8941717,13.5192537 13.9996424,13.2651072 14,13 L14,8.5 L13,8.5 L13,13 L3,13 L3,3 L7.5,3 L7.5,2 L3,2 C2.7348932,2.00035717 2.48074675,2.10582875 2.29328775,2.29328775 C2.10582875,2.48074675 2.00035717,2.7348932 2,3 L2,13 C2.00035717,13.2651072 2.10582875,13.5192537 2.29328775,13.7067127 C2.48074675,13.8941717 2.7348932,13.9996424 3,14 Z M9,2 L13.5,2 C13.7761421,2 14,2.22385776 14,2.5 L14,7 L13,7 L13,3.70700002 L8.70699978,8 L8,7.29300022 L12.2930002,3 L9,3 L9,2 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>backtop-rectangle备份</title>
4
- <g id="backtop-rectangle备份" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="backtop-rectangle-(Background)"></path>
6
- <path d="M1.99902344,2.99890137 L1.99902344,12.9989014 C1.99902344,13.5511856 2.4467383,13.9989014 2.99902344,13.9989014 L12.9990234,13.9989014 C13.5513077,13.9989014 13.9990234,13.5511885 13.9990234,12.9989014 L13.9990234,2.99890137 C13.9990234,2.44661874 13.5513105,1.99890137 12.9990234,1.99890137 L2.99902344,1.99890137 C2.44674063,1.99890137 1.99902344,2.44661641 1.99902344,2.99890137 Z" id="backtop-rectangle" fill="#EE8843"></path>
7
- <path d="M3.93749155,5.07062744 L7.64578794,5.07062744 L7.64578794,5.58527695 L4.75529075,5.58527695 L4.75529075,8.21492439 L7.63873796,8.21492439 L7.63873796,8.79302382 C6.83503874,8.81417381 5.67178987,8.83532379 4.14899135,8.85647376 L4.23359126,9.43457319 C7.06063851,9.36407326 9.31663631,9.26537335 10.9874847,9.15257347 C11.2060345,9.38522325 11.3752343,9.57557307 11.4950842,9.73067291 L11.9815337,9.39227324 C11.706584,9.06797356 11.2976844,8.67317395 10.7548349,8.2008244 L11.1848845,8.2008244 L11.1848845,5.58527695 L8.30143731,5.58527695 L8.30143731,5.07062744 L12.0097337,5.07062744 L12.0097337,4.506628 L8.30143731,4.506628 L8.30143731,3.90032858 L7.64578794,3.90032858 L7.64578794,4.506628 L3.93749155,4.506628 L3.93749155,5.07062744 Z M10.5292351,8.70137391 C9.82423582,8.72957388 9.08398654,8.75777386 8.30143731,8.78597383 L8.30143731,8.22197437 L10.3882353,8.22197437 L10.1626355,8.35592425 L10.5292351,8.70137391 Z M8.30143731,7.72847486 L8.30143731,7.12217544 L10.5574351,7.12217544 L10.5574351,7.72847486 L8.30143731,7.72847486 Z M5.38274015,7.72847486 L5.38274015,7.12217544 L7.63873796,7.12217544 L7.63873796,7.72847486 L5.38274015,7.72847486 Z M5.38274015,6.08582646 L7.63873796,6.08582646 L7.63873796,6.67802588 L5.38274015,6.67802588 L5.38274015,6.08582646 Z M10.5574351,6.08582646 L10.5574351,6.67802588 L8.30143731,6.67802588 L8.30143731,6.08582646 L10.5574351,6.08582646 Z M4.75529075,9.81527283 C4.57199093,10.4427222 4.27589122,11.0349216 3.87404161,11.5777711 L4.42394108,11.9232208 C4.82579069,11.3592213 5.13599039,10.696522 5.35454017,9.9351227 L4.75529075,9.81527283 Z M9.21793642,12.0924206 C9.5351861,12.0924206 9.76078589,12.0289707 9.90883575,11.9020708 C10.0780356,11.7469709 10.1908355,11.3451213 10.2542854,10.689472 L9.65503599,10.4991222 C9.61978603,10.9785217 9.55633608,11.2675714 9.46468617,11.3733213 C9.39418624,11.4579212 9.26728637,11.5002212 9.09808654,11.5002212 L7.00423857,11.5002212 C6.7645388,11.5002212 6.65173892,11.4015213 6.65173891,11.2041215 L6.65173891,9.7377229 L6.01723952,9.7377229 L6.01723952,11.3239714 C6.01723952,11.8315709 6.28513926,12.0853706 6.82093875,12.0853706 L9.21793642,12.0853706 L9.21793642,12.0924206 L9.21793642,12.0924206 Z M7.46953812,9.85757279 C7.8995877,10.2523724 8.25913735,10.633072 8.54113708,11.0067217 L9.03463659,10.661272 C8.75968686,10.3228723 8.40013721,9.95627269 7.96303764,9.55442309 L7.46953812,9.85757279 L7.46953812,9.85757279 Z M10.2190354,9.9421727 C10.8041849,10.6119221 11.2553844,11.2182215 11.5867341,11.7469709 L12.1084336,11.4015213 C11.7700339,10.8727718 11.3047344,10.2735224 10.712535,9.62492302 L10.2190354,9.9421727 L10.2190354,9.9421727 Z" id="形状" fill="#FFFFFF" fill-rule="nonzero"></path>
8
- </g>
9
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>filter</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-560.000000, -651.000000)">
6
- <g id="filter" transform="translate(560.000000, 651.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="filter-(Background)"></path>
8
- <path d="M3,2 L13,2 C13.5522842,2 14,2.4477151 14,3 L14,4.78597307 L9.75,7.28597307 L9.75,14 L6.25,14 L6.25,7.28597307 L2,4.78597307 L2,3 C2,2.44771528 2.44771528,2 3,2 Z M3,3 L3,4.21402693 L7.25,6.71402693 L7.25,13 L8.75,13 L8.75,6.71402693 L13,4.21402669 L13,3 L3,3 Z" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>page-first</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-464.000000, -951.000000)">
6
- <g id="page-first" transform="translate(464.000000, 951.000000)">
7
- <path d="M16,0 L16,16 L0,16 L0,0 L16,0 Z" id="矩形" opacity="0.600000024" transform="translate(8.000000, 8.000000) scale(-1, -1) rotate(-90.000003) translate(-8.000000, -8.000000) "></path>
8
- <path d="M6.17538754,5.31047391 L9.71576825,8.85085439 L13.2561487,5.31047391 L14.1753878,6.22971272 L9.71576825,10.689332 L5.25614873,6.22971272 L6.17538754,5.31047391 Z" id="路径-4-(Stroke)" fill="#000000" transform="translate(9.715768, 7.999903) scale(-1, -1) rotate(-90.000003) translate(-9.715768, -7.999903) "></path>
9
- <path d="M4.79560905,4.00000032 L6.095609,4.00000032 L6.095609,12.0000003 L4.79560905,12.0000003 L4.79560905,4.00000032 Z" id="Vector-276-(Stroke)" fill="#000000" transform="translate(5.445609, 8.000000) rotate(-0.000003) translate(-5.445609, -8.000000) "></path>
10
- </g>
11
- </g>
12
- </g>
13
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>folder</title>
4
- <g id="folder" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="folder-(Background)"></path>
6
- <path d="M2.5,2.5 L5.42857146,2.5 L5.5905962,2.5 L5.72182655,2.59502894 L7.6620245,4 L13.5,4 C14.0522852,4 14.5,4.44771528 14.5,5 L14.5,13 C14.5,13.5522852 14.0522842,14 13.5,14 L2.5,14 C1.94771582,14 1.5,13.5522852 1.5,13 L1.5,3.5 C1.5,2.94771469 1.94771558,2.5 2.5,2.5 Z M2.5,3.5 L2.5,13 L13.5,13 L13.5,5 L7.5,5 L7.3379755,5 L7.20674515,4.90497112 L5.26654696,3.5 L2.5,3.5 Z" fill-opacity="0.899999976" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>folder-open</title>
4
- <g id="folder-open" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="folder-open-(Background)"></path>
6
- <path d="M6.4285717,2.74395752 L8.5,4.39467525 L13.5,4.39467525 L13.5,3.39467514 L8.84971762,3.39467514 L6.77828932,1.74395752 L2.5,1.74395752 L2.5,2.74395752 L6.4285717,2.74395752 Z M1.5,5.39465761 L1.5,13.0000305 C1.5,13.5523157 1.9477157,14.0000305 2.5,14.0000305 L13.5,14.0000305 C14.0522852,14.0000305 14.5,13.55231 14.5,13.0000257 L14.5,7.04537106 C14.5,6.49308634 14.0522852,6.04537106 13.5,6.04537106 L8.17485857,6.04537106 L6.10343027,4.39465332 L2.5,4.39465809 C1.94771576,4.39465809 1.5,4.84237242 1.5,5.39465761 Z M5.75371265,5.39465332 L7.82514095,7.04537106 L13.5,7.04537106 L13.5,13.0000257 L2.5,13.0000305 L2.5,5.39465761 L5.75371265,5.39465332 Z" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>fullscreen-exit</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-608.000000, -231.000000)">
6
- <g id="fullscreen-exit" transform="translate(608.000000, 231.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="fullscreen-exit-(Background)"></path>
8
- <path d="M6.50003815,3.00003785 L7.50003815,3.00003779 L7.50003815,7.00003719 C7.50003809,7.27617955 7.2761805,7.50003716 7.00003815,7.50003725 L3.00003803,7.50003767 L3.00003803,7.50003767 L3.00003797,6.50003767 L5.79293156,6.50003719 L2.14648438,2.85359126 L2.85359091,2.14648438 L6.50003815,5.79293084 L6.50003815,3.00003785 Z M9.50003815,13.0000372 L8.50003815,13.0000372 L8.50003815,9.00003767 C8.50003815,8.7238953 8.72389577,8.50003767 9.00003815,8.50003767 L13.0000381,8.50003767 L13.0000381,8.50003767 L13.0000381,9.50003719 L10.2071447,9.50003719 L13.853591,13.1464844 L13.1464844,13.85359 L9.50003815,10.2071438 L9.50003815,13.0000372 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>fullsreen</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-656.000000, -231.000000)">
6
- <g id="fullsreen" transform="translate(656.000000, 231.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="fullsreen-(Background)"></path>
8
- <path d="M3.5,7 L2.5,7 L2.5,3 C2.5,2.72385763 2.72385763,2.5 3,2.5 L7,2.5 L7,2.5 L7,3.5 L4.20710385,3.5 L7.35355425,6.64646101 L6.64644623,7.35356665 L3.5,4.20710969 L3.5,7 Z M12.5,9 L13.5,9 L13.5,13 C13.5,13.2761424 13.2761424,13.5 13,13.5 L9,13.5 L9,13.5 L9,12.5 L11.7928972,12.5 L8.64644575,9.35353231 L9.35355425,8.64642763 L12.5,11.7928886 L12.5,9 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>internet</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-704.000000, -531.000000)">
6
- <g id="internet" transform="translate(704.000000, 531.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="internet-(Background)"></path>
8
- <path d="M8,1 C11.8107638,1 14.9000978,4.08923459 14.9000978,7.89999819 L14.9000978,8.10000134 C14.9000978,11.9107647 11.8108616,15 8.00009775,15 C4.18937898,15 1.10009766,11.9107332 1.10009766,8.10000181 L1.10009766,7.89999866 C1.10009766,4.08926749 4.18928123,1 8,1 Z M10.8869324,8.5 C10.7904816,10.4189825 10.1383924,12.3152466 8.93066502,13.9270306 C11.6183043,13.5011997 13.7019367,11.2605867 13.8867521,8.5 L10.8869324,8.5 Z M8.93066835,2.07297015 C11.6183071,2.49880195 13.7019377,4.73941445 13.8867521,7.5 L10.8869333,7.5 C10.7904844,5.58101749 10.1383963,3.68475413 8.93066835,2.07297015 Z M6.11447573,7.5 C6.21376133,5.72473145 6.84226942,3.97353506 8.00000048,2.50303411 C9.15773106,3.97353506 9.78623962,5.72473145 9.88552475,7.5 L6.11447573,7.5 Z M2.11344326,8.5 C2.29825294,11.2605104 4.38177609,13.5010767 7.06930876,13.9269953 C5.86159849,12.3152189 5.20951748,10.4189682 5.11306715,8.5 L2.11344326,8.5 Z M7.06930542,2.07300532 C4.38177443,2.49892533 2.29825306,4.73949051 2.11344326,7.5 L5.11306715,7.5 C5.20951557,5.5810318 5.86159468,3.68478179 7.06930542,2.07300532 Z M6.11447573,8.5 C6.21376085,10.2752686 6.84226942,12.0264654 8.00000048,13.4969664 C9.15773106,12.0264654 9.78623962,10.2752686 9.88552475,8.5 L6.11447573,8.5 Z" fill-opacity="0.899999976" fill="#000000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>help-circle备份</title>
4
- <g id="help-circle备份" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="help-circle-(Background)"></path>
6
- <path d="M7.99404097,11 C8.32541227,11 8.59404087,11.2686272 8.59404087,11.5999985 C8.59404087,11.9313688 8.32541227,12.1999979 7.99404097,12.1999979 C7.66267014,12.1999979 7.39404106,11.9313688 7.39404106,11.5999985 C7.39404106,11.2686272 7.66267014,11 7.99404097,11 Z M5.56908989,6.4311018 L6.56908989,6.4311018 C6.56908989,5.64574385 7.20873213,5.00610161 7.99409008,5.00610161 C8.77944756,5.00610161 9.41909027,5.64574385 9.41909027,6.4311018 C9.41909027,6.96884918 8.97460175,7.50807762 8.39445019,7.74376488 L8.39189529,7.74481106 C7.86234665,7.96335459 7.49414062,8.48412561 7.49414062,9.09249878 L7.49414062,10 L8.49414062,10 L8.49414062,9.09249878 C8.49414062,8.89827633 8.60944939,8.73731279 8.77236176,8.66960764 C9.59968948,8.3328867 10.4190903,7.49869442 10.4190903,6.4311018 C10.4190903,5.09345913 9.33173275,4.00610137 7.99409008,4.00610137 C6.65644741,4.00610137 5.56908989,5.09345913 5.56908989,6.4311018 Z" id="Union" fill-opacity="0.9" fill="#000000"></path>
7
- <path d="M2,13 L2,3 C2,2.44771481 2.44771683,2 3,2 L13,2 C13.5522871,2 14,2.44771731 14,3 L14,13 C14,13.5522861 13.5522842,14 13,14 L3,14 C2.44771504,14 2,13.5522842 2,13 Z M3,3 L13,3 L13,13 L3,13 L3,3 Z" id="minus-rectangle" fill-opacity="0.899999976" fill="#000000"></path>
8
- </g>
9
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>help-circle</title>
4
- <g id="help-circle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="help-circle-(Background)"></path>
6
- <path d="M7.99404097,11 C8.32541227,11 8.59404087,11.2686272 8.59404087,11.5999985 C8.59404087,11.9313688 8.32541227,12.1999979 7.99404097,12.1999979 C7.66267014,12.1999979 7.39404106,11.9313688 7.39404106,11.5999985 C7.39404106,11.2686272 7.66267014,11 7.99404097,11 Z M5.56908989,6.4311018 L6.56908989,6.4311018 C6.56908989,5.64574385 7.20873213,5.00610161 7.99409008,5.00610161 C8.77944756,5.00610161 9.41909027,5.64574385 9.41909027,6.4311018 C9.41909027,6.96884918 8.97460175,7.50807762 8.39445019,7.74376488 L8.39189529,7.74481106 C7.86234665,7.96335459 7.49414062,8.48412561 7.49414062,9.09249878 L7.49414062,10 L8.49414062,10 L8.49414062,9.09249878 C8.49414062,8.89827633 8.60944939,8.73731279 8.77236176,8.66960764 C9.59968948,8.3328867 10.4190903,7.49869442 10.4190903,6.4311018 C10.4190903,5.09345913 9.33173275,4.00610137 7.99409008,4.00610137 C6.65644741,4.00610137 5.56908989,5.09345913 5.56908989,6.4311018 Z M7.99414062,1 C4.12814975,1 0.994140625,4.13400459 0.994140625,8 C0.994140625,11.8659916 4.12814546,15 7.99414062,15 C11.8601322,15 14.9941406,11.8659954 14.9941406,8 C14.9941406,4.13400888 11.860136,1 7.99414062,1 Z M7.99414062,2 C4.68043423,2 1.99414062,4.68629003 1.99414062,8 C1.99414062,11.3137074 4.68043041,14 7.99414062,14 C11.307847,14 13.9941406,11.3137102 13.9941406,8 C13.9941406,4.68629384 11.3078508,2 7.99414062,2 Z" id="Union" fill-opacity="0.9" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>browse-off</title>
4
- <g id="browse-off" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="browse-off-(Background)"></path>
6
- <path d="M12.1464844,13.3535461 L12.8535156,12.6463928 L3.1496923,2.94256592 L2.44266093,3.64972275 L3.65332031,4.86032224 C2.60522461,5.58541989 1.72753906,6.57559347 1.11694336,7.76986837 L1,7.99984884 L1.11694336,8.22982931 C2.46142578,10.869844 5.1015625,12.4998474 8.00488281,12.4998474 C8.96875,12.4998474 9.90429688,12.3190002 10.7731934,11.9802551 L12.1464844,13.3535461 Z M9.34155273,10.548677 C8.94091797,10.7600417 8.484375,10.8797312 7.99975586,10.8797312 C6.40917969,10.8797312 5.11987305,9.59036398 5.11987305,7.99984884 C5.11987305,7.51529074 5.23950195,7.05868626 5.45092773,6.65799046 L4.36743164,5.57443333 C3.44873047,6.17038059 2.66992188,6.99502707 2.1105957,7.99984884 C3.31860352,10.1698318 5.54980469,11.4998474 8.00488281,11.4998474 C8.68920898,11.4998474 9.35717773,11.3957214 9.99121094,11.1982117 L9.34155273,10.548677 Z M6.11987305,7.99984884 C6.11987305,9.03805685 6.96142578,9.87973166 7.99975586,9.87973166 C8.20263672,9.87973166 8.39794922,9.84756613 8.58105469,9.78811789 L6.21142578,7.41855001 C6.15185547,7.60159445 6.11987305,7.79696798 6.11987305,7.99984884 Z M12.5893555,10.9692688 L11.8808594,10.2609572 C12.6960449,9.68130636 13.3894043,8.91531515 13.8991699,7.99984884 C12.6813965,5.82986593 10.4501953,4.49984872 8.00488281,4.49984872 C7.43139648,4.49984872 6.87011719,4.5724194 6.33129883,4.71133542 L5.53125,3.91116434 C6.31518555,3.64248759 7.14868164,3.49984854 8.00488281,3.49984854 C10.8984375,3.49984854 13.5385742,5.13986349 14.8830566,7.76986837 L15,7.99984884 L14.8830566,8.22982931 C14.3200684,9.33523703 13.5300293,10.2635193 12.5893555,10.9692688 Z M10.6787109,9.05874777 L9.86401367,8.24398947 C9.87426758,8.16409445 9.87963867,8.08255148 9.87963867,7.99984884 C9.87963867,6.96164083 9.0378418,6.12002659 7.99975586,6.12002659 C7.91699219,6.12002659 7.83544922,6.12533665 7.75561523,6.13571262 L6.94091797,5.32089329 C7.26855469,5.19125462 7.62597656,5.12002659 7.99975586,5.12002659 C9.59033203,5.12002659 10.8796387,6.40939474 10.8796387,7.99984884 C10.8796387,8.37375021 10.8083496,8.73098898 10.6787109,9.05874777 Z" fill-opacity="0.9" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>info-circle</title>
4
- <g id="info-circle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="info-circle-(Background)"></path>
6
- <path d="M7.50561523,6.5 L8.50561523,6.5 L8.50561523,11.9997559 L7.50561523,11.9997559 L7.50561523,6.5 Z M7.39990234,4 L7.39990234,5.19995117 L8.59985352,5.19995117 L8.59985352,4 L7.39990234,4 Z M8,15 C11.8659668,15 15,11.8659668 15,8 C15,4.1340332 11.8659668,1 8,1 C4.1340332,1 1,4.1340332 1,8 C1,11.8659668 4.1340332,15 8,15 Z M8,14 C11.3137207,14 14,11.3137207 14,8 C14,4.6862793 11.3137207,2 8,2 C4.6862793,2 2,4.6862793 2,8 C2,11.3137207 4.6862793,14 8,14 Z" fill="#000000"></path>
7
- </g>
8
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>info-circle备份 2</title>
4
- <g id="info-circle备份-2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L32,0 L32,32 L0,32 L0,0 Z" id="info-circle-(Background)"></path>
6
- <path d="M15.0112305,13 L17.0112305,13 L17.0112305,23.9995117 L15.0112305,23.9995117 L15.0112305,13 Z M14.7998047,8 L14.7998047,10.3999023 L17.199707,10.3999023 L17.199707,8 L14.7998047,8 Z M16,30 C23.7319336,30 30,23.7319336 30,16 C30,8.26806641 23.7319336,2 16,2 C8.26806641,2 2,8.26806641 2,16 C2,23.7319336 8.26806641,30 16,30 Z M16,28 C22.6274414,28 28,22.6274414 28,16 C28,9.37255859 22.6274414,4 16,4 C9.37255859,4 4,9.37255859 4,16 C4,22.6274414 9.37255859,28 16,28 Z" id="info-circle" fill="#0052D9"></path>
7
- </g>
8
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 18.75C14.8325 18.75 18.75 14.8325 18.75 10C18.75 5.16751 14.8325 1.25 10 1.25C5.16751 1.25 1.25 5.16751 1.25 10C1.25 14.8325 5.16751 18.75 10 18.75ZM9.24988 5H10.7498V6.49994H9.24988V5ZM9.38202 8.125V14.9997H10.632V8.125H9.38202Z" fill="#0052D9"/>
3
- </svg>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>info-circle备份</title>
4
- <g id="info-circle备份" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="info-circle-(Background)"></path>
6
- <path d="M7.50561523,6.5 L8.50561523,6.5 L8.50561523,11.9997559 L7.50561523,11.9997559 L7.50561523,6.5 Z M7.39990234,4 L7.39990234,5.19995117 L8.59985352,5.19995117 L8.59985352,4 L7.39990234,4 Z M8,15 C11.8659668,15 15,11.8659668 15,8 C15,4.1340332 11.8659668,1 8,1 C4.1340332,1 1,4.1340332 1,8 C1,11.8659668 4.1340332,15 8,15 Z M8,14 C11.3137207,14 14,11.3137207 14,8 C14,4.6862793 11.3137207,2 8,2 C4.6862793,2 2,4.6862793 2,8 C2,11.3137207 4.6862793,14 8,14 Z" id="info-circle" fill="#0052D9"></path>
7
- </g>
8
- </svg>
@@ -1,12 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>jump备份</title>
4
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Icons" transform="translate(-704.000000, -372.000000)">
6
- <g id="jump备份" transform="translate(704.000000, 372.000000)">
7
- <path d="M0,0 L16,0 L16,16 L0,16 L0,0 Z" id="jump-(Background)"></path>
8
- <path d="M3,14 L13,14 C13.2651072,13.9996424 13.5192537,13.8941717 13.7067127,13.7067127 C13.8941717,13.5192537 13.9996424,13.2651072 14,13 L14,8.5 L13,8.5 L13,13 L3,13 L3,3 L7.5,3 L7.5,2 L3,2 C2.7348932,2.00035717 2.48074675,2.10582875 2.29328775,2.29328775 C2.10582875,2.48074675 2.00035717,2.7348932 2,3 L2,13 C2.00035717,13.2651072 2.10582875,13.5192537 2.29328775,13.7067127 C2.48074675,13.8941717 2.7348932,13.9996424 3,14 Z M9,2 L13.5,2 C13.7761421,2 14,2.22385776 14,2.5 L14,7 L13,7 L13,3.70700002 L8.70699978,8 L8,7.29300022 L12.2930002,3 L9,3 L9,2 Z" id="jump" fill="#000"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </svg>