提交 c9d92888 编写于 作者: llz's avatar llz

avue-data init

上级 0920c06f
......@@ -24,6 +24,7 @@
:isBlankMode="isBlankMode"
:defPSAppView="defPSAppView"
name="appmenu"
:xxx='"{\"zz\":123}"'
ref='appmenu'
@closeview="closeView($event)">
</view_appmenu>
......
......@@ -165,6 +165,40 @@ export declare interface Util {
* @memberof Util
*/
validateItem(property: string, data:any, rules:any): Promise<any>
/**
* 清除cookie
*
* @static
* @param {string} cookieName
* @param {boolean} [isDomain] 是否在主域下
* @memberof Util
*/
clearCookie(cookieName: string, isDomain?: boolean)
/**
* 获取cookie
*
* @static
* @param {string} name
* @return {*} {*}
* @memberof Util
*/
getCookie(name: string): string
/**
* 设置cookie
*
* @static
* @param {*} name 名称
* @param {*} value 值
* @param {*} day 过期天数
* @param {boolean} [isDomain=false] 是否设置在主域下
* @param {string} [path='/'] 默认归属路径
* @memberof Util
*/
setCookie(name: string, value: string, day: number, isDomain: boolean, path: string): void
}
declare module "vue/types/vue" {
......
......@@ -427,4 +427,73 @@ export class Util {
// 校验返回Promise
return schema.validate({ [property]: value })
}
/**
* 清除cookie
*
* @static
* @param {string} cookieName
* @param {boolean} [isDomain] 是否在主域下
* @memberof Util
*/
public static clearCookie(cookieName: string, isDomain?: boolean) {
this.setCookie(cookieName, '', -1, isDomain);
}
/**
* 获取cookie
*
* @static
* @param {string} name
* @return {*} {*}
* @memberof Util
*/
public static getCookie(name: string): string {
const reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
const arr = document.cookie.match(reg);
if (arr && arr.length > 1) {
return unescape(arr[2]);
} else {
return '';
}
}
/**
* 设置cookie
*
* @static
* @param {*} name 名称
* @param {*} value 值
* @param {*} day 过期天数
* @param {boolean} [isDomain=false] 是否设置在主域下
* @param {string} [path='/'] 默认归属路径
* @memberof Util
*/
public static setCookie(name: string, value: string, day: number = 0, isDomain: boolean = false, path: string = '/'): void {
let domain = '';
// 设置cookie到主域下
if (isDomain) {
// 是否为ip正则
const regIPExpr = /^[\d\.]$/;
// 根域名正则
const regDomainExpr = /[^:\.\/]+(?:(?<ext>\.(?:com|net|org|edu|gov|biz|tv|me|pro|name|cc|co|info|cm))|(?<ctr>\.(?:cn|us|hk|tw|uk|it|fr|br|in|de))|\k<ext>\k<ctr>)+$/;
// 为ip时忽略
if(!regIPExpr.test(location.hostname)){
const host = location.hostname;
let ret = host.match(regDomainExpr);
if(ret && ret[0]){
domain = ';domain=' + ret[0];
}
}
}
if (day !== 0) { //当设置的时间等于0时,不设置expires属性,cookie在浏览器关闭后删除
const expires = day * 24 * 60 * 60 * 1000;
const date = new Date(new Date().getTime() + expires);
document.cookie = `${name}=${escape(value)};path=${path};expires=${date.toUTCString()}${domain}`;
} else {
document.cookie = `${name}=${escape(value)};path=${path}${domain}`;
}
}
}
\ No newline at end of file
......@@ -14,7 +14,8 @@ module.exports = {
port: 8111,
compress: true,
disableHostCheck: true,
proxy: "http://localhost:8080/",
//proxy: "http://172.16.180.237:30010/",
proxy: "http://172.16.100.70:8086/",
historyApiFallback: {
rewrites: [
]
......
......@@ -1190,6 +1190,11 @@
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^13.0.0"
"@json-editor/json-editor@1.4.0-beta.0":
version "1.4.0-beta.0"
resolved "https://registry.npm.taobao.org/@json-editor/json-editor/download/@json-editor/json-editor-1.4.0-beta.0.tgz#a3c0ab5df95daa0f549bc725f24a9abc4ddb00a2"
integrity sha1-o8CrXfldqg9Um8cl8kqavE3bAKI=
"@mrmlnc/readdir-enhanced@^2.2.1":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
......@@ -1210,6 +1215,15 @@
dependencies:
mkdirp "^1.0.4"
"@nuxt/opencollective@^0.3.2":
version "0.3.2"
resolved "https://registry.npm.taobao.org/@nuxt/opencollective/download/@nuxt/opencollective-0.3.2.tgz#83cb70cdb2bac5fad6f8c93529e7b11187d49c02"
integrity sha1-g8twzbK6xfrW+Mk1KeexEYfUnAI=
dependencies:
chalk "^4.1.0"
consola "^2.15.0"
node-fetch "^2.6.1"
"@popperjs/core@^2.4.3":
version "2.4.4"
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.4.4.tgz#11d5db19bd178936ec89cd84519c4de439574398"
......@@ -2467,6 +2481,22 @@ boolbase@^1.0.0, boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
bootstrap-vue@^2.18.1:
version "2.19.0"
resolved "https://registry.npm.taobao.org/bootstrap-vue/download/bootstrap-vue-2.19.0.tgz#5019df48251e552a5c34da57fc97dabebd53b02f"
integrity sha1-UBnfSCUeVSpcNNpX/Jfavr1TsC8=
dependencies:
"@nuxt/opencollective" "^0.3.2"
bootstrap ">=4.5.3 <5.0.0"
popper.js "^1.16.1"
portal-vue "^2.1.7"
vue-functional-data-merge "^3.1.0"
"bootstrap@>=4.5.3 <5.0.0":
version "4.5.3"
resolved "https://registry.npm.taobao.org/bootstrap/download/bootstrap-4.5.3.tgz#c6a72b355aaf323920be800246a6e4ef30997fe6"
integrity sha1-xqcrNVqvMjkgvoACRqbk7zCZf+Y=
brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
......@@ -2870,6 +2900,14 @@ chalk@^3.0.0:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
chalk@^4.1.0:
version "4.1.0"
resolved "https://registry.npm.taobao.org/chalk/download/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
integrity sha1-ThSHCmGNni7dl92DRf2dncMVZGo=
dependencies:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
check-more-types@2.24.0:
version "2.24.0"
resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
......@@ -3240,6 +3278,11 @@ connect-history-api-fallback@^1.6.0:
resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
consola@^2.15.0:
version "2.15.0"
resolved "https://registry.npm.taobao.org/consola/download/consola-2.15.0.tgz#40fc4eefa4d2f8ef2e2806147f056ea207fcc0e9"
integrity sha1-QPxO76TS+O8uKAYUfwVuogf8wOk=
console-browserify@^1.1.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
......@@ -7251,6 +7294,11 @@ node-cache@^4.1.1:
clone "2.x"
lodash "^4.17.15"
node-fetch@^2.6.1:
version "2.6.1"
resolved "https://registry.npm.taobao.org/node-fetch/download/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
integrity sha1-BFvTI2Mfdu0uK1VXM5RBa2OaAFI=
node-forge@0.9.0:
version "0.9.0"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579"
......@@ -7960,6 +8008,16 @@ popper.js@^1.14.6:
resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.0.tgz#2e1816bcbbaa518ea6c2e15a466f4cb9c6e2fbb3"
integrity sha512-+G+EkOPoE5S/zChTpmBSSDYmhXJ5PsW8eMhH8cP/CQHMFPBG/kC9Y5IIw6qNYgdJ+/COf0ddY2li28iHaZRSjw==
popper.js@^1.16.1:
version "1.16.1"
resolved "https://registry.npm.taobao.org/popper.js/download/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
integrity sha1-KiI8s9x7YhPXQOQDcr5A3kPmWxs=
portal-vue@^2.1.7:
version "2.1.7"
resolved "https://registry.npm.taobao.org/portal-vue/download/portal-vue-2.1.7.tgz#ea08069b25b640ca08a5b86f67c612f15f4e4ad4"
integrity sha1-6ggGmyW2QMoIpbhvZ8YS8V9OStQ=
portfinder@^1.0.25:
version "1.0.25"
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca"
......@@ -10318,6 +10376,11 @@ vue-class-component@^7.0.2, vue-class-component@^7.1.0:
resolved "https://registry.yarnpkg.com/vue-class-component/-/vue-class-component-7.2.2.tgz#aecc6d28801f64c61eb04407cf3a5476da26b0c0"
integrity sha512-QjVfjRffux0rUBNtxr1hvUxDrfifDvk9q/OSdB/sKIlfxAudDF2E1YTeiEC+qOYIOOBGWkgSKQSnast6H+S38w==
vue-functional-data-merge@^3.1.0:
version "3.1.0"
resolved "https://registry.npm.taobao.org/vue-functional-data-merge/download/vue-functional-data-merge-3.1.0.tgz#08a7797583b7f35680587f8a1d51d729aa1dc657"
integrity sha1-CKd5dYO381aAWH+KHVHXKaodxlc=
vue-grid-layout@^2.3.7:
version "2.3.7"
resolved "https://registry.yarnpkg.com/vue-grid-layout/-/vue-grid-layout-2.3.7.tgz#d148f013ef2ca9dc1cb5d5298e7966aa50f54431"
......
module.exports = {
root: true,
env: {
node: true
},
'extends': [
'plugin:vue/essential',
'eslint:recommended'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}
\ No newline at end of file
module.exports = {
plugins: {
autoprefixer: {}
}
}
\ No newline at end of file
# 数据大屏解决方案
## 介绍
数据大屏解决方案采用vue-cli项目编写,可以完美嵌套与任何项目,此项目只是大屏的解决方案,如果想要用于生产或更多场景的支持需要自己根据情况二次开发。
## 2种数据源
- 在线api(本项目采用了mock拦截方式模拟,具体文件/mock/index.js)
- 静态数据
- ...
## 引入其他项目使用
执行npm run lib 打出对应的包(public/lib)
- index.css
- index.umd.min.js
引入相应的文件即可,可以参考public/view.html文件,传入对应的id,打开对应的大屏幕,例如view.html?id=xxxx
- [例子1](https://data.avuejs.com/view.html?id=5)
- [例子2](https://data.avuejs.com/view.html?id=8)
## 20+常用组件
- 图表
- 柱状图
- 折线图
- 饼图
- 象形图
- 雷达图
- 散点图
- 漏斗图
- 地图
- 文字
- 文本框
- 跑马灯
- 超链接
- 实时时间
- 媒体
- 图片
- 图片框
- 轮播图
- iframe
- video
- 指标
- 翻牌器
- 环形图
- 进度条
- 仪表盘
- 字符云
- 表格
- 选项卡
- 表格
- ...
## 自定义组件
- 组件配置
- /src/components/test/index
- /src/components/test/option
- 添加组件
- /src/option/base.js
- /src/option/components.js
## 其他例子
- [数据格式化例子](https://data.avuejs.com/build/16)
- [选项卡例子](https://data.avuejs.com/build/18)
- [地图事件例子](https://data.avuejs.com/build/19)
- [柱状图和折线图](https://data.avuejs.com/build/28)
- [任意echart使用](https://data.avuejs.com/build/29)
## 核心方法
### 提示事件
>如果数据移动到图表上需要展示的数据个性化定制(可以添加html标签和样式)
```
//name 移动上去的当前数据名字
//data 接口返回的数据
(name,data) => {
return 返回需要展示的文本
}
```
### 数据处理
>如果接口返回的数据格式和组件规定的格式不一致,数据处理方法去处理加工数据
```
//data 接口返回的数据
(data) => {
return //这里处理成标准的数据格式,详情参考下面附录1
}
```
### 点击事件
>图表的点击事件
```
//name 点击的当前数据名字
//type 点击的当前数据类型
//value 点击的当前数据值
//data 接口返回的数据
({name,type,value,data}) => {
//做一些点击的逻辑
}
```
### 标题事件
>组件顶部显示的文字(如柱状图顶部)
```
//name 点击的当前数据名字
//data 接口返回的数据
({name,data}) => {
return 返回要展示的数据
}
```
## 通用属性
```
{
name:'组件名称',
title:'组件别名',
icon:'组件图标',
left:'组件x位置',
top:'组件y位置',
display:'组件隐藏',
dataType:'数据请求格式| 0-静态数据 | 1-动态数据',
dataMethod:'数据请求方式| get | post,
url:'动态数据的请求地址',
time:'数据的刷新间隔',
//组件的配置
component:{
width:'组件的宽度',
height:'组件的高度',
name:'加载组件名',
prop:'加载组件的类型',
},
//属性配置
option:{
//每个组件的独立属性
}
}
```
## 技术栈
- vue //底层核心包
- axios //发送ajax请求数据的
- element-ui //底层ui支持包
- echart //底层的图表支持包
- echarts-wordcloud //字浮云支持包
- avue //大屏组件支持包
- swiper //滑动和轮播支持包
- Sortable和vuedraggable // 图拽支持包
## 附录1
### 柱状图
>数据格式
```
...
{
"categories": [
"苹果",
],
"series": [{
"name": "手机品牌",
"data": [
1000879,
]
}]
}
...
```
### 折线图
>数据格式
```
...
{
"categories": [
"苹果",
],
"series": [{
"name": "手机品牌",
"data": [
1000879,
]
}]
}
...
```
### 饼图
>数据格式
```
...
[{
"name": "PC",
"value": 97,
"url": "http://www.baidu.com"
}]
...
```
### 象型图
>数据格式
```
...
{
"categories": [
"苹果",
],
"series": [{
"name": "手机品牌",
"data": [
1000879,
]
}]
}
...
```
### 雷达图
>数据格式
```
...
{
indicator: [{
name: '销售',
max: 6500
}],
series: [{
data: [{
value: [4300, 10000, 28000, 35000, 50000, 19000],
name: '预算分配(Allocated Budget)'
}]
}]
}
...
```
### 散点图
>数据格式
```
...
[{
data: [
[1, 8.04],
[2, 6.95]
]},
{
data: [
[1, 4.04],
[2, 3.95]
]
}]
...
```
### 漏斗图
>数据格式
```
...
[{
value: 335,
name: '直接访问'
},
{
value: 310,
name: '邮件营销'
},
{
value: 234,
name: '联盟广告'
}]
...
```
### 轮播图
>数据格式
```
...
[{
value: 图片地址1,
},
{
value: 图片地址2,
}]
...
```
### 地图
>数据格式
```
...
[
"name": "测试坐标1",
"value": 1,
"lng": 118.30078125,
"lat": 36.91915611148194,
"zoom": 1
},
{
"name": "测试坐标2",
"value": 1,
"lng": 112.21435546875,
"lat": 37.965854128749434,
"zoom": 1
}
]
...
```
## 项目部署
```
//nginx为例子
location /{
root /data/avue/avue-data;
index index.html;
error_page 404 /index.html; //根据vue路由特性,这句一定要配置,否则会出现404问题
}
```
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
#!/usr/bin/env bash
yarn build
rm -rf ./dist/img/**
scp -P 1802 -r ./dist/* ssh root@219.159.20.119:/data/avue/avue-data
{
"name": "avue-data",
"version": "2.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run lib && vue-cli-service build",
"lib": "vue-cli-service build --target lib --name avueData --dest public/lib --filename index --formats umd-min ./src/page/view.vue",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.19.0",
"codemirror": "^5.52.0",
"core-js": "^3.4.4",
"css-loader": "^3.4.1",
"element-ui": "^2.13.0",
"mockjs": "^1.1.0",
"vue": "^2.6.11",
"vue-router": "3.1.0",
"vue-sketch-ruler": "^1.0.3",
"vuedraggable": "^2.23.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.9.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}
此差异已折叠。
因为 它太大了无法显示 源差异 。您可以改为 查看blob
此差异已折叠。
此差异已折叠。
因为 它太大了无法显示 源差异 。您可以改为 查看blob
此差异已折叠。
此差异已折叠。
因为 它太大了无法显示 源差异 。您可以改为 查看blob
因为 它太大了无法显示 源差异 。您可以改为 查看blob
此差异已折叠。
此差异已折叠。
/**
* vuex v2.4.1
* (c) 2017 Evan You
* @license MIT
*/
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vuex=e()}(this,function(){"use strict";function t(t){b&&(t._devtoolHook=b,b.emit("vuex:init",t),b.on("vuex:travel-to-state",function(e){t.replaceState(e)}),t.subscribe(function(t,e){b.emit("vuex:mutation",t,e)}))}function e(t,e){Object.keys(t).forEach(function(n){return e(t[n],n)})}function n(t){return null!==t&&"object"==typeof t}function o(t){return t&&"function"==typeof t.then}function i(t,e,n){if(e.update(n),n.modules)for(var o in n.modules){if(!e.getChild(o))return;i(t.concat(o),e.getChild(o),n.modules[o])}}function r(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;a(t,n,[],t._modules.root,!0),s(t,n,e)}function s(t,n,o){var i=t._vm;t.getters={};var r={};e(t._wrappedGetters,function(e,n){r[n]=function(){return e(t)},Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})});var s=j.config.silent;j.config.silent=!0,t._vm=new j({data:{$$state:n},computed:r}),j.config.silent=s,t.strict&&l(t),i&&(o&&t._withCommit(function(){i._data.$$state=null}),j.nextTick(function(){return i.$destroy()}))}function a(t,e,n,o,i){var r=!n.length,s=t._modules.getNamespace(n);if(o.namespaced&&(t._modulesNamespaceMap[s]=o),!r&&!i){var u=d(e,n.slice(0,-1)),l=n[n.length-1];t._withCommit(function(){j.set(u,l,o.state)})}var m=o.context=c(t,s,n);o.forEachMutation(function(e,n){f(t,s+n,e,m)}),o.forEachAction(function(e,n){p(t,s+n,e,m)}),o.forEachGetter(function(e,n){h(t,s+n,e,m)}),o.forEachChild(function(o,r){a(t,e,n.concat(r),o,i)})}function c(t,e,n){var o=""===e,i={dispatch:o?t.dispatch:function(n,o,i){var r=m(n,o,i),s=r.payload,a=r.options,c=r.type;return a&&a.root||(c=e+c),t.dispatch(c,s)},commit:o?t.commit:function(n,o,i){var r=m(n,o,i),s=r.payload,a=r.options,c=r.type;a&&a.root||(c=e+c),t.commit(c,s,a)}};return Object.defineProperties(i,{getters:{get:o?function(){return t.getters}:function(){return u(t,e)}},state:{get:function(){return d(t.state,n)}}}),i}function u(t,e){var n={},o=e.length;return Object.keys(t.getters).forEach(function(i){if(i.slice(0,o)===e){var r=i.slice(o);Object.defineProperty(n,r,{get:function(){return t.getters[i]},enumerable:!0})}}),n}function f(t,e,n,o){(t._mutations[e]||(t._mutations[e]=[])).push(function(e){n.call(t,o.state,e)})}function p(t,e,n,i){(t._actions[e]||(t._actions[e]=[])).push(function(e,r){var s=n.call(t,{dispatch:i.dispatch,commit:i.commit,getters:i.getters,state:i.state,rootGetters:t.getters,rootState:t.state},e,r);return o(s)||(s=Promise.resolve(s)),t._devtoolHook?s.catch(function(e){throw t._devtoolHook.emit("vuex:error",e),e}):s})}function h(t,e,n,o){t._wrappedGetters[e]||(t._wrappedGetters[e]=function(t){return n(o.state,o.getters,t.state,t.getters)})}function l(t){t._vm.$watch(function(){return this._data.$$state},function(){},{deep:!0,sync:!0})}function d(t,e){return e.length?e.reduce(function(t,e){return t[e]},t):t}function m(t,e,o){return n(t)&&t.type&&(o=e,e=t,t=t.type),{type:t,payload:e,options:o}}function v(t){j&&t===j||w(j=t)}function _(t){return Array.isArray(t)?t.map(function(t){return{key:t,val:t}}):Object.keys(t).map(function(e){return{key:e,val:t[e]}})}function y(t){return function(e,n){return"string"!=typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function g(t,e,n){var o=t._modulesNamespaceMap[n];return o}var w=function(t){function e(){var t=this.$options;t.store?this.$store="function"==typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}if(Number(t.version.split(".")[0])>=2)t.mixin({beforeCreate:e});else{var n=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[e].concat(t.init):e,n.call(this,t)}}},b="undefined"!=typeof window&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,$=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"==typeof n?n():n)||{}},M={namespaced:{configurable:!0}};M.namespaced.get=function(){return!!this._rawModule.namespaced},$.prototype.addChild=function(t,e){this._children[t]=e},$.prototype.removeChild=function(t){delete this._children[t]},$.prototype.getChild=function(t){return this._children[t]},$.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},$.prototype.forEachChild=function(t){e(this._children,t)},$.prototype.forEachGetter=function(t){this._rawModule.getters&&e(this._rawModule.getters,t)},$.prototype.forEachAction=function(t){this._rawModule.actions&&e(this._rawModule.actions,t)},$.prototype.forEachMutation=function(t){this._rawModule.mutations&&e(this._rawModule.mutations,t)},Object.defineProperties($.prototype,M);var O=function(t){this.register([],t,!1)};O.prototype.get=function(t){return t.reduce(function(t,e){return t.getChild(e)},this.root)},O.prototype.getNamespace=function(t){var e=this.root;return t.reduce(function(t,n){return e=e.getChild(n),t+(e.namespaced?n+"/":"")},"")},O.prototype.update=function(t){i([],this.root,t)},O.prototype.register=function(t,n,o){var i=this;void 0===o&&(o=!0);var r=new $(n,o);0===t.length?this.root=r:this.get(t.slice(0,-1)).addChild(t[t.length-1],r),n.modules&&e(n.modules,function(e,n){i.register(t.concat(n),e,o)})},O.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];e.getChild(n).runtime&&e.removeChild(n)};var j,C=function(e){var n=this;void 0===e&&(e={}),!j&&"undefined"!=typeof window&&window.Vue&&v(window.Vue);var o=e.plugins;void 0===o&&(o=[]);var i=e.strict;void 0===i&&(i=!1);var r=e.state;void 0===r&&(r={}),"function"==typeof r&&(r=r()),this._committing=!1,this._actions=Object.create(null),this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new O(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new j;var c=this,u=this,f=u.dispatch,p=u.commit;this.dispatch=function(t,e){return f.call(c,t,e)},this.commit=function(t,e,n){return p.call(c,t,e,n)},this.strict=i,a(this,r,[],this._modules.root),s(this,r),o.forEach(function(t){return t(n)}),j.config.devtools&&t(this)},E={state:{configurable:!0}};E.state.get=function(){return this._vm._data.$$state},E.state.set=function(t){},C.prototype.commit=function(t,e,n){var o=this,i=m(t,e,n),r=i.type,s=i.payload,a=(i.options,{type:r,payload:s}),c=this._mutations[r];c&&(this._withCommit(function(){c.forEach(function(t){t(s)})}),this._subscribers.forEach(function(t){return t(a,o.state)}))},C.prototype.dispatch=function(t,e){var n=m(t,e),o=n.type,i=n.payload,r=this._actions[o];if(r)return r.length>1?Promise.all(r.map(function(t){return t(i)})):r[0](i)},C.prototype.subscribe=function(t){var e=this._subscribers;return e.indexOf(t)<0&&e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}},C.prototype.watch=function(t,e,n){var o=this;return this._watcherVM.$watch(function(){return t(o.state,o.getters)},e,n)},C.prototype.replaceState=function(t){var e=this;this._withCommit(function(){e._vm._data.$$state=t})},C.prototype.registerModule=function(t,e){"string"==typeof t&&(t=[t]),this._modules.register(t,e),a(this,this.state,t,this._modules.get(t)),s(this,this.state)},C.prototype.unregisterModule=function(t){var e=this;"string"==typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var n=d(e.state,t.slice(0,-1));j.delete(n,t[t.length-1])}),r(this)},C.prototype.hotUpdate=function(t){this._modules.update(t),r(this,!0)},C.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(C.prototype,E);var x=y(function(t,e){var n={};return _(e).forEach(function(e){var o=e.key,i=e.val;n[o]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var o=g(this.$store,0,t);if(!o)return;e=o.context.state,n=o.context.getters}return"function"==typeof i?i.call(this,e,n):e[i]},n[o].vuex=!0}),n}),k=y(function(t,e){var n={};return _(e).forEach(function(e){var o=e.key,i=e.val;n[o]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var o=this.$store.commit;if(t){var r=g(this.$store,0,t);if(!r)return;o=r.context.commit}return"function"==typeof i?i.apply(this,[o].concat(e)):o.apply(this.$store,[i].concat(e))}}),n}),G=y(function(t,e){var n={};return _(e).forEach(function(e){var o=e.key,i=e.val;i=t+i,n[o]=function(){if(!t||g(this.$store,0,t))return this.$store.getters[i]},n[o].vuex=!0}),n}),A=y(function(t,e){var n={};return _(e).forEach(function(e){var o=e.key,i=e.val;n[o]=function(){for(var e=[],n=arguments.length;n--;)e[n]=arguments[n];var o=this.$store.dispatch;if(t){var r=g(this.$store,0,t);if(!r)return;o=r.context.dispatch}return"function"==typeof i?i.apply(this,[o].concat(e)):o.apply(this.$store,[i].concat(e))}}),n});return{Store:C,install:v,version:"2.4.1",mapState:x,mapMutations:k,mapGetters:G,mapActions:A,createNamespacedHelpers:function(t){return{mapState:x.bind(null,t),mapGetters:G.bind(null,t),mapMutations:k.bind(null,t),mapActions:A.bind(null,t)}}}});
\ No newline at end of file
此差异已折叠。
var theme_avue = {
"version": 1,
"themeName": "avue",
"theme": {
"seriesCnt": "4",
"backgroundColor": "rgba(0,0,0,0)",
"titleColor": "#516b91",
"subtitleColor": "#93b7e3",
"textColorShow": false,
"textColor": "#333",
"markTextColor": "#eee",
"color": [
"#83bff6",
"#23b7e5",
"#188df0",
"#564aa3",
"#a5e7f0",
"#cbb0e3"
],
"borderColor": "#ccc",
"borderWidth": 0,
"visualMapColor": [
"#83bff6",
"#23b7e5",
"#188df0",
"#564aa3"
],
"legendTextColor": "#999999",
"kColor": "#edafda",
"kColor0": "transparent",
"kBorderColor": "#d680bc",
"kBorderColor0": "#8fd3e8",
"kBorderWidth": "2",
"lineWidth": "2",
"symbolSize": "6",
"symbol": "emptyCircle",
"symbolBorderWidth": "2",
"lineSmooth": true,
"graphLineWidth": 1,
"graphLineColor": "#aaa",
"mapLabelColor": "#000000",
"mapLabelColorE": "rgb(81,107,145)",
"mapBorderColor": "#516b91",
"mapBorderColorE": "#516b91",
"mapBorderWidth": 0.5,
"mapBorderWidthE": 1,
"mapAreaColor": "#f3f3f3",
"mapAreaColorE": "rgba(165,231,240,1)",
"axes": [{
"type": "all",
"name": "通用坐标轴",
"axisLineShow": true,
"axisLineColor": "#cccccc",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#999999",
"splitLineShow": true,
"splitLineColor": [
"#eeeeee"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(80,36,204,0.05)",
"rgba(223,35,35,0.02)"
]
},
{
"type": "category",
"name": "类目坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": false,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "value",
"name": "数值坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "log",
"name": "对数坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "time",
"name": "时间坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
}
],
"axisSeperateSetting": true,
"toolboxColor": "#999999",
"toolboxEmpasisColor": "#666666",
"tooltipAxisColor": "#f9dbdb",
"tooltipAxisWidth": 1,
"timelineLineColor": "#8fd3e8",
"timelineLineWidth": 1,
"timelineItemColor": "#8fd3e8",
"timelineItemColorE": "#8fd3e8",
"timelineCheckColor": "#8fd3e8",
"timelineCheckBorderColor": "rgba(138,124,168,0.37)",
"timelineItemBorderWidth": 1,
"timelineControlColor": "#213dbc",
"timelineControlBorderColor": "#8fd3e8",
"timelineControlBorderWidth": 0.5,
"timelineLabelColor": "#8fd3e8",
"datazoomBackgroundColor": "rgba(0,0,0,0)",
"datazoomDataColor": "rgba(255,255,255,0.3)",
"datazoomFillColor": "rgba(167,183,204,0.4)",
"datazoomHandleColor": "#2472d9",
"datazoomHandleWidth": "100",
"datazoomLabelColor": "#333333"
}
}
window.echarts.registerTheme(theme_avue.themeName, theme_avue.theme)
\ No newline at end of file
var theme_macarons = {
"version": 1,
"themeName": "macarons",
"theme": {
"seriesCnt": "4",
"backgroundColor": "rgba(0,0,0,0)",
"titleColor": "#008acd",
"subtitleColor": "#aaaaaa",
"textColorShow": false,
"textColor": "#333",
"markTextColor": "#eeeeee",
"color": [
"#2ec7c9",
"#b6a2de",
"#5ab1ef",
"#ffb980",
"#d87a80",
"#8d98b3",
"#e5cf0d",
"#97b552",
"#95706d",
"#dc69aa",
"#07a2a4",
"#9a7fd1",
"#588dd5",
"#f5994e",
"#c05050",
"#59678c",
"#c9ab00",
"#7eb00a",
"#6f5553",
"#c14089"
],
"borderColor": "#ccc",
"borderWidth": 0,
"visualMapColor": [
"#5ab1ef",
"#e0ffff"
],
"legendTextColor": "#333333",
"kColor": "#d87a80",
"kColor0": "#2ec7c9",
"kBorderColor": "#d87a80",
"kBorderColor0": "#2ec7c9",
"kBorderWidth": 1,
"lineWidth": 2,
"symbolSize": 3,
"symbol": "emptyCircle",
"symbolBorderWidth": 1,
"lineSmooth": true,
"graphLineWidth": 1,
"graphLineColor": "#aaaaaa",
"mapLabelColor": "#d87a80",
"mapLabelColorE": "rgb(100,0,0)",
"mapBorderColor": "#eeeeee",
"mapBorderColorE": "#444444",
"mapBorderWidth": 0.5,
"mapBorderWidthE": 1,
"mapAreaColor": "#dddddd",
"mapAreaColorE": "rgba(254,153,78,1)",
"axes": [{
"type": "all",
"name": "通用坐标轴",
"axisLineShow": true,
"axisLineColor": "#eeeeee",
"axisTickShow": true,
"axisTickColor": "#eeeeee",
"axisLabelShow": true,
"axisLabelColor": "#eeeeee",
"splitLineShow": true,
"splitLineColor": [
"#aaaaaa"
],
"splitAreaShow": false,
"splitAreaColor": [
"#eeeeee"
]
},
{
"type": "category",
"name": "类目坐标轴",
"axisLineShow": true,
"axisLineColor": "#008acd",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": false,
"splitLineColor": [
"#eee"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "value",
"name": "数值坐标轴",
"axisLineShow": true,
"axisLineColor": "#008acd",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#eee"
],
"splitAreaShow": true,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "log",
"name": "对数坐标轴",
"axisLineShow": true,
"axisLineColor": "#008acd",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#eee"
],
"splitAreaShow": true,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "time",
"name": "时间坐标轴",
"axisLineShow": true,
"axisLineColor": "#008acd",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#eee"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
}
],
"axisSeperateSetting": true,
"toolboxColor": "#2ec7c9",
"toolboxEmpasisColor": "#18a4a6",
"tooltipAxisColor": "#008acd",
"tooltipAxisWidth": "1",
"timelineLineColor": "#008acd",
"timelineLineWidth": 1,
"timelineItemColor": "#008acd",
"timelineItemColorE": "#a9334c",
"timelineCheckColor": "#2ec7c9",
"timelineCheckBorderColor": "rgba(46,199,201,0.4)",
"timelineItemBorderWidth": 1,
"timelineControlColor": "#008acd",
"timelineControlBorderColor": "#008acd",
"timelineControlBorderWidth": 0.5,
"timelineLabelColor": "#008acd",
"datazoomBackgroundColor": "rgba(47,69,84,0)",
"datazoomDataColor": "rgba(239,239,255,1)",
"datazoomFillColor": "rgba(182,162,222,0.2)",
"datazoomHandleColor": "#008acd",
"datazoomHandleWidth": "100",
"datazoomLabelColor": "#333333"
}
}
window.echarts.registerTheme(theme_macarons.themeName, theme_macarons.theme)
\ No newline at end of file
var theme_wonderland = {
"version": 1,
"themeName": "wonderland",
"theme": {
"seriesCnt": "3",
"backgroundColor": "rgba(255,255,255,0)",
"titleColor": "#666666",
"subtitleColor": "#999999",
"textColorShow": false,
"textColor": "#333",
"markTextColor": "#ffffff",
"color": [
"#4ea397",
"#22c3aa",
"#7bd9a5",
"#d0648a",
"#f58db2",
"#f2b3c9"
],
"borderColor": "#ccc",
"borderWidth": 0,
"visualMapColor": [
"#d0648a",
"#22c3aa",
"#adfff1"
],
"legendTextColor": "#999999",
"kColor": "#d0648a",
"kColor0": "transparent",
"kBorderColor": "#d0648a",
"kBorderColor0": "#22c3aa",
"kBorderWidth": "1",
"lineWidth": "3",
"symbolSize": "8",
"symbol": "emptyCircle",
"symbolBorderWidth": "2",
"lineSmooth": false,
"graphLineWidth": "1",
"graphLineColor": "#cccccc",
"mapLabelColor": "#28544e",
"mapLabelColorE": "rgb(52,158,142)",
"mapBorderColor": "#999999",
"mapBorderColorE": "#22c3aa",
"mapBorderWidth": 0.5,
"mapBorderWidthE": 1,
"mapAreaColor": "#eeeeee",
"mapAreaColorE": "rgba(34,195,170,0.25)",
"axes": [{
"type": "all",
"name": "通用坐标轴",
"axisLineShow": true,
"axisLineColor": "#cccccc",
"axisTickShow": false,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#999999",
"splitLineShow": true,
"splitLineColor": [
"#eeeeee"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.05)",
"rgba(200,200,200,0.02)"
]
},
{
"type": "category",
"name": "类目坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": false,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "value",
"name": "数值坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "log",
"name": "对数坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
},
{
"type": "time",
"name": "时间坐标轴",
"axisLineShow": true,
"axisLineColor": "#333",
"axisTickShow": true,
"axisTickColor": "#333",
"axisLabelShow": true,
"axisLabelColor": "#333",
"splitLineShow": true,
"splitLineColor": [
"#ccc"
],
"splitAreaShow": false,
"splitAreaColor": [
"rgba(250,250,250,0.3)",
"rgba(200,200,200,0.3)"
]
}
],
"axisSeperateSetting": false,
"toolboxColor": "#999999",
"toolboxEmpasisColor": "#666666",
"tooltipAxisColor": "#cccccc",
"tooltipAxisWidth": 1,
"timelineLineColor": "#4ea397",
"timelineLineWidth": 1,
"timelineItemColor": "#4ea397",
"timelineItemColorE": "#4ea397",
"timelineCheckColor": "#4ea397",
"timelineCheckBorderColor": "rgba(60,235,210,0.3)",
"timelineItemBorderWidth": 1,
"timelineControlColor": "#4ea397",
"timelineControlBorderColor": "#4ea397",
"timelineControlBorderWidth": 0.5,
"timelineLabelColor": "#4ea397",
"datazoomBackgroundColor": "rgba(255,255,255,0)",
"datazoomDataColor": "rgba(222,222,222,1)",
"datazoomFillColor": "rgba(114,230,212,0.25)",
"datazoomHandleColor": "#cccccc",
"datazoomHandleWidth": "100",
"datazoomLabelColor": "#999999"
}
}
window.echarts.registerTheme(theme_wonderland.themeName, theme_wonderland.theme)
\ No newline at end of file
此差异已折叠。
此差异已折叠。
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 327.48 318"><defs><style>.cls-1{opacity:0.8;}.cls-2{fill:#5fffe8;}</style></defs><title>资源 11</title><g id="图层_2" data-name="图层 2"><g id="央铋_1" data-name="央铋 1"><g class="cls-1"><path class="cls-2" d="M16.4,253.08l5,6.72c1.57,2,3.13,4.48,5.3,6.77s4.37,4.8,6.63,7.29a75.84,75.84,0,0,0,7,6.88c2.32,2.12,4.5,4.09,6.37,5.78s3.66,2.8,4.81,3.71l1.85,1.37,5.81.59a49.87,49.87,0,0,0,5.77.3L69.09,295c2.64,1.48,6.16,4.07,10.94,6.15,4.69,2.24,10.07,5.07,16.27,7.07,3.08,1,6.16,2.44,9.46,3.28l10,2.57a77.86,77.86,0,0,0,10.16,1.89c3.38.45,6.68,1.16,9.92,1.38l9.36.47a59.28,59.28,0,0,0,8.38.11l12.55-.64,4.72-.69,3.36-2.85,3.25-2.83,3.7-.58,9.57-2.46A100.75,100.75,0,0,0,204,303.51c4.89-1.55,9.73-4.07,14.65-6.43A149.42,149.42,0,0,0,243.89,281a74.78,74.78,0,0,0,7.53-6.38c1.77-1.6,2.77-2.52,2.77-2.52l3.11-.58a56.85,56.85,0,0,0,6.71-1.67c4.85-1.37,9.9-3,9.9-3l1.75-1.95,4.13-5.51c1.66-2.3,3.78-4.88,5.72-7.86s3.83-6.29,5.8-9.54,3.51-6.73,5.13-9.9,3.14-6.13,4.05-8.84l3.27-8.93,3.58-3c2-1.87,4.57-4.5,7.22-7.24s5.36-5.59,7.21-7.82l3-3.81s.24-1.53.65-4.22c.21-1.35.45-3,.73-4.85a45.26,45.26,0,0,0,.67-6.32c.22-4.65.59-10.07.71-15.88-.29-5.81-.5-12-1-18.21-1-6.14-1.74-12.32-2.89-18-1.46-5.65-2.81-10.92-4-15.44L314.3,94.93a35.15,35.15,0,0,0-3.83-3c-2.38-1.75-5.53-4-8.63-6.14l-4.53-3.06c-1.51-.92-3-1.71-4.21-2.39L289,78.1s-.66-1.1-1.92-3.16l-2.32-3.78c-1.05-1.39-2.24-3-3.59-4.8A117.78,117.78,0,0,0,271,53.8c-2.14-2.28-4.27-4.85-6.79-7.29L256,39.08a167.58,167.58,0,0,0-44.71-27.29A158.06,158.06,0,0,0,152.52,0a163.06,163.06,0,0,0-59,10.42,166.74,166.74,0,0,0-45.41,26c-11.69,10-20.47,19.45-25.77,26.69L16.1,71.52c-1.25,2-1.91,3.15-1.91,3.15s-.13,6.19,0,12c.05,2.92.51,6,.71,8.1s.42,3.6.42,3.6l-1.22,2.54c-.39.81-.87,1.79-1.41,2.92s-.91,2.51-1.44,4c-1.05,2.9-2.28,6.27-3.6,9.89l-3,11.68a40.4,40.4,0,0,0-1.18,6c-.3,2-.6,4-.89,5.87S2,145,1.72,146.71c-.09,1.76-.17,3.43-.24,5C1.16,157.84,1,161.94,1,161.94H16.52s.11-2.12.29-5.3c.08-1.59.17-3.45.27-5.44,0-1,.09-2,.14-3.07s.33-2.07.5-3.12c.73-4.17,1.11-8.42,1.89-11.49l1.33-5.13s-1.39-3.58-2.75-7.4c-1.06-3.71-2-7.62-2-7.62s.81-2.24,2-5.58,3.56-7.53,5.54-11.86a49.87,49.87,0,0,1,3.44-6.07c1.15-1.92,2.24-3.7,3.16-5.22A33,33,0,0,1,32.71,81l1-1.3L34,73.78c.22-3,.45-6.1.45-6.1a15.46,15.46,0,0,1,1.67-2l4.6-5.06c3.6-4.4,9.4-9.26,15-14.33l8.88-6.64c2.74-2.25,5.74-3.69,8.11-5.24l5.84-3.55a12.85,12.85,0,0,1,1.69-.9l.61-.29,5.52.66,5.35.74L93.87,30c1.37-.68,3.48-1.3,5.92-2.23s5.32-2,8.42-3l9.94-2.55a72.63,72.63,0,0,1,10.08-1.88c3.24-.43,6.24-1.11,8.86-1.23l8.74-.44L148.09,20l2.28,1.41,2.55,1.89c3.43,2.58,6.61,5.14,6.61,5.14l1.85.08a30.59,30.59,0,0,1,5.19.51c4.43.77,10.86,1.32,18.25,3.56,1.86.49,3.82.93,5.81,1.51l6,2.23c2.07.78,4.22,1.47,6.37,2.35l6.38,3.1c8.76,4,17.28,9.89,25.42,16.15C251,70.87,263.13,88,270,101.72c1.59,3.51,3.37,6.58,4.43,9.53s2,5.5,2.78,7.6a33.28,33.28,0,0,1,1.63,5c.3,1.17.45,1.79.45,1.79l5.3,4.5,3.71,3.29L289.8,135l1.28,8.41c.19,1.27.41,2.63.63,4.08s.14,3,.22,4.61c.16,3.19.33,6.59.51,10-.18,3.41-.36,6.81-.52,10-.08,1.59-.16,3.13-.24,4.6s-.44,2.81-.63,4.07c-.77,5.05-1.28,8.42-1.28,8.42s-.56.65-1.54,1.57L284.52,194l-5.3,4.5s-.11.42-.3,1.21a23.87,23.87,0,0,1-1,3.38c-1.1,2.83-2.47,7-4.41,11.79a150.15,150.15,0,0,1-19.9,32.52C244.67,258.14,233.8,267,225.33,273l-10.78,6.54-4.3,2.09s-1.52,2.72-3,5.45L205,290.94l-1.11,1.6-6,2.2c-1.94.63-4.19,1.73-7,2.39l-9.26,2.38a146.13,146.13,0,0,1-51.11,2A143.57,143.57,0,0,1,82,285.33c-6-3.69-11.1-6.51-14.23-9.18l-5.15-3.85a49,49,0,0,1-1.73-6.11c-.69-3.05-1.37-6.11-1.37-6.11L56,256.91l-8.43-9.23c-6.37-8.12-14.5-19.4-19.85-32.15-1.49-3.11-2.41-6.45-3.66-9.59-.56-1.6-1.24-3.14-1.69-4.74l-1.21-4.77c-.71-3.14-1.77-6.1-2.17-9s-.86-5.7-1.25-8.25c-.19-1.27-.42-2.5-.56-3.66s-.1-2.3-.15-3.35c-.1-2.1-.19-3.94-.27-5.45-.17-3-.26-4.74-.26-4.74H0s.23,4.47.57,11.16A53,53,0,0,0,1,178.5c.29,1.9.59,3.9.91,6s.64,4.21,1,6.39a63.24,63.24,0,0,0,1.52,6.48c.55,2.16,1.11,4.33,1.65,6.46.29,1.06.52,2.13.84,3.16L8,210c1.45,3.93,2.8,7.6,4,10.75l4.85,10.06s-.14,1.37-.36,3.44-.13,4.72-.16,7.51,0,5.65,0,7.77c0,1.09,0,2,0,2.63A9.49,9.49,0,0,0,16.4,253.08Z"/><path class="cls-2" d="M149.1,281.77A122.33,122.33,0,1,1,271.42,159.44,122.47,122.47,0,0,1,149.1,281.77Zm0-243A120.72,120.72,0,1,0,269.81,159.44,120.85,120.85,0,0,0,149.1,38.73Zm0,239.82A119.11,119.11,0,1,1,268.2,159.44,119.25,119.25,0,0,1,149.1,278.55Zm0-236.61a117.51,117.51,0,1,0,117.5,117.5A117.63,117.63,0,0,0,149.1,41.94Z"/></g></g></g></svg>
\ No newline at end of file
此差异已折叠。
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 650.69 656.77"><defs><style>.cls-1{opacity:0.8;}.cls-2{fill:#5fffe8;}</style></defs><title>资源 12</title><g id="图层_2" data-name="图层 2"><g id="央铋_1" data-name="央铋 1"><g class="cls-1"><path class="cls-2" d="M298.7,76.4,289.86,78c-2.83.43-6.21,1.23-10.08,2.14l-6.18,1.42-6.76,1.92a267.32,267.32,0,0,0-31.55,11.1,293.63,293.63,0,0,0-34.09,17.58A297,297,0,0,0,170,134.45c-4.6,4.06-9.22,7.78-13.2,11.77-2,2-4,3.8-5.9,5.67l-5.28,5.55c-3.47,3.47-6.27,7-8.92,10s-4.73,5.77-6.52,8l-4.1,5.23-1.36,1.92-11.82-8.66,1.44-2,4.32-5.52c1.88-2.36,4-5.31,6.88-8.44s5.75-6.86,9.4-10.52l5.57-5.84c2-2,4.1-3.93,6.23-6,4.19-4.2,9.06-8.13,13.91-12.42a313.8,313.8,0,0,1,32.95-23.52,306.64,306.64,0,0,1,36-18.55,282.14,282.14,0,0,1,33.29-11.72l7.13-2,6.53-1.49c4.08-1,7.65-1.81,10.63-2.26l9.33-1.67Z"/><path class="cls-2" d="M392.44,53.21l-5.86-1.05c-3.73-.69-9.12-1.21-15.56-2.08a316.81,316.81,0,0,0-47.59-1.16,288.68,288.68,0,0,0-47.11,6.57l-8.64,2-6.58,1.85-5.72,1.62-2.94-9.71,5.93-1.68,6.81-1.9,8.93-2.06a298.93,298.93,0,0,1,48.76-6.8A330.12,330.12,0,0,1,372.09,40c6.66.9,12.24,1.44,16.09,2.16l6.07,1.09Z"/><path class="cls-2" d="M585.14,137.34l-4-4.6c-2.53-2.92-6.1-7.14-10.75-11.87C566,116,560.31,110.68,554.3,105c-6.21-5.48-12.86-11.31-19.9-16.65a324.14,324.14,0,0,0-40.55-26.72c-5.79-3.24-10.79-5.61-14.21-7.41-1.7-.91-3.1-1.51-4.05-1.94l-1.45-.66,3.34-7.14,1.48.66c1,.45,2.4,1.06,4.15,2,3.5,1.85,8.63,4.28,14.55,7.6a332,332,0,0,1,41.56,27.38c7.22,5.47,14,11.45,20.4,17.06,6.16,5.84,11.93,11.28,16.52,16.29,4.76,4.84,8.42,9.16,11,12.16s4.06,4.72,4.06,4.72Z"/><path class="cls-2" d="M574.84,180.82l-3.72-5.23c-1.2-1.65-2.58-3.7-4.29-6l-5.91-7.5a286.26,286.26,0,0,0-77.26-66.72l-8.27-4.76-6.55-3.36-5.7-2.92,5.63-11.67,6,3,6.84,3.52,8.66,5A299.17,299.17,0,0,1,571,154l6.17,7.85c1.79,2.38,3.24,4.52,4.5,6.25l3.88,5.46Z"/><path class="cls-2" d="M586.91,459.15s.24-.46.64-1.36,1-2.23,1.79-4,1.76-3.88,2.9-6.41,2.2-5.53,3.52-8.84a279.79,279.79,0,0,0,15.21-57,281.92,281.92,0,0,0,0-83.37,273.52,273.52,0,0,0-90.51-164.48A273.68,273.68,0,0,0,394,71.22c-7-1.2-12.52-2.35-16.34-2.7l-5.81-.74-1.55,13.43,5.53.71c3.62.33,8.84,1.42,15.52,2.56a259.82,259.82,0,0,1,120.19,59.44,259.92,259.92,0,0,1,86.06,156.34,268.92,268.92,0,0,1,0,79.29,266.71,266.71,0,0,1-14.46,54.15c-1.26,3.14-2.31,6-3.34,8.4L577,448.19c-.74,1.65-1.31,2.93-1.7,3.78s-.6,1.29-.6,1.29Z"/><path class="cls-2" d="M381.54,620.6s1.6-.16,4.57-.74,7.34-1.21,12.85-2.38a288.38,288.38,0,0,0,44.63-13.43,279.28,279.28,0,0,0,58.07-31,298,298,0,0,0,29.15-23.13,307.65,307.65,0,0,0,26.59-27.74,282.52,282.52,0,0,0,22.63-31l2.56-4,2.35-4.09,4.66-8.13c2.75-5.57,5.81-10.91,8.16-16.47a279.42,279.42,0,0,0,20.4-62.58,276,276,0,0,0,5.28-46.34c.13-5.64.33-10.07.15-13.09s-.12-4.63-.12-4.63l6.48-.19s0,1.65.12,4.74,0,7.62-.16,13.38a282.4,282.4,0,0,1-5.4,47.4,286.43,286.43,0,0,1-20.87,64c-2.4,5.69-5.53,11.15-8.34,16.84q-2.37,4.14-4.77,8.32l-2.41,4.19-2.62,4.09a288.12,288.12,0,0,1-23.14,31.74,314.82,314.82,0,0,1-27.19,28.37,307.08,307.08,0,0,1-29.81,23.66A286,286,0,0,1,446,610.09a296,296,0,0,1-45.66,13.73c-5.63,1.19-10.12,1.85-13.15,2.43s-4.67.75-4.67.75Z"/><path class="cls-2" d="M250.25,579.23s1,.46,3,1.11l8.46,2.86c3.62,1.31,8.19,2.37,13.32,3.91,2.58.73,5.38,1.26,8.31,2s6,1.42,9.27,1.93c25.79,5.25,61.84,6.55,96.41-.27a251.27,251.27,0,0,0,89.25-35.93c5.65-3.43,10.42-7.19,14.84-10.23,4.18-3.38,8-6.14,10.88-8.67l6.77-5.86c.79-.67,1.38-1.2,1.75-1.58l.59-.56,8,8.7-.62.58c-.39.4-1,1-1.83,1.66L511.55,545c-3.05,2.64-7,5.54-11.38,9.06-4.62,3.19-9.62,7.12-15.53,10.71a262.77,262.77,0,0,1-93.4,37.6c-36.2,7.15-73.84,5.77-100.86.29-3.41-.54-6.64-1.28-9.7-2s-6-1.31-8.69-2.06c-5.37-1.61-10.15-2.74-13.94-4.1l-8.86-3a31.81,31.81,0,0,1-3.1-1.17Z"/><path class="cls-2" d="M64.23,340s.14,5.33.39,14.66c.73,9.28,1.52,22.62,4.74,38.29A278.61,278.61,0,0,0,85,445.07a277.46,277.46,0,0,0,71.93,101.09,279.59,279.59,0,0,0,44.11,32c6.85,4.12,13.43,7.33,19.19,10.31,5.93,2.61,11,5.16,15.36,6.78l10.06,4,3.63,1.22L244.57,614l-3.82-1.29-10.59-4.14c-4.59-1.73-9.92-4.39-16.17-7.15-6.06-3.12-13-6.51-20.19-10.85a294.19,294.19,0,0,1-46.4-33.65A292,292,0,0,1,71.73,450.55a293.41,293.41,0,0,1-16.47-54.88c-3.38-16.48-4.22-30.52-5-40.28C50,345.58,49.86,340,49.86,340Z"/><path class="cls-2" d="M161.5,584.55l2.74,2c1.81,1.24,4.36,3.19,7.78,5.44s7.58,4.95,12.46,7.88,10.43,6.21,16.74,9.28c24.71,13.21,60.44,25.91,97.55,30.84a300.78,300.78,0,0,0,54.79,2.52,329.68,329.68,0,0,0,47.5-5.81,323.1,323.1,0,0,0,32.73-8.72l9-3c1.05-.34,1.83-.64,2.35-.85l.8-.31,4.34,11.6-.84.33c-.54.23-1.35.54-2.44.89l-9.37,3.17a343.14,343.14,0,0,1-34.07,9.08,342.91,342.91,0,0,1-49.45,6,311.8,311.8,0,0,1-57-2.62c-38.64-5.13-75.85-18.36-101.57-32.11-6.57-3.2-12.25-6.75-17.42-9.65-5.08-3.06-9.37-6-13-8.22s-6.22-4.36-8.1-5.66l-2.85-2Z"/><path class="cls-2" d="M41.12,471.36l4.62,10.2c1.63,3.17,3.6,7,5.85,11.44s5.19,9.2,8.18,14.51c3.16,5.22,6.74,10.79,10.63,16.6,4.06,5.7,8.24,11.78,13.06,17.69,4.6,6.09,9.9,11.93,15.15,18,5.52,5.8,11,11.76,17,17.27a315.51,315.51,0,0,0,37,30.22l4.63,3.28,4.67,3,9.08,5.79c6.1,3.42,11.7,7,17.18,9.64,10.79,5.73,20.15,9.77,26.69,12.57l10.42,4.11-4.16,11.08-10.79-4.26c-6.79-2.9-16.49-7.09-27.66-13-5.69-2.8-11.5-6.45-17.82-10l-9.4-6-4.84-3.13-4.8-3.4a325.72,325.72,0,0,1-38.31-31.31c-6.2-5.7-12-11.88-17.66-17.89-5.44-6.27-10.92-12.33-15.69-18.64-5-6.13-9.33-12.43-13.53-18.33-4-6-7.74-11.78-11-17.2s-6.17-10.44-8.48-15S36.77,490,35.08,486.7c-3-6.73-4.79-10.57-4.79-10.57Z"/><path class="cls-2" d="M351.51,9.26l-6-.15c-3.89-.19-9.58-.07-16.84.15A328.68,328.68,0,0,0,189.15,45.39c-7,3.41-13.78,7.52-20.73,11.49-6.74,4.33-13.67,8.57-20.24,13.43A316.94,316.94,0,0,0,110.12,102,331,331,0,0,0,19.31,257.81a324.2,324.2,0,0,0-9.43,59.38c-.68,7.24-.55,12.95-.72,16.83S9,340,9,340H0s.05-2.13.14-6.12,0-9.85.74-17.28a333.6,333.6,0,0,1,9.7-61A340,340,0,0,1,103.86,95.47,326.26,326.26,0,0,1,143,63c6.75-5,13.86-9.35,20.79-13.79,7.14-4.09,14.1-8.3,21.3-11.81A338,338,0,0,1,328.41.25C335.86,0,341.71-.1,345.7.1l6.12.15Z"/><path class="cls-2" d="M540,65.06l-4-2.82c-2.53-1.79-6.09-4.41-10.6-7.2s-9.63-6.27-15.43-9.48c-2.89-1.64-5.82-3.4-8.89-5l-9.39-4.82c-3.13-1.65-6.33-3.15-9.52-4.56l-9.31-4.2C466.75,24.46,461,22.17,456,20.31l-12.14-4.12c-2.93-1-4.64-1.46-4.64-1.46l2.46-8.09s1.76.45,4.76,1.5l12.45,4.22c5.09,1.91,11,4.25,17.29,6.8l9.55,4.31c3.27,1.44,6.55,3,9.76,4.67l9.62,4.94c3.14,1.68,6.16,3.49,9.11,5.16,6,3.3,11.25,6.78,15.82,9.72s8.27,5.54,10.85,7.38L545,58.22Z"/><path class="cls-2" d="M621,452.83s.46-1.18,1.34-3.39,2.21-5.44,3.56-9.67,3.3-9.28,4.87-15.27c.83-3,1.72-6.14,2.66-9.48.78-3.38,1.6-6.94,2.45-10.65a311.19,311.19,0,0,0,6.61-51.53,301.88,301.88,0,0,0-18.11-117.12,300.16,300.16,0,0,0-22.1-47c-3.66-6.68-7.67-12.41-10.94-17.66-3.57-5-6.66-9.47-9.31-13l-6.37-8.1c-1.47-1.88-2.27-2.86-2.27-2.86l6.08-5s.82,1,2.33,2.93l6.53,8.32c2.71,3.66,5.89,8.19,9.55,13.37,3.36,5.39,7.47,11.27,11.22,18.12a305.55,305.55,0,0,1,37.93,107.43,311.25,311.25,0,0,1,3.34,61,321,321,0,0,1-6.78,52.88c-.88,3.8-1.72,7.45-2.52,10.92q-1.44,5.14-2.73,9.73c-1.61,6.15-3.57,11.34-5,15.66s-2.77,7.66-3.66,9.93l-1.38,3.48Z"/><path class="cls-2" d="M544.08,583.87l5.58-4.83c3.63-3,8.42-7.67,14.24-13.21a328.35,328.35,0,0,0,37.81-45.18,312.81,312.81,0,0,0,28.86-51.37c6.55-14.71,9.87-24.93,9.87-24.93l7.45,2.58s-3.4,10.48-10.11,25.56a322.12,322.12,0,0,1-29.58,52.65,335.58,335.58,0,0,1-38.74,46.28c-6,5.69-10.89,10.49-14.6,13.55l-5.71,4.94Z"/><path class="cls-2" d="M335.68,562.79c-122.86,0-222.82-99.95-222.82-222.81s100-222.82,222.82-222.82S558.49,217.12,558.49,340,458.54,562.79,335.68,562.79Zm0-442.7c-121.25,0-219.89,98.64-219.89,219.89s98.64,219.89,219.89,219.89S555.57,461.23,555.57,340,456.93,120.09,335.68,120.09Zm0,436.85c-119.63,0-217-97.32-217-217s97.33-217,217-217,217,97.33,217,217S455.31,556.94,335.68,556.94Zm0-431c-118,0-214,96-214,214s96,214,214,214,214-96,214-214S453.7,125.94,335.68,125.94Z"/></g></g></g></svg>
\ No newline at end of file
此差异已折叠。
此差异已折叠。
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 562 532.53"><defs><style>.cls-1{opacity:0.8;}.cls-2{fill:#5fffe8;}</style></defs><title>资源 16</title><g id="图层_2" data-name="图层 2"><g id="央铋_1" data-name="央铋 1"><g class="cls-1"><rect class="cls-2" x="273.04" width="7.06" height="25.24"/><rect class="cls-2" x="250.46" y="1.34" width="7.07" height="25.24" transform="translate(-0.07 26.64) rotate(-6)"/><rect class="cls-2" x="228.14" y="5.04" width="7.07" height="25.24" transform="translate(1.4 48.63) rotate(-12.02)"/><rect class="cls-2" x="206.34" y="11.05" width="7.06" height="25.24" transform="translate(2.96 66.04) rotate(-18.01)"/><polygon class="cls-2" points="197.18 42.01 190.72 44.89 180.45 21.83 186.91 18.95 197.18 42.01"/><polygon class="cls-2" points="178.11 51.5 171.99 55.02 159.36 33.17 165.48 29.63 178.11 51.5"/><rect class="cls-2" x="146.31" y="42.16" width="7.07" height="25.24" transform="translate(-3.59 98.53) rotate(-35.99)"/><rect class="cls-2" x="128.83" y="56.52" width="7.07" height="25.24" transform="translate(-12.23 106.45) rotate(-42.05)"/><polygon class="cls-2" points="128.23 91.06 123.5 96.31 104.74 79.43 109.47 74.18 128.23 91.06"/><rect class="cls-2" x="98.84" y="90.3" width="7.07" height="25.24" transform="translate(-41.05 125.36) rotate(-54.04)"/><rect class="cls-2" x="86.66" y="109.36" width="7.07" height="25.24" transform="translate(-60.55 139) rotate(-59.96)"/><rect class="cls-2" x="76.53" y="129.58" width="7.07" height="25.24" transform="translate(-82.42 157.45) rotate(-65.98)"/><rect class="cls-2" x="68.57" y="150.76" width="7.07" height="25.24" transform="translate(-105.56 181.43) rotate(-71.99)"/><rect class="cls-2" x="62.88" y="172.65" width="7.07" height="25.24" transform="translate(-128.61 211.8) rotate(-78.03)"/><rect class="cls-2" x="59.49" y="195.01" width="7.07" height="25.24" transform="translate(-150.07 248.57) rotate(-83.99)"/><rect class="cls-2" x="49.38" y="226.69" width="25.24" height="7.07"/><rect class="cls-2" x="50.72" y="249.28" width="25.24" height="7.07" transform="translate(-26.08 8) rotate(-6)"/><rect class="cls-2" x="54.42" y="271.59" width="25.24" height="7.07" transform="translate(-55.56 19.86) rotate(-11.96)"/><rect class="cls-2" x="60.43" y="293.4" width="25.24" height="7.07" transform="translate(-88.24 37.14) rotate(-18.01)"/><rect class="cls-2" x="68.68" y="314.46" width="25.24" height="7.07" transform="translate(-122.47 60.69) rotate(-24.04)"/><rect class="cls-2" x="79.09" y="334.54" width="25.24" height="7.07" transform="translate(-156.91 91.31) rotate(-30.04)"/><rect class="cls-2" x="91.54" y="353.42" width="25.24" height="7.07" transform="translate(-189.91 129.38) rotate(-36)"/><polygon class="cls-2" points="125.54 363.36 130.27 368.61 111.51 385.51 106.77 380.25 125.54 363.36"/><polygon class="cls-2" points="453.3 332.19 456.83 326.07 478.69 338.69 475.15 344.82 453.3 332.19"/><rect class="cls-2" x="472.58" y="302.6" width="7.07" height="25.24" transform="translate(-5.23 622.39) rotate(-66.05)"/><rect class="cls-2" x="480.54" y="281.42" width="7.07" height="25.24" transform="matrix(0.31, -0.95, 0.95, 0.31, 55.05, 663.81)"/><rect class="cls-2" x="486.25" y="259.53" width="7.07" height="25.24" transform="translate(122.03 694.9) rotate(-78.04)"/><polygon class="cls-2" points="480.24 251.98 480.98 244.95 506.08 247.6 505.34 254.63 480.24 251.98"/><polygon class="cls-2" points="481.57 230.72 481.56 223.66 506.8 223.66 506.8 230.73 481.57 230.72"/><polygon class="cls-2" points="480.67 209.44 479.92 202.41 505.03 199.78 505.76 206.82 480.67 209.44"/><rect class="cls-2" x="476.53" y="178.76" width="25.24" height="7.07" transform="translate(-27.31 106.31) rotate(-12.07)"/><polygon class="cls-2" points="472.23 167.75 470.04 161.03 494.05 153.23 496.23 159.96 472.23 167.75"/><rect class="cls-2" x="462.26" y="135.89" width="25.24" height="7.07" transform="translate(-15.63 205.43) rotate(-24.03)"/><polygon class="cls-2" points="455.31 128.71 451.77 122.6 473.64 109.98 477.17 116.11 455.31 128.71"/><rect class="cls-2" x="439.4" y="96.93" width="25.24" height="7.07" transform="translate(27.4 285.17) rotate(-36.04)"/><rect class="cls-2" x="425.04" y="79.45" width="25.24" height="7.07" transform="translate(57.01 314.37) rotate(-42.03)"/><polygon class="cls-2" points="415.74 78.85 410.48 74.12 427.37 55.36 432.64 60.1 415.74 78.85"/><polygon class="cls-2" points="399.32 65.28 393.6 61.13 408.44 40.7 414.16 44.87 399.32 65.28"/><rect class="cls-2" x="372.2" y="37.27" width="25.24" height="7.07" transform="translate(157.12 353.71) rotate(-60.01)"/><polygon class="cls-2" points="362.69 43.65 356.23 40.78 366.5 17.71 372.97 20.59 362.69 43.65"/><polygon class="cls-2" points="342.88 35.82 336.15 33.64 343.97 9.63 350.69 11.82 342.88 35.82"/><polygon class="cls-2" points="322.36 30.1 315.45 28.64 320.7 3.94 327.63 5.42 322.36 30.1"/><polygon class="cls-2" points="301.37 26.56 294.33 25.83 296.98 0.72 304.01 1.47 301.37 26.56"/><path class="cls-2" d="M450.6,447.25l-6.12-7.76-4.78-6.08Q432.22,439,424.33,444a258.86,258.86,0,0,1-67.55,30.22q1.16,3.64,2.33,7.29a267.3,267.3,0,0,0,69.55-31.12l11,16.32,2.39-1.53q7.45-4.86,14.6-10.22C519,408.23,562,332.8,562,228.71h-9.72C552.28,329.24,510.76,402.08,450.6,447.25Z"/><path class="cls-2" d="M256.92,506.43q.36-4.64.71-9.27A289.59,289.59,0,0,1,157.4,472.05c1.9-3.81,3.8-7.64,5.7-11.46,45.44,20.76,97,28.39,146.92,22.88q-1.09-8.82-2.18-17.63a268,268,0,0,1-56.49.24l.48-4.2a263,263,0,0,0,68.36-2q1.15,6.45,2.33,12.91c8.09-1.3,16.12-3,24-5L343,455.16a245,245,0,0,0,36.7-12.53q-2.91-6.17-5.83-12.33c-45.09,19.53-96.75,24.32-145.06,14.37q-1.36,5.91-2.72,11.83c-.11.46-.21.92-.32,1.38-.32,1.38-.63,2.75-.95,4.13-44.61-9.2-86.58-30-119.23-62.5l-12.86,12.7a239.22,239.22,0,0,0,53.43,39.85l-6.54,11C64.51,421.78,9.3,343.66,9.3,228.71H0C0,394.83,111.48,486.62,234.7,504.09q-.87,5.45-1.73,10.87-9.85-1.4-19.59-3.41-1.62,7-3.23,14.05C338.44,552,483.86,502.83,548.37,378l-12.76-7.05C481.22,476.19,366.46,525,256.07,517.39,256.35,513.74,256.64,510.08,256.92,506.43Z"/><path class="cls-2" d="M301.21,511.44A309.58,309.58,0,0,0,382,494.73q-1.78-4.56-3.55-9.12a298.74,298.74,0,0,1-78,16.13Z"/><path class="cls-2" d="M73.1,431.56l-4.28,4.23-2.76,2.72a262.71,262.71,0,0,1-54.44-78.78L2,364.45A271.82,271.82,0,0,0,75.87,462l3.52-4.05c1.18-1.36,2.35-2.7,3.52-4.06L85.45,451a277.53,277.53,0,0,0,62.83,39.43q1.32-2.68,2.66-5.35A271.71,271.71,0,0,1,89.4,446.42Q81,439.35,73.1,431.56Z"/></g></g></g></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 582.59 549.97"><defs><style>.cls-1{opacity:0.8;}.cls-2{fill:#5fffe8;}</style></defs><title>资源 17</title><g id="图层_2" data-name="图层 2"><g id="央铋_1" data-name="央铋 1"><g class="cls-1"><rect class="cls-2" x="363.15" width="13.21" height="24.48"/><rect class="cls-2" x="327.65" y="4.08" width="13.21" height="24.48" transform="translate(3.91 69.86) rotate(-12)"/><rect class="cls-2" x="293.78" y="15.46" width="13.21" height="24.48" transform="translate(14.69 124.52) rotate(-23.99)"/><rect class="cls-2" x="263.01" y="33.63" width="13.21" height="24.48" transform="translate(24.57 167.32) rotate(-36.02)"/><rect class="cls-2" x="236.7" y="57.8" width="13.21" height="24.48" transform="translate(28.46 203.99) rotate(-48)"/><rect class="cls-2" x="215.98" y="86.91" width="13.21" height="24.48" transform="translate(25.45 242.37) rotate(-60.01)"/><polygon class="cls-2" points="222.06 129.43 217.98 141.99 194.71 134.43 198.78 121.86 222.06 129.43"/><rect class="cls-2" x="194.7" y="154.71" width="13.21" height="24.48" transform="translate(14.24 349.71) rotate(-84)"/><rect class="cls-2" x="189.41" y="196.07" width="24.48" height="13.21" transform="translate(-20.07 22.17) rotate(-6)"/><rect class="cls-2" x="197.18" y="230.94" width="24.48" height="13.21" transform="translate(-63.21 76.43) rotate(-18.02)"/><rect class="cls-2" x="212.04" y="263.44" width="24.48" height="13.21" transform="translate(-105 148.4) rotate(-30.01)"/><rect class="cls-2" x="233.32" y="292.14" width="24.48" height="13.21" transform="translate(-136.84 241.17) rotate(-42.02)"/><rect class="cls-2" x="260.11" y="315.78" width="24.48" height="13.21" transform="translate(-148.54 353.29) rotate(-54.01)"/><rect class="cls-2" x="291.22" y="333.33" width="24.48" height="13.21" transform="translate(-130.48 479.01) rotate(-66.01)"/><rect class="cls-2" x="325.31" y="344.04" width="24.48" height="13.21" transform="translate(-75.52 608.07) rotate(-78.02)"/><rect class="cls-2" x="366.51" y="341.79" width="13.21" height="24.48"/><rect class="cls-2" x="402.01" y="337.7" width="13.21" height="24.48" transform="translate(-63.78 92.51) rotate(-11.99)"/><rect class="cls-2" x="435.87" y="326.33" width="13.21" height="24.48" transform="translate(-99.46 209.25) rotate(-24)"/><rect class="cls-2" x="466.64" y="308.16" width="13.21" height="24.48" transform="matrix(0.81, -0.59, 0.59, 0.81, -97.95, 339.3)"/><rect class="cls-2" x="492.96" y="283.99" width="13.21" height="24.48" transform="translate(-54.9 469.11) rotate(-47.98)"/><rect class="cls-2" x="513.67" y="254.89" width="13.21" height="24.48" transform="translate(28.74 584.03) rotate(-59.99)"/><rect class="cls-2" x="527.88" y="222.11" width="13.21" height="24.48" transform="translate(146.52 670.32) rotate(-72.01)"/><rect class="cls-2" x="534.96" y="187.09" width="13.21" height="24.48" transform="translate(286.77 717.11) rotate(-84)"/><rect class="cls-2" x="528.98" y="156.99" width="24.48" height="13.21" transform="translate(-14.19 57.76) rotate(-6.03)"/><rect class="cls-2" x="521.21" y="122.12" width="24.48" height="13.21" transform="translate(-13.66 171.32) rotate(-18.02)"/><rect class="cls-2" x="506.35" y="89.62" width="24.48" height="13.21" transform="translate(21.41 272.32) rotate(-30.02)"/><rect class="cls-2" x="485.07" y="60.93" width="24.48" height="13.21" transform="translate(82.58 350.15) rotate(-42.01)"/><polygon class="cls-2" points="468.67 57.67 457.98 49.91 472.38 30.11 483.06 37.87 468.67 57.67"/><rect class="cls-2" x="427.17" y="19.73" width="24.48" height="13.21" transform="translate(236.71 417.08) rotate(-66.01)"/><rect class="cls-2" x="393.08" y="9.02" width="24.48" height="13.21" transform="translate(305.88 408.87) rotate(-78.02)"/><path class="cls-2" d="M458,463.18A124.61,124.61,0,1,1,582.59,338.57,124.74,124.74,0,0,1,458,463.18Zm0-246.59a122,122,0,1,0,122,122A122.12,122.12,0,0,0,458,216.59Z"/><path class="cls-2" d="M460.54,372.88a272.57,272.57,0,0,0,4.65-51.09c0-153.94-116.82-230-232.25-228.15q-6.57-6.66-13.89-13a266.7,266.7,0,0,0-47.48,7.46,217.8,217.8,0,0,0-17.07,19.28A225.83,225.83,0,0,0,98.2,136.3,208.91,208.91,0,0,0,75.48,136C38.6,166.83,10.92,210.42,0,266.72Q4.94,278,10.74,288.67a280.76,280.76,0,0,0-1.91,33.12c0,34.4,5.85,64.92,16.2,91.54a240,240,0,0,0-2.25,29.1,216.07,216.07,0,0,0,45.63,59,204.54,204.54,0,0,0,27.05,3.85c69,50.62,166.54,58.22,244.11,22.81a242.66,242.66,0,0,0,28.79,11.23c47.91-26.91,86.94-70.05,106.34-129.43A276.51,276.51,0,0,0,460.54,372.88ZM24.05,321.79c0-284,425.93-284,425.93,0S24.05,605.74,24.05,321.79Z"/><path class="cls-2" d="M237.35,515.23c-107.9,0-195.69-87.78-195.69-195.68s87.79-195.7,195.69-195.7S433,211.64,433,319.55,345.25,515.23,237.35,515.23Zm0-388C131.31,127.23,45,213.51,45,319.55s86.27,192.31,192.31,192.31,192.31-86.27,192.31-192.31S343.39,127.23,237.35,127.23Z"/><polygon class="cls-2" points="386.18 203.83 353.39 171.04 350.82 206.4 386.18 203.83"/><polygon class="cls-2" points="88.52 435.91 121.31 468.7 123.88 433.34 88.52 435.91"/></g></g></g></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 474.71 469.29"><defs><style>.cls-1{opacity:0.8;}.cls-2{fill:#5fffe8;}</style></defs><title>资源 18</title><g id="图层_2" data-name="图层 2"><g id="央铋_1" data-name="央铋 1"><g class="cls-1"><path class="cls-2" d="M460.54,292.2a271.71,271.71,0,0,0,4.66-51.09C465.2,87.17,348.38,11.13,233,13q-6.57-6.66-13.9-13a266.59,266.59,0,0,0-47.47,7.46,217.8,217.8,0,0,0-17.07,19.28,225.49,225.49,0,0,0-56.3,28.88,209,209,0,0,0-22.72-.35C38.61,86.15,10.93,129.74,0,186c3.29,7.54,6.89,14.86,10.74,22a282.65,282.65,0,0,0-1.9,33.11c0,34.4,5.84,64.92,16.19,91.55a241.86,241.86,0,0,0-2.24,29.09,216.23,216.23,0,0,0,45.62,59,206.73,206.73,0,0,0,27.05,3.86c69,50.61,166.54,58.21,244.11,22.8a242.82,242.82,0,0,0,28.8,11.23c47.91-26.91,86.93-70,106.34-129.43A278.44,278.44,0,0,0,460.54,292.2ZM24.05,241.11c0-284,425.94-284,425.94,0S24.05,525.06,24.05,241.11Z"/><path class="cls-2" d="M237.36,434.56c-107.91,0-195.7-87.79-195.7-195.69S129.45,43.18,237.36,43.18,433.05,131,433.05,238.87,345.26,434.56,237.36,434.56Zm0-388C131.32,46.56,45,132.83,45,238.87s86.28,192.31,192.32,192.31,192.31-86.27,192.31-192.31S343.39,46.56,237.36,46.56Z"/><polygon class="cls-2" points="386.19 123.15 353.39 90.36 350.83 125.72 386.19 123.15"/><polygon class="cls-2" points="88.52 355.23 121.31 388.02 123.89 352.66 88.52 355.23"/></g></g></g></svg>
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册