@giteeteam/apps-team-components 1.2.2 → 1.3.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -28
- package/dist/components/common/PriceTag.js +18 -18
- package/dist/components/common/expand-component/index.d.ts +23 -0
- package/dist/components/common/expand-component/index.js +65 -0
- package/dist/components/common/expand-component/style.d.ts +2 -0
- package/dist/components/common/expand-component/style.js +8 -0
- package/dist/components/common/item-icon/ItemIcon.d.ts +8 -0
- package/dist/components/common/item-icon/ItemIcon.js +6 -0
- package/dist/components/common/overflow-tooltip/OverflowTooltip.d.ts +19 -0
- package/dist/components/common/overflow-tooltip/OverflowTooltip.js +54 -0
- package/dist/components/common/overflow-tooltip/style/index.js +13 -13
- package/dist/components/common/style/global.js +2 -2
- package/dist/components/common/style/mixin.d.ts +2 -0
- package/dist/components/common/style/mixin.js +17 -0
- package/dist/components/common/user-field/style/index.js +21 -21
- package/dist/components/common/utils.d.ts +6 -0
- package/dist/components/common/utils.js +54 -0
- package/dist/components/default-empty-icon/config.d.ts +2 -0
- package/dist/components/default-empty-icon/config.js +19 -0
- package/dist/components/default-empty-icon/index.d.ts +5 -0
- package/dist/components/default-empty-icon/index.js +23 -0
- package/dist/components/default-empty-icon/style.d.ts +11 -0
- package/dist/components/default-empty-icon/style.js +64 -0
- package/dist/components/default-empty-icon/types.d.ts +29 -0
- package/dist/components/default-empty-icon/types.js +6 -0
- package/dist/components/field-behavior/fields/type.js +1 -1
- package/dist/components/fields/base-component/types.d.ts +1 -0
- package/dist/components/fields/base-component/utils.d.ts +2 -0
- package/dist/components/fields/base-component/utils.js +9 -0
- package/dist/components/fields/bind-workspace/hooks.js +3 -3
- package/dist/components/fields/bind-workspace/style/index.js +3 -3
- package/dist/components/fields/dropdown/BaseField.d.ts +24 -2
- package/dist/components/fields/dropdown/BaseField.js +562 -1
- package/dist/components/fields/dropdown/Cell.d.ts +4 -0
- package/dist/components/fields/dropdown/Cell.js +6 -0
- package/dist/components/fields/dropdown/ReadView.js +1 -1
- package/dist/components/fields/dropdown/data.d.ts +9 -0
- package/dist/components/fields/dropdown/data.js +26 -0
- package/dist/components/fields/dropdown/hook.d.ts +103 -0
- package/dist/components/fields/dropdown/hook.js +152 -0
- package/dist/components/fields/dropdown/style.d.ts +16 -0
- package/dist/components/fields/dropdown/style.js +90 -0
- package/dist/components/fields/hooks/useViewClass.d.ts +11 -0
- package/dist/components/fields/hooks/useViewClass.js +18 -0
- package/dist/components/fields/hyper-link/style/index.js +14 -14
- package/dist/components/fields/item-type/ItemTypeIcon.d.ts +9 -0
- package/dist/components/fields/item-type/ItemTypeIcon.js +33 -0
- package/dist/components/fields/item-type/style/index.d.ts +1 -0
- package/dist/components/fields/item-type/style/index.js +6 -0
- package/dist/components/fields/key/ReadView.js +2 -2
- package/dist/components/fields/long-text/style/index.js +5 -5
- package/dist/components/fields/priority/ReadView.js +1 -1
- package/dist/components/fields/priority/style/index.js +50 -50
- package/dist/components/fields/status/style/index.js +323 -323
- package/dist/components/fields/tag/style/index.js +5 -5
- package/dist/components/fields/team/style/index.js +2 -2
- package/dist/components/fields/user/style/index.js +8 -8
- package/dist/components/fields/user-group/ReadView.js +1 -1
- package/dist/components/filters/filter-search/utils.d.ts +4 -0
- package/dist/components/filters/filter-search/utils.js +28 -0
- package/dist/components/table-components/EditTableCell.d.ts +1 -0
- package/dist/components/table-components/EditTableCell.js +2 -1
- package/dist/components/table-components/index.js +4 -4
- package/dist/components/table-components/style/index.js +5 -5
- package/dist/components/table-components/utils.js +2 -0
- package/dist/icons/SyncIconFont.d.ts +6 -0
- package/dist/icons/SyncIconFont.js +15 -0
- package/dist/icons/createFromIconFontClass.d.ts +4 -0
- package/dist/icons/createFromIconFontClass.js +33 -0
- package/dist/icons/empty-icon/data-empty.png +0 -0
- package/dist/icons/empty-icon/forbidden.png +0 -0
- package/dist/icons/empty-icon/index.d.ts +1 -0
- package/dist/icons/empty-icon/index.js +8 -0
- package/dist/icons/empty-icon/large-item@2x.png +0 -0
- package/dist/icons/empty-icon/large-workspace@2x.png +0 -0
- package/dist/icons/empty-icon/load-error.png +0 -0
- package/dist/icons/empty-icon/not-found.png +0 -0
- package/dist/icons/empty-icon/small-default@2x.png +0 -0
- package/dist/icons/empty-icon/workspace-empty.svg +127 -0
- package/dist/icons/index.d.ts +58 -1
- package/dist/icons/index.js +294 -0
- package/dist/icons/style/index.d.ts +2 -0
- package/dist/icons/style/index.js +23 -0
- package/dist/icons/svg/DottedCircle.svg +7 -7
- package/dist/icons/svg/HollowCircle.svg +6 -6
- package/dist/icons/svg/Workflow.svg +12 -12
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/lib/app/utils.d.ts +3 -0
- package/dist/lib/app/utils.js +16 -0
- package/dist/lib/config.d.ts +14 -0
- package/dist/lib/config.js +45 -0
- package/dist/lib/constants/code.d.ts +4 -0
- package/dist/lib/constants/code.js +4 -0
- package/dist/lib/constants/field.d.ts +1 -0
- package/dist/lib/constants/field.js +2 -0
- package/dist/lib/contexts/index.js +2 -2
- package/dist/lib/contexts/teamConfig.d.ts +3 -0
- package/dist/lib/contexts/teamConfig.js +19 -4
- package/dist/lib/error/index.d.ts +2 -0
- package/dist/lib/error/index.js +2 -0
- package/dist/lib/error/log.d.ts +10 -0
- package/dist/lib/error/log.js +25 -0
- package/dist/lib/error/utils.d.ts +14 -0
- package/dist/lib/error/utils.js +50 -0
- package/dist/lib/error/withServerError.d.ts +1 -0
- package/dist/lib/error/withServerError.js +1 -0
- package/dist/lib/fetch.d.ts +45 -0
- package/dist/lib/fetch.js +301 -0
- package/dist/lib/global.d.ts +18 -0
- package/dist/lib/global.js +18 -0
- package/dist/lib/i18n.d.ts +1 -0
- package/dist/lib/i18n.js +1 -0
- package/dist/lib/icons/utils.d.ts +23 -0
- package/dist/lib/icons/utils.js +59 -0
- package/dist/lib/path.d.ts +5 -0
- package/dist/lib/path.js +47 -0
- package/dist/lib/router.d.ts +23 -0
- package/dist/lib/router.js +20 -0
- package/dist/lib/storage.d.ts +10 -0
- package/dist/lib/storage.js +62 -0
- package/dist/lib/swr/throttleWithCache.d.ts +17 -0
- package/dist/lib/swr/throttleWithCache.js +108 -0
- package/dist/lib/throttleFetch.d.ts +2 -0
- package/dist/lib/throttleFetch.js +66 -0
- package/dist/lib/useConfig.d.ts +8 -0
- package/dist/lib/useConfig.js +28 -0
- package/dist/locales/index.d.ts +45 -0
- package/dist/locales/index.js +45 -0
- package/dist/public/icons/BulbIcon.svg +1 -0
- package/dist/public/icons/Cloud.svg +1 -0
- package/dist/public/icons/ConsultIcon.svg +1 -0
- package/dist/public/icons/Demo.svg +1 -0
- package/dist/public/icons/ErrorTemplate.svg +1 -0
- package/dist/public/icons/Fail.svg +1 -0
- package/dist/public/icons/Flag.svg +1 -0
- package/dist/public/icons/GiteeIcon.svg +1 -0
- package/dist/public/icons/IntelligenceGradient.svg +1 -0
- package/dist/public/icons/Issue_Approval.svg +1 -0
- package/dist/public/icons/Issue_Bug.svg +1 -0
- package/dist/public/icons/Issue_Demand.svg +1 -0
- package/dist/public/icons/Issue_Doc.svg +1 -0
- package/dist/public/icons/Issue_Idea.svg +1 -0
- package/dist/public/icons/Issue_List.svg +1 -0
- package/dist/public/icons/Issue_Plan.svg +1 -0
- package/dist/public/icons/Issue_Product.svg +1 -0
- package/dist/public/icons/Issue_Risk.svg +1 -0
- package/dist/public/icons/Issue_Story.svg +1 -0
- package/dist/public/icons/Issue_Subtask.svg +1 -0
- package/dist/public/icons/Issue_Task.svg +1 -0
- package/dist/public/icons/Issue_Test.svg +1 -0
- package/dist/public/icons/Issue_TestExcution.svg +1 -0
- package/dist/public/icons/Issue_TestPlan.svg +1 -0
- package/dist/public/icons/Issue_Time.svg +1 -0
- package/dist/public/icons/Issue_develop.svg +1 -0
- package/dist/public/icons/KanbanCover.svg +7 -0
- package/dist/public/icons/ListCover.svg +118 -0
- package/dist/public/icons/ManHour.svg +1 -0
- package/dist/public/icons/MobileIcon.svg +1 -0
- package/dist/public/icons/NoItemType.svg +10 -0
- package/dist/public/icons/ProductIcon.svg +1 -0
- package/dist/public/icons/RedFlagIcon.svg +1 -0
- package/dist/public/icons/Safe.svg +1 -0
- package/dist/public/icons/StarIcon.svg +61 -0
- package/dist/public/icons/StructureCover.svg +1 -0
- package/dist/public/icons/Success.svg +1 -0
- package/dist/public/icons/TeamIcon.svg +1 -0
- package/dist/public/icons/WebIcon.svg +1 -0
- package/dist/public/icons/iconfont.svg +467 -0
- package/dist/public/icons/iconfont.ttf +0 -0
- package/dist/public/icons/iconfont.woff +0 -0
- package/dist/public/icons/iconfont.woff2 +0 -0
- package/dist/public/icons/iconfont_multiple_color.js +1 -0
- package/dist/public/icons/iconfont_single_color.css +912 -0
- package/dist/public/icons/iconfont_single_color.js +1 -0
- package/dist/public/icons/loginBg.svg +1 -0
- package/dist/public/mockServiceWorker.js +284 -0
- package/dist/style/common.d.ts +1 -0
- package/dist/style/common.js +9 -0
- package/dist/style/global.d.ts +1 -0
- package/dist/style/global.js +8 -0
- package/package.json +105 -69
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FF4D0D" /><path d="M746.688 281.6c-42.688 0-132.288-8.512-204.8-76.8-12.8-12.8-34.176-12.8-46.976 0-46.912 25.6-128 76.8-221.824 76.8-21.376 0-34.176 17.088-34.176 38.4v230.4c0 46.912 0 145.088 256 294.4 12.8 4.288 25.6 4.288 34.176 0 251.712-128 256-234.688 256-277.312V320c-4.288-21.312-21.376-38.4-38.4-38.4z m-123.776 256l-128 128c-4.224 8.512-12.8 12.8-25.6 12.8-4.224 0-17.024 0-25.6-8.512-12.8-12.8-12.8-34.176 0-42.688l72.576-76.8H418.112c-12.8 0-25.6-8.512-34.112-21.312s0-25.6 4.288-38.4l115.2-119.488c12.8-12.8 34.112-12.8 42.624 0 21.376 12.8 21.376 38.4 8.576 51.2l-64 59.712h106.624c17.088 0 38.4 12.8 38.4 34.176a23.488 23.488 0 0 1-12.8 21.312z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#29C477" /><path d="M704 192a64 64 0 0 1 64 64v544a32 32 0 0 1-48.96 27.2l-190.08-119.04a32 32 0 0 0-33.92 0l-190.08 119.04A32 32 0 0 1 256 800V256a64 64 0 0 1 64-64h384zM576 320H448a64 64 0 1 0 0 128h128a64 64 0 1 0 0-128z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#0CC0F2" /><path d="M755.2 588.8c-38.4-89.6-115.2-145.088-213.312-162.112v-8.576c42.624-21.312 76.8-59.712 76.8-106.624 0-64-51.2-115.2-115.2-115.2s-115.2 46.912-115.2 110.912c0 51.2 34.112 98.112 81.024 106.688v12.8C375.488 439.488 298.688 499.2 260.288 588.8 221.888 597.312 192 635.712 192 678.4c0 51.2 46.912 98.112 102.4 98.112 55.488 0 102.4-46.912 102.4-98.112 0-38.4-17.088-64-51.2-81.088 17.088-51.2 72.512-85.312 128-93.824v89.6c-38.4 12.8-64 51.2-64 89.6 0 51.2 42.688 93.824 93.888 93.824s93.824-46.912 93.824-93.824c0-38.4-25.6-76.8-55.424-89.6v-89.6c55.424 12.8 106.624 42.624 136.512 93.824-34.112 17.088-51.2 51.2-51.2 81.088 0 51.2 42.688 98.112 102.4 98.112S832 729.6 832 678.4c-8.512-38.4-38.4-76.8-76.8-89.6z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#5EA1FF" /><path d="M250.304 534.784a55.04 55.04 0 0 1 0-79.68 55.04 55.04 0 0 1 79.68 0l121.344 121.344 242.688-242.688a55.04 55.04 0 0 1 79.68 0 55.04 55.04 0 0 1 0 79.616l-280.64 280.64c-19.008 19.008-53.12 22.784-75.84 3.84l-3.84-3.84-163.072-159.232z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#29C477" /><path d="M657.088 209.088c12.8 0 25.6 12.8 25.6 25.6s-12.8 21.312-25.6 21.312H640v128l145.088 285.888c25.6 46.912 21.312 132.224-85.376 132.224h-384c-46.912 0-89.6-42.624-89.6-89.6 0-12.8 4.288-29.824 12.8-42.624L375.488 384V256H358.4c-12.8 0-21.312-12.8-21.312-25.6s12.8-25.6 25.6-25.6h294.4v4.288zM388.288 588.8c-12.8 0-25.6 8.512-29.888 17.088l-29.888 51.2c-12.8 17.024 0 46.912 17.088 55.424 4.288 4.288 12.8 4.288 17.088 4.288h298.624c25.6 0 42.688-17.088 42.688-42.688 0-4.224 0-8.512-4.288-17.024l-29.824-55.488c-4.288-8.512-12.8-12.8-25.6-12.8h-256z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#5EA1FF" /><path d="M512 211.2a300.8 300.8 0 1 0 0 601.6 300.8 300.8 0 0 0 0-601.6z m118.848 333.696L474.176 635.328a37.952 37.952 0 0 1-56.96-32.896V421.568a37.952 37.952 0 0 1 56.96-32.896l156.672 90.432a38.016 38.016 0 0 1 0 65.792z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#FFAA0C" /><path d="M342.656 222.464v21.376c0 18.56 7.424 36.416 20.736 49.536 13.312 13.12 31.36 20.48 50.112 20.48h197.12c18.816 0 36.8-7.36 50.112-20.48a69.76 69.76 0 0 0 20.736-49.536v-21.376h30.784c16.384 0 32 6.4 43.52 17.92 11.584 11.392 18.112 26.88 18.112 43.072v487.616a60.608 60.608 0 0 1-18.048 43.072 61.952 61.952 0 0 1-43.52 17.856H311.808c-16.384 0-32-6.4-43.584-17.856a60.608 60.608 0 0 1-18.048-43.072v-487.68c0-16.128 6.464-31.616 18.048-43.072a61.952 61.952 0 0 1 43.52-17.856h30.848zM599.04 444.032l-2.624 2.752-117.504 139.904-54.4-63.168-2.624-2.688a31.04 31.04 0 0 0-40.768-0.64 30.272 30.272 0 0 0-5.76 39.808l2.304 3.072 78.08 90.752 2.624 2.688a31.04 31.04 0 0 0 41.984-0.256l2.56-2.752 140.8-167.744 2.304-3.136a30.272 30.272 0 0 0-6.336-39.68 31.04 31.04 0 0 0-40.64 1.088z m26.368-249.792a24.256 24.256 0 0 1 7.232 17.28v27.392c0 6.464-2.624 12.672-7.232 17.28a24.768 24.768 0 0 1-17.472 7.04H416.832a24.256 24.256 0 0 1-24.64-24.384v-27.392c0-6.4 2.56-12.672 7.232-17.216a24.768 24.768 0 0 1 17.408-7.168H608c6.592 0 12.8 2.56 17.472 7.168z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1023.2H128.8c-72.8 0-128-55.2-128-128V128.8c0-72 55.2-128 128-128H896c72.8 0 128 55.2 128 128v766.4c0 72-55.2 128-128 128z" fill="#5EA1FF" /><path d="M512.8 212.8c-165.6 0-300 134.4-300 299.2s134.4 299.2 300 299.2 300-134.4 300-299.2-134.4-299.2-300-299.2z m170.4 313.6c0 20.8-16.8 37.6-37.6 37.6H508c-20.8 0-37.6-16.8-37.6-37.6V339.2c0-20.8 16.8-37.6 37.6-37.6s37.6 16.8 37.6 37.6v149.6h100c20.8 0 37.6 16.8 37.6 37.6z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1024H128c-72.512 0-128-55.488-128-128V128C0 55.488 55.488 0 128 0h768c72.512 0 128 55.488 128 128v768c0 72.512-55.488 128-128 128z" fill="#0CC0F2" /><path d="M520.512 298.688L409.6 704c-4.288 25.6 8.512 51.2 34.112 55.488 25.6 8.512 51.2-4.288 59.776-34.176L614.4 324.288c4.288-25.6-8.512-55.488-34.112-64-29.888-4.288-55.488 17.024-59.776 38.4z" fill="#FFFFFF" /><path d="M349.888 422.4L226.112 546.112c-17.024 21.376-42.624 21.376-64 0-21.312-21.312-21.312-42.624 0-64L285.888 358.4c21.312-17.088 42.624-17.088 64 0 12.8 21.312 12.8 46.912 0 64z" fill="#FFFFFF" /><path d="M166.4 546.112L290.112 665.6c21.376 17.088 42.688 17.088 64 0a40 40 0 0 0 0-64L230.4 482.112c-17.088-21.312-42.688-21.312-64 0-21.312 17.088-21.312 42.688 0 64z" fill="#FFFFFF" /><path d="M674.112 422.4L793.6 546.112c21.312 21.376 46.912 21.376 64 0 21.312-21.312 21.312-42.624 0-64L738.112 358.4c-21.312-17.088-42.624-17.088-64 0-12.8 21.312-12.8 46.912 0 64z" fill="#FFFFFF" /><path d="M857.6 546.112L738.112 665.6c-21.312 17.088-42.624 17.088-64 0a40 40 0 0 1 0-64L793.6 477.888c21.312-17.088 46.912-17.088 64 0 17.088 21.312 17.088 46.912 0 68.224z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="122" height="77" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>敏捷</title><defs><filter x="-1.2%" y="-2%" width="102.5%" height="104%" filterUnits="objectBoundingBox" id="a"><feOffset in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.3 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="d"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="f"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0993498689 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="h"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="j"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.102300044 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-8.3%" width="113.3%" height="133.3%" filterUnits="objectBoundingBox" id="l"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.099295236 0" in="shadowBlurOuter1"/></filter><rect id="b" x="0" y="0" width="120" height="75" rx="4"/><rect id="e" x="0" y="0" width="30" height="12" rx="2"/><rect id="g" x="0" y="0" width="30" height="12" rx="2"/><rect id="i" x="0" y="0" width="30" height="12" rx="2"/><rect id="k" x="0" y="0" width="30" height="12" rx="2"/><rect id="m" x="0" y="0" width="30" height="12" rx="2"/><linearGradient x1="92.948%" y1="50%" x2="7.155%" y2="50%" id="c"><stop stop-color="#B0D6FF" offset="0%"/><stop stop-color="#5EA1FF" offset="100%"/></linearGradient><linearGradient x1="77.138%" y1="10.756%" x2="17.264%" y2="94.947%" id="n"><stop stop-color="#0DC7FF" offset="0%"/><stop stop-color="#09B866" offset="100%"/></linearGradient><linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="o"><stop stop-color="#0DC7FF" offset="0%"/><stop stop-color="#0C62FF" offset="100%"/></linearGradient><linearGradient x1="0%" y1="50%" x2="92.508%" y2="50%" id="r"><stop stop-color="#E6F3FF" offset="0%"/><stop stop-color="#0C62FF" offset="100%"/></linearGradient><path id="p" d="M0 0h18v6.273H0z"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(1 1)"><use fill="#000" filter="url(#a)" xlink:href="#b"/><use fill="#FFF" xlink:href="#b"/></g><path d="M1 10h120v62a4 4 0 0 1-4 4H5a4 4 0 0 1-4-4V10Z" fill="#F5FAFF"/><path stroke="#EAF2F8" stroke-linecap="square" d="M1.6 10.3h118.8"/><g transform="translate(8.2 5.2)" stroke-width=".2"><circle stroke="#F26D71" fill="#FF7669" cx="1.2" cy="1.2" r="1.1"/><circle stroke="#EFD279" fill="#FFDD7F" cx="8.4" cy="1.2" r="1.1"/><circle stroke="#27D0A1" fill="#29E9A5" cx="15.6" cy="1.2" r="1.1"/></g><path fill="#EAF2F8" d="M40 10h1v66h-1zM80.8 10h1v66h-1z"/><g transform="translate(5.8 14.8)"><rect fill="url(#c)" width="16.8" height="6" rx="3"/><text font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFF">
|
|
2
|
+
<tspan x="3" y="4.6">To Do</tspan>
|
|
3
|
+
</text></g><g transform="translate(5.8 25.6)"><use fill="#000" filter="url(#d)" xlink:href="#e"/><use fill="#FFF" xlink:href="#e"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(5.8 42.4)"><rect fill="#E6F3FF" width="30" height="12" rx="2"/><rect fill="#0C62FF" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#0C62FF" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#0C62FF" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(5.8 59.2)"><use fill="#000" filter="url(#f)" xlink:href="#g"/><use fill="#FFF" xlink:href="#g"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(45.4 14.8)"><rect fill="url(#c)" width="16.8" height="6" rx="3"/><text font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFF">
|
|
4
|
+
<tspan x="3" y="4.6">Doing</tspan>
|
|
5
|
+
</text></g><g transform="translate(45.4 59.2)"><use fill="#000" filter="url(#h)" xlink:href="#i"/><use fill="#FFF" xlink:href="#i"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(85.6 14.8)"><rect fill="url(#c)" width="16.8" height="6" rx="3"/><text font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFF">
|
|
6
|
+
<tspan x="3" y="4.6">Done</tspan>
|
|
7
|
+
</text></g><g transform="translate(85.6 25.6)"><use fill="#000" filter="url(#j)" xlink:href="#k"/><use fill="#FFF" xlink:href="#k"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(85.6 42.4)"><rect fill="#DFF7E8" width="30" height="12" rx="2"/><rect fill="#09B866" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#09B866" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#09B866" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><g transform="translate(85.6 59.2)"><use fill="#000" filter="url(#l)" xlink:href="#m"/><use fill="#FFF" xlink:href="#m"/><rect fill="#DADDE3" x="7.8" y="2.4" width="9.6" height="2.4" rx="1.2"/><rect fill="#DADDE3" x="3" y="7.2" width="24" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="2.4" width="2.4" height="2.4" rx="1"/></g><path d="M24.872 4.94s-3.348-2.112-7.28 0c0 0-3.771 1.56-2.99 7.542 0 0 .064 1.462 1.56 3.114H11.48s-2.86-6.04 1.202-11.5c0 0 1.82-2.885 5.786-3.803 0 0 5.85-1.138 8.483 1.072l-2.08 1.122V4.94Z" fill="url(#n)" transform="translate(39.4 29.8)"/><path d="M16.714 17.585h5.525s3.51-.65 4.713-3.267c0 0 1.203-1.382.834-4.667 0 0-.183-2.467-1.321-3.54l-.975.552s.91-1.885.585-3.477c0 0 .553-.553 3.803-.585l-.423.682s1.755 2.254 2.243 5.011c0 0 1.072 4.61-1.495 8.478 0 0-.78 1.657-3.413 3.445 0 0-2.026 1.398-3.966 1.398h-6.11l1.333-2.016-1.333-2.014Z" fill="url(#o)" transform="translate(39.4 29.8)"/><g transform="translate(64.695 46.247)"><mask id="q" fill="#fff"><use xlink:href="#p"/></mask><path d="M0 5.168s3.348-.748 5.233-3.9h10.155V0l2.275 3.152-2.145 3.121-.032-1.105H0Z" fill="#09B866" mask="url(#q)"/></g><path fill="url(#r)" d="M0 17.552h14.341v-1.235l2.373 3.267-2.21 3.136v-1.105H0z" transform="translate(39.4 29.8)"/></g></svg>
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="122px" height="77px" viewBox="0 0 122 77" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>缺陷</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<rect id="path-1" x="0" y="0" width="120" height="75" rx="4"></rect>
|
|
6
|
+
<filter x="-1.2%" y="-2.0%" width="102.5%" height="104.0%" filterUnits="objectBoundingBox" id="filter-2">
|
|
7
|
+
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
8
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
9
|
+
<feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.3 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
10
|
+
</filter>
|
|
11
|
+
<linearGradient x1="92.9482608%" y1="50%" x2="7.1547607%" y2="50%" id="linearGradient-3">
|
|
12
|
+
<stop stop-color="#B0D6FF" offset="0%"></stop>
|
|
13
|
+
<stop stop-color="#5EA1FF" offset="100%"></stop>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<rect id="path-4" x="0" y="0" width="110.4" height="10.8" rx="2"></rect>
|
|
16
|
+
<filter x="-1.8%" y="-9.3%" width="103.6%" height="137.0%" filterUnits="objectBoundingBox" id="filter-5">
|
|
17
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
18
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
19
|
+
<feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
20
|
+
</filter>
|
|
21
|
+
<linearGradient x1="98.6581951%" y1="50%" x2="0%" y2="50%" id="linearGradient-6">
|
|
22
|
+
<stop stop-color="#EFF0F3" offset="0%"></stop>
|
|
23
|
+
<stop stop-color="#DADDE3" offset="100%"></stop>
|
|
24
|
+
</linearGradient>
|
|
25
|
+
<rect id="path-7" x="0" y="0" width="110.4" height="10.8" rx="2"></rect>
|
|
26
|
+
<filter x="-1.8%" y="-9.3%" width="103.6%" height="137.0%" filterUnits="objectBoundingBox" id="filter-8">
|
|
27
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
28
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
29
|
+
<feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
30
|
+
</filter>
|
|
31
|
+
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-9">
|
|
32
|
+
<stop stop-color="#EFF0F3" offset="0%"></stop>
|
|
33
|
+
<stop stop-color="#DADDE3" offset="100%"></stop>
|
|
34
|
+
</linearGradient>
|
|
35
|
+
<rect id="path-10" x="0" y="0" width="110.4" height="10.8" rx="2"></rect>
|
|
36
|
+
<filter x="-1.8%" y="-9.3%" width="103.6%" height="137.0%" filterUnits="objectBoundingBox" id="filter-11">
|
|
37
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
38
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
39
|
+
<feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
40
|
+
</filter>
|
|
41
|
+
<linearGradient x1="98.7708465%" y1="50%" x2="0%" y2="50%" id="linearGradient-12">
|
|
42
|
+
<stop stop-color="#EFF0F3" offset="0%"></stop>
|
|
43
|
+
<stop stop-color="#DADDE3" offset="100%"></stop>
|
|
44
|
+
</linearGradient>
|
|
45
|
+
</defs>
|
|
46
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
47
|
+
<g id="添加空白空间模版" transform="translate(-376.000000, -564.000000)">
|
|
48
|
+
<g id="编组-4" transform="translate(62.000000, 71.000000)">
|
|
49
|
+
<g id="缺陷" transform="translate(315.000000, 494.000000)">
|
|
50
|
+
<g id="矩形">
|
|
51
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
|
|
52
|
+
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-1"></use>
|
|
53
|
+
</g>
|
|
54
|
+
<path d="M0,9 L120,9 L120,71 C120,73.209139 118.209139,75 116,75 L4,75 C1.790861,75 2.705415e-16,73.209139 0,71 L0,9 L0,9 Z" id="矩形" fill="#F5FAFF"></path>
|
|
55
|
+
<g id="编组-6" transform="translate(4.800000, 13.800000)">
|
|
56
|
+
<rect id="矩形" fill="url(#linearGradient-3)" x="0" y="0" width="14" height="6" rx="3"></rect>
|
|
57
|
+
<text id="缺陷" font-family="PingFangSC-Medium, PingFang SC" font-size="4" font-weight="400" fill="#FFFFFF">
|
|
58
|
+
<tspan x="3" y="4.6">缺陷</tspan>
|
|
59
|
+
</text>
|
|
60
|
+
</g>
|
|
61
|
+
<line x1="0.6" y1="9.3" x2="119.4" y2="9.3" id="直线" stroke="#EAF2F8" stroke-linecap="square"></line>
|
|
62
|
+
<g id="编组-4" transform="translate(7.200000, 4.200000)" stroke-width="0.2">
|
|
63
|
+
<circle id="椭圆形" stroke="#F26D71" fill="#FF7669" cx="1.2" cy="1.2" r="1.1"></circle>
|
|
64
|
+
<circle id="椭圆形" stroke="#EFD279" fill="#FFDD7F" cx="8.4" cy="1.2" r="1.1"></circle>
|
|
65
|
+
<circle id="椭圆形" stroke="#27D0A1" fill="#29E9A5" cx="15.6" cy="1.2" r="1.1"></circle>
|
|
66
|
+
</g>
|
|
67
|
+
<g id="编组-5" transform="translate(4.800000, 25.800000)">
|
|
68
|
+
<g id="矩形">
|
|
69
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-5)" xlink:href="#path-4"></use>
|
|
70
|
+
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-4"></use>
|
|
71
|
+
</g>
|
|
72
|
+
<rect id="矩形" fill="url(#linearGradient-6)" x="11.4" y="4.2" width="46.2" height="2.4" rx="1.2"></rect>
|
|
73
|
+
<rect id="矩形" fill="#5EA1FF" x="69.6" y="4.2" width="12" height="2.4" rx="1.2"></rect>
|
|
74
|
+
<rect id="矩形" fill="#DADDE3" x="93" y="4.2" width="12" height="2.4" rx="1.2"></rect>
|
|
75
|
+
<g id="编组" transform="translate(3.000000, 3.000000)" fill-rule="nonzero">
|
|
76
|
+
<g id="bug">
|
|
77
|
+
<path d="M4.2,4.8 L0.6,4.8 C0.26,4.8 0,4.54 0,4.2 L0,0.6 C0,0.26 0.26,0 0.6,0 L4.2,0 C4.54,0 4.8,0.26 4.8,0.6 L4.8,4.2 C4.8,4.54 4.54,4.8 4.2,4.8 Z" id="路径" fill="#FFC414"></path>
|
|
78
|
+
<path d="M3.8,2.58 C3.8,2.66 3.7,2.76 3.62,2.76 L3.32,2.76 L3.32,2.86 C3.32,2.98 3.28,3.1 3.22,3.18 L3.54,3.52 C3.6,3.58 3.6,3.7 3.54,3.76 C3.48,3.82 3.36,3.82 3.3,3.76 L3,3.46 C2.84,3.58 2.7,3.64 2.48,3.64 L2.48,2.28 C2.48,2.26 2.44,2.22 2.42,2.22 L2.3,2.22 C2.26,2.22 2.24,2.24 2.24,2.28 L2.24,3.64 C2.06,3.64 1.88,3.58 1.72,3.46 L1.42,3.76 C1.36,3.82 1.24,3.82 1.18,3.76 C1.12,3.7 1.12,3.58 1.18,3.52 L1.5,3.2 C1.44,3.12 1.42,2.98 1.42,2.88 L1.42,2.78 L1.18,2.78 C1.08,2.78 1,2.7 1,2.6 C0.96,2.5 1.04,2.4 1.14,2.4 L1.44,2.4 L1.44,2.08 L1.2,1.8 C1.14,1.74 1.14,1.62 1.2,1.56 C1.26,1.5 1.38,1.5 1.48,1.56 L1.78,1.86 L3.08,1.86 L3.38,1.56 C3.44,1.5 3.56,1.5 3.62,1.56 C3.68,1.62 3.68,1.74 3.62,1.8 L3.36,2.08 L3.36,2.4 L3.66,2.4 C3.76,2.4 3.84,2.5 3.8,2.58 Z M2.4,0.98 C2.08,0.98 1.78,1.24 1.78,1.6 L3.04,1.6 C3.04,1.26 2.76,0.98 2.4,0.98 Z" id="形状" fill="#FFFFFF"></path>
|
|
79
|
+
</g>
|
|
80
|
+
</g>
|
|
81
|
+
</g>
|
|
82
|
+
<g id="编组-5" transform="translate(4.800000, 41.400000)">
|
|
83
|
+
<g id="矩形">
|
|
84
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-8)" xlink:href="#path-7"></use>
|
|
85
|
+
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-7"></use>
|
|
86
|
+
</g>
|
|
87
|
+
<rect id="矩形" fill="url(#linearGradient-9)" x="11.4" y="4.2" width="19.2" height="2.4" rx="1.2"></rect>
|
|
88
|
+
<rect id="矩形" fill="#FFD15E" x="69.6" y="4.2" width="12" height="2.4" rx="1.2"></rect>
|
|
89
|
+
<rect id="矩形" fill="#DADDE3" x="93" y="4.2" width="12" height="2.4" rx="1.2"></rect>
|
|
90
|
+
<rect id="矩形" fill="#DADDE3" x="3" y="3" width="4.8" height="4.8" rx="1"></rect>
|
|
91
|
+
<g id="编组" transform="translate(3.000000, 3.000000)" fill-rule="nonzero">
|
|
92
|
+
<g id="bug">
|
|
93
|
+
<path d="M4.2,4.8 L0.6,4.8 C0.26,4.8 0,4.54 0,4.2 L0,0.6 C0,0.26 0.26,0 0.6,0 L4.2,0 C4.54,0 4.8,0.26 4.8,0.6 L4.8,4.2 C4.8,4.54 4.54,4.8 4.2,4.8 Z" id="路径" fill="#FFC414"></path>
|
|
94
|
+
<path d="M3.8,2.58 C3.8,2.66 3.7,2.76 3.62,2.76 L3.32,2.76 L3.32,2.86 C3.32,2.98 3.28,3.1 3.22,3.18 L3.54,3.52 C3.6,3.58 3.6,3.7 3.54,3.76 C3.48,3.82 3.36,3.82 3.3,3.76 L3,3.46 C2.84,3.58 2.7,3.64 2.48,3.64 L2.48,2.28 C2.48,2.26 2.44,2.22 2.42,2.22 L2.3,2.22 C2.26,2.22 2.24,2.24 2.24,2.28 L2.24,3.64 C2.06,3.64 1.88,3.58 1.72,3.46 L1.42,3.76 C1.36,3.82 1.24,3.82 1.18,3.76 C1.12,3.7 1.12,3.58 1.18,3.52 L1.5,3.2 C1.44,3.12 1.42,2.98 1.42,2.88 L1.42,2.78 L1.18,2.78 C1.08,2.78 1,2.7 1,2.6 C0.96,2.5 1.04,2.4 1.14,2.4 L1.44,2.4 L1.44,2.08 L1.2,1.8 C1.14,1.74 1.14,1.62 1.2,1.56 C1.26,1.5 1.38,1.5 1.48,1.56 L1.78,1.86 L3.08,1.86 L3.38,1.56 C3.44,1.5 3.56,1.5 3.62,1.56 C3.68,1.62 3.68,1.74 3.62,1.8 L3.36,2.08 L3.36,2.4 L3.66,2.4 C3.76,2.4 3.84,2.5 3.8,2.58 Z M2.4,0.98 C2.08,0.98 1.78,1.24 1.78,1.6 L3.04,1.6 C3.04,1.26 2.76,0.98 2.4,0.98 Z" id="形状" fill="#FFFFFF"></path>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
97
|
+
</g>
|
|
98
|
+
<g id="编组-5" transform="translate(4.800000, 57.000000)">
|
|
99
|
+
<g id="矩形">
|
|
100
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-11)" xlink:href="#path-10"></use>
|
|
101
|
+
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-10"></use>
|
|
102
|
+
</g>
|
|
103
|
+
<rect id="矩形" fill="url(#linearGradient-12)" x="11.4" y="4.2" width="40.8" height="2.4" rx="1.2"></rect>
|
|
104
|
+
<rect id="矩形" fill="#4DD18B" x="69.6" y="4.2" width="12" height="2.4" rx="1.2"></rect>
|
|
105
|
+
<rect id="矩形" fill="#DADDE3" x="93" y="4.2" width="12" height="2.4" rx="1.2"></rect>
|
|
106
|
+
<rect id="矩形" fill="#DADDE3" x="3" y="3" width="4.8" height="4.8" rx="1"></rect>
|
|
107
|
+
<g id="编组" transform="translate(3.000000, 3.000000)" fill-rule="nonzero">
|
|
108
|
+
<g id="bug">
|
|
109
|
+
<path d="M4.2,4.8 L0.6,4.8 C0.26,4.8 0,4.54 0,4.2 L0,0.6 C0,0.26 0.26,0 0.6,0 L4.2,0 C4.54,0 4.8,0.26 4.8,0.6 L4.8,4.2 C4.8,4.54 4.54,4.8 4.2,4.8 Z" id="路径" fill="#FFC414"></path>
|
|
110
|
+
<path d="M3.8,2.58 C3.8,2.66 3.7,2.76 3.62,2.76 L3.32,2.76 L3.32,2.86 C3.32,2.98 3.28,3.1 3.22,3.18 L3.54,3.52 C3.6,3.58 3.6,3.7 3.54,3.76 C3.48,3.82 3.36,3.82 3.3,3.76 L3,3.46 C2.84,3.58 2.7,3.64 2.48,3.64 L2.48,2.28 C2.48,2.26 2.44,2.22 2.42,2.22 L2.3,2.22 C2.26,2.22 2.24,2.24 2.24,2.28 L2.24,3.64 C2.06,3.64 1.88,3.58 1.72,3.46 L1.42,3.76 C1.36,3.82 1.24,3.82 1.18,3.76 C1.12,3.7 1.12,3.58 1.18,3.52 L1.5,3.2 C1.44,3.12 1.42,2.98 1.42,2.88 L1.42,2.78 L1.18,2.78 C1.08,2.78 1,2.7 1,2.6 C0.96,2.5 1.04,2.4 1.14,2.4 L1.44,2.4 L1.44,2.08 L1.2,1.8 C1.14,1.74 1.14,1.62 1.2,1.56 C1.26,1.5 1.38,1.5 1.48,1.56 L1.78,1.86 L3.08,1.86 L3.38,1.56 C3.44,1.5 3.56,1.5 3.62,1.56 C3.68,1.62 3.68,1.74 3.62,1.8 L3.36,2.08 L3.36,2.4 L3.66,2.4 C3.76,2.4 3.84,2.5 3.8,2.58 Z M2.4,0.98 C2.08,0.98 1.78,1.24 1.78,1.6 L3.04,1.6 C3.04,1.26 2.76,0.98 2.4,0.98 Z" id="形状" fill="#FFFFFF"></path>
|
|
111
|
+
</g>
|
|
112
|
+
</g>
|
|
113
|
+
</g>
|
|
114
|
+
</g>
|
|
115
|
+
</g>
|
|
116
|
+
</g>
|
|
117
|
+
</g>
|
|
118
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M896 1023.2H128.8c-72.8 0-128-55.2-128-128V128.8c0-72 55.2-128 128-128H896c72.8 0 128 55.2 128 128v766.4c0 72-55.2 128-128 128z" fill="#5EA1FF" /><path d="M512.8 212.8c-165.6 0-300 134.4-300 299.2s134.4 299.2 300 299.2 300-134.4 300-299.2-134.4-299.2-300-299.2z m170.4 313.6c0 20.8-16.8 37.6-37.6 37.6H508c-20.8 0-37.6-16.8-37.6-37.6V339.2c0-20.8 16.8-37.6 37.6-37.6s37.6 16.8 37.6 37.6v149.6h100c20.8 0 37.6 16.8 37.6 37.6z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#0CC0F2" /><path d="M277.333333 149.333333m45.333334 0l378.666666 0q45.333333 0 45.333334 45.333334l0 634.666666q0 45.333333-45.333334 45.333334l-378.666666 0q-45.333333 0-45.333334-45.333334l0-634.666666q0-45.333333 45.333334-45.333334Z" fill="#1F2B47" /><path d="M322.026667 194.666667m22.677333 0l334.592 0q22.677333 0 22.677333 22.677333l0 589.312q0 22.677333-22.677333 22.677333l-334.592 0q-22.677333 0-22.677333-22.677333l0-589.312q0-22.677333 22.677333-22.677333Z" fill="#FFFFFF" /><path d="M701.973333 217.344v589.333333c0 12.501333-10.154667 22.656-22.677333 22.656H344.704c-6.613333 0-12.586667-2.837333-16.725333-7.36L696.021333 202.026667c3.690667 4.053333 5.952 9.408 5.952 15.296z" fill="#B0D6FF" /><path d="M433.770667 172.010667m22.677333 0l111.082667 0q22.677333 0 22.677333 22.677333l0-0.021333q0 22.677333-22.677333 22.677333l-111.082667 0q-22.677333 0-22.677333-22.677333l0 0.021333q0-22.677333 22.677333-22.677333Z" fill="#1F2B47" /><path d="M362.666667 704m21.333333 0l256 0q21.333333 0 21.333333 21.333333l0 42.666667q0 21.333333-21.333333 21.333333l-256 0q-21.333333 0-21.333333-21.333333l0-42.666667q0-21.333333 21.333333-21.333333Z" fill="#5EA1FF" /><path d="M362.666667 277.333333m21.333333 0l42.666667 0q21.333333 0 21.333333 21.333334l0 42.666666q0 21.333333-21.333333 21.333334l-42.666667 0q-21.333333 0-21.333333-21.333334l0-42.666666q0-21.333333 21.333333-21.333334Z" fill="#09B866" /><path d="M469.333333 277.333333m21.333334 0l42.666666 0q21.333333 0 21.333334 21.333334l0 42.666666q0 21.333333-21.333334 21.333334l-42.666666 0q-21.333333 0-21.333334-21.333334l0-42.666666q0-21.333333 21.333334-21.333334Z" fill="#FFD20C" /><path d="M576 277.333333m21.333333 0l42.666667 0q21.333333 0 21.333333 21.333334l0 42.666666q0 21.333333-21.333333 21.333334l-42.666667 0q-21.333333 0-21.333333-21.333334l0-42.666666q0-21.333333 21.333333-21.333334Z" fill="#5EA1FF" /><path d="M362.666667 384m21.333333 0l42.666667 0q21.333333 0 21.333333 21.333333l0 42.666667q0 21.333333-21.333333 21.333333l-42.666667 0q-21.333333 0-21.333333-21.333333l0-42.666667q0-21.333333 21.333333-21.333333Z" fill="#8870FF" /><path d="M469.333333 384m21.333334 0l42.666666 0q21.333333 0 21.333334 21.333333l0 42.666667q0 21.333333-21.333334 21.333333l-42.666666 0q-21.333333 0-21.333334-21.333333l0-42.666667q0-21.333333 21.333334-21.333333Z" fill="#FFAA0D" /></svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
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>无类型</title>
|
|
4
|
+
<g id="无类型" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<path d="M4.14654374,15 L2.14654374,15 L2.146,16 L4.146,16 L4.14654374,15 Z M8.14654374,15 L6.14654374,15 L6.146,16 L8.146,16 L8.14654374,15 Z M12.1465437,15 L10.1465437,15 L10.146,16 L12.146,16 L12.1465437,15 Z M15.7959147,14.9042071 L14.8970197,14.4660429 C14.7457581,14.7765903 14.4422281,14.9774218 14.0659016,14.998196 L14.1209516,15.9966796 C14.8714777,15.9552725 15.4910546,15.5298591 15.7959147,14.9042071 Z M1,13.2198156 L0,13.219 L0,14 C0,14.4360712 0.128307386,14.8326633 0.350743846,15.1555978 L1.17410523,14.5880802 C1.06179788,14.4249121 1,14.2245574 1,14 L1,13.2198156 Z M16,10.926 L15,10.9267281 L15,12.9267281 L16,12.926 L16,10.926 Z M1,9.21981562 L0,9.219 L0,11.219 L1,11.2198156 L1,9.21981562 Z M16,6.926 L15,6.92672813 L15,8.92672813 L16,8.926 L16,6.926 Z M1,5.21981562 L0,5.219 L0,7.219 L1,7.21981562 L1,5.21981562 Z M16,2.926 L15,2.92672813 L15,4.92672813 L16,4.926 L16,2.926 Z M0.14358533,1.23300263 C0.0506908643,1.46741306 0,1.72590793 0,2 L0,3.219 L1,3.21981562 L1,2 C1,1.85614142 1.0253456,1.72232244 1.07321514,1.60149745 L0.14358533,1.23300263 Z M14,0 L13.706,0 L13.7069125,1 L14,1 C14.3843741,1 14.7000017,1.18274097 14.8692265,1.48115143 L15.7391127,0.987898843 C15.3998278,0.389574725 14.7598485,0 14,0 Z M3.706,0 L2,0 C1.89306165,0 1.78849752,0.00771620431 1.68681166,0.022644557 L1.83210984,1.01203247 C1.88275482,1.00459957 1.9349397,1.00055854 1.98852989,1.00005393 L3.70696938,1 L3.706,0 Z M7.706,0 L5.706,0 L5.70691251,1 L7.70691251,1 L7.706,0 Z M11.706,0 L9.706,0 L9.70691251,1 L11.7069125,1 L11.706,0 Z" id="路径" fill="#B5BAC5" fill-rule="nonzero"></path>
|
|
6
|
+
<g id="?" transform="translate(5.380000, 3.760000)" fill="#B5BAC5" fill-rule="nonzero">
|
|
7
|
+
<path d="M2.844,0 C1.968,0 1.272,0.252 0.768,0.768 C0.252,1.272 0,1.956 0,2.832 L1.272,2.832 C1.272,2.304 1.38,1.884 1.596,1.596 C1.836,1.26 2.232,1.092 2.772,1.092 C3.204,1.092 3.54,1.212 3.78,1.452 C4.008,1.692 4.128,2.016 4.128,2.436 C4.128,2.748 4.02,3.036 3.804,3.312 L3.6,3.54 C2.856,4.2 2.4,4.692 2.232,5.028 C2.076,5.34 2.004,5.724 2.004,6.168 L2.004,6.372 L3.288,6.372 L3.288,6.168 C3.288,5.868 3.348,5.604 3.48,5.364 C3.588,5.148 3.756,4.944 3.972,4.752 C4.548,4.26 4.884,3.948 4.992,3.816 C5.28,3.432 5.436,2.94 5.436,2.352 C5.436,1.632 5.196,1.056 4.728,0.636 C4.248,0.204 3.624,0 2.844,0 Z M2.64,7.02 C2.388,7.02 2.184,7.092 2.028,7.26 C1.848,7.416 1.764,7.62 1.764,7.872 C1.764,8.112 1.848,8.316 2.028,8.484 C2.184,8.652 2.388,8.736 2.64,8.736 C2.88,8.736 3.096,8.652 3.276,8.496 C3.444,8.328 3.528,8.124 3.528,7.872 C3.528,7.62 3.444,7.416 3.276,7.26 C3.108,7.092 2.892,7.02 2.64,7.02 Z" id="形状"></path>
|
|
8
|
+
</g>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#3683FF" /><path d="M507.008 193.28a21.333333 21.333333 0 0 1 7.808-0.362667l2.581333 0.533334 298.773334 79.658666c2.645333 0.704 5.077333 1.92 7.189333 3.477334L512 356.757333 198.122667 275.946667a21.290667 21.290667 0 0 1 7.082666-4.757334l2.816-0.938666L507.008 193.28z" fill="#FFFFFF" /><path d="M198.101333 275.968L512 356.757333l311.402667-80.149333a21.333333 21.333333 0 0 1 8.448 14.570667l0.149333 2.56v126.378666l-320 82.368-320-82.346666v-129.216a21.333333 21.333333 0 0 1 6.101333-14.933334z" fill="#FFD20C" /><path d="M823.402667 276.608a21.333333 21.333333 0 0 1 8.448 14.570667l0.149333 2.56v126.378666l-320 82.368v-145.728l311.402667-80.149333z" fill="#FFBF36" /><path d="M832 603.882667v129.194666a21.333333 21.333333 0 0 1-13.717333 19.946667l-2.304 0.725333-298.666667 76.885334a21.333333 21.333333 0 0 1-7.978667 0.512l-2.645333-0.512-298.666667-76.885334a21.333333 21.333333 0 0 1-15.893333-18.261333L192 733.077333v-129.194666l320 82.368 320-82.368z" fill="#0033B3" /><path d="M832 603.882667v129.194666a21.333333 21.333333 0 0 1-13.717333 19.946667l-2.304 0.725333-298.666667 76.885334a21.333333 21.333333 0 0 1-5.312 0.661333v-145.045333l320-82.368z" fill="#00238C" /><path d="M192 439.125333l320 82.389334 320-82.389334v145.749334l-320 82.368-320-82.368z" fill="#29C477" /><path d="M512 521.514667v145.728l320-82.368v-145.749334z" fill="#009152" /><path d="M213.333333 369.066667l64 16.384v30.464l-64-16.384zM213.333333 533.824l64 16.384v30.464l-64-16.384zM213.333333 698.581333l64 16.384v30.464l-64-16.405333z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#FFBF36" /><path d="M277.333333 192h277.333334a21.333333 21.333333 0 0 1 21.333333 21.333333v355.136H277.333333V192z" fill="#D93300" /><path d="M234.666667 170.666667m42.666666 0l0 0q42.666667 0 42.666667 42.666666l0 640q0 42.666667-42.666667 42.666667l0 0q-42.666667 0-42.666666-42.666667l0-640q0-42.666667 42.666666-42.666666Z" fill="#FFFFFF" /><path d="M277.333333 170.666667a42.666667 42.666667 0 0 1 42.666667 42.666666v640a42.666667 42.666667 0 0 1-42.666667 42.666667V170.666667z" fill="#E6F3FF" /><path d="M576 207.338667l-42.666667 34.858666v326.272h42.666667z" fill="#FF7236" /><path d="M533.333333 242.197333h269.397334a21.333333 21.333333 0 0 1 20.309333 27.861334l-55.573333 172.928 53.994666 146.986666A21.333333 21.333333 0 0 1 801.429333 618.666667H554.666667a21.333333 21.333333 0 0 1-21.333334-21.333334V242.197333z" fill="#FF4D0D" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1613706875169" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3720" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><defs><style type="text/css"></style></defs><path d="M849.170732 0c97.404878 0 174.829268 77.42439 174.829268 174.829268v674.341464c0 97.404878-77.42439 174.829268-174.829268 174.829268H174.829268c-97.404878 0-174.829268-77.42439-174.829268-174.829268V174.829268c0-97.404878 77.42439-174.829268 174.829268-174.829268h674.341464zM497.014634 249.756098c-7.492683 0-14.985366 2.497561-19.980488 4.995122l-7.492683 4.995121c-14.985366 12.487805-49.95122 42.458537-87.414634 52.448781-29.970732 7.492683-59.941463 7.492683-77.42439 7.492683h-19.980488c-7.492683 0-17.482927 2.497561-22.478049 7.492683l-2.497561 2.497561c-7.492683 7.492683-9.990244 17.482927-9.990243 24.97561v89.912195c0 332.17561 232.273171 349.658537 242.263414 352.156097h14.985366l12.487805-2.497561c52.44878-9.990244 229.77561-59.941463 229.77561-349.658536v-89.912195c0-7.492683-4.995122-17.482927-9.990244-22.478049l-2.497561-2.497561c-7.492683-7.492683-17.482927-9.990244-27.473171-9.990244h-27.473171c-17.482927 0-42.458537-2.497561-67.434146-7.492683-37.463415-7.492683-82.419512-49.95122-94.907317-57.443902-4.995122-2.497561-12.487805-4.995122-22.478049-4.995122z m154.848781 179.82439c9.990244 7.492683 9.990244 19.980488 2.497561 29.970732l-2.497561 2.49756-159.843903 152.35122-4.995122 4.995122c-4.995122 4.995122-9.990244 7.492683-17.482927 7.492683-4.995122 0-12.487805-2.497561-17.482926-7.492683-2.497561-2.497561-2.497561-2.497561-2.497561-4.995122l-84.917074-79.921951c-7.492683-7.492683-7.492683-22.478049 0-32.468293 7.492683-7.492683 22.478049-7.492683 32.468293 0l72.429268 69.931707 147.356098-139.863414c9.990244-12.487805 24.97561-12.487805 34.965854-2.497561z" fill="#0E7EB7" p-id="3721"></path></svg>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="32px" height="48px" viewBox="0 0 32 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>星星</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<rect id="path-1" x="0" y="0" width="32" height="48"></rect>
|
|
6
|
+
<linearGradient x1="58.0968428%" y1="58.3211959%" x2="13.7541514%" y2="-8.32701804%" id="linearGradient-3">
|
|
7
|
+
<stop stop-color="#FFC000" offset="0%"></stop>
|
|
8
|
+
<stop stop-color="#FFEF47" offset="100%"></stop>
|
|
9
|
+
</linearGradient>
|
|
10
|
+
<polygon id="path-4" points="15.3809033 13.6190967 9 11 15.3809033 8.38090331 18 2 20.6190967 8.38090331 27 11 20.6190967 13.6190967 18 20"></polygon>
|
|
11
|
+
<filter x="-144.4%" y="-100.0%" width="388.9%" height="388.9%" filterUnits="objectBoundingBox" id="filter-5">
|
|
12
|
+
<feMorphology radius="2" operator="erode" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
|
|
13
|
+
<feOffset dx="0" dy="8" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
|
|
14
|
+
<feGaussianBlur stdDeviation="8" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
15
|
+
<feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.202879152 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
|
16
|
+
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
|
17
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
|
18
|
+
<feColorMatrix values="0 0 0 0 1 0 0 0 0 0.750491696 0 0 0 0 0 0 0 0 0.492269449 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
|
19
|
+
<feMerge>
|
|
20
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
21
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
22
|
+
</feMerge>
|
|
23
|
+
</filter>
|
|
24
|
+
<linearGradient x1="76.9367139%" y1="98.8005922%" x2="3.33066907e-14%" y2="24.9437257%" id="linearGradient-6">
|
|
25
|
+
<stop stop-color="#FBC10D" offset="0%"></stop>
|
|
26
|
+
<stop stop-color="#FFEF47" offset="100%"></stop>
|
|
27
|
+
</linearGradient>
|
|
28
|
+
<polygon id="path-7" points="7.25393554 42.7460645 3 41 7.25393554 39.2539355 9 35 10.7460645 39.2539355 15 41 10.7460645 42.7460645 9 47"></polygon>
|
|
29
|
+
<filter x="-216.7%" y="-150.0%" width="533.3%" height="533.3%" filterUnits="objectBoundingBox" id="filter-8">
|
|
30
|
+
<feMorphology radius="2" operator="erode" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
|
|
31
|
+
<feOffset dx="0" dy="8" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
|
|
32
|
+
<feGaussianBlur stdDeviation="8" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
33
|
+
<feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.202879152 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
|
34
|
+
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
|
35
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
|
36
|
+
<feColorMatrix values="0 0 0 0 1 0 0 0 0 0.750491696 0 0 0 0 0 0 0 0 0.492269449 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
|
37
|
+
<feMerge>
|
|
38
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
39
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
40
|
+
</feMerge>
|
|
41
|
+
</filter>
|
|
42
|
+
</defs>
|
|
43
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
44
|
+
<g id="咨询和帮助并存页面" transform="translate(-1206.000000, -767.000000)">
|
|
45
|
+
<g id="星星" transform="translate(1206.000000, 767.000000)">
|
|
46
|
+
<mask id="mask-2" fill="white">
|
|
47
|
+
<use xlink:href="#path-1"></use>
|
|
48
|
+
</mask>
|
|
49
|
+
<use id="矩形" fill-opacity="0" fill="#D8D8D8" xlink:href="#path-1"></use>
|
|
50
|
+
<g id="星形备份-5" mask="url(#mask-2)">
|
|
51
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-5)" xlink:href="#path-4"></use>
|
|
52
|
+
<use fill="url(#linearGradient-3)" fill-rule="evenodd" xlink:href="#path-4"></use>
|
|
53
|
+
</g>
|
|
54
|
+
<g id="星形备份-6" mask="url(#mask-2)">
|
|
55
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-8)" xlink:href="#path-7"></use>
|
|
56
|
+
<use fill="url(#linearGradient-6)" fill-rule="evenodd" xlink:href="#path-7"></use>
|
|
57
|
+
</g>
|
|
58
|
+
</g>
|
|
59
|
+
</g>
|
|
60
|
+
</g>
|
|
61
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="122" height="77" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>流程</title><defs><filter x="-1.2%" y="-2%" width="102.5%" height="104%" filterUnits="objectBoundingBox" id="a"><feOffset in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.3 0" in="shadowBlurOuter1"/></filter><filter x="-8.3%" y="-13.9%" width="116.7%" height="155.6%" filterUnits="objectBoundingBox" id="c"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-8.3%" y="-13.9%" width="116.7%" height="155.6%" filterUnits="objectBoundingBox" id="e"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-8.3%" y="-13.9%" width="116.7%" height="155.6%" filterUnits="objectBoundingBox" id="g"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-8.3%" y="-13.9%" width="116.7%" height="155.6%" filterUnits="objectBoundingBox" id="i"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-8.3%" y="-13.9%" width="116.7%" height="155.6%" filterUnits="objectBoundingBox" id="k"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.0997869318 0" in="shadowBlurOuter1"/></filter><filter x="-7.6%" y="-20.8%" width="115.2%" height="183.3%" filterUnits="objectBoundingBox" id="m"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><filter x="-7.2%" y="-20.8%" width="114.5%" height="183.3%" filterUnits="objectBoundingBox" id="p"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-20.8%" width="113.3%" height="183.3%" filterUnits="objectBoundingBox" id="s"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><filter x="-6.7%" y="-20.8%" width="113.3%" height="183.3%" filterUnits="objectBoundingBox" id="v"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><filter x="-4.8%" y="-20.8%" width="109.7%" height="183.3%" filterUnits="objectBoundingBox" id="y"><feOffset dy="1" in="SourceAlpha" result="shadowOffsetOuter1"/><feGaussianBlur stdDeviation=".5" in="shadowOffsetOuter1" result="shadowBlurOuter1"/><feColorMatrix values="0 0 0 0 0.0352941176 0 0 0 0 0.0980392157 0 0 0 0 0.250980392 0 0 0 0.104430726 0" in="shadowBlurOuter1"/></filter><rect id="b" x="0" y="0" width="120" height="75" rx="4"/><rect id="d" x="0" y="0" width="24" height="7.2" rx="2"/><rect id="f" x="0" y="0" width="24" height="7.2" rx="2"/><rect id="h" x="0" y="0" width="24" height="7.2" rx="2"/><rect id="j" x="0" y="0" width="24" height="7.2" rx="2"/><rect id="l" x="0" y="0" width="24" height="7.2" rx="2"/><rect id="n" x="0" y="0" width="26.4" height="4.8" rx="2"/><rect id="q" x="0" y="0" width="27.6" height="4.8" rx="2"/><rect id="t" x="0" y="0" width="30" height="4.8" rx="2"/><rect id="w" x="0" y="0" width="30" height="4.8" rx="2"/><rect id="z" x="0" y="0" width="41.4" height="4.8" rx="2"/><linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="o"><stop stop-color="#80D5FF" offset="0%"/><stop stop-color="#3683FF" offset="100%"/></linearGradient><linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="r"><stop stop-color="#80D5FF" offset="0%"/><stop stop-color="#3683FF" offset="100%"/></linearGradient><linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="u"><stop stop-color="#80D5FF" offset="0%"/><stop stop-color="#3683FF" offset="99.973%"/></linearGradient><linearGradient x1="100%" y1="50%" x2=".664%" y2="50%" id="x"><stop stop-color="#80D5FF" offset="0%"/><stop stop-color="#3683FF" offset="100%"/></linearGradient><linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="A"><stop stop-color="#80D5FF" offset="0%"/><stop stop-color="#3683FF" offset="100%"/></linearGradient></defs><g transform="translate(1 1)" fill="none" fill-rule="evenodd"><use fill="#000" filter="url(#a)" xlink:href="#b"/><use fill="#FFF" xlink:href="#b"/><path d="M0 9h120v62a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V9Z" fill="#F5FAFF"/><path fill="#EAF2F8" d="M33 9.6h1V75h-1z"/><path stroke="#EAF2F8" stroke-linecap="square" d="M.6 9.3h118.8"/><path fill="#FF945E" opacity=".702" d="M99 10.2h1V75h-1z"/><circle fill="#FF945E" cx="99" cy="10.2" r="1"/><g transform="translate(7.2 4.2)" stroke-width=".2"><circle stroke="#F26D71" fill="#FF7669" cx="1.2" cy="1.2" r="1.1"/><circle stroke="#EFD279" fill="#FFDD7F" cx="8.4" cy="1.2" r="1.1"/><circle stroke="#27D0A1" fill="#29E9A5" cx="15.6" cy="1.2" r="1.1"/></g><g transform="translate(4.8 13.8)"><use fill="#000" filter="url(#c)" xlink:href="#d"/><use fill="#FFF" xlink:href="#d"/><rect fill="#DADDE3" x="8.4" y="2.4" width="9.6" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="1.8" width="3" height="3" rx="1"/><g fill-rule="nonzero"><path d="M5.625 4.8h-2.25A.368.368 0 0 1 3 4.425v-2.25c0-.212.163-.375.375-.375h2.25c.213 0 .375.163.375.375v2.25a.368.368 0 0 1-.375.375Z" fill="#8080F7"/><path d="M5.15 3.075v-.063l.162-.387c.026-.063-.012-.1-.075-.1H4.112c0-.063-.037-.1-.1-.1-.062 0-.074.038-.074.075v1.563h-.063c-.063 0-.1.037-.1.1 0 .05.038.1.1.1h.263c.062 0 .1-.038.1-.1 0-.063-.038-.1-.1-.1h-.026v-.488h1.163c.05 0 .1-.063.075-.1l-.2-.4Zm-.163.287c-.037.013-.1 0-.112-.037l-.1-.237c-.013-.038-.013-.05 0-.075l.1-.213c.025-.037.075-.063.112-.037.038.012.05.075.038.112l-.075.175.075.2a.1.1 0 0 1-.038.112Z" fill="#FFF"/></g></g><g transform="translate(4.8 25.8)"><use fill="#000" filter="url(#e)" xlink:href="#f"/><use fill="#FFF" xlink:href="#f"/><rect fill="#DADDE3" x="8.4" y="2.4" width="9.6" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="1.8" width="3" height="3" rx="1"/><g fill-rule="nonzero"><path d="M5.625 4.8h-2.25A.368.368 0 0 1 3 4.425v-2.25c0-.212.163-.375.375-.375h2.25c.213 0 .375.163.375.375v2.25a.368.368 0 0 1-.375.375Z" fill="#36B37E"/><path d="M4.375 4.125c.013.025.05 0 .05-.013v-1.45c0-.075-.037-.224-.263-.224h-.425c-.062 0-.15 0-.15.15v1.25c0 .1.025.187.15.187h.238c.038 0 .262-.013.4.1ZM4.6 4.125c-.025.013-.063 0-.063-.013v-1.45c0-.075.038-.224.263-.224h.45c.063 0 .15 0 .15.15v1.25c0 .1-.025.187-.15.187H5c-.088 0-.25 0-.4.1Z" fill="#FFF"/></g></g><g transform="translate(4.8 37.8)"><use fill="#000" filter="url(#g)" xlink:href="#h"/><use fill="#FFF" xlink:href="#h"/><rect fill="#DADDE3" x="8.4" y="2.4" width="9.6" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="1.8" width="3" height="3" rx="1"/><g fill-rule="nonzero"><path d="M5.625 4.8h-2.25A.368.368 0 0 1 3 4.425v-2.25c0-.212.163-.375.375-.375h2.25c.213 0 .375.163.375.375v2.25a.368.368 0 0 1-.375.375Z" fill="#F95D5D"/><path d="M5.188 2.625a.878.878 0 0 1-.6-.225.098.098 0 0 0-.138 0c-.138.075-.375.225-.65.225-.063 0-.1.05-.1.112v.675c0 .138 0 .426.75.863.037.012.075.012.1 0 .737-.375.75-.688.75-.813v-.725c-.013-.062-.063-.112-.112-.112Zm-.363.75-.375.375c-.013.025-.038.038-.075.038-.013 0-.05 0-.075-.025-.037-.038-.037-.1 0-.125l.213-.225h-.288c-.037 0-.075-.025-.1-.063-.025-.038 0-.075.013-.113l.337-.35c.038-.037.1-.037.125 0a.096.096 0 0 1 .025.15l-.188.176h.313c.05 0 .112.037.112.1 0 .025-.012.05-.037.062Z" fill="#FFF"/></g></g><g transform="translate(4.8 49.8)"><use fill="#000" filter="url(#i)" xlink:href="#j"/><use fill="#FFF" xlink:href="#j"/><rect fill="#DADDE3" x="8.4" y="2.4" width="9.6" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="1.8" width="3" height="3" rx="1"/><g fill-rule="nonzero"><path d="M5.625 4.8h-2.25A.368.368 0 0 1 3 4.425v-2.25c0-.212.163-.375.375-.375h2.25c.213 0 .375.163.375.375v2.25a.368.368 0 0 1-.375.375Z" fill="#32B3DA"/><path d="M4.525 2.675 4.2 3.863c-.013.075.025.15.1.162.075.025.15-.013.175-.1L4.8 2.75c.013-.075-.025-.163-.1-.188-.088-.012-.163.05-.175.113Z" fill="#FFF"/><g fill="#FFF"><path d="m4.338 3.043-.553.372c-.076.064-.19.064-.285 0-.096-.064-.096-.128 0-.192l.552-.372a.285.285 0 0 1 .286 0c.057.064.057.141 0 .192Z"/><path d="m3.519 3.415.552.359c.095.051.19.051.286 0 .095-.051.095-.141 0-.192l-.553-.36c-.076-.063-.19-.063-.285 0-.096.052-.096.129 0 .193Z"/></g><g fill="#FFF"><path d="m5.002 3.043.555.372c.099.064.218.064.297 0 .099-.064.099-.128 0-.192l-.555-.372a.306.306 0 0 0-.297 0c-.059.064-.059.141 0 .192Z"/><path d="m5.854 3.415-.555.359a.306.306 0 0 1-.297 0c-.099-.051-.099-.141 0-.192l.555-.372c.099-.051.218-.051.297 0 .08.064.08.141 0 .205Z"/></g></g></g><g transform="translate(4.8 61.8)"><use fill="#000" filter="url(#k)" xlink:href="#l"/><use fill="#FFF" xlink:href="#l"/><rect fill="#DADDE3" x="8.4" y="2.4" width="9.6" height="1.8" rx=".9"/><rect fill="#DADDE3" x="3" y="1.8" width="3" height="3" rx="1"/><g fill-rule="nonzero"><path d="M5.625 4.8h-2.25A.368.368 0 0 1 3 4.425v-2.25c0-.212.163-.375.375-.375h2.25c.213 0 .375.163.375.375v2.25a.368.368 0 0 1-.375.375Z" fill="#F95D5D"/><path d="M5.188 2.625a.878.878 0 0 1-.6-.225.098.098 0 0 0-.138 0c-.138.075-.375.225-.65.225-.063 0-.1.05-.1.112v.675c0 .138 0 .426.75.863.037.012.075.012.1 0 .737-.375.75-.688.75-.813v-.725c-.013-.062-.063-.112-.112-.112Zm-.363.75-.375.375c-.013.025-.038.038-.075.038-.013 0-.05 0-.075-.025-.037-.038-.037-.1 0-.125l.213-.225h-.288c-.037 0-.075-.025-.1-.063-.025-.038 0-.075.013-.113l.337-.35c.038-.037.1-.037.125 0a.096.096 0 0 1 .025.15l-.188.176h.313c.05 0 .112.037.112.1 0 .025-.012.05-.037.062Z" fill="#FFF"/></g></g><g transform="translate(58.2 15)"><use fill="#000" filter="url(#m)" xlink:href="#n"/><use fill="url(#o)" xlink:href="#n"/></g><path d="M52.026 16.905a.698.698 0 0 1 0 .99l-1.131 1.131a.698.698 0 0 1-.99 0l-1.131-1.131a.698.698 0 0 1 0-.99l1.131-1.131a.698.698 0 0 1 .99 0Z" stroke="#846BFF" stroke-width=".6" fill="#F4F0FF"/><g transform="translate(37.8 27)"><use fill="#000" filter="url(#p)" xlink:href="#q"/><use fill="url(#r)" xlink:href="#q"/></g><g transform="translate(84.6 39)"><use fill="#000" filter="url(#s)" xlink:href="#t"/><use fill="url(#u)" xlink:href="#t"/></g><path d="M77.826 40.905a.698.698 0 0 1 0 .99l-1.131 1.131a.698.698 0 0 1-.99 0l-1.131-1.131a.698.698 0 0 1 0-.99l1.131-1.131a.698.698 0 0 1 .99 0Z" stroke="#846BFF" stroke-width=".6" fill="#F4F0FF"/><g transform="translate(47.4 51)"><use fill="#000" filter="url(#v)" xlink:href="#w"/><use fill="url(#x)" xlink:href="#w"/></g><g transform="translate(53.4 63)"><use fill="#000" filter="url(#y)" xlink:href="#z"/><use fill="url(#A)" xlink:href="#z"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 128 128" style="enable-background:new 0 0 128 128" xml:space="preserve"><style>.st0{fill:#09b866}</style><path class="st0" d="M54 88.6 25.8 60.4c-1.6-1.6-1.6-4.1 0-5.7s4.1-1.6 5.6 0l28.2 28.2c1.6 1.6 1.6 4.1 0 5.7-1.5 1.6-4.1 1.6-5.6 0z"/><path class="st0" d="M54 88.7c-1.6-1.6-1.6-4.2 0-5.7l42.2-42.2c1.6-1.6 4.2-1.6 5.7 0s1.6 4.2 0 5.7L59.8 88.7c-1.6 1.6-4.2 1.6-5.8 0z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#FFD20C" /><path d="M138.666667 770.944a373.333333 82.389333 0 1 0 746.666666 0 373.333333 82.389333 0 1 0-746.666666 0Z" fill="#1F2B47" /><path d="M366.805333 254.528c7.210667 0 14.229333 0.725333 21.013334 2.112a163.093333 163.093333 0 0 0-21.013334 80.277333l0.106667 5.973334a163.690667 163.690667 0 0 0 31.424 90.666666l4.330667 5.674667-4.288 2.965333c-71.018667 49.706667-120.362667 137.173333-132.416 237.802667a901.162667 901.162667 0 0 1-54.677334-7.658667l-17.237333-3.093333a16.682667 16.682667 0 0 1-13.525333-17.088c0.064-1.344 0.106667-2.56 0.192-3.626667 6.250667-100.48 64.576-182.912 141.674666-206.165333-33.984-16-57.386667-49.834667-57.386666-88.96 0-54.613333 45.589333-98.88 101.802666-98.88z" fill="#FFFFFF" /><path d="M657.194667 254.528c56.213333 0 101.802667 44.266667 101.802666 98.88 0 39.125333-23.402667 72.96-57.386666 88.96 75.648 22.826667 133.248 102.613333 141.269333 200.533333 0.128 1.536 0.256 3.669333 0.384 6.4l0.128 2.901334a16.682667 16.682667 0 0 1-13.482667 17.024 941.781333 941.781333 0 0 1-71.893333 10.794666l0.896 8.042667c-10.325333-104.128-60.501333-194.965333-133.397333-245.930667l-4.202667-2.88 0.490667-0.597333a163.797333 163.797333 0 0 0 35.392-101.738667c0-29.141333-7.637333-56.533333-20.992-80.277333 6.762667-1.386667 13.781333-2.112 20.992-2.112z" fill="#E6F3FF" /><path d="M512 213.333333c68.736 0 124.437333 55.338667 124.437333 123.584a123.52 123.52 0 0 1-70.144 111.232c92.48 28.501333 162.858667 128.277333 172.672 250.666667 0.234667 2.944 0.469333 7.68 0.704 14.122667a20.842667 20.842667 0 0 1-14.570666 20.650666c-49.045333 15.509333-120.085333 23.253333-213.141334 23.253334-93.162667 0-164.245333-7.765333-213.226666-23.338667v0.021333a20.842667 20.842667 0 0 1-14.506667-20.565333c0.085333-2.773333 0.192-5.141333 0.298667-7.104 7.658667-125.589333 78.933333-228.650667 173.184-257.728a123.456 123.456 0 0 1-70.144-111.210667C387.562667 268.650667 443.264 213.333333 512 213.333333z" fill="#3683FF" /><path d="M566.293333 448.149333c90.624 27.946667 160.021333 124.309333 172.010667 243.349334l0.810667 9.301333 0.426666 8.469333 0.128 3.669334a20.842667 20.842667 0 0 1-14.570666 20.650666c-15.146667 4.778667-32.341333 8.832-51.669334 12.138667-0.576-126.464-34.346667-223.722667-101.312-291.818667l-5.824-5.76z" fill="#0C62FF" /><path d="M553.472 481.109333l-30.954667 46.08 30.933334 134.890667-8.789334 94.250667-32.661333 0.533333v-213.973333l-0.042667-0.064v214.037333l-33.002666-0.533333-8.426667-94.250667 30.912-134.912-30.933333-46.08h82.986666z" fill="#FFFFFF" /></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg class="icon" width="200px" height="200.00px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M0 0m128 0l768 0q128 0 128 128l0 768q0 128-128 128l-768 0q-128 0-128-128l0-768q0-128 128-128Z" fill="#1F2B47" /><path d="M272 192m20.010667 0l519.978666 0q20.010667 0 20.010667 20.010667l0 519.978666q0 20.010667-20.010667 20.010667l-519.978666 0q-20.010667 0-20.010667-20.010667l0-519.978666q0-20.010667 20.010667-20.010667Z" fill="#5EA1FF" /><path d="M192 272m20.010667 0l519.978666 0q20.010667 0 20.010667 20.010667l0 519.978666q0 20.010667-20.010667 20.010667l-519.978666 0q-20.010667 0-20.010667-20.010667l0-519.978666q0-20.010667 20.010667-20.010667Z" fill="#FFFFFF" /><path d="M212.053333 272h519.893334c11.093333 0 20.053333 8.96 20.053333 20.053333v99.946667H192V292.053333C192 280.96 200.96 272 212.053333 272z" fill="#0C62FF" /><path d="M232 312m20.010667 0l159.978666 0q20.010667 0 20.010667 20.010667l0-0.021334q0 20.010667-20.010667 20.010667l-159.978666 0q-20.010667 0-20.010667-20.010667l0 0.021334q0-20.010667 20.010667-20.010667Z" fill="#FFFFFF" /><path d="M572.010667 332.010667m-21.333334 0a21.333333 21.333333 0 1 0 42.666667 0 21.333333 21.333333 0 1 0-42.666667 0Z" fill="#29C477" /><path d="M632 332.010667m-21.333333 0a21.333333 21.333333 0 1 0 42.666666 0 21.333333 21.333333 0 1 0-42.666666 0Z" fill="#FFD15E" /><path d="M692.010667 332.010667m-21.333334 0a21.333333 21.333333 0 1 0 42.666667 0 21.333333 21.333333 0 1 0-42.666667 0Z" fill="#FF7236" /><path d="M244.437333 441.344h455.125334V762.666667c0 11.050667-8.96 20.010667-20.010667 20.010666H264.448a19.989333 19.989333 0 0 1-20.010667-20.010666V441.322667z" fill="#B0D6FF" /></svg>
|