Commit ec7f24b3 authored by Zhang Xiaojie's avatar Zhang Xiaojie

pc首页布局

parent c1aadae3
...@@ -2,30 +2,30 @@ ...@@ -2,30 +2,30 @@
<div> <div>
<div <div
class="md:hidden fixed w-full flex flex-row py-4 px-2" class="md:hidden fixed w-full flex flex-row py-4 px-2"
:style="bgTransparent ? styleClasses.transHeaderBg : styleClasses.blurHeaderBg" :style="bgTransparent ? styleClass.transHeaderBg : styleClass.blurHeaderBg"
> >
<svg-icon iconClass="menu" class="text-black absolute w-6 h-6" @clickSvg="handleClick" /> <svg-icon iconClass="menu" class="text-black absolute w-6 h-6" @clickSvg="handleClick" />
<img src="@/assets/logo.png" class="w-20 mx-auto" /> <img src="@/assets/logo.png" class="w-20 mx-auto" />
</div> </div>
<!-- <div class="md:hidden h-screen w-1/2 bg-blue-50 absolute">11</div> --> <!-- <div class="md:hidden h-screen w-1/2 bg-blue-50 absolute">11</div> -->
<div class="hidden md:block w-full fixed"> <div class="hidden md:block w-full fixed" @mouseleave="handleHover($event)">
<div <div
class="w-bodySet mx-auto px-10 py-3 flex-row justify-between flex" class="w-bodySet mx-auto px-10 py-3 flex-row justify-between flex relative z-20"
:style="bgTransparent ? styleClasses.transHeaderBg : styleClasses.blurHeaderBg" :style="bgTransparent ? styleClass.transHeaderBg : styleClass.blurHeaderBg"
> >
<img src="@/assets/logo.png" class="w-20 h-6" /> <img src="@/assets/logo.png" class="w-20 h-6" />
<div class="text-sm text-gray-500 font-medium flex flex-row items-center"> <div class="text-sm text-gray-500 font-medium flex flex-row items-center">
<div class="pr-14 hover:text-mainBlue cursor-pointer" @click="handleClick">首页</div> <div class="pr-14 hover:text-mainBlue cursor-pointer" @click="handleClick">首页</div>
<div <div
class="flex items-center pr-12 hover:text-mainBlue cursor-pointer" class="flex items-center pr-12 hover:text-mainBlue cursor-pointer"
@mouseenter="handleHover($event)" @mouseenter="handleHover($event,NAV_EVENT.NAV1)"
> >
存证溯源 存证溯源
<svg-icon iconClass="arrowDown" class="w-3 h-3" /> <svg-icon iconClass="arrowDown" class="w-3 h-3" />
</div> </div>
<div <div
class="flex items-center pr-12 cursor-pointer hover:text-mainBlue" class="flex items-center pr-12 cursor-pointer hover:text-mainBlue"
@mouseenter="handleHover($event)" @mouseenter="handleHover($event,NAV_EVENT.NAV2)"
> >
解决方案 解决方案
<svg-icon iconClass="arrowDown" class="w-3 h-3 hover:text-mainBlue" /> <svg-icon iconClass="arrowDown" class="w-3 h-3 hover:text-mainBlue" />
...@@ -34,15 +34,13 @@ ...@@ -34,15 +34,13 @@
<MainButton text="登录平台" @handleClick="handleBtnClick($event)" /> <MainButton text="登录平台" @handleClick="handleBtnClick($event)" />
</div> </div>
</div> </div>
</div> <div
<div :class="hovering ? ' bg-white pt-12 h-72' : ' h-0 overflow-hidden'"
:class="hovering ? ' h-52 pt-12' : 'h-0 overflow-hidden'" class="transition-all ease-in-out duration-1000 absolute top-0 w-full z-10"
class="transition-all ease-in-out duration-1000" >
@mouseleave="handleHover($event)" <!-- <div class="h-px bg-gray-200"></div> -->
> <div class="w-bodySet mx-auto pt-5 pb-10">
<div class="w-bodySet mx-auto"> <hoverBar :data="list" />
<div class="w-10/12 bg-gray-300 mx-auto">
<banner-card :data="state.list" />
</div> </div>
</div> </div>
</div> </div>
...@@ -51,13 +49,24 @@ ...@@ -51,13 +49,24 @@
<script setup lang="ts"> <script setup lang="ts">
import styleClass from '@/assets/style/style.module.css' import styleClass from '@/assets/style/style.module.css'
import { ref, withDefaults, defineProps, reactive } from 'vue'; import { ref, withDefaults, defineProps, reactive, computed } from 'vue';
import MainButton from "@/components/mainButton.vue" import MainButton from "@/components/mainButton.vue"
import BannerCard from '@/components/bannerCard.vue'; import hoverBar from '@/components/hoverBar.vue';
import { debounce } from "lodash"; import { debounce } from "lodash";
import { provennanceList } from '@/context/provenance';
import { solutionList } from '@/context/solution';
const props = withDefaults(defineProps<
{ bgTransparent?: boolean }
>(), {
bgTransparent: true
})
const styleClasses = ref(styleClass)
enum NAV_EVENT{
NAV1="PROVE",
NAV2="SOLUTION"
}
const handleClick = () => { const handleClick = () => {
console.log(1); console.log(1);
...@@ -68,25 +77,27 @@ const handleBtnClick = (e: Event) => { ...@@ -68,25 +77,27 @@ const handleBtnClick = (e: Event) => {
} }
let currentNav = ref()
const list = computed(()=>{
return !currentNav.value ? undefined : currentNav.value == NAV_EVENT.NAV1 ? provennanceList: solutionList
})
/* handleHover */
let hovering = ref(false) let hovering = ref(false)
let state = reactive({} as { list: any })
const handleHover = (e: Event) => { const handleHover = (e: Event,type?:NAV_EVENT) => {
if (e.type === 'mouseenter') { if (e.type === 'mouseenter') {
hovering.value = true hovering.value = true
currentNav.value = type
} }
else if (e.type === 'mouseleave') { else if (e.type === 'mouseleave') {
console.log('out'); console.log('out');
hovering.value = false hovering.value = false
currentNav.value = undefined
} }
console.log(hovering.value);
} }
const props = withDefaults(defineProps<
{ bgTransparent?: boolean }
>(), {
bgTransparent: true
})
</script> </script>
<template>
<div>{{ props.data }}</div>
</template>
<script setup lang="ts">
import { withDefaults, defineProps } from 'vue';
const props = withDefaults(defineProps<{
data: any
}>(), {
})
</script>
\ No newline at end of file
<template>
<div class="flex flex-row w-10/12 mx-auto justify-between cursor-default">
<div
v-for="item in props.data"
:key="item.id"
class="w-1/4"
:class="props.data!.length == 1 ? 'w-full' : 'w-1/4'"
>
<div class="text-base font-medium pl-3">{{ item.title }}</div>
<div class="flex" :class="props.data!.length == 1 ? 'flex-row' : 'flex-col'">
<div
v-for="child in item.children"
:key="child.id"
class="flex flex-row hover:bg-gray-200 mt-5 p-3 mr-5 cursor-pointer"
@click="goToWeb(child.product)"
>
<svg-icon :iconClass="child.icon" class="w-10 h-10 pr-2" />
<div class="flex flex-col">
<div class="text-sm font-medium">{{ child.product }}</div>
<div class="text-xs text-gray-400">{{ child.detail }}</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { withDefaults, defineProps,defineEmits } from 'vue';
import SvgIcon from './svgIcon.vue';
interface item {
id: number,
title: string,
children: Array<{ id: number, product: string, detail: string, icon: string }>
}
const props = withDefaults(defineProps<{
data?: item[]
}>(), {
})
const goToWeb = (url:string)=>{
console.log(url);
}
</script>
\ No newline at end of file
export const provennanceList = [
{
id:1,
title: '溯源系统',
children: [
{
id: 11,
product: '存证系统',
detail: '创建流程简单易懂,适合微型企业',
icon: 'cunzhengxitong'
},
{
id: 12,
product: '企业版溯源',
detail: '终端管理、用户协同、企业协同',
icon: 'qiyesuyuan'
}
]
},
{
id:2,
title: '数字资产',
children: [
{
id: 21,
product: '通正版商城',
detail: '商品生产周期资产化、交易资产',
icon: 'tongzhengshangcheng'
},
{
id: 22,
product: '资产数字化',
detail: 'NFT/FT资产拆分、合并、交易',
icon: 'zichanshuzihua'
}
]
},
{
id:3,
title: '接口溯源',
children: [
{
id: 31,
product: '存证服务',
detail: '无需人工录入数据,通过SDK接口自动上链',
icon: 'cunzhengfuwu'
}
]
},
{
id:4,
title: '区块链查询',
children: [
{
id: 41,
product: '验证查询',
detail: '查询商品hash是否在区块链上存证',
icon: 'yanzhengchaxun'
}
]
},
]
\ No newline at end of file
export const solutionList =[
{
id:1,
title: '解决方案',
children: [
{
id: 11,
product: '食品安全',
detail: '创建流程简单易懂,适合微型企业',
icon: 'shipinanquan'
},
{
id: 12,
product: '医疗溯源',
detail: '商品生产周期资产化、交易资产',
icon: 'yiliaosuyuan'
},
{
id: 13,
product: '公益慈善',
detail: '无需人工录入数据,通过SDK接口自动上链',
icon: 'gongyicishan'
},
{
id: 14,
product: '远程团队',
detail: '查询商品hash是否在区块链上存证',
icon: 'yuanchengtuandui'
}
]
},
]
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1371px" height="568px" viewBox="0 0 1371 568" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 21</title>
<defs>
<linearGradient x1="50%" y1="-17.8626628%" x2="51.9176206%" y2="100%" id="linearGradient-1">
<stop stop-color="#E0E0FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#EBEBFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="91.9787782%" y1="5.37221088%" x2="15.0522217%" y2="94.0255364%" id="linearGradient-3">
<stop stop-color="#DBDDFA" offset="0%"></stop>
<stop stop-color="#F5F5FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-17.8626628%" x2="51.1259892%" y2="100%" id="linearGradient-4">
<stop stop-color="#E0E0FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-5">
<stop stop-color="#EBEBFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="-17.8626628%" x2="52.8568168%" y2="100%" id="linearGradient-6">
<stop stop-color="#E0E0FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-7">
<stop stop-color="#EBEBFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="30.4153882%" y1="42.6859295%" x2="67.0896998%" y2="58.1615121%" id="linearGradient-8">
<stop stop-color="#5F79FE" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="60.8083105%" y1="66.8229579%" x2="50.271473%" y2="50.4244814%" id="linearGradient-9">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#306EF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-0.000668317872%" y1="49.9913458%" x2="100.000668%" y2="49.9913458%" id="linearGradient-10">
<stop stop-color="#CDD2FF" offset="0%"></stop>
<stop stop-color="#B7C2FE" offset="100%"></stop>
<stop stop-color="#EBEEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-0.0228530946%" y1="50.0076862%" x2="147.923672%" y2="43.4688001%" id="linearGradient-11">
<stop stop-color="#5781DB" offset="0%"></stop>
<stop stop-color="#A0BDFD" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-0.0228530946%" y1="50.0588424%" x2="99.9882918%" y2="50.0588424%" id="linearGradient-12">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#306EF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="87.6339823%" y1="73.6390515%" x2="17.8255606%" y2="-2.44445219%" id="linearGradient-13">
<stop stop-color="#7B95FF" offset="0%"></stop>
<stop stop-color="#A9B0FF" offset="100%"></stop>
<stop stop-color="#DFEBFF" offset="100%"></stop>
<stop stop-color="#E0EBFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50.3931154%" y1="86.2012852%" x2="50%" y2="-4.73823888%" id="linearGradient-14">
<stop stop-color="#425DCE" offset="0%"></stop>
<stop stop-color="#4A59E0" offset="100%"></stop>
<stop stop-color="#5C6EDC" offset="100%"></stop>
<stop stop-color="#E0EBFF" offset="100%"></stop>
</linearGradient>
<path d="M384.137068,160.999326 C384.775081,163.301439 385.00519,165.927978 384.999911,167.602383 L384.999911,167.602383 L384.338572,360.869897 C384.332803,362.411763 383.796291,363.489909 382.92518,364 L382.92518,364 L367,364 C367.871111,363.489909 368.419161,362.411763 368.419161,360.869897 L368.419161,360.869897 L370.190997,171.238793 C370.192787,170.28037 369.985832,169.256124 369.619389,168.252751 Z" id="path-15"></path>
<filter x="-19.4%" y="-1.7%" width="138.9%" height="103.4%" filterUnits="objectBoundingBox" id="filter-16">
<feGaussianBlur stdDeviation="3" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-10.7%" y="-8.6%" width="121.3%" height="117.1%" filterUnits="objectBoundingBox" id="filter-17">
<feGaussianBlur stdDeviation="6" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="7.87947617%" y1="-21.3749804%" x2="86.3055763%" y2="97.4582673%" id="linearGradient-18">
<stop stop-color="#D1D7FF" offset="0%"></stop>
<stop stop-color="#9EADFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="70.0209047%" y1="89.060028%" x2="26.2120592%" y2="3.59149679%" id="linearGradient-19">
<stop stop-color="#C0C3EA" offset="0%"></stop>
<stop stop-color="#DCE0FE" offset="100%"></stop>
</linearGradient>
<linearGradient x1="88.4776299%" y1="99.2932234%" x2="55.2558071%" y2="56.732016%" id="linearGradient-20">
<stop stop-color="#065FFF" offset="0%"></stop>
<stop stop-color="#043EEC" offset="100%"></stop>
</linearGradient>
<linearGradient x1="38.6194884%" y1="14.9669421%" x2="279.99489%" y2="190.798675%" id="linearGradient-21">
<stop stop-color="#E0EBFF" offset="0%"></stop>
<stop stop-color="#A3B2EC" offset="100%"></stop>
</linearGradient>
<linearGradient x1="33.3079018%" y1="46.2271695%" x2="59.1781374%" y2="52.0752244%" id="linearGradient-22">
<stop stop-color="#CACFF2" offset="0%"></stop>
<stop stop-color="#C7C6EF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="49.9977931%" x2="99.9999657%" y2="49.9977931%" id="linearGradient-23">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#308AF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="73.9571881%" y1="37.1473607%" x2="25.6674667%" y2="63.0628316%" id="linearGradient-24">
<stop stop-color="#253C6F" offset="0%"></stop>
<stop stop-color="#3068E8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="191.412126%" y1="137.685056%" x2="12.028957%" y2="26.3989562%" id="linearGradient-25">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#308AF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="145.503961%" y1="110.166009%" x2="-42.4188892%" y2="-8.38639513%" id="linearGradient-26">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#308AF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="97.9409147%" y1="80.1663856%" x2="-89.9394999%" y2="-38.3531522%" id="linearGradient-27">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#308AF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="50%" x2="100%" y2="50%" id="linearGradient-28">
<stop stop-color="#BBD0FE" offset="0%"></stop>
<stop stop-color="#E0EBFF" offset="39%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="50.0021768%" x2="100%" y2="50.0021768%" id="linearGradient-29">
<stop stop-color="#253C6F" offset="0%"></stop>
<stop stop-color="#3068E8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="73.8961884%" y1="35.9133511%" x2="46.8375179%" y2="51.8644932%" id="linearGradient-30">
<stop stop-color="#253C6F" offset="0%"></stop>
<stop stop-color="#3068E8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="50.0021956%" x2="100%" y2="50.0021956%" id="linearGradient-31">
<stop stop-color="#B8C3FE" offset="0%"></stop>
<stop stop-color="#B8C2FE" offset="100%"></stop>
</linearGradient>
<linearGradient x1="63.8230083%" y1="67.5314667%" x2="11.2300836%" y2="0.744926792%" id="linearGradient-32">
<stop stop-color="#253C6F" offset="0%"></stop>
<stop stop-color="#3068E8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="49.9863871%" x2="100%" y2="49.9863871%" id="linearGradient-33">
<stop stop-color="#BBD0FE" offset="0%"></stop>
<stop stop-color="#E0EBFF" offset="39%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="49.8552822%" x2="100%" y2="49.8552822%" id="linearGradient-34">
<stop stop-color="#253C6F" offset="0%"></stop>
<stop stop-color="#3068E8" offset="100%"></stop>
</linearGradient>
<linearGradient x1="17.4117863%" y1="37.2910266%" x2="80.0404431%" y2="61.7018714%" id="linearGradient-35">
<stop stop-color="#E1ECFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="49.8763548%" y1="36.7284023%" x2="50.5967599%" y2="59.7056903%" id="linearGradient-36">
<stop stop-color="#5781DB" offset="0%"></stop>
<stop stop-color="#A0BDFD" offset="100%"></stop>
</linearGradient>
<linearGradient x1="41.9604786%" y1="70.6599387%" x2="56.7718404%" y2="32.5387247%" id="linearGradient-37">
<stop stop-color="#3158D3" offset="0%"></stop>
<stop stop-color="#306EF3" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-0.108877011%" y1="49.9933923%" x2="99.9714871%" y2="49.9933923%" id="linearGradient-38">
<stop stop-color="#CBDDFE" offset="0%"></stop>
<stop stop-color="#EFF5FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="0%" y1="49.9819389%" x2="100.174952%" y2="49.9819389%" id="linearGradient-39">
<stop stop-color="#CBDDFE" offset="0%"></stop>
<stop stop-color="#EFF5FF" offset="100%"></stop>
</linearGradient>
<filter x="-64.3%" y="-69.2%" width="228.6%" height="238.5%" filterUnits="objectBoundingBox" id="filter-40">
<feGaussianBlur stdDeviation="21" in="SourceGraphic"></feGaussianBlur>
</filter>
<filter x="-166.7%" y="-11.1%" width="433.3%" height="122.2%" filterUnits="objectBoundingBox" id="filter-41">
<feGaussianBlur stdDeviation="5" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="18.9754945%" y1="0%" x2="18.9754945%" y2="100%" id="linearGradient-42">
<stop stop-color="#A0A7CE" stop-opacity="0" offset="0%"></stop>
<stop stop-color="#51577E" offset="100%"></stop>
</linearGradient>
<filter x="-22.2%" y="-44.4%" width="144.4%" height="188.9%" filterUnits="objectBoundingBox" id="filter-43">
<feGaussianBlur stdDeviation="4" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="32.6163398%" y1="-5.93017696%" x2="64.0626563%" y2="104.968719%" id="linearGradient-44">
<stop stop-color="#94A5FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" offset="100%"></stop>
</linearGradient>
<filter x="-1.1%" y="-0.6%" width="102.3%" height="101.2%" filterUnits="objectBoundingBox" id="filter-45">
<feGaussianBlur stdDeviation="0.5" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="-56.5897464%" y1="50%" x2="50%" y2="50%" id="linearGradient-46">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<filter x="0.0%" y="0.0%" width="100.0%" height="100.0%" filterUnits="objectBoundingBox" id="filter-47">
<feGaussianBlur stdDeviation="0" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="62.1968917%" y1="99.2548399%" x2="40.3054246%" y2="10.846751%" id="linearGradient-48">
<stop stop-color="#D7DCF9" offset="0%"></stop>
<stop stop-color="#D2D6F4" stop-opacity="0.49464854" offset="68.3946303%"></stop>
<stop stop-color="#CCCFF0" offset="100%"></stop>
</linearGradient>
<filter x="-61.8%" y="-17.4%" width="223.5%" height="134.7%" filterUnits="objectBoundingBox" id="filter-49">
<feGaussianBlur stdDeviation="7" in="SourceGraphic"></feGaussianBlur>
</filter>
<filter x="-65.6%" y="-19.1%" width="231.2%" height="138.2%" filterUnits="objectBoundingBox" id="filter-50">
<feGaussianBlur stdDeviation="7" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="-7.60833911%" y1="3.12421265%" x2="107.17811%" y2="96.8757874%" id="linearGradient-51">
<stop stop-color="#6783FA" offset="0%"></stop>
<stop stop-color="#5C75FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-52">
<stop stop-color="#40CFE7" offset="0%"></stop>
<stop stop-color="#5595FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-9.2479788%" y1="43.3884298%" x2="92.2309192%" y2="56.6115702%" id="linearGradient-53">
<stop stop-color="#FEFEFF" offset="0%"></stop>
<stop stop-color="#2ED8E6" offset="52.2366824%"></stop>
<stop stop-color="#E0E5FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="76.0258314%" y1="79.2659229%" x2="7.98611111%" y2="17.9093464%" id="linearGradient-54">
<stop stop-color="#CACFF3" stop-opacity="0.562494025" offset="0%"></stop>
<stop stop-color="#F0F2FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="-1.14274736%" y1="7.34132453%" x2="99.0317336%" y2="88.8307815%" id="linearGradient-55">
<stop stop-color="#7A8BE3" offset="0%"></stop>
<stop stop-color="#8694E9" offset="100%"></stop>
</linearGradient>
<linearGradient x1="7.10542736e-13%" y1="51.0226205%" x2="110.185628%" y2="50%" id="linearGradient-56">
<stop stop-color="#A4ADFF" offset="0%"></stop>
<stop stop-color="#9DA9FF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="92.3302692%" y1="49.537607%" x2="4.88362745%" y2="50.4643105%" id="linearGradient-57">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#A3ADFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="92.3302692%" y1="49.537607%" x2="4.88362745%" y2="50.4643105%" id="linearGradient-58">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#A2A2D4" offset="100%"></stop>
</linearGradient>
<linearGradient x1="92.3302692%" y1="49.537607%" x2="4.88362745%" y2="50.4643105%" id="linearGradient-59">
<stop stop-color="#BFC6FF" offset="0%"></stop>
<stop stop-color="#A3ADFF" offset="100%"></stop>
</linearGradient>
<path d="M14.4209864,32.8789043 C21.7296062,32.8789043 30.6396062,26.5439775 30.6396062,17.7418302 C30.6396062,8.93968287 23.6919555,1.77956235 16.3833356,1.77956235 C9.07471583,1.77956235 1.95175049,8.76890344 1.95175049,17.5710508 C1.95175049,26.3731981 7.11236658,32.8789043 14.4209864,32.8789043 Z" id="path-60"></path>
<path d="M14.4209864,32.8789043 C21.7296062,32.8789043 30.6396062,26.5439775 30.6396062,17.7418302 C30.6396062,8.93968287 23.6919555,1.77956235 16.3833356,1.77956235 C9.07471583,1.77956235 1.95175049,8.76890344 1.95175049,17.5710508 C1.95175049,26.3731981 7.11236658,32.8789043 14.4209864,32.8789043 Z" id="path-62"></path>
<linearGradient x1="87.3184335%" y1="2.84217094e-12%" x2="19.4202496%" y2="106.207491%" id="linearGradient-64">
<stop stop-color="#757BFF" offset="0%"></stop>
<stop stop-color="#DDE3FD" offset="100%"></stop>
</linearGradient>
<path d="M14.4209864,32.8789043 C21.7296062,32.8789043 30.6396062,26.5439775 30.6396062,17.7418302 C30.6396062,8.93968287 23.6919555,1.77956235 16.3833356,1.77956235 C9.07471583,1.77956235 1.95175049,8.76890344 1.95175049,17.5710508 C1.95175049,26.3731981 7.11236658,32.8789043 14.4209864,32.8789043 Z" id="path-65"></path>
<filter x="0.0%" y="0.0%" width="100.0%" height="100.0%" filterUnits="objectBoundingBox" id="filter-67">
<feGaussianBlur stdDeviation="0" in="SourceGraphic"></feGaussianBlur>
</filter>
<linearGradient x1="50%" y1="-17.8626628%" x2="54.1003781%" y2="100%" id="linearGradient-68">
<stop stop-color="#E0E0FF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-69">
<stop stop-color="#EBEBFF" offset="0%"></stop>
<stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
</linearGradient>
</defs>
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="首页" transform="translate(-312.000000, -90.000000)">
<g id="编组-21" transform="translate(312.508199, 90.000000)">
<g id="编组-20" transform="translate(793.000000, 0.000000)">
<g id="编组备份-9" transform="translate(411.000000, 284.000000)">
<path d="M64.4918013,104.032347 L64.4918013,281 C65.7409423,280.841912 66.6649279,280.648849 67.2637581,280.42081 C67.8178797,280.209797 68.3189369,279.841394 68.8660394,279.546235 C70.3000094,278.772616 87.8281856,268.352112 121.450568,248.284723 C122.85228,247.550207 123.759632,246.796394 124.172623,246.023283 C124.47522,245.456828 124.491801,244.187062 124.491801,242.943461 C124.491801,242.400899 124.491801,184.430633 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-1)"></path>
<path d="M4.49180126,100.032347 L4.49180126,277 C5.74094225,276.841912 6.66492787,276.648849 7.26375811,276.42081 C7.81787965,276.209797 8.31893686,275.841394 8.86603941,275.546235 C10.3000094,274.772616 27.8281856,264.352112 61.4505682,244.284723 C62.8522803,243.550207 63.759632,242.796394 64.1726234,242.023283 C64.4752204,241.456828 64.4918013,240.187062 64.4918013,238.943461 C64.4918013,238.400899 64.4918013,180.430633 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-2)" transform="translate(34.491801, 169.000000) scale(-1, 1) translate(-34.491801, -169.000000) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组备份-14" transform="translate(273.000000, -0.000000)">
<path d="M64.4918013,104.032347 L64.4918013,281 C65.7409423,280.841912 66.6649279,280.648849 67.2637581,280.42081 C67.8178797,280.209797 68.3189369,279.841394 68.8660394,279.546235 C70.3000094,278.772616 87.8281856,268.352112 121.450568,248.284723 C122.85228,247.550207 123.759632,246.796394 124.172623,246.023283 C124.47522,245.456828 124.491801,244.187062 124.491801,242.943461 C124.491801,242.400899 124.491801,184.430633 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-1)"></path>
<path d="M4.49180126,100.032347 L4.49180126,277 C5.74094225,276.841912 6.66492787,276.648849 7.26375811,276.42081 C7.81787965,276.209797 8.31893686,275.841394 8.86603941,275.546235 C10.3000094,274.772616 27.8281856,264.352112 61.4505682,244.284723 C62.8522803,243.550207 63.759632,242.796394 64.1726234,242.023283 C64.4752204,241.456828 64.4918013,240.187062 64.4918013,238.943461 C64.4918013,238.400899 64.4918013,180.430633 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-2)" transform="translate(34.491801, 169.000000) scale(-1, 1) translate(-34.491801, -169.000000) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组备份-13" transform="translate(0.000000, 122.000000)">
<path d="M64.4918013,104.032347 L64.4918013,346.88241 C65.7409423,346.724322 66.6649279,346.531259 67.2637581,346.30322 C67.8178797,346.092207 68.3189369,345.723805 68.8660394,345.428646 C70.3000094,344.655026 87.8281856,334.234522 121.450568,314.167133 C122.85228,313.432618 123.759632,312.678804 124.172623,311.905694 C124.47522,311.339239 124.491801,310.069473 124.491801,308.825871 C124.491801,308.28331 124.491801,228.35224 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-4)"></path>
<path d="M4.49180126,100.032347 L4.49180126,333.869551 C5.74094225,333.711463 6.66492787,333.5184 7.26375811,333.290361 C7.81787965,333.079348 8.31893686,332.710946 8.86603941,332.415787 C10.3000094,331.642167 27.8281856,321.221663 61.4505682,301.154274 C62.8522803,300.419759 63.759632,299.665945 64.1726234,298.892835 C64.4752204,298.32638 64.4918013,297.056614 64.4918013,295.813012 C64.4918013,295.270451 64.4918013,218.343667 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-5)" transform="translate(34.491801, 197.434776) scale(-1, 1) translate(-34.491801, -197.434776) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组-31" transform="translate(7.491801, 212.810594)">
<path d="M8,51.6542996 L17.4394522,47.1179053 C21.6392463,41.0076919 28.9309415,34.2257348 38.1036536,28.418353 C48.509264,21.8304049 58.9662865,17.9966238 66.5677915,17.473212 L70.1424187,11.1894064 L76.5357728,20.2230614 C76.734456,20.4544755 76.9146233,20.7005609 77.0755322,20.9614597 C77.1073154,21.012996 77.1382565,21.0649633 77.1683589,21.1173568 L77.3924168,21.4360958 L77.3612568,21.4823917 C80.7641992,28.5110951 70.2546757,42.4966332 53.3764624,53.1824834 C36.070405,64.1392082 18.6221388,67.4777493 14.4045838,60.6393768 L14.4045838,60.6393768 L8,51.6542996 Z" id="形状结合" fill="#4C4BFF"></path>
<ellipse id="椭圆形备份-25" fill="#6778FF" transform="translate(39.122353, 31.924184) rotate(-32.000000) translate(-39.122353, -31.924184) " cx="39.1223532" cy="31.924184" rx="37.092763" ry="14.4661776"></ellipse>
</g>
<g id="编组备份-12" transform="translate(22.000000, 287.000000)">
<path d="M64.4918013,104.032347 L64.4918013,281 C65.7409423,280.841912 66.6649279,280.648849 67.2637581,280.42081 C67.8178797,280.209797 68.3189369,279.841394 68.8660394,279.546235 C70.3000094,278.772616 87.8281856,268.352112 121.450568,248.284723 C122.85228,247.550207 123.759632,246.796394 124.172623,246.023283 C124.47522,245.456828 124.491801,244.187062 124.491801,242.943461 C124.491801,242.400899 124.491801,184.430633 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-1)"></path>
<path d="M4.49180126,100.032347 L4.49180126,277 C5.74094225,276.841912 6.66492787,276.648849 7.26375811,276.42081 C7.81787965,276.209797 8.31893686,275.841394 8.86603941,275.546235 C10.3000094,274.772616 27.8281856,264.352112 61.4505682,244.284723 C62.8522803,243.550207 63.759632,242.796394 64.1726234,242.023283 C64.4752204,241.456828 64.4918013,240.187062 64.4918013,238.943461 C64.4918013,238.400899 64.4918013,180.430633 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-2)" transform="translate(34.491801, 169.000000) scale(-1, 1) translate(-34.491801, -169.000000) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组备份-15" transform="translate(282.000000, 361.000000)">
<path d="M64.4918013,28.2667221 L64.4918013,205.234375 C65.7409423,205.076288 66.6649279,204.883224 67.2637581,204.655186 C67.8178797,204.444172 68.3189369,204.07577 68.8660394,203.780611 C70.3000094,203.006991 87.8281856,192.586487 121.450568,172.519099 C122.85228,171.784583 123.759632,171.03077 124.172623,170.257659 C124.47522,169.691204 124.491801,168.421438 124.491801,167.177837 C124.491801,166.635275 124.491801,133.920216 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,73.1069742 64.4918013,28.2667221 Z" id="路径-37备份-5" fill="url(#linearGradient-6)"></path>
<path d="M4.49180126,100.032347 L4.49180126,203.08375 C5.74094225,202.925662 6.66492787,202.732599 7.26375811,202.50456 C7.81787965,202.293547 8.31893686,201.925145 8.86603941,201.629986 C10.3000094,200.856366 27.8281856,190.435862 61.4505682,170.368473 C62.8522803,169.633958 63.759632,168.880144 64.1726234,168.107034 C64.4752204,167.540579 64.4918013,166.270813 64.4918013,165.027211 C64.4918013,164.48465 64.4918013,131.153133 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-7)" transform="translate(34.491801, 132.041875) scale(-1, 1) translate(-34.491801, -132.041875) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组备份-16" transform="translate(182.000000, 239.000000)">
<path d="M64.4918013,104.032347 L64.4918013,281 C65.7409423,280.841912 66.6649279,280.648849 67.2637581,280.42081 C67.8178797,280.209797 68.3189369,279.841394 68.8660394,279.546235 C70.3000094,278.772616 87.8281856,268.352112 121.450568,248.284723 C122.85228,247.550207 123.759632,246.796394 124.172623,246.023283 C124.47522,245.456828 124.491801,244.187062 124.491801,242.943461 C124.491801,242.400899 124.491801,184.430633 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-1)"></path>
<path d="M4.49180126,100.032347 L4.49180126,277 C5.74094225,276.841912 6.66492787,276.648849 7.26375811,276.42081 C7.81787965,276.209797 8.31893686,275.841394 8.86603941,275.546235 C10.3000094,274.772616 27.8281856,264.352112 61.4505682,244.284723 C62.8522803,243.550207 63.759632,242.796394 64.1726234,242.023283 C64.4752204,241.456828 64.4918013,240.187062 64.4918013,238.943461 C64.4918013,238.400899 64.4918013,180.430633 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-2)" transform="translate(34.491801, 169.000000) scale(-1, 1) translate(-34.491801, -169.000000) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组-15" transform="translate(46.491801, 25.000000)">
<g id="box_gear" transform="translate(266.000000, 343.000000)">
<path d="M92.0555396,69.2112043 C93.1127979,69.8237104 93.1175283,70.8160653 92.0673658,71.4285714 C80.4015208,78.2333696 71.652137,83.3369682 65.8192146,86.7393673 C65.5372264,86.9038536 65.1142442,87.1505832 64.550268,87.4795559 C63.5001054,88.092062 61.7947739,88.092062 60.7398808,87.4795559 L16.1889126,63.489636 C15.1316543,62.8771298 15.1269238,61.8847749 16.1747212,61.2746428 L43.6941842,45.2212844 C44.7419815,44.6087782 46.4496783,44.6087782 47.5069366,45.2212844 L92.0555396,69.2112043 Z" id="Path" fill="url(#linearGradient-8)"></path>
<path d="M60.6075949,17.2722499 C60.6075949,17.300481 60.6075949,17.3287122 60.6075949,17.3569433 C60.6027011,17.3800491 60.596385,17.4028338 60.5886824,17.4251686 C60.5822174,17.4522255 60.5743263,17.4789251 60.5650417,17.5051568 C60.5578084,17.5276489 60.5491221,17.5496523 60.539037,17.5710295 C60.539037,17.5992606 60.5130322,17.6274918 60.4988478,17.6557229 C60.4846634,17.683954 60.4752072,17.6933644 60.4633868,17.7145378 C60.4437507,17.7469773 60.4224457,17.7783869 60.399557,17.8086416 C60.3782804,17.8368727 60.3546397,17.8674565 60.328635,17.8956876 L60.3097224,17.916861 C60.2748599,17.9566134 60.2369185,17.993584 60.1962472,18.0274329 C60.1702408,18.0520019 60.1425971,18.0747954 60.1135049,18.0956582 L60.0402188,18.1544731 C60.0094859,18.177999 59.9740249,18.1991724 59.943292,18.2203457 C59.9125591,18.2415191 59.8770981,18.2650451 59.839273,18.2862184 L32.3357134,34.1921146 C32.2553351,34.2391665 32.1678646,34.2791606 32.0803941,34.3191547 L32.0047439,34.3520911 C31.936186,34.3803222 31.865264,34.4062008 31.7919779,34.4320793 L31.7139636,34.4579579 L31.5768477,34.497952 L31.4704647,34.5261831 L31.3215285,34.5567669 C31.2884315,34.5567669 31.2553346,34.573235 31.2198736,34.5779402 C31.1174307,34.596761 31.0157758,34.6108766 30.9149089,34.6202869 L30.8179821,34.6202869 L30.6359489,34.6202869 L30.2482419,34.6202869 L30.111126,34.6202869 L29.9858304,34.6202869 C29.9409131,34.6202869 29.8983599,34.6202869 29.8534426,34.6061714 L29.7328752,34.5897032 L29.5886671,34.5638246 L29.4775559,34.5426513 C29.4208183,34.5426513 29.3664448,34.5167727 29.3097071,34.5003046 L29.2175085,34.4767786 C29.1182177,34.4485475 29.023655,34.4156111 28.9290923,34.3803222 C28.881811,34.3615015 28.8368937,34.3426807 28.7943405,34.3215073 L28.7234184,34.2909236 C28.6563376,34.2605228 28.5908478,34.2267589 28.5272008,34.189762 L0.820331374,18.2862184 C0.428231576,18.0995999 0.140390023,17.7484463 0.0354610104,17.3287122 C0.0318540154,17.2785876 0.0318540154,17.2282706 0.0354610104,17.1781461 L0,53.0834541 C0,53.4833953 0.264775544,53.8856891 0.794326633,54.1915265 L28.4799195,70.0974226 C28.5437493,70.1327116 28.6099432,70.1680005 28.6785012,70.1985842 L28.7470591,70.229168 C28.7872483,70.2479887 28.8274374,70.2668095 28.8676265,70.2809251 L28.884175,70.2809251 C28.9763736,70.316214 29.0733004,70.3491503 29.1725912,70.3773815 L29.1962319,70.3773815 L29.2647899,70.3938496 C29.3191634,70.4103178 29.375901,70.4220808 29.4326386,70.4361964 L29.4775559,70.4361964 L29.5437498,70.4361964 L29.6855939,70.4620749 L29.7423315,70.4620749 L29.8061613,70.4620749 L29.9409131,70.4761905 L30.0047429,70.4761905 L30.0662087,70.4761905 L30.2009605,70.4761905 L30.5839395,70.4761905 L30.7659726,70.4620749 L30.8392587,70.4620749 L30.8605353,70.4620749 C30.9645543,70.4620749 31.0662092,70.438549 31.1678641,70.4197282 L31.1820485,70.4197282 L31.269519,70.4009074 L31.4184552,70.3703237 L31.5248383,70.3420925 L31.6619542,70.3020984 L31.692687,70.3020984 L31.7399684,70.2856303 L31.9503704,70.205642 L32.0283846,70.1727057 C32.1147955,70.1346177 32.1992211,70.0922172 32.2813398,70.0456656 L59.7872636,54.1374168 L59.8203605,54.118596 L59.8889185,54.0738967 C59.9220154,54.0527233 59.9551123,54.03155 59.9858452,54.008024 C60.0120661,53.9897329 60.0373167,53.9701016 60.0614954,53.9492091 L60.1442377,53.8809839 L60.1607862,53.8668683 C60.1948428,53.8365038 60.2272003,53.8043033 60.257713,53.7704119 L60.2766255,53.7492386 L60.328635,53.6880711 C60.3343417,53.6790278 60.3406605,53.6703816 60.3475475,53.6621925 L60.4090133,53.5680887 L60.4373821,53.5280946 C60.4361084,53.521885 60.4361084,53.5154834 60.4373821,53.5092738 C60.4515665,53.4810427 60.4633868,53.4528116 60.4752072,53.4245804 L60.4988478,53.3751759 C60.4991497,53.3696906 60.4991497,53.364193 60.4988478,53.3587078 C60.5081324,53.3324761 60.5160235,53.3057764 60.5224885,53.2787195 C60.5286015,53.2610709 60.5333435,53.2429811 60.5366729,53.2246098 C60.537779,53.219969 60.537779,53.2151351 60.5366729,53.2104943 C60.5366729,53.1822631 60.5366729,53.154032 60.5366729,53.1258008 C60.5378256,53.1077825 60.5378256,53.0897095 60.5366729,53.0716911 L60.5366729,53.0481652 L60.5721339,17.1428571 C60.6075949,17.225198 60.6075949,17.2463713 60.6075949,17.2722499 Z" id="Path" fill="#EAF0FE"></path>
<path d="M59.8113868,16.5111983 C60.8686451,17.1237354 60.8733756,18.1161405 59.823213,18.7286775 L32.3061152,34.7804731 C31.2559527,35.390636 29.5506211,35.390636 28.4957281,34.7804731 L0.796507494,18.7286775 C-0.260750775,18.1161405 -0.265481237,17.1237354 0.782316108,16.5111983 L28.3017791,0.459402815 C29.3495765,-0.153134272 31.0572733,-0.153134272 32.1145315,0.459402815 L59.8113868,16.5111983 Z" id="Path" fill="url(#linearGradient-9)"></path>
<path d="M61.5688486,18.2458042 C61.5638723,18.26891 61.5574499,18.2916947 61.5496176,18.3140294 C61.5430438,18.3410864 61.5350198,18.367786 61.5255789,18.3940177 C61.5182238,18.4165098 61.5093911,18.4385132 61.4991362,18.4598904 C61.4991362,18.4881215 61.4726936,18.5163526 61.4582703,18.5445838 C61.4438471,18.5728149 61.4342316,18.5822253 61.4222122,18.6033987 C61.4022454,18.6358381 61.3805817,18.6672478 61.3573075,18.6975025 C61.3356726,18.7257336 61.3116339,18.7563173 61.2851912,18.7845485 L61.2659602,18.8057218 C61.2305106,18.8454743 61.1919303,18.8824449 61.1505742,18.9162938 C61.1241298,18.9408627 61.0960207,18.9636563 61.0664385,18.9845191 L60.9919184,19.043334 C60.960668,19.0668599 60.9246098,19.0880333 60.8933594,19.1092066 C60.862109,19.13038 60.8260509,19.1539059 60.7875889,19.1750793 L32.8208933,35.0809755 C32.7391615,35.1280274 32.6502181,35.1680215 32.5612746,35.2080156 L32.4843506,35.240952 C32.4146382,35.2691831 32.3425219,35.2950617 32.2680017,35.3209402 L32.1886738,35.3468187 L32.049249,35.3868129 L31.9410746,35.415044 L31.7896304,35.4456277 C31.7559761,35.4456277 31.7223218,35.4620959 31.6862637,35.4668011 C31.5820957,35.4856219 31.4787291,35.4997374 31.3761637,35.5091478 L31.2776047,35.5091478 L31.0925063,35.5232634 L30.7848101,35.5232634 L30.7848101,71.4285714 L31.0612559,71.4285714 L31.2463544,71.4144559 L31.3208745,71.4144559 L31.3425094,71.4144559 C31.44828,71.4144559 31.5516466,71.3909299 31.6550133,71.3721091 L31.6694366,71.3721091 L31.75838,71.3532884 L31.9098242,71.3227046 L32.0179986,71.2944735 L32.1574234,71.2544794 L32.1886738,71.2544794 L32.2367513,71.2380112 L32.4506963,71.158023 L32.5300242,71.1250866 C32.6178902,71.0869987 32.7037375,71.0445981 32.787239,70.9980465 L60.7563385,55.0897977 L60.7899928,55.070977 L60.8597052,55.0262776 C60.8933594,55.0051043 60.9270137,54.9839309 60.9582641,54.960405 C60.9849265,54.9421138 61.0106023,54.9224825 61.0351881,54.9015901 L61.1193238,54.8333648 L61.1361509,54.8192493 C61.170781,54.7888847 61.2036834,54.7566842 61.2347098,54.7227929 L61.2539409,54.7016195 L61.3068261,54.640452 C61.3126289,54.6314087 61.3190541,54.6227625 61.3260571,54.6145735 L61.3885579,54.5204697 L61.4174044,54.4804756 C61.4161093,54.474266 61.4161093,54.4678644 61.4174044,54.4616548 C61.4318277,54.4334237 61.4438471,54.4051925 61.4558665,54.3769614 L61.4799052,54.3275569 C61.4802122,54.3220716 61.4802122,54.316574 61.4799052,54.3110887 C61.4893461,54.284857 61.4973701,54.2581574 61.503944,54.2311005 C61.5101599,54.2134518 61.5149818,54.1953621 61.5183672,54.1769908 C61.5194919,54.17235 61.5194919,54.167516 61.5183672,54.1628752 C61.5183672,54.1346441 61.5183672,54.1064129 61.5183672,54.0781818 C61.5195394,54.0601635 61.5195394,54.0420904 61.5183672,54.0240721 L61.5183672,54.0005461 L61.5544254,18.0952381 C61.5544254,18.1211166 61.5544254,18.1469952 61.5544254,18.1728737 C61.5544254,18.1987523 61.5736564,18.217573 61.5688486,18.2458042 Z" id="Path" fill="#D9DDF7"></path>
<path d="M39.4884577,19.7576191 C40.0255155,19.1713737 42.1397249,18.8630693 42.317124,18.2254398 C42.4945232,17.5878103 40.6476277,16.9198175 40.460508,16.2728455 C40.2733883,15.6258734 41.6634202,14.6939534 41.119072,14.1053723 C40.5747239,13.5167913 38.4143421,13.6032099 37.5540776,13.1267395 C36.6938131,12.6502691 36.8250399,11.4380724 35.7898063,11.1484532 C34.7545727,10.8588339 33.0340437,11.615581 31.8821641,11.5128129 C30.7302845,11.4100448 29.5273723,10.3846992 28.3657722,10.482796 C27.2041721,10.5808929 26.6646842,11.7557194 25.6027192,12.0546812 C24.5820664,12.3419648 22.5334704,11.8911864 21.6804963,12.3653212 C20.8275222,12.8394559 21.6391842,13.9745766 21.1191373,14.5421369 C20.5990904,15.1096972 18.4678701,15.434351 18.2904709,16.0743162 C18.1130717,16.7142813 19.9599673,17.3799384 20.147087,18.0245749 C20.3342066,18.6692113 18.9320241,19.6058026 19.4860928,20.1943836 C20.0401614,20.7829647 22.1932528,20.6918748 23.0486571,21.1590026 C23.9040614,21.6261304 23.7776948,22.8476697 24.8153585,23.137289 C25.8530222,23.4269082 27.5711211,22.6701611 28.7230007,22.7705936 C29.8748803,22.8710261 31.0777925,23.901043 32.2393926,23.8029461 C33.4009927,23.7048493 33.9404806,22.5300228 35.0024456,22.231061 C36.0230984,21.9437774 38.0692642,22.3945557 38.9246685,21.920421 C39.7800728,21.4462862 38.9684108,20.3181725 39.4884577,19.7576191 Z M25.3499862,19.8977575 C22.5966537,18.3702494 22.582073,15.9014789 25.3183945,14.3833134 C28.0547161,12.865148 32.5042763,12.8721549 35.2576088,14.3996629 C38.0109412,15.9271709 38.025522,18.3982771 35.2892004,19.9164426 C32.5528788,21.434608 28.1033186,21.4205942 25.3499862,19.8907505 L25.3499862,19.8977575 Z" id="Shape" fill="url(#linearGradient-10)" fill-rule="nonzero"></path>
<path d="M28.3750287,38.5906351 C28.4432035,38.6302744 28.5134765,38.66626 28.5855445,38.6984365 L28.6588702,38.7312456 L28.8031563,38.7921768 C28.9025008,38.8296729 29.006576,38.8648255 29.1106512,38.8952911 L29.2099958,38.9210697 C29.2691294,38.9374742 29.3258977,38.9515353 29.3873967,38.9632528 L29.505664,38.9890314 L29.6570461,39.0148099 L29.7847748,39.0312145 L29.9290609,39.047619 L30.0615202,39.047619 L30.2058063,39.047619 L30.3382657,39.047619 L30.6197418,39.047619 L30.8113348,39.033558 L30.9130447,39.033558 C31.0242159,39.033558 31.1330218,39.0077794 31.2394624,38.9890314 L31.3482683,38.9655963 L31.5067465,38.9327872 L31.6179177,38.9023216 C31.6674949,38.8907451 31.7164426,38.8766657 31.7645691,38.8601385 C31.7926344,38.8521805 31.8202668,38.8427941 31.8473562,38.8320164 C31.9254126,38.8062378 32.0011037,38.7781157 32.0838908,38.7499936 L32.1666779,38.714841 C32.2589264,38.6726579 32.3511749,38.6281313 32.4363273,38.5789176 L60.6075949,22.3595042 L60.6075949,17.1475442 C60.6075949,17.1733227 60.6075949,17.1991013 60.6075949,17.2248799 C60.6075949,17.2506585 60.6075949,17.2811241 60.6075949,17.3092462 C60.6026984,17.3322627 60.5963789,17.3549594 60.5886722,17.3772079 C60.5822037,17.4041603 60.5743083,17.4307568 60.5650187,17.4568871 C60.5577815,17.4792923 60.5490905,17.5012107 60.5389999,17.5225053 C60.5389999,17.5506274 60.5129811,17.5787495 60.498789,17.6068716 C60.484597,17.6349937 60.4751356,17.6443677 60.4633088,17.6654593 C60.4436621,17.6977734 60.4223456,17.7290618 60.3994445,17.7591995 C60.3781564,17.7873216 60.3545029,17.8177872 60.3284841,17.8459093 L60.3095614,17.8670009 C60.2746799,17.9065997 60.2367181,17.9434276 60.1960248,17.9771457 C60.1700043,18.0016197 60.1423457,18.0243253 60.1132377,18.0451074 C60.089516,18.0664779 60.0642152,18.0860617 60.0375466,18.1036951 C60.0091625,18.1271302 59.9736823,18.1482217 59.9429328,18.1693133 C59.9121833,18.1904049 59.8767031,18.2138399 59.8388576,18.2349315 L32.3204254,34.0793838 C32.2400036,34.1262539 32.1524858,34.1660935 32.064968,34.2059331 L31.989277,34.2387422 C31.920682,34.2668643 31.8497216,34.2926429 31.7763959,34.3184215 L31.6983395,34.3442001 L31.5611494,34.3840397 L31.4547088,34.4121618 L31.3056921,34.4426274 C31.2725772,34.4426274 31.2394624,34.4590319 31.2039822,34.4637189 C31.1014839,34.482467 30.999774,34.496528 30.8988526,34.5059021 L30.8018734,34.5059021 L30.6197418,34.5059021 L30.2318251,34.5059021 L30.0946351,34.5059021 L29.9692717,34.5059021 C29.9243302,34.5059021 29.8817539,34.5059021 29.8368124,34.491841 L29.7161797,34.4754365 L29.5718936,34.4496579 L29.4607224,34.4285663 L29.2927829,34.3863832 L29.2005344,34.3629481 C29.1011898,34.334826 29.006576,34.3020169 28.9119622,34.2668643 C28.8646553,34.2481163 28.8197137,34.2293682 28.7771375,34.2082767 L28.7061771,34.1778111 C28.63906,34.1475277 28.5735348,34.1138943 28.5098534,34.0770403 L0.788001491,18.246649 C0.395689665,18.0607514 0.107692461,17.7109543 0.00270670911,17.2928416 C-0.00090223637,17.2429107 -0.00090223637,17.192788 0.00270670911,17.1428571 L0.00270670911,22.3524737 L28.3750287,38.5906351 Z" id="Path" fill="url(#linearGradient-11)"></path>
<path d="M28.3750287,66.2096828 C28.4432035,66.2493221 28.5134765,66.2853076 28.5855445,66.3174841 L28.6588702,66.3502932 L28.8031563,66.4112244 C28.9025008,66.4487205 29.006576,66.4838731 29.1106512,66.5143387 L29.2099958,66.5401173 C29.2691294,66.5565218 29.3258977,66.5705829 29.3873967,66.5823004 L29.505664,66.608079 L29.6570461,66.6338576 L29.7847748,66.6502621 L29.9290609,66.6666667 L30.0615202,66.6666667 L30.2058063,66.6666667 L30.3382657,66.6666667 L30.6197418,66.6666667 L30.8113348,66.6526056 L30.9130447,66.6526056 C31.0242159,66.6526056 31.1330218,66.626827 31.2394624,66.608079 L31.3482683,66.5846439 L31.5067465,66.5518348 L31.6179177,66.5213692 C31.6674949,66.5097927 31.7164426,66.4957133 31.7645691,66.4791861 C31.7926344,66.4712282 31.8202668,66.4618417 31.8473562,66.451064 C31.9254126,66.4252854 32.0011037,66.3971633 32.0838908,66.3666977 L32.1666779,66.3338886 C32.2589264,66.2917055 32.3511749,66.2471789 32.4363273,66.1979652 L60.6075949,49.9785518 L60.6075949,44.7665918 C60.6075949,44.7923704 60.6075949,44.8181489 60.6075949,44.8439275 C60.6075949,44.8697061 60.6075949,44.9001717 60.6075949,44.9282938 C60.6026984,44.9513103 60.5963789,44.974007 60.5886722,44.9962555 C60.5822037,45.0232079 60.5743083,45.0498044 60.5650187,45.0759347 C60.5577815,45.0983399 60.5490905,45.1202583 60.5389999,45.1415529 C60.5389999,45.169675 60.5129811,45.1977971 60.498789,45.2259192 C60.484597,45.2540413 60.4751356,45.2634153 60.4633088,45.2845069 C60.4436621,45.316821 60.4223456,45.3481094 60.3994445,45.3782472 C60.3781564,45.4063692 60.3545029,45.4368348 60.3284841,45.4649569 L60.3095614,45.4860485 C60.2746799,45.5256473 60.2367181,45.5624752 60.1960248,45.5961933 C60.1700043,45.6206673 60.1423457,45.6433729 60.1132377,45.664155 C60.089516,45.6855256 60.0642152,45.7051094 60.0375466,45.7227427 C60.0091625,45.7461778 59.9736823,45.7672694 59.9429328,45.7883609 C59.9121833,45.8094525 59.8767031,45.8328876 59.8388576,45.8516356 L32.3204254,61.6984314 C32.2400036,61.7453015 32.1524858,61.7851411 32.064968,61.8249808 L31.989277,61.8577899 C31.920682,61.885912 31.8497216,61.9116905 31.7763959,61.9374691 L31.6983395,61.9632477 L31.5611494,62.0030873 L31.4547088,62.0312094 L31.3056921,62.061675 L31.2039822,62.0827666 C31.1014839,62.1015146 30.999774,62.1155757 30.8988526,62.1249497 L30.8018734,62.1249497 L30.6197418,62.1390107 L30.2318251,62.1390107 L30.0946351,62.1390107 L29.9692717,62.1390107 L29.8368124,62.1249497 L29.7161797,62.1085451 L29.5718936,62.0827666 L29.4607224,62.061675 L29.2927829,62.0194919 L29.2005344,61.9960568 C29.1011898,61.9679347 29.006576,61.9351256 28.9119622,61.899973 C28.8646553,61.8812249 28.8197137,61.8624769 28.7771375,61.8413853 L28.7061771,61.8109197 C28.63906,61.7806363 28.5735348,61.7470029 28.5098534,61.7101489 L0.788001491,45.8656967 C0.395689665,45.679799 0.107692461,45.3300019 0.00270670911,44.9118892 C-0.00090223637,44.8619583 -0.00090223637,44.8118357 0.00270670911,44.7619048 L0.00270670911,49.9715213 L28.3750287,66.2096828 Z" id="Path" fill="url(#linearGradient-12)"></path>
</g>
<path d="M381.518802,156.179004 L116.39138,0.92194898 C113.348516,-0.557508584 111.151573,0.0663473694 110.257378,0.580864554 L100,8.94371584 C100.888388,8.42919866 102.119358,8.50435285 103.483876,9.28480027 C191.665527,61.7178399 259.288931,101.461742 306.354089,128.516505 C319.436109,136.036526 339.059138,147.316556 365.223176,162.356597 C367.92318,163.905929 370.100602,167.66942 370.094796,170.750742 L368.311439,359.87821 C368.311439,361.415981 367.759825,362.491264 366.88305,363 L382.911778,363 C383.788553,362.491264 384.328554,361.415981 384.33436,359.87821 L384.99819,167.12399 C385.004735,165.635755 385.167988,163.094798 384.673503,160.999326 C384.144179,158.756218 382.911741,156.980031 381.518802,156.179004 Z" id="Path" fill="url(#linearGradient-13)"></path>
<g id="形状结合">
<use fill="url(#linearGradient-14)" fill-rule="evenodd" xlink:href="#path-15"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-16)" xlink:href="#path-15"></use>
</g>
<path d="M363.144074,165.543819 C365.834801,167.092816 368.004743,170.855491 368,173.936145 L367.472384,359.549876 C367.472384,362.642089 365.279296,363.884755 362.588569,362.329978 L92.8503359,206.782966 C90.1596081,205.22819 87.9896663,201.471295 88,198.384861 L88.5278118,12.7711298 C88.5278118,9.68469607 93.6713955,8.92381052 98.2035875,11.7844707 L363.144074,165.543819 Z" id="Path" fill="#EAF0FE"></path>
<polygon id="Path" fill="#4E63DB" filter="url(#filter-17)" points="311 262 142 163.791748 142 52 311 150.204433"></polygon>
<path d="M101.099741,9.77467987 C123.78299,23.0392926 141.096625,33.1237705 153.040648,40.0281138 C153.313335,40.1857431 155.022815,40.910718 155.914038,42.0898111 C156.88172,43.370061 157.47554,45.4653676 157.47554,45.4653676 C157.47554,45.4653676 157.565975,45.829403 157.746846,46.5574738 L157.814438,46.8295556 C157.909567,47.2124856 158.024723,47.6760323 158.159907,48.220196 L158.26505,48.6434343 C158.882138,51.1274405 159.860967,55.0675883 161.201537,60.4638775 L343.042668,166.649574 C346.11261,168.44226 348,171.730019 348,175.285053 L348,321.950176 C348,326.060753 345.51983,329.592055 341.9743,331.129274 L341.974184,181.63595 C341.974184,178.077417 340.083109,174.786973 337.008389,172.995535 L337.008389,172.995535 L95.065,32.0303294 L95.5843291,15.6060194 L92,16.3562294 L94.4055957,12.7712907 L95.8940649,10.8096994 C97.1175289,9.19735454 99.3525621,8.75297221 101.099741,9.77467987 Z" id="形状结合" fill="url(#linearGradient-18)" opacity="0.770924886"></path>
<path d="M91.0112366,190.286516 L90,23.3535419 L90,23.3535419 C90.6919999,16.4078091 92.7249014,13.7934609 96.0987043,15.5104975 C109.897039,22.5329124 134.88975,38.3503551 148.466387,46.1697244 C151.799893,48.0896342 151.198188,63.8112473 155.235975,66.1367827 C161.888308,69.9681476 173.652956,76.7439148 190.529919,86.4640844 L198.34008,91.0260646 L338.043703,172.628119 C341.113061,174.420957 343,177.708388 343,181.262994 L343,328.577625 C343,334.100472 338.522847,338.577625 333,338.577625 C331.227434,338.577625 329.486721,338.106469 327.956149,337.212413 L98.4451842,203.147833 C93.8692734,200.4749 91.0433383,195.585809 91.0112366,190.286516 Z" id="Path备份" fill="url(#linearGradient-19)" opacity="0.755222866"></path>
<path d="M281.270789,254.667666 L147.639765,177.377027 C144.775191,175.719862 143.007531,172.660112 143,169.345774 L143,85.4883362 C143.001681,84.5990953 143.475937,83.7780721 144.244626,83.3336631 C145.013315,82.8892541 145.960049,82.8887477 146.729211,83.3323342 L280.360235,160.622973 C283.224809,162.280138 284.992469,165.339888 285,168.654226 L285,252.511664 C284.998319,253.400905 284.524063,254.221928 283.755374,254.666337 C282.986685,255.110746 282.039951,255.111252 281.270789,254.667666 Z" id="Path" fill="url(#linearGradient-20)"></path>
<path d="M180.028014,231.915373 L145.210694,211.696106 C144.462324,211.264444 144.000695,210.463297 144.000466,209.595782 L144.000466,187.674024 C143.991526,187.437077 144.111731,187.214067 144.314049,187.09225 C144.516367,186.970434 144.768632,186.969179 144.972139,187.088976 L179.795278,207.302393 C180.540529,207.736428 180.999456,208.536733 181,209.402716 L181,231.324475 C181.006966,231.560946 180.886907,231.782999 180.685577,231.905433 C180.484246,232.027867 180.232913,232.031666 180.028014,231.915373 Z" id="Path" fill="url(#linearGradient-21)"></path>
<path d="M230.028058,259.911137 L195.204877,239.696993 C194.459625,239.262943 194.000697,238.462609 194.000466,237.596595 L194.000466,215.674048 C193.991526,215.437093 194.111731,215.214075 194.31405,215.092254 C194.516368,214.970433 194.768633,214.969177 194.972141,215.088979 L229.795322,235.308974 C230.54053,235.740212 231,236.538951 231,237.403522 L231,259.331919 C231.006474,259.567837 230.885401,259.788861 230.683499,259.909215 C230.481597,260.02957 230.230654,260.030306 230.028058,259.911137 Z" id="Path" fill="url(#linearGradient-21)"></path>
<path d="M282.033441,290.914355 L247.205355,270.696051 C246.459998,270.262037 246.001006,269.46177 246.000775,268.595828 L246.000775,246.675115 C245.989204,246.43846 246.107927,246.214557 246.309811,246.092293 C246.511694,245.970029 246.764078,245.969184 246.966767,246.090094 L281.794853,266.302548 C282.54021,266.736562 282.999202,267.536829 282.999433,268.402771 L282.999433,290.323484 C283.009261,290.559646 282.890669,290.782525 282.68981,290.905385 C282.48895,291.028245 282.237549,291.031681 282.033441,290.914355 Z" id="Path" fill="url(#linearGradient-21)"></path>
<polygon id="Path" fill="url(#linearGradient-22)" opacity="0.464877901" transform="translate(188.525648, 321.130758) rotate(1.000000) translate(-188.525648, -321.130758) " points="214.616365 373.504552 97.5518078 306.461703 162.433004 268.756963 279.499489 335.799812"></polygon>
<path d="M163.122332,258.582343 C161.996378,257.933125 160.976463,257.873405 160.241894,258.301079 L95.4474579,295.924908 C96.1820275,295.497233 97.2019417,295.556953 98.3278961,296.206171 C100.562453,297.496902 102.376705,300.623552 102.363209,303.191527 C102.363209,304.466846 101.9082,305.364578 101.181342,305.786473 L165.975778,268.162645 C166.702636,267.74075 167.153789,266.843018 167.157669,265.567699 C167.165357,262.999723 165.356889,259.871147 163.122332,258.582343 Z" id="Path" fill="url(#linearGradient-23)" transform="translate(131.302564, 281.907088) rotate(1.000000) translate(-131.302564, -281.907088) "></path>
<path d="M98.0022276,295.627563 C100.236784,296.918294 102.051036,300.044944 102.037615,302.612919 C102.024044,305.180895 100.21172,306.215406 97.9752356,304.924675 C95.7387507,303.633945 93.9399229,300.509221 93.9399229,297.941246 C93.9399229,295.37327 95.7657428,294.338759 98.0022276,295.627563 Z" id="Path" fill="url(#linearGradient-24)" transform="translate(97.988769, 300.276741) rotate(1.000000) translate(-97.988769, -300.276741) "></path>
<path d="M178.154947,297.9318 C183.723023,301.143214 184.806561,305.362169 181.102865,309.035934 L174.834924,305.421889 C175.856766,303.716969 175.085564,302.123784 172.920416,300.873509 C169.417232,298.852649 164.437197,298.960531 160.326692,301.330081 C156.216187,303.699631 156.033027,306.575841 159.534283,308.594774 C161.701359,309.845049 164.464189,310.290062 167.417892,309.700564 L173.691617,313.306903 C167.329203,315.443351 160.043276,314.797986 154.4752,311.586572 C147.572945,307.604572 147.574873,301.987005 154.531112,297.974182 C161.487351,293.961359 171.252692,293.940168 178.154947,297.9318 Z" id="Path" fill="url(#linearGradient-25)" transform="translate(166.287984, 304.750639) rotate(1.000000) translate(-166.287984, -304.750639) "></path>
<path d="M177.249843,325.333595 C172.215824,322.430415 170.765965,318.727752 175.304487,315.918969 L181.364204,319.417426 C179.740824,320.544407 180.014601,321.696432 181.614844,322.619208 C183.282568,323.58244 185.177796,323.719218 186.535111,322.937074 C190.842272,320.451937 176.821826,315.038575 185.13538,310.31874 C189.54087,307.775808 195.627579,308.459703 200.526637,311.281971 C205.626208,314.223681 206.543938,317.656638 202.337033,320.351761 L196.16742,316.795509 C197.559439,315.876586 197.385918,314.745752 195.889787,313.842241 C194.55368,313.035053 192.824261,312.838554 191.366689,313.680418 C187.317881,316.013365 200.715582,321.634785 192.930301,326.125371 C189.031876,328.379333 182.713807,328.487215 177.249843,325.333595 Z" id="Path" fill="url(#linearGradient-26)" transform="translate(188.786280, 318.253475) rotate(1.000000) translate(-188.786280, -318.253475) "></path>
<path d="M197.552209,337.524111 C192.51819,334.619005 191.068331,330.916342 195.60878,328.107559 L201.674282,331.607943 C200.050902,332.734924 200.324679,333.885022 201.924922,334.807798 C203.594574,335.77103 205.489802,335.909735 206.845189,335.125665 C211.154278,332.640527 197.131904,327.227165 205.445458,322.50733 C209.850947,319.966325 215.937656,320.648293 220.836715,323.470562 C225.936286,326.414197 226.854016,329.847155 222.647111,332.542277 L216.477498,328.9841 C217.867589,328.067103 217.694068,326.936269 216.197937,326.032758 C214.86183,325.223643 213.13241,325.02907 211.674839,325.869008 C207.62603,328.201955 221.023731,333.823375 213.240379,338.315888 C209.334242,340.573703 203.020028,340.679658 197.552209,337.524111 Z" id="Path" fill="url(#linearGradient-27)" transform="translate(209.092696, 330.444537) rotate(1.000000) translate(-209.092696, -330.444537) "></path>
<g id="pencil" transform="translate(146.136124, 293.576783) rotate(1.000000) translate(-146.136124, -293.576783) translate(103.531811, 267.755987)">
<polygon id="Path" fill="url(#linearGradient-28)" points="77.1187963 9.195545 85.2086259 0 74.2079246 1.64953811"></polygon>
<polygon id="Path" fill="url(#linearGradient-29)" points="5.8545582 49.5656158 78.5896744 7.11956931 77.1187963 9.195545 4.38368007 51.6415915"></polygon>
<polygon id="Path" fill="url(#linearGradient-30)" points="4.39912236 45.7916432 77.1342386 3.34559669 78.5896744 7.11956931 5.8545582 49.5656158"></polygon>
<polygon id="Path" fill="url(#linearGradient-31)" points="1.47280841 44.0955846 74.2079246 1.64953811 77.1342386 3.34559669 4.39912236 45.7916432"></polygon>
<polygon id="Path" fill="url(#linearGradient-32)" points="4.39912236 45.7916432 5.8545582 49.5656158 4.38368007 51.6415915 1.45543583 49.9455329 0 46.1715603 1.47280841 44.0955846"></polygon>
<polygon id="Path" fill="url(#linearGradient-33)" points="77.1342386 3.34559669 85.2086259 4.54747351e-13 78.5896744 7.11956931"></polygon>
<path d="M81.6318055,0.534985333 C81.6671778,1.40641462 82.1174873,2.20766575 82.842095,2.68849513 L85.2086259,0.00969176328 L81.6318055,0.534985333 Z" id="Path" fill="url(#linearGradient-34)"></path>
</g>
<g id="box_code" transform="translate(350.000000, 329.000000)">
<path d="M47.4899669,41.6904232 C48.1681259,42.0778823 48.1718935,42.744312 47.4899669,43.1472695 L29.8352279,53.6977811 C29.067273,54.1007396 28.158043,54.1007396 27.390088,53.6977811 L9.61855499,43.1472695 C8.940396,42.7598103 8.93662845,42.0933807 9.61855499,41.6904232 L27.273294,31.1360369 C28.0421245,30.7368422 28.9496034,30.7368422 29.7184339,31.1360369 L47.4899669,41.6904232 Z" id="Path" fill="url(#linearGradient-35)"></path>
<path d="M40.4145082,12.1001706 C40.4145082,12.1195436 40.4145082,12.1389165 40.4145082,12.1582895 L40.4145082,12.2047846 C40.4145082,12.2047846 40.4145082,12.2435305 40.4145082,12.2629035 L40.4145082,12.305524 C40.4072941,12.3256132 40.3984729,12.3450527 40.3881353,12.3636428 L40.3617625,12.4062633 L40.3203194,12.4682568 L40.2751088,12.5302502 L40.2751088,12.5302502 L40.1997578,12.6077421 L40.1470121,12.6542372 L40.0942664,12.6929831 L40.0302181,12.7394782 C40.0090193,12.7559268 39.9863057,12.7702017 39.9624022,12.7820987 L21.6068989,23.7549408 L21.4373591,23.8440564 L21.3846134,23.8673039 L21.2452141,23.9215482 L21.1924684,23.9215482 L21.0982796,23.9486703 L21.0304637,23.9486703 L20.9287399,23.9719179 L20.860924,23.9719179 L20.6574763,23.99904 L20.593428,23.99904 L20.4728664,23.99904 L20.0697385,23.99904 L19.9868524,23.99904 L19.8964312,23.99904 L19.8173127,23.99904 L19.7193564,23.99904 L19.6440054,23.99904 L19.5347464,23.9719179 L19.4744656,23.9525449 L19.278553,23.8866769 L19.1881318,23.847931 L19.1429212,23.8246834 C19.0978362,23.8037692 19.0538236,23.7804911 19.011057,23.7549408 L0.550062291,12.7820987 C0.287116485,12.6559515 0.0943568136,12.4135043 0.0263728496,12.1234182 C0.0227646023,12.0899409 0.0227646023,12.0561561 0.0263728496,12.0226788 L0,36.7851908 C0.0261124103,37.1239084 0.22978421,37.4210125 0.531224541,37.560109 L18.9922192,48.5329511 L19.1240835,48.6026938 L19.1730616,48.6220667 L19.2521802,48.6608126 L19.2521802,48.6608126 C19.3147773,48.6880902 19.3789469,48.7113817 19.4443252,48.7305553 L19.4443252,48.7305553 L19.4895358,48.7305553 L19.6025623,48.7576774 L19.6327027,48.7576774 L19.6779133,48.7576774 L19.7721021,48.7576774 L19.8097776,48.7576774 L19.8512206,48.7576774 L19.9416418,48.7576774 L19.9868524,48.7576774 L20.0245279,48.7576774 L20.1149491,48.7576774 L20.3749101,48.7576774 L20.4954717,48.7576774 L20.55952,48.7576774 L20.7667352,48.7266807 L20.7667352,48.7266807 L20.827016,48.7266807 L20.9249723,48.7034331 L20.9965558,48.7034331 L21.086977,48.676311 L21.1095823,48.676311 C21.1095823,48.676311 21.12842,48.676311 21.1397227,48.676311 L21.2828896,48.6220667 L21.3318677,48.5988192 C21.3898112,48.5735182 21.4464044,48.5450643 21.5014075,48.5135782 L39.8870512,37.5562344 L39.9058889,37.5562344 L39.9548671,37.5213631 L40.0189154,37.4787426 L40.0678936,37.4361221 L40.1244068,37.389627 L40.1244068,37.389627 L40.1884552,37.3198844 L40.1884552,37.3198844 L40.2261307,37.2772639 L40.2261307,37.2578909 C40.2420765,37.2374335 40.255962,37.2153644 40.2675737,37.1920229 L40.2675737,37.1649007 L40.2675737,37.1649007 C40.2779113,37.1463106 40.2867325,37.1268711 40.2939466,37.1067819 C40.295365,37.0952038 40.295365,37.0834885 40.2939466,37.0719105 C40.296114,37.0538978 40.296114,37.035679 40.2939466,37.0176663 L40.2939466,36.9789204 L40.2939466,36.9789204 C40.2957858,36.9595936 40.2957858,36.9401283 40.2939466,36.9208015 C40.2939466,36.9208015 40.2939466,36.8936793 40.2939466,36.8820556 L40.2939466,36.8820556 L40.3203194,12.115669 C40.4333459,12.0652993 40.4145082,12.0846723 40.4145082,12.1001706 Z" id="Path" fill="#EAF0FE"></path>
<path d="M40.4145082,12.1582895 L40.4145082,12.2047846 C40.4145082,12.2047846 40.4145082,12.2435305 40.4145082,12.2629035 L40.4145082,12.305524 C40.4072941,12.3256132 40.3984729,12.3450527 40.3881353,12.3636428 L40.3617625,12.4062633 L40.3203194,12.4682568 L40.2751088,12.5302502 L40.2751088,12.5302502 L40.1997578,12.6077421 L40.1470121,12.6542372 L40.0942664,12.6929831 L40.0302181,12.7394782 C40.0090193,12.7559268 39.9863057,12.7702017 39.9624022,12.7820987 L21.6068989,23.7549408 L21.4373591,23.8440564 L21.3846134,23.8673039 L21.2452141,23.9215482 L21.1924684,23.9215482 L21.0982796,23.9486703 L21.0304637,23.9486703 L20.9287399,23.9719179 L20.860924,23.9719179 L20.6574763,23.99904 L20.593428,23.99904 L20.4728664,23.99904 L20.2468134,23.99904 L20.2468134,48.7654266 L20.4464935,48.7654266 L20.5670551,48.7654266 L20.6311035,48.7654266 L20.8383187,48.7344299 L20.8383187,48.7344299 L20.8985995,48.7344299 L20.9965558,48.7111823 L21.0681392,48.7111823 L21.1585604,48.6840602 L21.1811657,48.6840602 C21.1811657,48.6840602 21.2000035,48.6840602 21.2113061,48.6840602 L21.354473,48.6298159 L21.4034512,48.6065684 C21.4613946,48.5812674 21.5179879,48.5528135 21.5729909,48.5213274 L39.8870512,37.5562344 L39.9058889,37.5562344 L39.9548671,37.5213631 L40.0189154,37.4787426 L40.0678936,37.4361221 L40.1244068,37.389627 L40.1244068,37.389627 L40.1884552,37.3198844 L40.1884552,37.3198844 L40.2261307,37.2772639 L40.2261307,37.2578909 C40.2420765,37.2374335 40.255962,37.2153644 40.2675737,37.1920229 L40.2675737,37.1649007 L40.2675737,37.1649007 C40.2779113,37.1463106 40.2867325,37.1268711 40.2939466,37.1067819 C40.295365,37.0952038 40.295365,37.0834885 40.2939466,37.0719105 C40.296114,37.0538978 40.296114,37.035679 40.2939466,37.0176663 L40.2939466,36.9789204 L40.2939466,36.9789204 C40.2957858,36.9595936 40.2957858,36.9401283 40.2939466,36.9208015 C40.2939466,36.9208015 40.2939466,36.8936793 40.2939466,36.8820556 L40.2939466,36.8820556 L40.3203194,12.115669 C40.3203194,12.135042 40.3203194,12.1544149 40.3203194,12.1699133 C40.3203194,12.1854116 40.4145082,12.1389165 40.4145082,12.1582895 Z" id="Path" fill="#DEE7FF"></path>
<path d="M21.5767585,35.3322191 C21.5197067,35.3670388 21.4605628,35.398098 21.3996836,35.4252093 L21.3469379,35.4484569 C21.2982513,35.4718337 21.2478641,35.4912657 21.1962359,35.5065757 L21.1660955,35.5065757 L21.1434902,35.5065757 L21.0455339,35.5336979 L20.9739505,35.5569454 L20.8684591,35.5801929 L20.8081783,35.5801929 L20.8081783,35.5801929 L20.593428,35.6073151 L20.5256121,35.6073151 L20.4012829,35.6073151 L19.9454094,35.6073151 L19.8512206,35.6073151 L19.80601,35.6073151 L19.7683345,35.6073151 L19.6666107,35.6073151 L19.6214001,35.6073151 L19.5912597,35.6073151 L19.4744656,35.5801929 L19.4254875,35.5801929 L19.4254875,35.5801929 C19.3576445,35.5610282 19.2909672,35.5377397 19.2258073,35.5104503 L19.2258073,35.5104503 L19.1391537,35.4717044 L19.0939431,35.4717044 C19.0449649,35.4484569 18.9997543,35.4213347 18.9545437,35.3942126 L0.00753509987,24.1578983 L0.00753509987,26.3509168 C0.0320382436,26.6902298 0.236233321,26.9880973 0.538759641,27.1258351 L18.9997543,38.0986772 L19.1316186,38.1684198 L19.1805967,38.1684198 L19.2597153,38.2071657 L19.2597153,38.2071657 L19.4518603,38.2730338 L19.4518603,38.2730338 L19.4970709,38.2730338 L19.6100974,38.3040305 L19.6402378,38.3040305 L19.6854484,38.3040305 L19.7796372,38.3040305 L19.8173127,38.3040305 L19.8587557,38.3040305 L19.9491769,38.3040305 L20.032063,38.3040305 L20.1224842,38.3040305 L20.3824452,38.3040305 L20.5030068,38.3040305 L20.5670551,38.3040305 L20.7742703,38.2769084 L20.7742703,38.2769084 L20.8345511,38.2769084 L20.9325074,38.2536608 L21.0040909,38.2536608 L21.0945121,38.2265387 L21.1171174,38.2265387 L21.1472578,38.2265387 L21.2904247,38.1722944 C21.3074343,38.1661693 21.323835,38.1583846 21.3394028,38.1490469 C21.3973463,38.1237459 21.4539395,38.095292 21.5089426,38.0638059 L39.8682134,27.0909638 L39.8870512,27.0909638 L39.9360293,27.059967 L40.0000777,27.0134719 L40.0490558,26.974726 L40.1055691,26.9243563 L40.1055691,26.9243563 L40.1696174,26.8584883 L40.1696174,26.8584883 L40.2072929,26.8158678 L40.2072929,26.8158678 L40.248736,26.7538743 C40.2470101,26.7449207 40.2470101,26.7357058 40.248736,26.7267522 C40.248736,26.7267522 40.248736,26.7267522 40.248736,26.7267522 C40.2590736,26.7081621 40.2678948,26.6887225 40.2751088,26.6686333 C40.2767344,26.6570553 40.2767344,26.64534 40.2751088,26.633762 C40.2772762,26.6157493 40.2772762,26.5975305 40.2751088,26.5795177 L40.2751088,26.5446464 L40.2751088,26.5446464 C40.2767344,26.5253196 40.2767344,26.5058543 40.2751088,26.4865275 C40.2751088,26.4865275 40.2751088,26.4594054 40.2751088,26.4477816 L40.2751088,24.2315155 L21.5767585,35.3322191 Z" id="Path" fill="url(#linearGradient-36)"></path>
<path d="M39.9021214,11.2865065 C40.6066532,11.7010877 40.6104208,12.3791412 39.9021214,12.797597 L21.5466181,23.7704391 C20.7476916,24.1886583 19.8024484,24.1886583 19.0035219,23.7704391 L0.542527191,12.797597 C-0.162004647,12.3791412 -0.165772197,11.7010877 0.542527191,11.2865065 L18.901798,0.313664376 C19.7007245,-0.104554792 20.6459677,-0.104554792 21.4448942,0.313664376 L39.9021214,11.2865065 Z" id="Path" fill="url(#linearGradient-37)"></path>
<path d="M14.9044275,9.34921092 L15.6579375,8.90363294 C16.6035926,9.29109205 17.3231946,9.20197646 17.8544191,8.90363294 C18.6795126,8.41543445 19.6176325,7.60177031 20.518077,7.07095133 C21.4902421,6.48339375 22.6955835,6.48339375 23.6677487,7.07095133 L24.2856269,7.4351629 L23.4492308,7.93111056 L23.012195,7.67151295 C22.5232872,7.34379941 21.892359,7.34379941 21.4034512,7.67151295 C20.5971955,8.14808767 19.6364703,8.95787721 18.7661662,9.48094702 C17.9754316,9.94626761 17.0198544,10.0092079 16.1778594,9.65142903 L16.1590217,9.65142903 C16.784435,10.2403669 16.5772197,10.7673113 15.8576177,11.2012655 C14.9797785,11.7243353 13.5970877,12.2939002 12.8096698,12.7511019 C12.2407697,13.092066 12.3048181,13.3942841 12.8360426,13.708126 L13.2730784,13.9677236 L12.4366823,14.4636712 L11.8188042,14.0994597 C10.8844518,13.5415185 10.7638902,12.8440921 11.8188042,12.2280321 C12.7192486,11.6933386 14.0793341,11.1353974 14.9081951,10.647199 C15.4055117,10.3372317 15.5486786,9.91102663 14.9044275,9.34921092 Z" id="Path" fill="url(#linearGradient-38)"></path>
<path d="M22.5374837,15.1843452 C21.7123903,15.6725437 20.7742703,16.4862078 19.8738259,17.0170268 C18.9016608,17.6045844 17.6963193,17.6045844 16.7241542,17.0170268 L16.106276,16.6528152 L16.9426721,16.1568676 L17.3797079,16.4164652 C17.8720088,16.7370704 18.4999183,16.7370704 18.9922192,16.4164652 C19.7947074,15.9360159 20.7554326,15.1262263 21.6295042,14.6070311 C22.4230537,14.1388783 23.3821593,14.0731213 24.2291136,14.4287999 L24.2291136,14.4287999 C23.5923977,13.8514858 23.7996129,13.3206668 24.519215,12.8789634 C25.3970541,12.3558936 26.7797449,11.7863287 27.5671629,11.309754 C28.1398305,10.96879 28.0720146,10.6665719 27.54079,10.35273 L27.1037542,10.0931324 L27.9401503,9.59718475 L28.5580285,9.96139632 C29.4923809,10.5193374 29.6129425,11.2167638 28.5768663,11.8328238 C27.6801894,12.3675174 26.3163363,12.9254585 25.4874753,13.4175316 C24.9600183,13.7313735 24.8130839,14.1575785 25.4611025,14.7193942 L24.7075925,15.1649722 C23.7883103,14.7852623 23.0837785,14.8705033 22.5374837,15.1843452 Z" id="Path" fill="url(#linearGradient-39)"></path>
</g>
<polygon id="路径-57" fill="#363E7D" opacity="0.652663458" filter="url(#filter-40)" points="377.452171 351.715481 468 294.763809 373.618318 280 370 371"></polygon>
<polygon id="路径-56" fill="#92A5FF" filter="url(#filter-41)" points="391 261.243172 391 342 382 339.002514 387.541257 207"></polygon>
<polygon id="路径-58" fill="url(#linearGradient-42)" filter="url(#filter-43)" points="381 321 384.912166 348 435 322.695192"></polygon>
<path d="M236,72 L277.6042,95.7777767 L373.637337,152.383081 C381.498963,156.271761 385.281098,161.283272 384.983744,167.417615 C384.770335,171.820206 384.710088,189.678642 384.803005,220.992924 C384.816231,225.450205 384.83256,230.180112 384.851992,235.182643 C384.874837,241.063751 384.918754,250.733201 384.983744,264.190993 L384.904764,296.881195 L384.803005,339" id="路径-59" stroke="url(#linearGradient-44)" stroke-width="0.5" filter="url(#filter-45)"></path>
<path d="M103.20265,30.1102412 C102.887456,27.0239225 102.000229,24.999166 100.540968,24.0359717 C98.352078,22.5911803 94,17.9943256 94,24.0359717 C94,28.0637358 94,81.5416492 94,184.469712 C94.3681333,191.600102 97.4356832,196.591375 103.20265,199.443532 C108.969616,202.295688 113.902066,205.147844 118,208 C108.1351,199.577482 103.20265,193.550138 103.20265,189.917968 C103.20265,186.285797 103.20265,136.623646 103.20265,40.9315155 L103.20265,30.1102412 Z" id="路径-61" fill="url(#linearGradient-46)" filter="url(#filter-47)"></path>
<path d="M296.598868,320.047876 L296.049819,223.738766 C296.034077,220.977387 298.259855,218.726086 301.021234,218.710343 C301.912152,218.705264 302.788246,218.938328 303.558874,219.385423 L391.419567,270.359453 C394.485671,272.138311 396.380924,275.407421 396.401132,278.952124 L396.940217,373.513481 C396.959108,376.827135 394.288174,379.528697 390.97452,379.547588 C389.905418,379.553683 388.854105,379.274006 387.929351,378.737493 L301.580433,328.640547 C298.514329,326.861689 296.619076,323.592579 296.598868,320.047876 Z" id="Path备份-3" stroke="#7A8BE3" fill="url(#linearGradient-48)"></path>
<path d="M94.1904512,103 L91.0476025,183.881918 C90.6236432,193.994556 93.031597,202.075677 98.2714639,208.125281 C103.511331,214.174885 112.049236,219.466458 123.885179,224 C125.371607,161.68238 125.371607,127.087672 123.885179,120.215876 C122.398752,113.34408 112.500509,107.605454 94.1904512,103 Z" id="路径-62" fill="#95A4FF" opacity="0.336092268" filter="url(#filter-49)"></path>
<path d="M369.353814,271.585432 L368.526444,344.696254 C363.177739,357.854859 363.913487,366.693843 370.73369,371.213207 C377.553893,375.73257 386.309329,371.678764 397,359.051789 L397,263 L369.353814,271.585432 Z" id="路径-62备份" fill="#95A4FF" opacity="0.784449986" filter="url(#filter-50)" transform="translate(381.000000, 318.000000) scale(-1, 1) translate(-381.000000, -318.000000) "></path>
<path d="M366.172832,281.645807 C379.758996,294.432451 381.964932,313.687099 371.099926,324.652267 C360.234921,335.617435 340.413332,334.140837 326.827168,321.354193 C313.241004,308.567549 311.035068,289.312901 321.900074,278.347733 C332.765079,267.382565 352.586668,268.859163 366.172832,281.645807 Z M329.587551,285.582816 C323.164604,292.064975 324.62378,304.801483 334.250878,313.862045 C343.877976,322.922606 356.989503,323.899342 363.412449,317.417184 C369.835396,310.935025 368.37622,298.198517 358.749122,289.137955 C349.122024,280.077394 336.010497,279.100658 329.587551,285.582816 Z" id="形状结合" fill="url(#linearGradient-51)" fill-rule="nonzero"></path>
<path d="M336.445819,312.773505 C341.48527,317.640046 347.81905,319.509146 352.979458,318.573032 L353.987023,333.694308 C344.634114,334.569552 334.310916,331.033805 326.291033,323.289094 C320.915502,318.098004 317.393663,311.806743 315.820719,305.39838 L330.111647,301.024057 C330.723269,305.050449 332.821518,309.273558 336.445819,312.773505 Z" id="形状结合" fill="url(#linearGradient-52)" fill-rule="nonzero"></path>
<g id="编组-24备份" opacity="0.178343273" transform="translate(183.000000, 118.000000)" fill="#FFFFFF">
<polygon id="矩形" points="0 -1.07045203e-12 8 5.37445724 8 74 0 68.6007965"></polygon>
</g>
<g id="编组-24备份-2" opacity="0.178343273" transform="translate(205.000000, 156.000000)" fill="#FFFFFF">
<polygon id="矩形" points="0.51167592 0 7 4.8090263 7 47 0 42.1104626"></polygon>
</g>
<g id="编组-24备份-5" opacity="0.178343273" transform="translate(252.000000, 177.000000)" fill="#FFFFFF">
<polygon id="矩形" points="0.51167592 0 7 4.8090263 7 47 0 42.1104626"></polygon>
</g>
<g id="编组-24备份-4" opacity="0.178343273" transform="translate(164.000000, 151.000000)" fill="#FFFFFF">
<polygon id="矩形" points="0 0 7 4.8990627 7 27 0 22.9771454"></polygon>
</g>
<g id="编组-24备份-3" opacity="0.178343273" transform="translate(228.000000, 154.000000)" fill="#FFFFFF">
<polygon id="矩形" points="0 0 8 5.21955158 8 60 0 54.6724783"></polygon>
</g>
<path d="M169,168.182971 C173.025738,171.535658 177.982482,172.373829 183.870233,170.697486 C192.701859,168.182971 196.71697,157.31683 205.411716,170.117187 C214.106463,182.917544 216.654555,180.091486 223.737955,180.091486 C230.821354,180.091486 241.074235,177.410208 246,192" id="路径-54" stroke="url(#linearGradient-53)" stroke-width="4" stroke-linecap="round"></path>
<circle id="椭圆形" fill="#FFFFFF" cx="197.5" cy="164.5" r="4.5"></circle>
<path d="M118.025256,168.339652 L3.07576839,104.180801 C1.17678722,103.120888 1.27008281e-14,101.116386 0,98.9416343 L0,41.4068443 C7.52907669e-16,40.3022748 0.8954305,39.4068443 2,39.4068443 C2.341248,39.4068443 2.67682065,39.4941593 2.97479194,39.6604822 L117.924376,103.823536 C119.823276,104.883472 121,106.88793 121,109.062622 L121,166.593263 C121,167.697833 120.104569,168.593263 119,168.593263 C118.658771,168.593263 118.323216,168.505958 118.025256,168.339652 Z" id="Path" stroke="url(#linearGradient-55)" stroke-width="0.5" fill="url(#linearGradient-54)"></path>
<path d="M49.9262839,98.0806531 L99.787998,97.4386463 C101.184561,97.4206645 102.476919,98.1752801 103.147647,99.4003654 L104.253506,101.420216 C104.981995,102.750799 104.4939,104.420008 103.163316,105.148496 C102.768687,105.364554 102.327026,105.480366 101.877155,105.485752 L51.5953771,106.087784 C50.0882152,106.105829 48.7147793,105.225554 48.1017174,103.848594 L47.3353052,102.127204 C46.6890945,100.675791 47.3418399,98.9753309 48.7932528,98.3291203 C49.1501409,98.1702235 49.5356536,98.0856827 49.9262839,98.0806531 Z" id="矩形" fill="#FFFFFF" transform="translate(76.004049, 101.763471) rotate(30.000000) translate(-76.004049, -101.763471) "></path>
<path d="M47.8012575,98.0806531 L97.6629716,97.4386463 C99.0595343,97.4206645 100.351893,98.1752801 101.022621,99.4003654 L102.12848,101.420216 C102.856968,102.750799 102.368874,104.420008 101.03829,105.148496 C100.64366,105.364554 100.202,105.480366 99.7521285,105.485752 L49.4703507,106.087784 C47.9631888,106.105829 46.589753,105.225554 45.9766911,103.848594 L45.2102788,102.127204 C44.5640681,100.675791 45.2168135,98.9753309 46.6682265,98.3291203 C47.0251145,98.1702235 47.4106273,98.0856827 47.8012575,98.0806531 Z" id="矩形备份-8" fill="#A2A2D4" transform="translate(73.879023, 101.763471) rotate(30.000000) translate(-73.879023, -101.763471) "></path>
<path d="M48.8637707,98.0806531 L98.7254848,97.4386463 C100.122047,97.4206645 101.414406,98.1752801 102.085134,99.4003654 L103.190993,101.420216 C103.919481,102.750799 103.431387,104.420008 102.100803,105.148496 C101.706174,105.364554 101.264513,105.480366 100.814642,105.485752 L50.5328639,106.087784 C49.025702,106.105829 47.6522662,105.225554 47.0392042,103.848594 L46.272792,102.127204 C45.6265813,100.675791 46.2793267,98.9753309 47.7307396,98.3291203 C48.0876277,98.1702235 48.4731405,98.0856827 48.8637707,98.0806531 Z" id="矩形备份-3" fill="url(#linearGradient-56)" transform="translate(74.941536, 101.763471) rotate(30.000000) translate(-74.941536, -101.763471) "></path>
<path d="M42.2777575,120.664943 L114.521557,120.627419 C115.901505,120.626702 117.171873,121.37904 117.834567,122.589451 L118.955618,124.637049 C119.674262,125.949652 119.192763,127.596304 117.88016,128.314949 C117.481231,128.53336 117.033743,128.647841 116.578939,128.647841 L43.9144145,128.647841 C42.4235457,128.647841 41.072339,127.770357 40.465948,126.408381 L39.6864174,124.657526 C39.0488624,123.225555 39.6928646,121.547872 41.1248364,120.910317 C41.4877369,120.748743 41.8805135,120.665149 42.2777575,120.664943 Z" id="矩形备份-2" fill="url(#linearGradient-57)" transform="translate(79.530661, 124.637049) rotate(30.000000) translate(-79.530661, -124.637049) "></path>
<path d="M40.1527312,120.664943 L112.39653,120.627419 C113.776479,120.626702 115.046846,121.37904 115.709541,122.589451 L116.830591,124.637049 C117.549236,125.949652 117.067737,127.596304 115.755133,128.314949 C115.356205,128.53336 114.908717,128.647841 114.453913,128.647841 L41.7893881,128.647841 C40.2985193,128.647841 38.9473126,127.770357 38.3409217,126.408381 L37.561391,124.657526 C36.9238361,123.225555 37.5678382,121.547872 38.99981,120.910317 C39.3627105,120.748743 39.7554872,120.665149 40.1527312,120.664943 Z" id="矩形备份-10" fill="url(#linearGradient-58)" transform="translate(77.405635, 124.637049) rotate(30.000000) translate(-77.405635, -124.637049) "></path>
<path d="M41.2152443,120.664943 L113.459043,120.627419 C114.838992,120.626702 116.10936,121.37904 116.772054,122.589451 L117.893105,124.637049 C118.611749,125.949652 118.13025,127.596304 116.817646,128.314949 C116.418718,128.53336 115.97123,128.647841 115.516426,128.647841 L42.8519013,128.647841 C41.3610325,128.647841 40.0098258,127.770357 39.4034348,126.408381 L38.6239042,124.657526 C37.9863493,123.225555 38.6303514,121.547872 40.0623232,120.910317 C40.4252237,120.748743 40.8180003,120.665149 41.2152443,120.664943 Z" id="矩形备份-9" fill="url(#linearGradient-59)" transform="translate(78.468148, 124.637049) rotate(30.000000) translate(-78.468148, -124.637049) "></path>
<g id="编组" transform="translate(27.889639, 85.078179) rotate(-26.000000) translate(-27.889639, -85.078179) translate(11.593961, 67.748946)">
<mask id="mask-61" fill="white">
<use xlink:href="#path-60"></use>
</mask>
<use id="蒙版" fill="#FFFFFF" transform="translate(16.295678, 17.329233) rotate(7.690000) translate(-16.295678, -17.329233) " xlink:href="#path-60"></use>
</g>
<g id="编组备份-3" transform="translate(25.764613, 85.078179) rotate(-26.000000) translate(-25.764613, -85.078179) translate(9.468934, 67.748946)">
<mask id="mask-63" fill="white">
<use xlink:href="#path-62"></use>
</mask>
<use id="蒙版" fill="#A2A2D4" transform="translate(16.295678, 17.329233) rotate(7.690000) translate(-16.295678, -17.329233) " xlink:href="#path-62"></use>
</g>
<g id="编组备份-2" transform="translate(26.827126, 85.078179) rotate(-40.000000) translate(-26.827126, -85.078179) translate(10.531447, 67.748946)">
<mask id="mask-66" fill="white">
<use xlink:href="#path-65"></use>
</mask>
<use id="蒙版" fill="url(#linearGradient-64)" transform="translate(16.295678, 17.329233) rotate(7.690000) translate(-16.295678, -17.329233) " xlink:href="#path-65"></use>
<path d="M3.70415233,29.271333 C9.57225055,29.271333 20.2493531,42.949284 19.7552433,30.5725164 C19.483132,23.756503 16.9557468,18.293362 11.9136448,15.9287913 C8.22405573,14.1985021 5.81847465,14.8073967 -1.50124822,16.1920192 C-9.42462009,17.6908299 -11.8627128,18.2065376 -11.8627128,22.3142064 C-11.8627128,26.4218751 -2.16394589,29.271333 3.70415233,29.271333 Z" id="椭圆形备份" fill="#DFDFFF" mask="url(#mask-66)" transform="translate(3.954549, 25.312517) rotate(3.000000) translate(-3.954549, -25.312517) "></path>
<ellipse id="椭圆形" fill="#DFDFFF" mask="url(#mask-66)" transform="translate(17.236103, 14.912076) rotate(32.000000) translate(-17.236103, -14.912076) " cx="17.2361026" cy="14.9120761" rx="5.25944021" ry="4.78130928"></ellipse>
</g>
<path d="M362.467011,253.585488 L388.553986,269.223156 C391.936859,271.245463 394.097411,272.913612 395.035641,274.227603 C396.486374,276.259355 396.250613,278.440627 396.250613,281.066944 C396.250613,286.24103 396.500409,313.552048 397,363 L395.64835,290.920652 C395.54632,284.137508 395.342084,279.482466 395.035641,276.955524 C394.575976,273.165112 389.624389,270.646942 387.116652,269.223156 C381.683459,266.138421 369.977908,259.064036 352,248 L362.467011,253.585488 Z" id="路径-85" fill="#FFFFFF"></path>
<path d="M0.0153121288,51 L0.0153121288,90.785699 L0.0153121288,97.558421 C-0.218532648,101.102774 2.22605713,104.075331 7.34908145,106.476092 C12.4721058,108.876854 22.6890786,114.384823 38,123 L7.73618466,104.788107 C5.36249028,103.028145 3.84971643,101.540406 3.19786313,100.324892 C2.34596564,98.7363539 1.84160302,96.8344839 1.84160302,94.7762693 C1.84160302,90.3557036 1.23283939,75.7636138 0.0153121288,51 Z" id="路径-86" fill="#FFFFFF"></path>
<path d="M150,51 L151.645354,60.1872988 C152.183827,62.9357157 152.856,64.8226134 153.661874,65.8479919 C154.369131,66.7478933 155.354737,67.2354141 156.43388,67.8915613 C156.943014,68.201128 166.13172,73.5706076 184,84 L158.155132,69.7842982 C155.488218,68.2614327 153.873168,67.1970067 153.309982,66.5910201 C152.230765,65.4297852 151.466419,61.7177198 151.402866,60.9925317 C151.251245,59.2624036 150.783623,55.9315597 150,51 Z" id="路径-87" fill="#FFFFFF"></path>
<path d="M137,39.6496764 L100.252416,17.4219517 C93.4174721,14.46174 90,16.1234433 90,22.4070616 C90,28.69068 90.2006978,50.5549927 90.6020933,88 L90.6020933,25.1358216 C90.2574414,17.7262619 92.6241875,15.2456282 97.7023315,17.6939204 C102.780476,20.1422126 115.879698,27.460798 137,39.6496764 Z" id="路径-88" fill="#FFFFFF"></path>
<path d="M91.0432939,154 L91.0432939,184.501895 C90.7315369,190.525662 91.3466715,194.84036 92.8886975,197.44599 C95.1892129,201.333274 100.318739,204.314373 105.073025,207.190376 C114.607478,212.958036 143.249804,229.894578 191,258 C148.187149,232.303462 123.142304,217.213739 115.865465,212.730829 C108.180388,207.996424 99.1630726,204.620798 93.5359306,197.44599 C91.6032849,194.981798 91.6032849,189.60884 91.6032849,185.026036 C91.6032849,174.342996 91.4166213,164.000985 91.0432939,154 Z" id="路径-89" fill="#FFFFFF"></path>
<path d="M269,90 L376,152.726955 C379.773061,154.908363 381.97245,156.338078 382.598168,157.0161 C383.460555,157.950575 384.600736,160.167385 384.852642,162.416345 C384.874897,162.615033 384.827123,162.809372 384.852642,163.034286 C385.167012,165.80501 384.885689,182.294691 384.852642,195.084182 C384.825412,205.622352 384.825412,228.594291 384.852642,264 L383.799568,174.240329 L383.207336,162.416345 C382.690214,160.367423 382.104873,159.039067 381.451312,158.431274 C377.384449,154.649209 372.245294,152.470776 369.927001,151.124479 C362.204457,146.639784 328.562124,126.264958 269,90 Z" id="路径-91" fill="#FFFFFF" filter="url(#filter-67)"></path>
<path d="M276.401558,353.070603 L267.869865,357.834307 C266.588542,358.450845 265.965738,358.947462 266.001453,359.32416 C266.050241,359.838755 266.825814,360.485295 267.869865,361.0914 C268.240829,361.306756 268.760539,361.599491 269.428995,361.969604 C271.61475,363.179819 278.471752,366.856617 290,373 L270.05997,361.0914 C269.301231,360.333017 268.968541,359.771961 269.0619,359.408234 C269.214688,358.81297 270.09774,358.238084 271.155557,357.677044 C273.182922,356.601779 278.605636,353.042765 287.423699,347 L276.401558,353.070603 Z" id="路径-90" fill="#FFFFFF"></path>
</g>
<g id="编组-3" transform="translate(311.491801, 367.000000)">
<path d="M0,15.914184 L32.565624,0.209476969 C32.8400841,0.0771191418 33.1599159,0.0771191418 33.434376,0.209476969 L66,15.914184 L66,15.914184 L33.7514694,30.8714646 L0,15.914184 Z" id="路径-35" fill="#5159FF"></path>
<polygon id="路径-36" fill="#464EFC" points="0 15.914184 33.4520548 29.7005328 33.4520548 73 0 55.7680006"></polygon>
<polygon id="路径-36" fill="#2C35FF" transform="translate(49.726027, 44.457092) scale(-1, 1) translate(-49.726027, -44.457092) " points="33.4520548 15.914184 66 29.7005328 66 73 33.4520548 55.7680006"></polygon>
</g>
</g>
<g id="编组备份-10" transform="translate(0.000000, 287.000000)">
<path d="M64.4918013,104.032347 L64.4918013,281 C65.7409423,280.841912 66.6649279,280.648849 67.2637581,280.42081 C67.8178797,280.209797 68.3189369,279.841394 68.8660394,279.546235 C70.3000094,278.772616 87.8281856,268.352112 121.450568,248.284723 C122.85228,247.550207 123.759632,246.796394 124.172623,246.023283 C124.47522,245.456828 124.491801,244.187062 124.491801,242.943461 C124.491801,242.400899 124.491801,184.430633 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-1)"></path>
<path d="M4.49180126,100.032347 L4.49180126,277 C5.74094225,276.841912 6.66492787,276.648849 7.26375811,276.42081 C7.81787965,276.209797 8.31893686,275.841394 8.86603941,275.546235 C10.3000094,274.772616 27.8281856,264.352112 61.4505682,244.284723 C62.8522803,243.550207 63.759632,242.796394 64.1726234,242.023283 C64.4752204,241.456828 64.4918013,240.187062 64.4918013,238.943461 C64.4918013,238.400899 64.4918013,180.430633 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-2)" transform="translate(34.491801, 169.000000) scale(-1, 1) translate(-34.491801, -169.000000) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组备份-17" transform="translate(261.000000, 324.000000)">
<path d="M64.4918013,104.032347 L64.4918013,212.714502 C65.7409423,212.556415 66.6649279,212.363351 67.2637581,212.135313 C67.8178797,211.924299 68.3189369,211.555897 68.8660394,211.260738 C70.3000094,210.487118 87.8281856,200.066614 121.450568,179.999226 C122.85228,179.26471 123.759632,178.510897 124.172623,177.737786 C124.47522,177.171331 124.491801,175.901565 124.491801,174.657964 C124.491801,174.115402 124.491801,138.906968 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-68)"></path>
<path d="M4.49180126,39.267994 L4.49180126,216.235647 C5.74094225,216.077559 6.66492787,215.884496 7.26375811,215.656457 C7.81787965,215.445444 8.31893686,215.077042 8.86603941,214.781883 C10.3000094,214.008263 27.8281856,203.587759 61.4505682,183.520371 C62.8522803,182.785855 63.759632,182.032041 64.1726234,181.258931 C64.4752204,180.692476 64.4918013,179.42271 64.4918013,178.179108 C64.4918013,177.636547 64.4918013,139.921064 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,74.1073982 4.49180126,39.267994 Z" id="路径-37备份-6" fill="url(#linearGradient-69)" transform="translate(34.491801, 127.751821) scale(-1, 1) translate(-34.491801, -127.751821) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
<g id="编组备份-11" transform="translate(119.000000, 220.000000)">
<path d="M64.4918013,104.032347 L64.4918013,346.88241 C65.7409423,346.724322 66.6649279,346.531259 67.2637581,346.30322 C67.8178797,346.092207 68.3189369,345.723805 68.8660394,345.428646 C70.3000094,344.655026 87.8281856,334.234522 121.450568,314.167133 C122.85228,313.432618 123.759632,312.678804 124.172623,311.905694 C124.47522,311.339239 124.491801,310.069473 124.491801,308.825871 C124.491801,308.28331 124.491801,228.35224 124.491801,69.0326611 C122.745204,68.0157741 121.793485,67.184887 121.636645,66.5399996 C121.254819,64.9700233 119.537716,64.2875473 116.640412,66.0119966 C111.957952,68.7989543 106.187063,72.4139099 99.3277457,76.8568635 L75.7771581,91.1087197 L71.8910146,93.4604555 C70.2953751,94.3364181 68.9558048,94.8998495 67.8723038,95.1507498 C66.7888027,95.4016501 65.6619686,98.3621824 64.4918013,104.032347 Z" id="路径-37备份-5" fill="url(#linearGradient-4)"></path>
<path d="M4.49180126,100.032347 L4.49180126,333.869551 C5.74094225,333.711463 6.66492787,333.5184 7.26375811,333.290361 C7.81787965,333.079348 8.31893686,332.710946 8.86603941,332.415787 C10.3000094,331.642167 27.8281856,321.221663 61.4505682,301.154274 C62.8522803,300.419759 63.759632,299.665945 64.1726234,298.892835 C64.4752204,298.32638 64.4918013,297.056614 64.4918013,295.813012 C64.4918013,295.270451 64.4918013,218.343667 64.4918013,65.0326611 C62.7452037,64.0157741 61.793485,63.184887 61.636645,62.5399996 C61.2548187,60.9700233 59.5377163,60.2875473 56.640412,62.0119966 C51.9579519,64.7989543 46.1870632,68.4139099 39.3277457,72.8568635 L15.7771581,87.1087197 L11.8910146,89.4604555 C10.2953751,90.3364181 8.95580481,90.8998495 7.87230377,91.1507498 C6.78880274,91.4016501 5.66196856,94.3621824 4.49180126,100.032347 Z" id="路径-37备份-6" fill="url(#linearGradient-5)" transform="translate(34.491801, 197.434776) scale(-1, 1) translate(-34.491801, -197.434776) "></path>
<path d="M46.0433181,37.9440691 L103.316053,20.9857801 C105.434286,20.3585774 107.659901,21.5672965 108.287104,23.6855297 C108.502288,24.4122656 108.506571,25.1851817 108.299454,25.9142577 L91.9013584,83.6373387 C90.7648569,87.6379476 87.6379476,90.7648569 83.6373387,91.9013584 L25.9142577,108.299454 C23.7892038,108.903144 21.5771201,107.669834 20.9734303,105.544781 C20.7663128,104.815705 20.7705957,104.042789 20.9857801,103.316053 L37.9440691,46.0433181 C39.0980022,42.1461735 42.1461735,39.0980022 46.0433181,37.9440691 Z" id="矩形备份-41" fill="url(#linearGradient-3)" transform="translate(64.603934, 64.603934) rotate(-315.000000) translate(-64.603934, -64.603934) "></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 15</title>
<defs>
<polygon id="path-1" points="18.6314688 9.86329461 28.8157344 6.04024477 39 9.86329461 29.0476485 14.3533506"></polygon>
<filter x="-9.8%" y="-24.1%" width="119.6%" height="148.1%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-119.2%" y="-347.9%" width="338.5%" height="795.9%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="5" in="SourceGraphic"></feGaussianBlur>
</filter>
<polygon id="path-4" points="18.6314688 9.86329461 28.9552449 14.0018463 28.9552449 27 18.6314688 21.8270916"></polygon>
<filter x="-19.4%" y="-11.7%" width="138.7%" height="123.3%" filterUnits="objectBoundingBox" id="filter-5">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<polygon id="path-6" points="28.9552449 9.86329461 39 14.0018463 39 27 28.9552449 21.8270916"></polygon>
<filter x="-19.9%" y="-11.7%" width="139.8%" height="123.3%" filterUnits="objectBoundingBox" id="filter-7">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-69.4%" y="-56.7%" width="238.8%" height="213.4%" filterUnits="objectBoundingBox" id="filter-8">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-239.000000, -724.000000)">
<g id="编组-3" transform="translate(239.000000, 731.000000)">
<polygon id="路径-35" fill="#5159FF" points="0 4.98234761 11.9516129 1.45683922e-13 23.9032258 4.98234761 12.2237727 10.2515946"></polygon>
<polygon id="路径-36" fill="#464EFC" points="0 4.98234761 12.1153336 9.83909124 12.1153336 25.0929061 0 19.0223065"></polygon>
<polygon id="路径-36" fill="#2C35FF" transform="translate(18.009280, 15.037627) scale(-1, 1) translate(-18.009280, -15.037627) " points="12.1153336 4.98234761 23.9032258 9.83909124 23.9032258 25.0929061 12.1153336 19.0223065"></polygon>
<g id="路径-35备份">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<path d="M24.2169677,11.9428409 L24.2169677,16.2538409 L18.8709677,13.949642 L24.2169677,11.9428409 Z M29.8789677,13.3588409 L31.4516129,13.949642 L29.8789677,14.6578409 L29.8789677,13.3588409 Z" id="形状结合" fill="#2C35FF" filter="url(#filter-3)"></path>
<g id="路径-36备份" opacity="0.955259051">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-4"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-5)" xlink:href="#path-4"></use>
</g>
<g id="路径-36备份-2" transform="translate(33.977622, 18.431647) scale(-1, 1) translate(-33.977622, -18.431647) ">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-6"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-7)" xlink:href="#path-6"></use>
</g>
<polygon id="路径-36备份" fill="#2C35FF" opacity="0.616917928" filter="url(#filter-8)" points="14.9471568 12.2487561 24.4412121 7.59001826 24.4412121 18.4316473 11.4754386 23.4587567"></polygon>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 3</title>
<defs>
<path d="M26,0 C33.1797017,0 39,5.82029825 39,13 C39,20.1797017 33.1797017,26 26,26 C18.8202983,26 13,20.1797017 13,13 C13,5.82029825 18.8202983,0 26,0 Z M26,7.15 C22.7691342,7.15 20.15,9.76913421 20.15,13 C20.15,16.2308658 22.7691342,18.85 26,18.85 C29.2308658,18.85 31.85,16.2308658 31.85,13 C31.85,9.76913421 29.2308658,7.15 26,7.15 Z" id="path-1"></path>
<filter x="-7.7%" y="-7.7%" width="115.4%" height="115.4%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.925995022 0 0 0 0 0.979055195 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-75.0%" y="-33.3%" width="250.0%" height="166.7%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-73.000000, -724.000000)">
<g id="编组-10" transform="translate(73.000000, 730.000000)">
<circle id="椭圆形" fill="#2B37FF" cx="13" cy="13" r="13"></circle>
<g id="形状结合">
<use fill="#CAF0FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<path d="M19.0707401,4.00053305 C20.2055087,4.68674137 21.1998945,5.58316408 22.000416,6.63610786 C19.4599633,7.62498611 17.659898,10.1014459 17.659898,13 C17.659898,15.8985541 19.4599633,18.3750139 21.9990067,19.3640866 C21.1996606,20.4171436 20.2049277,21.3137824 19.0697455,22.0000684 C16.0316741,20.1626158 14,16.8195098 14,13 C14,9.19799942 16.0130898,5.86804484 19.0275267,4.02588913 Z" id="形状结合" fill="#3F79FE" opacity="0.812364851" filter="url(#filter-3)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 18</title>
<defs>
<path d="M11.9934123,4.80811501 C8.88704719,-2.82136654 0.058384389,-1.04070459 0,7.81315065 C-0.0347801961,12.9240491 10.887449,21.011809 12.0115764,22 C13.1052349,21.1427886 24.0330306,12.8374288 24,7.75920028 C23.9422098,-1.11533594 14.9573937,-2.51624722 11.9934123,4.80811501 L11.9934123,4.80811501 L11.9934123,4.80811501 Z" id="path-1"></path>
<filter x="-6.3%" y="-6.8%" width="112.5%" height="113.6%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-90.0%" y="-64.3%" width="280.0%" height="228.6%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-239.000000, -649.000000)">
<g id="编组-3" transform="translate(239.000000, 658.000000)">
<g id="gongyizhongxin备份" fill="#464EFC" fill-rule="nonzero">
<path d="M11.9934123,4.80811501 C8.88704719,-2.82136654 0.058384389,-1.04070459 0,7.81315065 C-0.0347801961,12.9240491 10.887449,21.011809 12.0115764,22 C13.1052349,21.1427886 24.0330306,12.8374288 24,7.75920028 C23.9422098,-1.11533594 14.9573937,-2.51624722 11.9934123,4.80811501 L11.9934123,4.80811501 L11.9934123,4.80811501 Z" id="路径"></path>
</g>
<g id="gongyizhongxin" transform="translate(14.000000, 1.000000)" fill-rule="nonzero">
<g id="路径">
<use fill="#D6F2FF" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
</g>
<polygon id="路径-48" fill="#464EFC" opacity="0.605572655" filter="url(#filter-3)" points="14 10.4533035 14 6.61772479 17.1636612 3 20.9731874 3 22.8059701 4.52163388 24 6.61772479 23.3165733 10.4533035 20.9731874 14.5789485 18.6268657 17 14.9095912 14.0059989"></polygon>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 12</title>
<defs>
<polygon id="path-1" points="15.9874971 11.762867 21.7222403 8.84912494 31.3522849 12.5258659 26.2436099 16.4773685"></polygon>
<filter x="-13.0%" y="-26.2%" width="126.0%" height="152.4%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<polygon id="path-3" points="15.9874971 11.762867 26.2436099 16.4773685 26.2436099 36.8491249 15.9874971 30.0679726"></polygon>
<filter x="-19.5%" y="-8.0%" width="139.0%" height="115.9%" filterUnits="objectBoundingBox" id="filter-4">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<polygon id="path-5" points="26.2436099 12.5258659 31.3522849 16.5588968 31.3522849 36.4521948 26.2436099 31.0632283"></polygon>
<filter x="-39.1%" y="-8.4%" width="178.3%" height="116.7%" filterUnits="objectBoundingBox" id="filter-6">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-69.4%" y="-56.7%" width="238.8%" height="213.4%" filterUnits="objectBoundingBox" id="filter-7">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-73.000000, -793.000000)">
<g id="编组-11" transform="translate(77.000000, 794.150875)">
<polygon id="路径-35" fill="#5159FF" points="0 3.83147255 7.63790342 0 20.1153336 3.83147255 12.1153336 8.77094598"></polygon>
<polygon id="路径-36" fill="#464EFC" points="0 3.83147255 12.1153336 8.77094598 12.1153336 31.942031 0 25.8714314"></polygon>
<polygon id="路径-36" fill="#2C35FF" transform="translate(16.115334, 17.895578) scale(-1, 1) translate(-16.115334, -17.895578) " points="12.1153336 3.84912494 20.1153336 8.70586858 20.1153336 31.942031 12.1153336 25.8714314"></polygon>
<g id="路径-35备份">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<g id="路径-36备份" opacity="0.955259051">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-3"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
</g>
<g id="路径-36备份-2" transform="translate(28.797947, 24.489030) scale(-1, 1) translate(-28.797947, -24.489030) ">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-5"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-6)" xlink:href="#path-5"></use>
</g>
<polygon id="路径-36备份" fill="#2C35FF" opacity="0.616917928" filter="url(#filter-7)" points="12.9471568 19.0978811 22.4412121 14.4391432 22.4412121 25.2807722 9.4754386 30.3078817"></polygon>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 20</title>
<defs>
<path d="M0,7.85558641 L18.419033,7.85558641 L18.419033,11.0027772 L17.8549348,11.0027772 C17.5279213,11.0027772 17.3153626,10.9160436 17.2172585,10.7425764 C17.1191545,10.5691092 17.0374011,10.3749911 16.9719985,10.1602222 C16.9065958,9.94545325 16.8044041,9.74720501 16.6654233,9.56547746 C16.5264426,9.38374991 16.2607442,9.27636545 15.868328,9.24332408 C15.4759119,9.22680339 15.1202847,9.29701631 14.8014466,9.45396283 C14.4826085,9.61090935 14.1760334,9.78850673 13.8817213,9.98675497 C13.5874092,10.1850032 13.2971847,10.3708609 13.0110479,10.5443281 C12.7249112,10.7177953 12.4183361,10.8045289 12.0913226,10.8045289 C11.7643091,10.8045289 11.519049,10.7301859 11.3555423,10.5814997 C11.1920356,10.4328135 11.0407919,10.2717368 10.9018111,10.0982696 C10.7628304,9.92480239 10.6034114,9.7637257 10.423554,9.61503952 C10.2436966,9.46635334 9.98208579,9.39201025 9.63872166,9.39201025 C9.29535753,9.39201025 8.9519934,9.44983266 8.60862927,9.56547746 C8.26526514,9.68112227 7.93007635,9.80915759 7.60306289,9.94958342 C7.27604943,10.0900093 6.94903597,10.2180446 6.62202252,10.3336894 C6.29500906,10.4493342 5.97617094,10.5071566 5.66550815,10.5071566 C5.3384947,10.5071566 5.06053326,10.4658549 4.83162384,10.3832514 C4.60271442,10.300648 4.36971733,10.2056541 4.13263257,10.0982696 C3.89554781,9.99088514 3.64211238,9.88763085 3.37232628,9.78850673 C3.10254018,9.68938261 2.76326372,9.62329986 2.35449689,9.59025849 C1.89667805,9.55721712 1.46338522,9.61916969 1.0546184,9.77611621 C0.645851579,9.93306274 0.294312112,10.1106601 0,10.3089084 L0,7.85558641 L0,7.85558641 Z M0,15.6120487 L18.419033,15.6120487 L18.419033,18.7096774 L0,18.7096774 L0,15.6120487 Z M15.696646,11.0027772 C15.9746074,10.9862565 16.1871662,11.0440789 16.3343222,11.1762444 C16.4814783,11.3084099 16.6245467,11.4653564 16.7635274,11.647084 C16.9025081,11.8288115 17.0537518,11.9940184 17.2172585,12.1427046 C17.3807653,12.2913907 17.6096747,12.3657338 17.9039868,12.3657338 L18.419033,12.3657338 L18.419033,14.0508438 L0,14.0508438 L0,12.1179235 C0.212558747,11.9196753 0.510958528,11.7090365 0.89519934,11.4860073 C1.27944015,11.262978 1.71682065,11.1514634 2.20734084,11.1514634 C2.56705564,11.1514634 2.85319242,11.2092858 3.06575117,11.3249306 C3.27830991,11.4405754 3.48269332,11.5686107 3.6789014,11.7090365 C3.87510947,11.8494624 4.09993122,11.9774977 4.35336665,12.0931425 C4.60680208,12.2087873 4.96242922,12.2666097 5.42024806,12.2666097 C5.8780669,12.2666097 6.29092139,12.2129175 6.65881153,12.105533 C7.02670167,11.9981485 7.3700658,11.8742434 7.68890392,11.7338176 C8.00774204,11.5933917 8.30205416,11.4694866 8.57184026,11.3621021 C8.84162636,11.2547177 9.09914946,11.2010254 9.34440955,11.2010254 C9.7368257,11.2010254 10.0066118,11.2671082 10.1537679,11.3992737 C10.3009239,11.5314392 10.435817,11.671865 10.558447,11.8205512 C10.6810771,11.9692373 10.8323208,12.1096632 11.0121782,12.2418287 C11.1920356,12.3739942 11.5026984,12.4400769 11.9441665,12.4400769 C12.3856347,12.4400769 12.7780509,12.369864 13.121415,12.2294382 C13.4647791,12.0890123 13.7795296,11.9320658 14.0656663,11.7585986 C14.3518031,11.5851314 14.6256769,11.4240547 14.8872877,11.2753685 C15.1488984,11.1266823 15.4186845,11.0358186 15.696646,11.0027772 L15.696646,11.0027772 Z M18.419033,6.29438154 L0,6.29438154 L0,4.73317667 C0.130805383,4.03930784 0.465994177,3.40326141 1.00556638,2.82503739 C1.54513859,2.24681336 2.23186685,1.74706259 3.06575117,1.32578509 C3.89963548,0.904507584 4.84388684,0.578224026 5.89850524,0.346934416 C6.95312364,0.115644805 8.06088173,0 9.22177951,0 C10.399028,0 11.5149614,0.115644805 12.5695798,0.346934416 C13.6241982,0.578224026 14.5602742,0.904507584 15.3778078,1.32578509 C16.1953415,1.74706259 16.8738944,2.24681336 17.4134666,2.82503739 C17.9530388,3.40326141 18.2882276,4.03930784 18.419033,4.73317667 L18.419033,6.29438154 Z M5.24856599,3.1719718 C5.46112474,3.1719718 5.64098214,3.09762871 5.7881382,2.94894253 C5.93529426,2.80025636 6.00887228,2.6185288 6.00887228,2.40375988 C6.00887228,2.18899096 5.93529426,2.00726341 5.7881382,1.85857723 C5.64098214,1.70989105 5.46112474,1.63554796 5.24856599,1.63554796 C5.03600725,1.63554796 4.85614985,1.70989105 4.70899379,1.85857723 C4.56183773,2.00726341 4.48825971,2.18899096 4.48825971,2.40375988 C4.48825971,2.6185288 4.56183773,2.80025636 4.70899379,2.94894253 C4.85614985,3.09762871 5.03600725,3.1719718 5.24856599,3.1719718 Z M9.83492974,1.63554796 C10.0638392,1.63554796 10.2477842,1.56120487 10.3867649,1.41251869 C10.5257457,1.26383251 10.595236,1.08210496 10.595236,0.867336039 C10.595236,0.652567115 10.5257457,0.470839564 10.3867649,0.322153386 C10.2477842,0.173467208 10.0638392,0.0991241188 9.83492974,0.0991241188 C9.62237099,0.0991241188 9.44660126,0.173467208 9.30762054,0.322153386 C9.16863982,0.470839564 9.09914946,0.652567115 9.09914946,0.867336039 C9.09914946,1.08210496 9.16863982,1.26383251 9.30762054,1.41251869 C9.44660126,1.56120487 9.62237099,1.63554796 9.83492974,1.63554796 Z M12.9252069,3.1719718 C13.1377657,3.1719718 13.3176231,3.09762871 13.4647791,2.94894253 C13.6119352,2.80025636 13.6855132,2.6185288 13.6855132,2.40375988 C13.6855132,2.18899096 13.6119352,2.00726341 13.4647791,1.85857723 C13.3176231,1.70989105 13.1377657,1.63554796 12.9252069,1.63554796 C12.7126482,1.63554796 12.5327908,1.70989105 12.3856347,1.85857723 C12.2384787,2.00726341 12.1649006,2.18899096 12.1649006,2.40375988 C12.1649006,2.6185288 12.2384787,2.80025636 12.3856347,2.94894253 C12.5327908,3.09762871 12.7126482,3.1719718 12.9252069,3.1719718 Z" id="path-1"></path>
<filter x="-5.4%" y="-5.3%" width="110.9%" height="110.7%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="0.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-130.2%" y="-213.9%" width="360.4%" height="527.9%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
<filter x="-130.2%" y="-213.9%" width="360.4%" height="527.9%" filterUnits="objectBoundingBox" id="filter-4">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
<filter x="-130.2%" y="-213.9%" width="360.4%" height="527.9%" filterUnits="objectBoundingBox" id="filter-5">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
<filter x="-128.3%" y="-213.8%" width="356.6%" height="527.6%" filterUnits="objectBoundingBox" id="filter-6">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-73.000000, -651.000000)">
<g id="编组-8" transform="translate(78.000000, 655.000000)">
<g id="编组-2">
<g id="编组">
<path d="M1.26726749,28.9753838 C1.23114903,28.9590755 1.18299108,28.9142274 1.1589121,28.8734564 C1.11878048,28.8061843 1.11276074,28.7552206 1.08667518,28.2353909 C1.07062253,27.9255315 0.0492727155,11.8304641 0.0151608355,11.1638589 C-0.0189510444,10.4972536 0.0151608355,6.48000502 0.0151608355,5.85824783 C0.0151608355,5.62993044 0.0191739979,5.60750641 0.0653253648,5.53819577 C0.0934175012,5.49538626 0.133549125,5.45257675 0.155621518,5.44034546 C0.183713654,5.42607563 1.74483381,5.41995998 5.22625214,5.41995998 C8.139808,5.41995998 10.2848433,5.41384434 10.3189552,5.4036516 C10.353067,5.39345886 10.4172776,5.36491918 10.463429,5.3404566 C10.5095804,5.31803257 10.5617515,5.29764709 10.5778041,5.29764709 C10.5938568,5.29764709 10.6239555,5.27726161 10.6440213,5.25279903 C10.6640871,5.22629791 10.7142516,5.18756549 10.7563899,5.16718001 C10.8125741,5.13660179 10.8486926,5.09379228 10.9068834,4.98371068 C11.019252,4.76354748 11.1637258,4.43534123 11.2520154,4.18663835 C11.2760944,4.11936626 11.3242523,3.99093773 11.3563576,3.90124161 C11.5168841,3.46295376 11.575075,3.27744588 11.5951408,3.1469788 C11.6071803,3.06951397 11.6432987,2.89012173 11.675404,2.75150046 C11.7075093,2.61287918 11.7335949,2.4824121 11.7335949,2.45794952 C11.7335949,2.35602211 11.9523122,1.59972075 12.0466215,1.37344191 C12.2031349,1.0003876 12.3435956,0.782262944 12.5783656,0.547829907 C12.7850434,0.339897996 12.8231685,0.311358322 13.0178068,0.211469462 C13.170307,0.134004633 13.2465571,0.107503507 13.5214587,0.0361543215 C13.6699457,-0.000539545167 13.7843208,-0.00257809332 17.2115615,0.00149900298 L20.7491641,0.00761464743 L20.8113681,0.0850794771 L20.8735721,0.164582855 L20.8795919,0.859727774 C20.883605,1.31228546 20.8775853,1.58341237 20.8655458,1.63029897 C20.8514997,1.67718558 20.8153813,1.72814928 20.7672233,1.7628046 L20.6929798,1.8219225 L17.1914957,1.83211524 C14.2398148,1.84026943 13.6819852,1.84638508 13.6358338,1.87084766 C13.5555706,1.91161862 13.5033995,2.04004715 13.4692876,2.27244164 C13.4532349,2.38252324 13.4171165,2.59453225 13.3910309,2.73926917 C13.3629388,2.88604463 13.3127743,3.15513299 13.280669,3.34064087 C13.1743202,3.94608967 13.0940569,4.38437752 13.0258332,4.743162 C12.9877081,4.93682407 12.9576094,5.11825486 12.9576094,5.14475598 C12.9576094,5.21610517 12.9937279,5.28133871 13.0639582,5.33841806 C13.1201425,5.38530466 13.1502412,5.39142031 13.3789914,5.4036516 C13.5174455,5.40976724 13.9488605,5.41588289 14.3381372,5.41792143 C15.1387631,5.41995998 15.1387631,5.41995998 15.2069869,5.568774 C15.2431054,5.65235447 15.2069869,5.93123336 15.2069869,10.8706355 C14.4525124,22.5762471 14.0719308,28.4732215 14.0652422,28.5615586 C14.0511961,28.771529 14.0431698,28.8082229 13.9930053,28.8795721 C13.9609,28.9264587 13.9147486,28.9672296 13.8846499,28.9753838 C13.8545512,28.9814995 11.0172454,28.9916922 7.57997186,28.9957693 C2.15618295,29.0039235 1.32144518,29.001885 1.26726749,28.9753838 Z" id="路径" fill="#2B37FF" fill-rule="nonzero"></path>
<g id="hanbao" transform="translate(10.580967, 8.419355)" fill-rule="nonzero">
<g id="形状">
<use fill="#CAF0FF" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
</g>
<ellipse id="椭圆形" fill="#2B37FF" filter="url(#filter-3)" transform="translate(12.883346, 12.629032) rotate(-12.000000) translate(-12.883346, -12.629032) " cx="12.8833461" cy="12.6290323" rx="2.30395395" ry="1.40230341"></ellipse>
<ellipse id="椭圆形备份-4" fill="#2B37FF" filter="url(#filter-4)" transform="translate(11.041443, 25.725806) rotate(-12.000000) translate(-11.041443, -25.725806) " cx="11.0414428" cy="25.7258065" rx="2.30395395" ry="1.40230341"></ellipse>
</g>
<ellipse id="椭圆形备份-2" fill="#2B37FF" filter="url(#filter-5)" transform="translate(11.962394, 21.048387) rotate(-12.000000) translate(-11.962394, -21.048387) " cx="11.9623945" cy="21.0483871" rx="2.30395395" ry="1.40230341"></ellipse>
</g>
<ellipse id="椭圆形备份" fill="#2B37FF" filter="url(#filter-6)" transform="translate(12.182715, 17.306452) rotate(-12.000000) translate(-12.182715, -17.306452) " cx="12.1827151" cy="17.3064516" rx="2.33870968" ry="1.40322581"></ellipse>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 13</title>
<defs>
<polygon id="path-1" points="24.2832244 24 24.2832244 5.05263158 32 5.05263158 32 0 9 0 9 5.05263158 16.7167756 5.05263158 16.7167756 24"></polygon>
<filter x="-8.7%" y="-8.3%" width="117.4%" height="116.7%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-200.0%" y="-200.0%" width="500.0%" height="500.0%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
<filter x="-200.0%" y="-150.0%" width="500.0%" height="400.0%" filterUnits="objectBoundingBox" id="filter-4">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-154.000000, -793.000000)">
<g id="编组" transform="translate(158.000000, 801.000000)">
<polygon id="路径" fill="#2B37FF" fill-rule="nonzero" points="7.71875 24 7.71875 14.1937244 17.3544643 14.1937244 17.3544643 9.3478854 7.71875 9.3478854 7.71875 5.1568895 19 5.1568895 19 0 0 0 0 24"></polygon>
<g id="路径" fill-rule="nonzero">
<use fill="#D3F1FC" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<rect id="矩形" fill="#2B37FF" filter="url(#filter-3)" x="10" y="1" width="3" height="3"></rect>
<rect id="矩形备份-3" fill="#2B37FF" filter="url(#filter-4)" x="15" y="10" width="3" height="4"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 16</title>
<defs>
<path d="M15.3576238,16.0571741 L22.8576238,16.0571741 L30.3576238,16.0571741 C31.4621933,16.0571741 32.3576238,16.9526046 32.3576238,18.0571741 L32.3576238,24.0571741 C32.3576238,25.1617436 31.4621933,26.0571741 30.3576238,26.0571741 L15.3576238,26.0571741 C14.2530543,26.0571741 13.3576238,25.1617436 13.3576238,24.0571741 L13.3576238,18.0571741 C13.3576238,16.9526046 14.2530543,16.0571741 15.3576238,16.0571741 Z" id="path-1"></path>
<filter x="-10.5%" y="-20.0%" width="121.1%" height="140.0%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-20.8%" y="-23.1%" width="141.5%" height="146.2%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="1" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-316.000000, -724.000000)">
<g id="编组-4" transform="translate(319.000000, 728.000000)">
<path d="M13,0 C20.1797017,0 26,5.82029825 26,13 C26,20.1797017 20.1797017,26 13,26 C5.82029825,26 0,20.1797017 0,13 C0,5.82029825 5.82029825,0 13,0 Z M13,7.15 C9.76913421,7.15 7.15,9.76913421 7.15,13 C7.15,16.2308658 9.76913421,18.85 13,18.85 C16.2308658,18.85 18.85,16.2308658 18.85,13 C18.85,9.76913421 16.2308658,7.15 13,7.15 Z" id="形状结合备份" fill="#2B37FF"></path>
<g id="矩形" transform="translate(22.857624, 21.057174) rotate(38.000000) translate(-22.857624, -21.057174) ">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<path d="M25.6819989,16.0130885 C24.1769994,20.1431963 21.3644644,22.964575 17.2443936,24.4772246 C13.1243229,25.9898743 11.1237092,25.5286982 11.2425523,23.0936962 L12.0302044,18.8994402 L14.6908875,18.3682456 L18.4597767,13.3634796 L20.5077864,12.3466437 L24.5718172,12.3466437 L25.6819989,16.0130885 Z" id="路径-39" fill="#2B37FF" opacity="0.255907331" filter="url(#filter-3)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 19</title>
<defs>
<path d="M18.4397084,2.83043707 L9.49843615,0 L0.560144364,2.83043707 C0.224092212,2.93617606 -0.00292306286,3.24794512 2.84428356e-05,3.6005735 L2.84428356e-05,14.8663569 C0.0179404854,14.9428753 0.439433835,16.7973935 2.26698131,18.5932229 C3.67303543,19.9745158 7.04572736,21.7500393 8.51685588,22.5199281 C8.74660329,22.640525 8.85588854,22.6846036 8.95300339,22.7373492 L9.38939927,22.9547704 C9.50439716,23.0164308 9.71079727,23.0137069 9.82579516,22.9547704 L10.262191,22.7373492 C11.1228124,22.3171172 15.1055147,20.189213 16.729891,18.5932229 C18.5606673,16.7973935 18.9821607,14.9428753 18.9998995,14.8663569 L18.9998995,3.6005735 C19.005508,3.24794512 18.7757606,2.93617606 18.4397084,2.83043707 Z M9.64390082,21.2510953 L9.61990082,21.2390953 L9.67890082,21.2390953 C9.65590082,21.2510953 9.64390082,21.2510953 9.64390082,21.2510953 Z" id="path-1"></path>
<filter x="-10.5%" y="-8.7%" width="121.1%" height="117.4%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-229.1%" y="-80.0%" width="558.1%" height="260.0%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="4" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-155.000000, -651.000000)">
<g id="编组-9" transform="translate(156.000000, 659.000000)">
<g id="yiliao" fill="#2B37FF" fill-rule="nonzero">
<path d="M23.6253511,4.80013869 L18.5626755,4.80013869 L18.5626755,1.60050854 C18.5626755,0.719812765 17.8029231,0 16.8753511,0 L10.1253511,0 C9.19707688,0 8.43732446,0.720506227 8.43732446,1.60050854 L8.43732446,4.80013869 L3.37464891,4.80013869 C1.51810049,4.80013869 0,6.23976422 0,8.00046231 L0,20.8003698 C0,22.5610679 1.51810049,24 3.37464891,24 L23.6253511,24 C25.4811973,24 27,22.5610679 27,20.8003698 L27,8.00046231 C27,6.23976422 25.4811973,4.80013869 23.6253511,4.80013869 Z M10.1246489,1.60050854 L16.8753511,1.60050854 L16.8753511,4.80013869 L10.1246489,4.80013869 L10.1246489,1.60050854 Z M20.25,16.0002312 L15.1873245,16.0002312 L15.1873245,20.8003698 L11.8126755,20.8003698 L11.8126755,16.0002312 L6.75,16.0002312 L6.75,12.800601 L11.8126755,12.800601 L11.8126755,8.00046231 L15.1873245,8.00046231 L15.1873245,12.800601 L20.25,12.800601 L20.25,16.0002312 Z" id="形状"></path>
</g>
<g id="quanxian" transform="translate(18.000000, 3.000000)" fill-rule="nonzero">
<g id="形状">
<use fill="#D3F1FC" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
</g>
<path d="M20.4376222,7.58618207 L25.2385539,6 L25.2385539,20.1232007 C24.0230802,20.7077336 23.222925,21 22.838088,21 C22.4532511,21 21.5072312,19.8003524 20.0000284,17.4010572 L20.4376222,7.58618207 Z" id="路径-47" fill="#2B37FF" opacity="0.673104422" filter="url(#filter-3)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 17</title>
<defs>
<path d="M15.3576238,16.0571741 L22.8576238,16.0571741 L30.3576238,16.0571741 C31.4621933,16.0571741 32.3576238,16.9526046 32.3576238,18.0571741 L32.3576238,24.0571741 C32.3576238,25.1617436 31.4621933,26.0571741 30.3576238,26.0571741 L15.3576238,26.0571741 C14.2530543,26.0571741 13.3576238,25.1617436 13.3576238,24.0571741 L13.3576238,18.0571741 C13.3576238,16.9526046 14.2530543,16.0571741 15.3576238,16.0571741 Z" id="path-1"></path>
<filter x="-10.5%" y="-20.0%" width="121.1%" height="140.0%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-20.8%" y="-23.1%" width="141.5%" height="146.2%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="1" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-316.000000, -649.000000)">
<g id="编组-4" transform="translate(320.000000, 654.000000)">
<path d="M13,0 C20.1797017,0 26,5.82029825 26,13 C26,20.1797017 20.1797017,26 13,26 C5.82029825,26 0,20.1797017 0,13 C0,5.82029825 5.82029825,0 13,0 Z M13,7.15 C9.76913421,7.15 7.15,9.76913421 7.15,13 C7.15,16.2308658 9.76913421,18.85 13,18.85 C16.2308658,18.85 18.85,16.2308658 18.85,13 C18.85,9.76913421 16.2308658,7.15 13,7.15 Z" id="形状结合备份" fill="#2B37FF"></path>
<g id="矩形" transform="translate(22.857624, 21.057174) rotate(38.000000) translate(-22.857624, -21.057174) ">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<path d="M25.6819989,16.0130885 C24.1769994,20.1431963 21.3644644,22.964575 17.2443936,24.4772246 C13.1243229,25.9898743 11.1237092,25.5286982 11.2425523,23.0936962 L12.0302044,18.8994402 L14.6908875,18.3682456 L18.4597767,13.3634796 L20.5077864,12.3466437 L24.5718172,12.3466437 L25.6819989,16.0130885 Z" id="路径-39" fill="#2B37FF" opacity="0.255907331" filter="url(#filter-3)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="39px" height="39px" viewBox="0 0 39 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 14</title>
<defs>
<path d="M3.15124686,17.2970976 C3.9462555,17.7720317 4.89189734,17.9993215 5.94130874,17.9993215 L5.95637206,17.9993215 C7.71108164,17.9993215 9.37608079,17.151225 10.5011435,15.6802865 C11.611143,17.1519035 13.2761421,17.9830381 15.0157883,18 C16.7564388,17.9837165 18.4057052,17.1346023 19.5157046,15.680965 C20.6407674,17.1519035 22.3057665,18 24.0755394,18 C25.1554122,17.9837165 26.1157826,17.7387863 26.9104565,17.2652092 C29.4156543,15.7298153 30.6003008,12.4955145 29.7005184,9.50682246 L29.7005184,9.45763286 C29.6873567,9.39040088 29.6671581,9.32478299 29.6402651,9.26189219 L27.1056102,2.31937428 C26.6704476,0.898303803 25.4556744,0 23.9255757,0 L6.13612771,0 C4.63615562,0 3.48130097,0.88202037 3.06120166,2.25390125 L0.346456405,9.32634752 C0.331393081,9.37553712 0.316329758,9.42438748 0.301266435,9.48986054 C0.103706269,10.1519711 0.00222185163,10.8396822 0,11.5313984 C0.00100422917,13.93219 1.20138357,16.1538636 3.15124686,17.2970976 L3.15124686,17.2970976 Z" id="path-1"></path>
<filter x="-6.7%" y="-11.1%" width="113.3%" height="122.2%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 0.975633704 0 0 0 0 0.975633704 0 0 0 0 0.975633704 0 0 0 0.5 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-20.7%" y="-66.7%" width="141.4%" height="233.3%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-154.000000, -723.000000)">
<g id="编组-2" transform="translate(158.000000, 727.000000)">
<g id="编组-3">
<path d="M27.85816,11.8245379 C27.7459357,11.8349613 27.6352643,11.8726578 27.5297366,11.9364041 C26.676619,12.5397686 25.752731,12.8232884 24.8249138,12.7664513 C23.042869,12.598652 21.6982691,11.9643706 20.3849154,10 C19.0875242,11.9917778 17.430124,13.0707274 15.7102317,13.098694 C13.9441496,13.0707275 12.2867494,12.2960539 10.9893582,10.3316833 C9.69298598,12.3223425 8.01860425,13.262578 6.25184282,13.262578 C5.17317416,13.262578 4.56353618,12.9029281 3.57860576,12.2395615 C3.54702005,12.211595 3.51611363,12.211595 3.50015096,12.1836284 L3.37584594,12.1008474 C3.29335269,12.0732476 3.2098516,12.0545633 3.12587738,12.0449143 C2.50027673,12.0449143 2,12.9577426 2,14.0646587 L2,24.8541544 C2,27.7033868 3.29773075,30 4.89229918,30 L26.1077008,29.9720335 C27.7039674,29.9446262 29,27.648013 29,24.8261879 L28.9840374,13.8437229 C28.9840374,12.7373661 28.483421,11.8245379 27.85816,11.8245379 L27.85816,11.8245379 Z" id="路径备份-2" fill="#2B37FF" fill-rule="nonzero"></path>
<g id="路径备份-3" fill-rule="nonzero">
<use fill="#D3F1FC" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<polygon id="路径-38" fill="#2B37FF" opacity="0.211515154" filter="url(#filter-3)" points="1 14.5096473 1.90733553 17.6233463 1.90733553 19 28.2442085 18.4818267 30 12.4645803 21.6243852 10.7200204 15.5 10 9.06704196 10 6.60401691 10.3477881 1.51669945 12.9582619 1 14.1489292"></polygon>
</g>
<g id="编组-7" transform="translate(11.000000, 21.000000)">
<circle id="椭圆形" fill="#D3F1FC" cx="8" cy="1" r="1"></circle>
<circle id="椭圆形备份-3" fill="#D3F1FC" cx="1" cy="1" r="1"></circle>
<path d="M1,1 C1,2.87572235 2.56700338,4 4.5,4 C6.43299662,4 8,2.87572235 8,1" id="路径" stroke="#D3F1FC"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<template> <template>
<div class=" bg-blue-50 h-screen pt-20 md:min-w-bodySet mx-auto"> <div class=" bg-blue-50 h-screen pt-20 md:min-w-bodySet mx-auto">
home home
</div> </div>
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment