初始化页面搭建

wuyanfu
guangyin 2023-05-16 13:37:15 +08:00
commit 8d6e72a8ad
343 changed files with 44470 additions and 0 deletions

28
README.md 100644
View File

@ -0,0 +1,28 @@
# hbt-template-ui
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### 本框架采用ts与法 具体依赖vue-property-decorator
```
see vue-property-decorator用法详解 https://blog.csdn.net/weixin_44116302/article/details/111225763#PropSync_141
```
### 采用模块联邦
```
远程引用需要先在global.d.ts中注册
例:如需使用远程地图
1.在global.d.ts中注册 declare module 'common/map';
2.在页面中引用
@Component({
components:{MapComponent:()=>import("common/map") }
})
3.在html中应用 <MapComponent :id="'testID'" @onMapLoaded="getMap($event)"></MapComponent>
```

5
babel.config.js 100644
View File

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

83
package.json 100644
View File

@ -0,0 +1,83 @@
{
"name": "test",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode development",
"build": "vue-cli-service build --mode production",
"test": "vue-cli-service build --mode test",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@turf/turf": "^6.5.0",
"@types/webpack-env": "^1.18.0",
"animate.css": "^4.1.1",
"axios": "^1.3.4",
"core-js": "^3.8.3",
"echarts": "^5.4.2",
"echarts-wordcloud": "^2.1.0",
"element-ui": "^2.15.13",
"file-saver": "^2.0.5",
"hbt-common": "0.0.3",
"jquery": "^3.6.4",
"layui-layer": "^1.0.9",
"mockjs": "^1.1.0",
"moment": "^2.29.4",
"screenfull": "^6.0.2",
"vue": "^2.6.14",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"compression-webpack-plugin": "^5.0.2",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"html-loader": "^4.2.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"svg-sprite-loader": "^6.0.11",
"typescript": "~4.5.5",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/no-explicit-any": [
"off"
],
"vue/no-unused-components": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off"
}
},
"globals": {
"ue": true
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}

513
public/ac.min.js vendored 100644

File diff suppressed because one or more lines are too long

BIN
public/favicon.ico 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

18
public/index.html 100644
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="./favicon.ico">
<title></title>
</head>
<body>
<script type="JavaScript" src="./ac.min.js"></script>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>

71
src/App.vue 100644
View File

@ -0,0 +1,71 @@
<template>
<div id="app">
<router-view/>
</div>
</template>
<style lang="scss">
video{
object-fit: cover;
}
@font-face {
font-family: "Microsoft Yahei";
src: url("assets/fonts/微软雅黑.ttf");
}
@font-face {
font-family: "logo";
src: url("assets/fonts/三极韵律圆体.ttf");
}
*{
padding: 0;
margin: 0;
font-family: "Microsoft Yahei";
box-sizing: border-box;
}
body{
width: 100vw;
height: 100vh;
#app{
width: 100%;
height: 100%;
color: $font-color;
}
}
ul,li{
list-style: none;
}
@font-face {
font-family: number;
src: url("./assets/common/fonts/DIN-Regular.otf");
}
@font-face {
font-family: en;
src: url("./assets/common/fonts/Roboto-Regular.ttf");
}
//
::-webkit-scrollbar {
width:0px;
height: 0px;
}
/*滑动轨道*/
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.06);
border-radius: 12px;
}
/*滑块*/
::-webkit-scrollbar-thumb {
background: linear-gradient(90deg, #33F8F4 0%, #229A97 50%, #1E9895 100%);;
border-radius: 12px;
}
.header-box .nav-box .nav-block{
transition: all .5s;
}
</style>

513
src/assets/ac.min.js vendored 100644

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

View File

@ -0,0 +1 @@
<svg width="128" height="128" xmlns="http://www.w3.org/2000/svg"><path d="M121.718 73.272v9.953c3.957-7.584 6.199-16.05 6.199-24.995C127.917 26.079 99.273 0 63.958 0 28.644 0 0 26.079 0 58.23c0 .403.028.806.028 1.21l22.97-25.953h13.34l-19.76 27.187h6.42V53.77l13.728-19.477v49.361H22.998V73.272H2.158c5.951 20.284 23.608 36.208 45.998 41.399-1.44 3.3-5.618 11.263-12.565 12.674-8.607 1.764 23.358.428 46.163-13.178 17.519-4.611 31.938-15.849 39.77-30.513h-13.506V73.272H85.02V59.464l22.998-25.977h13.008l-19.429 27.187h6.421v-7.433l13.727-19.402v39.433h-.027zm-78.24 2.822a10.516 10.516 0 0 1-.996-4.535V44.548c0-1.613.332-3.124.996-4.535a11.66 11.66 0 0 1 2.713-3.68c1.134-1.032 2.49-1.864 4.04-2.468 1.55-.605 3.21-.908 4.982-.908h11.292c1.77 0 3.431.303 4.981.908 1.522.604 2.85 1.41 3.986 2.418l-12.26 16.303v-2.898a1.96 1.96 0 0 0-.665-1.512c-.443-.403-.996-.604-1.66-.604-.665 0-1.218.201-1.661.604a1.96 1.96 0 0 0-.664 1.512v9.071L44.364 77.606a10.556 10.556 0 0 1-.886-1.512zm35.73-4.535c0 1.613-.332 3.124-.997 4.535a11.66 11.66 0 0 1-2.712 3.68c-1.134 1.032-2.49 1.864-4.04 2.469-1.55.604-3.21.907-4.982.907H55.185c-1.77 0-3.431-.303-4.981-.907-1.55-.605-2.906-1.437-4.041-2.47a12.49 12.49 0 0 1-1.384-1.512l13.727-18.217v6.375c0 .605.222 1.109.665 1.512.442.403.996.604 1.66.604.664 0 1.218-.201 1.66-.604a1.96 1.96 0 0 0 .665-1.512V53.87L75.97 36.838c.913.932 1.66 1.99 2.214 3.175.664 1.41.996 2.922.996 4.535v27.011h.028z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/mangbanchoudu</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/mangbanchoudu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-97" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.03194995,17.993939 0.0060609562,13.9680501 0,9 C0.00551112896,4.03172183 4.03172183,0.00551112896 9,0 C13.9682782,0.00551112896 17.9944889,4.03172183 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M4,6.49999814 C2.61928813,6.49999814 1.5,7.61928813 1.5,8.99999814 C1.5,10.3807119 2.61928813,11.4999981 4,11.4999981 L5.26,11.4999981 C6.09464592,12.7491839 7.49763726,13.4994466 9,13.4999981 C10.5030713,13.5001144 11.9069604,12.7497728 12.742,11.4999981 L14,11.4999981 C15.3807119,11.4999981 16.5,10.3807119 16.5,8.99999814 C16.5,7.61928813 15.3807119,6.49999814 14,6.49999814 L12.741,6.49999814 C11.9068276,5.24927077 10.5023846,4.49863317 8.999,4.49999814 C7.49663726,4.5005534 6.09364592,5.25081615 5.259,6.49999814 L4,6.49999814 Z M8.908,12.5 C7.00112221,12.4725695 5.47619789,10.9069387 5.499,9 C5.47619789,7.09306125 7.00112221,5.52743053 8.908,5.5 C9.80519577,5.50016869 10.6647839,5.86043193 11.294,6.5 L9,6.5 C7.61928813,6.5 6.5,7.61928813 6.5,9 C6.5,10.3807119 7.61928813,11.5 9,11.5 L11.293,11.5 C10.6637197,12.1394733 9.80417319,12.4997191 8.907,12.5 L8.908,12.5 Z M9.608,11.6 C9.43844858,11.6 9.301,11.7374486 9.301,11.907 C9.30427495,12.0740411 9.44092775,12.2075781 9.608,12.207 C9.68842771,12.2083406 9.7660247,12.1773264 9.8233717,12.1209196 C9.88071869,12.0645127 9.91301117,11.9874389 9.913,11.907 C9.91326679,11.825497 9.88100792,11.7472553 9.82337631,11.6896237 C9.76574471,11.6319921 9.68750296,11.5997332 9.606,11.6 L9.608,11.6 Z M8.008,11.5 C7.83883834,11.4999991 7.70155102,11.6368392 7.701,11.806 C7.70126478,11.8871564 7.73375819,11.9648836 7.79133195,12.0220823 C7.84890572,12.079281 7.92684362,12.1112657 8.008,12.111 C8.17644685,12.111 8.313,11.9744468 8.313,11.806 C8.31300043,11.7246702 8.28062401,11.646686 8.22302141,11.589271 C8.16541882,11.531856 8.08732937,11.4997342 8.006,11.5 L8.008,11.5 Z M6.608,10.528 C6.52756112,10.5279888 6.45048732,10.5602813 6.39408044,10.6176283 C6.33767357,10.6749753 6.30665935,10.7525723 6.308,10.833 C6.308,10.9986854 6.44231458,11.133 6.608,11.133 C6.77507225,11.1335781 6.91172505,11.0000411 6.915,10.833 C6.9147659,10.7504337 6.8811757,10.6714659 6.82185831,10.6140316 C6.76254091,10.5565973 6.68253092,10.5255712 6.6,10.528 L6.608,10.528 Z M5.997,8.699 C5.82839152,8.69955101 5.6919991,8.83639062 5.692,9.005 C5.69199642,9.17377343 5.82823015,9.3109005 5.997,9.312 C6.16655142,9.312 6.304,9.17455142 6.304,9.005 C6.30347233,8.9234033 6.27048215,8.84537364 6.21231619,8.78814584 C6.15415023,8.73091804 6.07559449,8.69920092 5.994,8.7 L5.997,8.699 Z M6.608,6.999 C6.44111899,7.00173515 6.30743036,7.13809755 6.308,7.305 C6.30665935,7.38542771 6.33767357,7.4630247 6.39408044,7.5203717 C6.45048732,7.57771869 6.52756112,7.61001117 6.608,7.61 C6.68915638,7.61026565 6.76709428,7.57828095 6.82466805,7.52108226 C6.88224181,7.46388357 6.91473522,7.38615638 6.915,7.305 C6.91449072,7.22252076 6.88081426,7.14371577 6.82155854,7.08634118 C6.76230281,7.02896659 6.68245276,6.99784909 6.6,7 L6.608,6.999 Z M8.008,5.899 C7.83939152,5.89955101 7.7029991,6.03639062 7.703,6.205 C7.703,6.28589103 7.73513384,6.36346897 7.79233243,6.42066757 C7.84953103,6.47786616 7.92710897,6.51 8.008,6.51 C8.08915638,6.51026565 8.16709428,6.47828095 8.22466805,6.42108226 C8.28224181,6.36388357 8.31473522,6.28615638 8.315,6.205 C8.31449072,6.12252076 8.28081426,6.04371577 8.22155854,5.98634118 C8.16230281,5.92896659 8.08245276,5.89784909 8,5.9 L8.008,5.899 Z M9.608,5.799 C9.43955315,5.799 9.303,5.93555315 9.303,6.104 C9.30273435,6.18515638 9.33471905,6.26309428 9.39191774,6.32066805 C9.44911643,6.37824181 9.52684362,6.41073522 9.608,6.411 C9.77755142,6.411 9.915,6.27355142 9.915,6.104 C9.91449717,6.02160756 9.88078903,5.9428994 9.82150172,5.88568243 C9.7622144,5.82846547 9.68235828,5.79757511 9.6,5.8 L9.608,5.799 Z M14.008,10.499 L9.008,10.499 C8.17957288,10.499 7.508,9.82742712 7.508,8.999 C7.508,8.17057288 8.17957288,7.499 9.008,7.499 L14.008,7.499 C14.8364271,7.499 15.508,8.17057288 15.508,8.999 C15.5082719,9.39838799 15.3492564,9.78139383 15.0661902,10.0631461 C14.7831239,10.3448984 14.3993824,10.5021302 14,10.5000214 L14.008,10.499 Z M4.763,10.499 L4,10.499 C3.17157288,10.499 2.5,9.82742712 2.5,8.999 C2.5,8.17057288 3.17157288,7.499 4,7.499 L4.758,7.499 C4.58693943,7.9805894 4.49967641,8.48793253 4.5,8.999 C4.49903422,9.50995158 4.58562021,10.0172914 4.756,10.499 L4.763,10.499 Z" id="减去_97"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/电子围栏</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/电子围栏" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组-2">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="shandian" transform="translate(7.500000, 7.000000)" fill="#3B414A" fill-rule="nonzero">
<path d="M2.64726105,5.87889324 L4.95040861,2.6975867 C5.0408373,2.57259039 5.00416664,2.40365972 4.86833162,2.32038778 C4.81986788,2.29062197 4.76291202,2.27474907 4.70465762,2.27477385 L2.89378001,2.27477385 L2.89378001,0.272004007 C2.89378001,0.121813949 2.76159286,0 2.59849484,0 C2.49971446,0 2.40755784,0.0454371335 2.35274385,0.121106757 L0.0495962843,3.3024133 C-0.0408324004,3.42740961 -0.00416174485,3.59625188 0.131577279,3.67961222 C0.180067918,3.70940566 0.237053843,3.72530839 0.295347275,3.72531455 L2.10622489,3.72531455 L2.10622489,5.72799599 C2.10622489,5.87818605 2.23841204,6 2.40151006,6 C2.50029044,6 2.59254306,5.95456287 2.64726105,5.87889324 Z" id="路径"></path>
</g>
<rect id="矩形" fill="#3B414A" x="8" y="4" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" x="8" y="14" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" transform="translate(5.000000, 8.500000) rotate(-270.000000) translate(-5.000000, -8.500000) " x="4.5" y="7.5" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" transform="translate(5.000000, 11.500000) rotate(-270.000000) translate(-5.000000, -11.500000) " x="4.5" y="10.5" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" transform="translate(15.000000, 8.500000) rotate(-270.000000) translate(-15.000000, -8.500000) " x="14.5" y="7.5" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" transform="translate(15.000000, 11.500000) rotate(-270.000000) translate(-15.000000, -11.500000) " x="14.5" y="10.5" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" x="11" y="4" width="1" height="2" rx="0.5"></rect>
<rect id="矩形" fill="#3B414A" x="11" y="14" width="1" height="2" rx="0.5"></rect>
<path d="M9.02424024,14.7121 L6.23032,14.7121 C5.7098358,14.7121 5.2879,14.2901642 5.2879,13.76968 L5.2879,6.23032 C5.2879,5.7098358 5.7098358,5.2879 6.23032,5.2879 L13.76968,5.2879 C14.2901642,5.2879 14.7121,5.7098358 14.7121,6.23032 L14.7121,13.76968 C14.7121,14.2901642 14.2901642,14.7121 13.76968,14.7121 L11.1884773,14.7121 L11.1884773,14.7121" id="路径" stroke="#3B414A"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/duanlu</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/duanlu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-56" transform="translate(1.001000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.02943725,18 0,13.9705627 0,9 C0,4.02943725 4.02943725,0 9,0 C13.9705627,0 18,4.02943725 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M10.667,12.2 L10.667,13 L13.167,13 L13.167,12.2 L12.334,12.2 L12.334,9.8 L14,9.8 L14,5 L4,5 L4,9.8 L5.669,9.8 L5.669,12.2 L4.836,12.2 L4.836,13 L7.336,13 L7.336,12.2 L6.5,12.2 L6.5,9.8 L11.5,9.8 L11.5,12.2 L10.667,12.2 Z M12.625,9 L10.825,9 L12.052,5.8 L13.168,5.8 L13.168,7.582 L12.626,8.999 L12.625,9 Z M9.549,9 L7.749,9 L8.976,5.8 L10.776,5.8 L9.55,9 L9.549,9 Z M6.475,9 L4.834,9 L4.834,8.589 L5.902,5.801 L7.702,5.801 L6.476,9.001 L6.475,9 Z" id="减去_56"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/车辆定位</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/车辆定位" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="cheliang-" transform="translate(4.227739, 5.396378)" fill="#3B414A" fill-rule="nonzero">
<path d="M4.53191587,0.0917283545 C5.35016287,-0.0305761182 6.18204489,-0.0305761182 7.00029189,0.0917283545 C7.57567092,0.20680416 8.15104994,0.298864804 8.69190623,0.448463351 C9.09434001,0.551000412 9.41591664,0.8530217 9.54346719,1.2482402 C9.77745466,1.90800815 10.0229497,2.56202231 10.2799523,3.21028268 C10.3259827,3.31960469 10.4640736,3.48071082 10.5446267,3.46920324 C11.0010077,3.39208369 11.4354199,3.69361684 11.522771,4.14815049 C11.5517716,4.26529397 11.5517716,4.38774201 11.522771,4.50488549 L10.8668389,4.68325299 C10.9074706,4.91158702 10.93437,5.14215265 10.947392,5.37370782 L10.947392,8.56130762 C10.9399874,8.75404208 10.8714756,8.93942697 10.7517631,9.09065633 C10.1445593,9.20778764 9.52171814,9.21946591 8.91055026,9.12517907 C8.48476978,8.85475093 8.74944413,8.4002015 8.61135316,8.03195892 L3.01866903,8.03195892 C2.90934701,8.42321666 2.84605532,9.07914875 2.71947193,9.12517907 C2.09514895,9.23459972 1.45655171,9.23459972 0.832228726,9.12517907 C0.699752025,8.9492529 0.627155005,8.73549501 0.625092276,8.5152773 C0.590569535,8.05497408 0.590569535,7.61768602 0.590569535,7.16889038 C0.590569535,6.33459079 0.590569535,5.5002912 0.625092276,4.66023782 L0.0151905081,4.4991317 C-0.00506350271,4.4062444 -0.00506350271,4.31008328 0.0151905081,4.21719597 C0.187804216,3.75689275 0.417955827,3.40015776 1.01059622,3.45194187 C1.07964171,3.45194187 1.21197888,3.3138509 1.25225541,3.21028268 C1.47220343,2.69743451 1.66427649,2.17307506 1.82763444,1.63949794 C2.04893063,0.851236002 2.7376876,0.284159427 3.55377152,0.21831174 C3.87022999,0.160773838 4.19819603,0.120497306 4.51465449,0.0687131934 L4.53191587,0.0917283545 Z M1.98874057,3.64757074 C4.4699207,4.17261846 7.03351811,4.17261846 9.51469823,3.64757074 C9.30180799,3.00890002 9.08891775,2.43927478 8.93931921,1.86389576 C8.8476577,1.41154336 8.44564425,1.08944825 7.98419002,1.09864165 C6.79315544,1.04685754 5.59636706,1.00658101 4.40533248,0.995073426 C4.01618776,1.01032871 3.63007762,1.07017578 3.25457443,1.17344092 C3.08154269,1.20887601 2.93011332,1.31259476 2.83454774,1.46113044 C2.51233548,2.15733906 2.27067629,2.87656284 1.98874057,3.64757074 Z M2.47781274,6.36335974 C2.68367634,6.37448908 2.89013951,6.3629117 3.0934683,6.328837 C3.25247328,6.29214512 3.38841963,6.18966249 3.46746467,6.04690128 C3.49623362,5.96059442 3.36389644,5.74770418 3.24882064,5.69592007 C2.78079451,5.47664163 2.30051505,5.28452984 1.81037307,5.12054105 C1.56871388,5.03998798 1.29253195,5.05724935 1.23499404,5.39672298 C1.11991824,5.89730273 1.23499404,6.17348466 1.60899041,6.25403773 C1.90243371,6.31157563 2.18436944,6.32308321 2.50658169,6.35185216 L2.47781274,6.36335974 Z M9.11193292,6.36335974 C9.4149449,6.34174189 9.71652364,6.30332421 10.015278,6.24828394 C10.4468123,6.1504695 10.3547516,5.7994883 10.343244,5.49453741 C10.3317365,5.18958653 10.1706303,5.04574177 9.93472492,5.11478726 C9.34393088,5.29048574 8.76697148,5.50973031 8.20858784,5.77071935 C7.95542107,5.89154894 8.04748172,6.22526878 8.33517123,6.28856047 C8.59247053,6.32715152 8.85186085,6.35020844 9.11193292,6.35760595 L9.11193292,6.36335974 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/卡口设施</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/卡口设施" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="24gf-gate" transform="translate(4.652810, 5.381973)" fill="#3B414A" fill-rule="nonzero">
<path d="M10.385853,2.02350107 C10.5847489,1.80129697 10.6946142,1.51348871 10.6943801,1.21527034 C10.6943801,0.545200663 10.1491791,0 9.47910939,0 C8.80903971,0 8.26383904,0.545200652 8.26383904,1.21527034 C8.26360453,1.51348871 8.37346988,1.80129697 8.5723658,2.02350107 C8.38182322,2.13125468 8.26396578,2.33316751 8.26383904,2.55206771 L8.26383904,3.47514149 C8.12550966,3.2623386 7.96232401,3.06677079 7.77773091,2.89257127 L7.77773091,2.18748661 C7.77773091,2.05325156 7.66891189,1.94443255 7.53467684,1.94443255 C7.40044179,1.94443255 7.29162278,2.05325156 7.29162278,2.18748661 L7.29162278,2.51052066 C7.09427577,2.3828623 6.88447724,2.27557086 6.66545474,2.19029693 C6.55216018,2.14601662 6.43665737,2.10760864 6.3194065,2.07522602 L6.3194065,1.21527034 C6.31940649,1.08103529 6.21058748,0.972216293 6.07635244,0.972216293 C5.94211739,0.972216293 5.83329838,1.08103529 5.83329837,1.21527034 L5.83329837,1.97633339 C5.51062194,1.93379901 5.18375853,1.93379901 4.86108209,1.97633339 L4.86108209,1.21527034 C4.86108209,1.08103529 4.75226308,0.972216278 4.61802803,0.972216278 C4.48379298,0.972216278 4.37497397,1.08103529 4.37497397,1.21527034 L4.37497397,2.07522602 C4.26321973,2.10616477 4.15308586,2.14249629 4.04457234,2.18422058 C3.82003351,2.27059572 3.60506943,2.38005048 3.40313747,2.51082447 L3.40313747,2.18748661 C3.40313746,2.05325156 3.29431845,1.94443255 3.1600834,1.94443255 C3.02584835,1.94443255 2.91702933,2.05325156 2.91702933,2.18748661 L2.91702933,2.89257127 C2.73239508,3.06670402 2.56920481,3.26225187 2.43092119,3.47506554 L2.43092119,2.55206771 C2.43079445,2.33316751 2.31293701,2.13125468 2.12239443,2.02350107 C2.32115258,1.80124075 2.43088035,1.51343865 2.43054142,1.21527034 C2.43054142,0.545200663 1.88534077,0 1.21527108,0 C0.545201388,0 3.73466435e-07,0.545200663 3.73466435e-07,1.21527034 C-0.000233765158,1.51348871 0.109631584,1.80129697 0.308527505,2.02350107 C0.117984924,2.13125468 0.000127483938,2.33316751 3.73466435e-07,2.55206771 L3.73466435e-07,8.99300051 C3.73466435e-07,9.12723556 0.108819759,9.23605457 0.243054812,9.23605457 L2.18748736,9.23605457 C2.32172241,9.23605457 2.43054142,9.12723556 2.43054142,8.99300051 L2.43054142,8.74994644 L8.26383904,8.74994644 L8.26383904,8.99300051 C8.26383904,9.05746246 8.28944645,9.11928421 8.33502793,9.16486569 C8.38060941,9.21044717 8.44243116,9.23605457 8.50689311,9.23605457 L10.4513257,9.23605457 C10.5855607,9.23605457 10.6943801,9.12723556 10.6943801,8.99300051 L10.6943801,2.55206771 C10.694253,2.33316751 10.5763955,2.13125468 10.385853,2.02350107 L10.385853,2.02350107 Z M2.91664956,7.77773017 L2.43054142,7.77773017 L2.43054142,5.10413542 C2.43054142,4.56842906 2.60022354,4.05877507 2.91664956,3.62454379 L2.91664956,7.77773017 Z M4.37497397,4.37497322 L4.13191989,4.37497322 C4.06745794,4.37497322 4.00563619,4.40058063 3.96005471,4.44616211 C3.91447323,4.49174359 3.88886582,4.55356535 3.88886583,4.61802729 L3.88886583,5.59024356 C3.88886583,5.72447861 3.99768484,5.83329762 4.13191989,5.83329762 L4.37497397,5.83329762 L4.37497397,7.77773017 L3.40275769,7.77773017 L3.40275769,3.11177566 C3.64767096,2.91105262 3.92328797,2.75104755 4.21903959,2.63789619 C4.2704354,2.61814804 4.32233757,2.59981771 4.3747461,2.5829052 L4.37497397,4.37497322 Z M5.83329837,7.77773017 L4.86108209,7.77773017 L4.86108209,5.83329762 L5.83329837,5.83329762 L5.83329837,7.77773017 Z M5.83329837,4.37497322 L4.86108209,4.37497322 L4.86108209,2.46753047 C5.18326999,2.41810922 5.51111047,2.41810922 5.83329837,2.46753047 L5.83329837,4.37497322 Z M7.29162278,8.26383831 L6.80551464,8.26383831 L6.80551464,7.77773017 L6.3194065,7.77773017 L6.3194065,5.83329762 L6.56246057,5.83329762 C6.69669563,5.83329762 6.80551464,5.72447861 6.80551464,5.59024356 L6.80551464,4.61802729 C6.80551464,4.55356535 6.77990724,4.49174359 6.73432576,4.44616211 C6.68874428,4.40058063 6.62692252,4.37497322 6.56246057,4.37497322 L6.3194065,4.37497322 L6.3194065,2.58328497 C6.67367409,2.69772072 7.00341472,2.8774036 7.29162278,3.11306688 L7.29162278,8.26383831 Z M8.26383904,7.77773017 L7.77773091,7.77773017 L7.77773091,3.62773388 C8.08473858,4.05110368 8.26383904,4.55878286 8.26383904,5.10413542 L8.26383904,7.77773017 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18.001" height="18" viewBox="0 0 18.001 18"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642a9,9,0,1,1,9-9A9.01,9.01,0,0,1,330,1642Zm-5.06-5.116a.353.353,0,1,0,0,.706H335.06a.353.353,0,1,0,0-.706H334.7v-4.944a1.431,1.431,0,0,0-1.446-1.412h-2.169v-.706a1.431,1.431,0,0,0-1.445-1.412h-2.892a1.431,1.431,0,0,0-1.446,1.412v7.062Zm9.037,0h-2.893v-5.65h2.169a.716.716,0,0,1,.724.706v4.943Zm-1.808-2.119a.353.353,0,1,0,0,.706h.724a.353.353,0,1,0,0-.706Zm0-2.119a.353.353,0,1,0,0,.706h.724a.353.353,0,1,0,0-.706Zm-1.807,4.237h-4.338v-7.062a.716.716,0,0,1,.724-.706h2.892a.715.715,0,0,1,.723.706v7.061Zm-3.254-2.119a.353.353,0,1,0,0,.706h2.169a.353.353,0,1,0,0-.706Zm0-2.119a.353.353,0,1,0,0,.706h2.169a.353.353,0,1,0,0-.706Zm0-2.119a.353.353,0,1,0,0,.706h2.169a.353.353,0,1,0,0-.706Z" transform="translate(-320.999 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/重大危险源</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/重大危险源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="weixianhuaxuepin" transform="translate(4.720264, 4.186453)" fill="#3B414A" fill-rule="nonzero">
<path d="M5.1964988,0 C3.47900791,0 2.08688122,1.16627025 2.08688122,2.60487754 C2.08688122,3.36444255 2.4770564,4.04577613 3.09603396,4.52187494 L3.09603396,5.5441208 C3.09603396,5.94935307 3.42745372,6.28060918 3.83252233,6.28060918 C4.1425021,6.28060918 4.40796524,6.08584892 4.5161472,5.81318456 C4.52531239,6.21039729 4.85165857,6.53281553 5.2511626,6.53281553 C5.6503393,6.53281553 5.97684914,6.21039729 5.985687,5.81318456 C6.0937053,6.08584892 6.3593321,6.28060918 6.66931188,6.28060918 C7.07568977,6.27970911 7.40490018,5.9504987 7.40580025,5.5441208 L7.40580025,4.43709695 C7.96209447,3.96639905 8.30628003,3.31943493 8.30628003,2.60487754 C8.30628003,1.16627025 6.91382602,0 5.1964988,0 M3.88718613,3.26640776 C3.35050039,3.26640776 2.91543064,2.83133801 2.91543064,2.29465227 C2.91543064,1.75796653 3.35050039,1.32289678 3.88718613,1.32289678 C4.42387187,1.32289678 4.85894162,1.75796653 4.85894162,2.29465227 C4.85894162,2.83133801 4.42387187,3.26640776 3.88718613,3.26640776 M5.84100795,5.15885555 L4.5521533,5.15885555 L4.5521533,4.9235066 L5.1964988,3.80862687 L5.84100795,4.93414477 L5.84100795,5.15885555 L5.84100795,5.15885555 Z M6.5161223,3.26640776 C6.16594185,3.27092281 5.84041531,3.0866802 5.66402572,2.78413525 C5.48763613,2.4815903 5.48766763,2.10754102 5.66410817,1.80502578 C5.84054871,1.50251054 6.16610628,1.31832276 6.51628596,1.32289678 C7.04805302,1.32984269 7.47547507,1.76292063 7.47543028,2.29473305 C7.4753855,2.82654547 7.04789052,3.25955142 6.5161223,3.26640776" id="形状"></path>
<path d="M10.5427497,9.36289485 C10.6079024,9.03195153 10.4795841,8.69271012 10.2117185,8.48773114 C9.94385294,8.28275216 9.58286549,8.24756177 9.28045507,8.39694815 C8.97804465,8.54633452 8.78662388,8.85440658 8.78663412,9.19170222 L2.23123294,6.17242722 C2.37540096,6.01074189 2.4550365,5.80166221 2.45496174,5.58503683 C2.45484273,5.20517565 2.21269812,4.86761675 1.85291341,4.74575827 C1.49312869,4.6238998 1.09569325,4.74483401 0.864762752,5.04643911 C0.633832258,5.34804421 0.620748495,5.76326564 0.832232364,6.07881136 C0.364956534,6.10725933 0.000432369947,6.49429295 0,6.96243375 C-0.000480623742,7.41797325 0.344346637,7.79974055 0.797586142,7.84546171 C1.25082565,7.89118287 1.66495236,7.58597609 1.75546145,7.13951828 L8.30775301,10.1573203 C8.16594824,10.318476 8.08774597,10.5257935 8.08778848,10.7404554 C8.08778152,11.1204528 8.32994159,11.4581975 8.68983948,11.5801462 C9.04973736,11.7020949 9.44732934,11.5811252 9.67832053,11.2793952 C9.90931172,10.9776651 9.92232813,10.5622814 9.71068153,10.2466809 C10.1780671,10.2183839 10.5426536,9.83113627 10.5427497,9.36289485" id="路径"></path>
<path d="M0.000164166937,9.36289485 C0.00103242126,8.90722081 0.347187673,8.52640987 0.800712693,8.48219857 C1.25423771,8.43798728 1.66742261,8.74477495 1.75627978,9.19170222 L8.31151728,6.17242722 C8.16740862,6.01071776 8.08783234,5.80164071 8.08795215,5.58503683 C8.08807116,5.20517565 8.33021577,4.86761675 8.69000048,4.74575827 C9.0497852,4.6238998 9.44722065,4.74483401 9.67815114,5.04643911 C9.90908163,5.34804421 9.9221654,5.76326564 9.71068153,6.07881136 C10.1779574,6.10725933 10.5424815,6.49429295 10.5429139,6.96243375 C10.5433945,7.41797325 10.1985673,7.79974055 9.74532775,7.84546171 C9.29208824,7.89118287 8.87796153,7.58597609 8.78745244,7.13951828 L2.23532455,10.1573203 C2.37709623,10.3184841 2.45524321,10.5258093 2.45512541,10.7404554 C2.45490167,11.1202505 2.21274681,11.4576994 1.85301573,11.5795103 C1.49328464,11.7013213 1.09592561,11.5804225 0.864996248,11.2788997 C0.634066889,10.9773769 0.620889998,10.5622419 0.832232364,10.2466809 C0.364883892,10.2183046 0.000341647427,9.83110396 0.000164166937,9.36289485" id="路径"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/企业应急档案</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/32/企业应急档案" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13.558,25.001 L6.001,25.001 C4.8964305,25.001 4.001,24.1055695 4.001,23.001 L4.001,7.001 C4.001,5.8964305 4.8964305,5.001 6.001,5.001 L20.001,5.001 C21.1055695,5.001 22.001,5.8964305 22.001,7.001 L22.001,12.779 C21.5106367,12.9043437 21.0867173,13.2123561 20.816,13.64 L13.558,25.001 Z M7.843,19.001 C7.29071525,19.001 6.843,19.4487153 6.843,20.001 C6.843,20.5532847 7.29071525,21.001 7.843,21.001 L14.16,21.001 C14.7122847,21.001 15.16,20.5532847 15.16,20.001 C15.16,19.4487153 14.7122847,19.001 14.16,19.001 L7.843,19.001 Z M7.843,14.001 C7.29071525,14.001 6.843,14.4487153 6.843,15.001 C6.843,15.5532847 7.29071525,16.001 7.843,16.001 L17.159,16.001 C17.7112847,16.001 18.159,15.5532847 18.159,15.001 C18.159,14.4487153 17.7112847,14.001 17.159,14.001 L7.843,14.001 Z M7.843,9.001 C7.29071525,9.001 6.843,9.44871525 6.843,10.001 C6.843,10.5532847 7.29071525,11.001 7.843,11.001 L18.159,11.001 C18.7112847,11.001 19.159,10.5532847 19.159,10.001 C19.159,9.44871525 18.7112847,9.001 18.159,9.001 L7.843,9.001 Z" id="减去_108" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
<g id="组_1039" transform="translate(16.069594, 15.870000)" fill-rule="nonzero">
<path d="M5.31540634,3.871 C5.31540634,3.53327788 5.58918422,3.2595 5.92690634,3.2595 C6.26462847,3.2595 6.53840634,3.53327788 6.53840634,3.871 L6.53840634,6.317 C6.53840634,6.65472212 6.26462847,6.9285 5.92690634,6.9285 C5.58918422,6.9285 5.31540634,6.65472212 5.31540634,6.317 L5.31540634,3.871 Z M5.92640634,8.457 C5.67927991,8.457 5.45648714,8.30813463 5.36191595,8.07981958 C5.26734476,7.85150453 5.31961932,7.58870253 5.4943641,7.41395776 C5.66910887,7.23921298 5.93191087,7.18693841 6.16022592,7.28150961 C6.38854097,7.3760808 6.53740634,7.59887357 6.53740634,7.846 C6.53632796,8.18144145 6.26583347,8.45371844 5.93040634,8.457 L5.92640634,8.457 Z" id="路径_533" fill="url(#linearGradient-2)"></path>
<path d="M10.9364063,10.1470008 L0.941406342,10.1470008 C0.602547321,10.1474485 0.290750123,9.96198292 0.129406342,9.664 C-0.050035689,9.34356736 -0.0423871262,8.95119609 0.149406342,8.638 L2.55840634,4.66 L5.13040634,0.457 C5.30347139,0.17808095 5.60621228,0.00600061713 5.93440634,0 C6.25714981,0.00287784855 6.5541074,0.176864538 6.71440634,0.457 L9.25440634,4.657 L11.6954063,8.635 C11.8990822,8.93635107 11.916846,9.32638228 11.7414063,9.645 C11.5887752,9.95035473 11.2777719,10.1442972 10.9364063,10.1470008 Z M5.92540634,1.66997812 C5.85438413,1.67042869 5.7889168,1.70849109 5.75340634,1.77 L1.66240634,8.586 C1.62678555,8.64769405 1.62667009,8.72367843 1.66210325,8.78548044 C1.6975364,8.84728245 1.76316862,8.8855715 1.83440634,8.886 L10.0174063,8.886 C10.0884651,8.88521898 10.153773,8.84679069 10.1889637,8.78505269 C10.2241543,8.72331469 10.2239422,8.64753996 10.1884063,8.586 L6.10040634,1.768 C6.0638527,1.70633022 5.99708765,1.6689418 5.92540634,1.66997812 Z" id="减去_64" fill="url(#linearGradient-3)"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/空载车辆</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/空载车辆" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M7.3734792,12.4495161 C8.09877289,12.4495161 8.6867396,13.0477084 8.6867396,13.7856158 C8.6867396,14.5235233 8.09877289,15.1217156 7.3734792,15.1217156 C6.64818551,15.1217156 6.0602188,14.5235233 6.0602188,13.7856158 C6.0602188,13.0477084 6.64818551,12.4495161 7.3734792,12.4495161 Z M10.4377535,11.0627414 L10.4377535,13.7856158 L9.12449307,13.7856158 C9.12449307,12.8017454 8.34053133,12.0041496 7.3734792,12.0041496 C6.42500424,12.0041496 5.65276609,12.7714048 5.62342292,13.7291378 C4.86991241,13.5304208 4.30920494,12.8306664 4.30920494,12.0041496 L4.30920494,11.0627414 L10.4377535,11.0627414 Z M13.0642743,12.4495161 C13.789568,12.4495161 14.3775347,13.0477084 14.3775347,13.7856158 C14.3775347,14.5235233 13.789568,15.1217156 13.0642743,15.1217156 C12.3389806,15.1217156 11.7510139,14.5235233 11.7510139,13.7856158 C11.7510139,13.0477084 12.3389806,12.4495161 13.0642743,12.4495161 Z M13.5841065,6.65996819 C13.9945004,6.66323015 14.4048943,6.71542155 14.8152881,7.55048387 L15.6907951,9.77731672 L15.6907951,12.0041496 C15.6907951,12.6662009 15.3309891,13.2468336 14.800555,13.5538582 C14.6888868,12.6794923 13.9541313,12.0041496 13.0642743,12.0041496 C12.0972221,12.0041496 11.3132604,12.8017454 11.3132604,13.7856158 L10.8755069,13.7856158 L10.8755069,6.65975073 Z" id="形状结合" fill="#3B414A"></path>
<rect id="矩形" stroke="#3B414A" fill="#D8D8D8" x="4.80920494" y="10" width="5.12854853" height="1"></rect>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/企业环保档案</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-4">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/32/企业环保档案" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M17.849,25.038 L17.542,25.038 C16.9190896,25.0368977 16.4145503,24.5319111 16.414,23.909 L16.414,23.339 C16.7914246,23.9830994 17.2760548,24.5580271 17.847,25.039 L17.849,25.038 Z M14.73,25.038 L11.336,25.038 C10.712699,25.0374486 10.2075514,24.532301 10.207,23.909 L10.207,8.128 C10.2081023,7.5050896 10.7130889,7.00055027 11.336,7 L14.73,7 C15.3529111,7.00055027 15.8578977,7.5050896 15.859,8.128 L15.859,17.928 C15.6308478,18.6045953 15.5149826,19.3139737 15.516,20.028 C15.5149826,20.7420263 15.6308478,21.4514047 15.859,22.128 L15.859,23.913 C15.8562492,24.5347383 15.3517441,25.0374559 14.73,25.038 L14.73,25.038 Z M13.037,21.662 C12.8868002,21.6614511 12.742676,21.7212627 12.637,21.828 C12.5304523,21.9338034 12.4706752,22.0778446 12.4709987,22.228 C12.4715504,22.538708 12.723292,22.7904496 13.034,22.7910024 C13.1841776,22.7914366 13.3282602,22.7316423 13.434,22.625 C13.5408327,22.5193882 13.6006617,22.375222 13.6000054,22.225 C13.6004366,22.0748224 13.5406423,21.9307398 13.434,21.825 C13.3286641,21.7198301 13.18585,21.6608339 13.037,21.6609997 L13.037,21.662 Z M12.614,9.249 C12.5764306,9.249 12.5404143,9.26399156 12.5139427,9.29065087 C12.4874712,9.31731017 12.4727336,9.35343151 12.4729964,9.391 L12.4729964,18.136 C12.4729964,18.2138721 12.5361279,18.277 12.614,18.277 L13.46,18.277 C13.5378721,18.277 13.6010036,18.2138721 13.6010036,18.136 L13.6010036,9.391 C13.6012664,9.35343151 13.5865288,9.31731017 13.5600573,9.29065087 C13.5335857,9.26399156 13.4975694,9.249 13.46,9.249 L12.614,9.249 Z M8.523,25.039 L5.129,25.039 C4.50569904,25.0384486 4.00055135,24.533301 4,23.91 L4,8.129 C4.00110225,7.5060896 4.50608886,7.00155027 5.129,7.001 L8.523,7.001 C9.14591114,7.00155027 9.65089775,7.5060896 9.652,8.129 L9.652,23.91 C9.65089775,24.5329104 9.14591114,25.0374497 8.523,25.038 L8.523,25.039 Z M6.831,21.663 C6.68080024,21.6624511 6.53667596,21.7222627 6.431,21.829 C6.32426266,21.934676 6.26445108,22.0788002 6.26499625,22.229 C6.26609995,22.5398697 6.51812881,22.7914517 6.829,22.7920024 C6.97917757,22.7924366 7.12326019,22.7326423 7.229,22.626 C7.33554767,22.5201966 7.39532477,22.3761554 7.39500132,22.226 C7.39500132,22.0759107 7.33526589,21.9319923 7.229,21.826 C7.1235834,21.7202178 6.98034022,21.6608331 6.831,21.6609996 L6.831,21.663 Z M6.407,9.25 C6.36943057,9.25 6.33341428,9.26499156 6.30694272,9.29165087 C6.28047115,9.31831017 6.26573355,9.35443151 6.26599645,9.392 L6.26599645,18.137 C6.26599645,18.2148721 6.32912785,18.278 6.407,18.278 L7.253,18.278 C7.33103556,18.278 7.39445045,18.2150336 7.395,18.137 L7.395,9.392 C7.395,9.31357557 7.33142443,9.25 7.253,9.25 L6.407,9.25 Z M16.414,16.716 L16.414,8.13 C16.4145513,7.50725132 16.9192513,7.00255135 17.542,7.002 L20.937,7.002 C21.5597487,7.00255135 22.0644487,7.50725132 22.065,8.13 L22.065,13.48 L22.055,13.48 C21.2882705,13.4797635 20.5275461,13.615184 19.808,13.88 L19.808,9.393 C19.8082664,9.35543151 19.7935288,9.31931017 19.7670573,9.29265087 C19.7405857,9.26599156 19.7045694,9.25099906 19.667,9.251 L18.821,9.251 C18.7425756,9.251 18.679,9.31457557 18.679,9.393 L18.679,14.423 C17.7468963,14.9878757 16.9693714,15.7750209 16.416,16.714 L16.414,16.716 Z" id="减去_113" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
<path d="M22.014,25.019 C19.2537187,25.0162439 17.0167561,22.7792813 17.014,20.019 C17.0173061,17.2589468 19.2539468,15.0223061 22.014,15.019 C24.7740532,15.0223061 27.0106939,17.2589468 27.014,20.019 C27.0112439,22.7792813 24.7742813,25.0162439 22.014,25.019 L22.014,25.019 Z M22.014,16.019 C19.804861,16.019 18.014,17.809861 18.014,20.019 C18.014,22.228139 19.804861,24.019 22.014,24.019 C24.223139,24.019 26.014,22.228139 26.014,20.019 C26.014,17.809861 24.223139,16.019 22.014,16.019 Z" id="减去_114" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
<path d="M21.791,21.829 C21.560155,21.8223916 21.3311859,21.7854068 21.11,21.719 C21.0321147,21.6881664 20.9702747,21.6267519 20.9389041,21.5490813 C20.9075335,21.4714108 20.9093754,21.3842756 20.944,21.308 C20.9757446,21.2308636 21.0372351,21.1697747 21.114578,21.1385365 C21.1919209,21.1072983 21.2785891,21.1085468 21.355,21.142 C21.4996709,21.1774473 21.6472902,21.19954 21.796,21.208 C22.0823623,21.2134978 22.3652498,21.1445849 22.617,21.008 C22.9783477,20.7923583 23.2729038,20.4808418 23.468,20.108 C23.7776252,19.5249975 23.9888021,18.8948455 24.093,18.243 L23.879,18.243 C23.0679576,18.2057735 22.255265,18.2560639 21.455,18.393 C21.1801558,18.4481268 20.9225882,18.5685079 20.704,18.744 C20.5057252,18.920305 20.3661437,19.1530572 20.304,19.411 C20.2370676,19.7022644 20.2474093,20.0059634 20.334,20.292 C20.3621905,20.3928914 20.4060588,20.4887268 20.464,20.576 C20.5271251,20.6698148 20.5345504,20.7904412 20.4834081,20.8912898 C20.4322658,20.9921385 20.3305613,21.057423 20.217576,21.0619287 C20.1045907,21.0664344 19.9980105,21.0094559 19.939,20.913 C19.8514486,20.7763959 19.7840865,20.6278625 19.739,20.472 C19.6157997,20.0720734 19.6040443,19.6461127 19.705,19.24 C19.8021748,18.8613955 20.0112806,18.5209016 20.305,18.263 C20.5961816,18.0267498 20.9386686,17.8620136 21.305,17.782 C22.1503291,17.6329384 23.0095645,17.5779366 23.867,17.618 L24.147,17.618 C24.302381,17.6175069 24.4516188,17.6786405 24.562,17.788 L24.582,17.808 C24.6823005,17.9340454 24.7277061,18.0951273 24.708,18.255 L24.708,18.265 C24.5998309,19.02025 24.3591348,19.7504633 23.997,20.422 C23.7448519,20.8885947 23.3691266,21.2767749 22.911,21.544 C22.5686605,21.735717 22.1812771,21.8323901 21.789,21.824" id="路径_622" fill="url(#linearGradient-3)" fill-rule="nonzero"></path>
<path d="M20.146,22.576 L20.126,22.576 C20.0435339,22.5708701 19.966528,22.5330312 19.9120789,22.4708841 C19.8576298,22.408737 19.8302434,22.3274247 19.836,22.245 C19.8788798,21.5225608 20.1868954,20.8413658 20.701,20.332 L20.737,20.292 C21.0497141,19.9681558 21.4090041,19.69279 21.803,19.475 C22.0451768,19.3363329 22.3156004,19.2542827 22.594,19.235 C22.7056455,19.2267829 22.813194,19.2787521 22.876133,19.3713314 C22.939072,19.4639107 22.9478396,19.583035 22.899133,19.6838314 C22.8504265,19.7846278 22.7516455,19.8517829 22.64,19.86 C22.4461114,19.8756909 22.2580248,19.9337212 22.089,20.03 C21.7668311,20.2147107 21.4688788,20.4387627 21.202,20.697 L21.168,20.737 C20.7483345,21.14734 20.4963244,21.6991244 20.461,22.285 C20.4467541,22.4465831 20.3131731,22.571546 20.151,22.575" id="路径_623" fill="url(#linearGradient-4)" fill-rule="nonzero"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><defs><style>.a{fill:none;}.b{fill:currentColor;}</style></defs><path class="a" d="M0,0H30V30H0Z"/><path class="b" d="M357.7,372.8m-4.442,0a4.442,4.442,0,1,0,4.442-4.442A4.442,4.442,0,0,0,353.259,372.8Z" transform="translate(-342.922 -357.584)"/><path class="b" d="M121.147,124.715A11.558,11.558,0,1,0,132.7,136.273,11.558,11.558,0,0,0,121.147,124.715Zm0,1.873a9.685,9.685,0,1,1-9.685,9.684A9.684,9.684,0,0,1,121.147,126.588Z" transform="translate(-106.369 -121.051)"/><path class="b" d="M488.492,10.667a.939.939,0,0,1,.94.937v2.9a.94.94,0,0,1-1.88,0V11.6A.939.939,0,0,1,488.492,10.667Zm0,24.6a.939.939,0,0,1,.94.937v2.9a.94.94,0,0,1-1.88,0V36.2a.939.939,0,0,1,.94-.937Z" transform="translate(-473.271 -10.353)"/><path class="b" d="M10.667,488.492a.939.939,0,0,1,.937-.94h2.9a.94.94,0,0,1,0,1.88H11.6A.939.939,0,0,1,10.667,488.492Zm24.6,0a.939.939,0,0,1,.937-.94h2.9a.94.94,0,0,1,0,1.88H36.2a.939.939,0,0,1-.937-.94Z" transform="translate(-10.353 -473.271)"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/shouxiankongjian</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/shouxiankongjian" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-71" transform="translate(1.001000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.02943725,18 0,13.9705627 0,9 C0,4.02943725 4.02943725,0 9,0 C13.9705627,0 18,4.02943725 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M9,3.18799931 C8.90923436,3.1878525 8.81998688,3.21128427 8.741,3.256 L4.289,5.827 C4.12998511,5.92022778 4.03220843,6.09067119 4.03199934,6.275 L4.03199934,11.414 C4.03170537,11.5992476 4.12998402,11.7706638 4.29,11.864 L8.743,14.435 C8.90338817,14.5243809 9.09861183,14.5243809 9.259,14.435 L13.71,11.865 C13.8698499,11.7724725 13.9681978,11.6016978 13.9680009,11.417 L13.9680009,6.277 C13.968349,6.09200007 13.8700084,5.92085694 13.71,5.828 L9.259,3.257 C9.18009098,3.21197788 9.09084923,3.18820305 9,3.18799931 L9,3.18799931 Z M8.722,13.788 L8.722,13.788 L4.588,11.422 L4.569,6.607 L6.714,7.907 L6.714,9.874 C6.71371678,10.0547981 6.80973402,10.2220662 6.966,10.313 L8.724,11.326 L8.724,13.783 L8.722,13.788 Z M9.277,13.788 L9.277,11.335 L11.035,10.315 C11.1906404,10.224904 11.2866245,10.0588363 11.287,9.879 L11.287,7.939 L13.416,6.645 L13.433,11.391 L9.279,13.791 L9.277,13.788 Z M9.002,10.854 L9.002,10.854 L7.472,9.97 L9.001,8.844 L10.524,9.97 L9.003,10.854 L9.002,10.854 Z M7.268,9.529 L7.268,7.851 L8.761,6.987 L8.761,8.426 L7.27,9.526 L7.268,9.529 Z M10.731,9.529 L10.731,9.529 L9.24,8.429 L9.24,6.99 L10.732,7.852 L10.732,9.53 L10.731,9.529 Z M11.083,7.416 L11.083,7.416 C11.0678779,7.40517139 11.052189,7.39515716 11.036,7.386 L9.252,6.356 C9.17579537,6.31159189 9.08919982,6.28813175 9.001,6.288 C8.9124987,6.28823867 8.8256078,6.31168542 8.749,6.356 L6.965,7.387 L6.94,7.402 L4.867,6.141 L8.981,3.741 L13.172,6.141 L11.084,7.412 L11.083,7.416 Z" id="减去_71"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18" viewBox="0 0 18 18">
<defs>
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f0f7fc"/>
<stop offset="1" stop-color="#c2edff"/>
</linearGradient>
</defs>
<path id="减去_59" data-name="减去 59" d="M-1586-715a9.01,9.01,0,0,1-9-9,9.01,9.01,0,0,1,9-9,9.01,9.01,0,0,1,9,9A9.01,9.01,0,0,1-1586-715Zm1-8.5a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm-5,0a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm5-5a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm-5,0a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm7,8h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1583-720.5Zm-5,0h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1588-720.5Zm5-5h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1583-725.5Zm-5,0h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1588-725.5Z" transform="translate(1595 733)" fill="url(#linear-gradient)"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18" viewBox="0 0 18 18">
<defs>
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#f0f7fc"/>
<stop offset="1" stop-color="#c2edff"/>
</linearGradient>
</defs>
<path id="减去_59" data-name="减去 59" d="M-1586-715a9.01,9.01,0,0,1-9-9,9.01,9.01,0,0,1,9-9,9.01,9.01,0,0,1,9,9A9.01,9.01,0,0,1-1586-715Zm1-8.5a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm-5,0a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm5-5a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm-5,0a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,.5.5h3a.5.5,0,0,0,.5-.5v-3a.5.5,0,0,0-.5-.5Zm7,8h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1583-720.5Zm-5,0h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1588-720.5Zm5-5h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1583-725.5Zm-5,0h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5h1a.5.5,0,0,1,.5.5v1A.5.5,0,0,1-1588-725.5Z" transform="translate(1595 733)" fill="url(#linear-gradient)"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18" viewBox="0 0 18 18"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642a9,9,0,1,1,9-9A9.01,9.01,0,0,1,330,1642Zm-1.4-9.57h0l1.479.01a.71.71,0,0,1,.632.762v.072l0,.971a1,1,0,0,0,0,.223v.2a5.1,5.1,0,0,0,.93,2.973,3.744,3.744,0,0,0,1.569,1.281.3.3,0,0,0,.117.023.321.321,0,0,0,.294-.211.336.336,0,0,0-.179-.43,3.11,3.11,0,0,1-1.3-1.064,4.412,4.412,0,0,1-.8-2.57v-.254l0-.023a.236.236,0,0,1,0-.074l0-.027v-.189l1.082.01a.282.282,0,0,1,.24.307v.6a.668.668,0,0,0,0,.146v.109a3.119,3.119,0,0,0,.571,1.824,2.275,2.275,0,0,0,.975.793.268.268,0,0,0,.116.025.315.315,0,0,0,.294-.209.341.341,0,0,0-.178-.434,1.652,1.652,0,0,1-.7-.578,2.432,2.432,0,0,1-.443-1.418v-.16l0-.023,0-.027v-.652a.933.933,0,0,0-.868-.973l-1.085-.006v-.24a1.534,1.534,0,0,0-.36-1,1.206,1.206,0,0,0-.755-.418v-1.857a.368.368,0,0,1,.355-.375.532.532,0,0,1,.5.4,3.133,3.133,0,0,0,.861,1.518,2.173,2.173,0,0,0,1.493.572c.075,0,.151,0,.228-.008a.33.33,0,0,0,.289-.361.324.324,0,0,0-.314-.3.124.124,0,0,0-.027,0c-.06.006-.12.008-.178.008a1.909,1.909,0,0,1-1.74-1.605,1.176,1.176,0,0,0-1.113-.889,1.019,1.019,0,0,0-.988,1.039v1.832l-.969.008c0-.012,0-.023,0-.033v-2.93a.651.651,0,0,1,.633-.666h2.562a.656.656,0,0,1,.636.656,1.414,1.414,0,0,0,1.35,1.428c.288,0,.366.008.417.012.07,0,.116.006.308.006h.936a.332.332,0,0,0,0-.664h-.936c-.183,0-.219,0-.273,0-.077-.006-.168-.01-.442-.014a.759.759,0,0,1-.726-.77,1.306,1.306,0,0,0-1.268-1.316h-2.563a1.3,1.3,0,0,0-1.267,1.332v2.93c0,.008,0,.018,0,.027h-.119a.25.25,0,0,0-.079.01h-.026a1.2,1.2,0,0,0-.9.43,1.539,1.539,0,0,0-.359,1v.072l0,1.02,0,.023a.21.21,0,0,1,0,.078l0,.023v.252a4.416,4.416,0,0,1-.8,2.572,3.07,3.07,0,0,1-1.3,1.063.34.34,0,0,0-.178.432.317.317,0,0,0,.294.211.3.3,0,0,0,.116-.025,3.733,3.733,0,0,0,1.57-1.277,5.114,5.114,0,0,0,.93-2.975v-.2a.943.943,0,0,0,0-.223l0-.971v-.072a.711.711,0,0,1,.631-.762Zm6.035-1.057a.332.332,0,0,0,0,.664h.835a.332.332,0,0,0,0-.664Z" transform="translate(-321 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18" viewBox="0 0 18 18"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642a9,9,0,1,1,9-9A9.011,9.011,0,0,1,330,1642Zm-5.257-5.1a.23.23,0,0,0-.2.109.19.19,0,0,0-.019.158.212.212,0,0,0,.111.127,2.686,2.686,0,0,0,1.246.332,1.261,1.261,0,0,0,.128,0,2.252,2.252,0,0,0,.708-.164,1.646,1.646,0,0,1,.646-.137h.057a1,1,0,0,1,.383.08l.018.008a1.863,1.863,0,0,0,.613.145,1.619,1.619,0,0,0,.234.014,2.28,2.28,0,0,0,.766-.141,2.085,2.085,0,0,1,.749-.135h.012a1.5,1.5,0,0,1,.7.16l.006,0a1.577,1.577,0,0,0,.726.172c.04,0,.081,0,.122,0a2.205,2.205,0,0,0,.9-.25,1.194,1.194,0,0,1,.537-.148,1.275,1.275,0,0,1,.146.008,1.637,1.637,0,0,1,.342.088,4.1,4.1,0,0,0,.692.182,6.323,6.323,0,0,0,.824.092h.008a.226.226,0,0,0,.232-.2.2.2,0,0,0-.057-.15.253.253,0,0,0-.161-.072,5.835,5.835,0,0,1-.757-.08,4.358,4.358,0,0,1-.622-.166,1.921,1.921,0,0,0-.438-.109,1.176,1.176,0,0,0-.215-.016,1.6,1.6,0,0,0-.741.2,1.691,1.691,0,0,1-.719.205h-.087a1.127,1.127,0,0,1-.538-.127,1.936,1.936,0,0,0-.9-.205h-.046a2.572,2.572,0,0,0-.873.158,1.756,1.756,0,0,1-.616.117c-.059,0-.121,0-.186-.01a1.581,1.581,0,0,1-.477-.111l-.005,0-.019-.01a1.444,1.444,0,0,0-.586-.113h-.032a2.2,2.2,0,0,0-.808.164l-.005,0a1.725,1.725,0,0,1-.566.137l-.1,0a2.2,2.2,0,0,1-1.022-.277l-.009,0A.254.254,0,0,0,324.743,1636.9Zm-.066-1.121a.244.244,0,0,0-.2.1.2.2,0,0,0-.026.158.213.213,0,0,0,.1.133,2.787,2.787,0,0,0,1.336.377,2.563,2.563,0,0,0,.274-.018,1.936,1.936,0,0,0,.542-.154,1.363,1.363,0,0,1,.438-.127c.061-.006.118-.008.172-.008a1.5,1.5,0,0,1,.562.119,2.431,2.431,0,0,0,.9.178,1.9,1.9,0,0,0,.782-.156,1.657,1.657,0,0,1,.64-.139h.07a1.736,1.736,0,0,1,.642.119,2.371,2.371,0,0,0,.853.148h.03a2.344,2.344,0,0,0,.8-.146,1.673,1.673,0,0,1,.641-.111h.078a10.305,10.305,0,0,1,1.156.143c.216.033.426.068.643.109a.128.128,0,0,0,.046.008.227.227,0,0,0,.224-.172.194.194,0,0,0-.032-.154.229.229,0,0,0-.147-.094c-.223-.041-.437-.076-.654-.111l-.044-.006a10.4,10.4,0,0,0-1.177-.145h-.108a2.126,2.126,0,0,0-.785.139,1.9,1.9,0,0,1-.645.119h-.058a1.8,1.8,0,0,1-.646-.117l-.01-.006a2.263,2.263,0,0,0-.806-.145.56.56,0,0,0-.08,0,1.984,1.984,0,0,0-.811.172,1.4,1.4,0,0,1-.595.121,2.011,2.011,0,0,1-.732-.148,1.986,1.986,0,0,0-.728-.15,1.886,1.886,0,0,0-.231.012,1.857,1.857,0,0,0-.569.158l-.005,0a1.4,1.4,0,0,1-.411.121,1.554,1.554,0,0,1-.213.012,2.285,2.285,0,0,1-1.1-.314A.249.249,0,0,0,324.677,1635.777Zm4.5-6.781h0l1.562.01a.689.689,0,0,1,.666.7v.959a.687.687,0,0,0,0,.205v.189a4.306,4.306,0,0,0,.981,2.738,3.868,3.868,0,0,0,1.656,1.182.329.329,0,0,0,.122.021.337.337,0,0,0,.311-.2.28.28,0,0,0,0-.229.314.314,0,0,0-.186-.168,3.2,3.2,0,0,1-1.369-.982,3.71,3.71,0,0,1-.846-2.367v-.234l0-.023a.179.179,0,0,1,0-.068l0-.021v-.176l1.142.008a.273.273,0,0,1,.253.285v.555a.622.622,0,0,0,0,.135v.1a2.646,2.646,0,0,0,.6,1.682,2.427,2.427,0,0,0,1.029.732.373.373,0,0,0,.123.02.333.333,0,0,0,.311-.191.286.286,0,0,0,0-.232.3.3,0,0,0-.185-.164,1.77,1.77,0,0,1-.743-.535,2.042,2.042,0,0,1-.467-1.309v-.148l0-.021,0-.023v-.6a.915.915,0,0,0-.916-.9l-1.145-.006v-.225a1.294,1.294,0,0,0-.38-.914,1.332,1.332,0,0,0-.8-.389c-.011-.006-.575-.023-.656-.023h-.011l-1.022.006c-.007-.006-.209-.008-.4-.008-.125,0-.259,0-.264,0h-.127a.286.286,0,0,0-.083.014H328.3a1.33,1.33,0,0,0-.949.395,1.306,1.306,0,0,0-.379.914v.07l0,.939,0,.023a.2.2,0,0,1,0,.068l0,.025v.229a3.732,3.732,0,0,1-.846,2.373,3.233,3.233,0,0,1-1.369.982.308.308,0,0,0-.186.164.288.288,0,0,0,0,.232.335.335,0,0,0,.31.193.432.432,0,0,0,.123-.02,3.886,3.886,0,0,0,1.656-1.184,4.3,4.3,0,0,0,.981-2.742v-.186a.8.8,0,0,0,0-.205v-.963a.69.69,0,0,1,.666-.7Z" transform="translate(-321 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><defs><style>.a{fill:currentColor;}</style></defs><g transform="translate(-48 -48)"><path class="a" d="M197.719,192h-4.684A1.034,1.034,0,0,0,192,193.034v4.458a1.034,1.034,0,1,0,2.069,0v-3.423h3.65a1.034,1.034,0,0,0,0-2.069Zm13.447,0h-4.683a1.034,1.034,0,1,0,0,2.069h3.649v3.423a1.034,1.034,0,1,0,2.069,0v-4.458A1.034,1.034,0,0,0,211.166,192Zm-13.447,18.941h-3.65v-3.424a1.034,1.034,0,1,0-2.069,0v4.459a1.034,1.034,0,0,0,1.034,1.034h4.684a1.034,1.034,0,0,0,0-2.069Zm13.447-4.459a1.034,1.034,0,0,0-1.034,1.034v3.424h-3.649a1.034,1.034,0,1,0,0,2.069h4.683a1.034,1.034,0,0,0,1.034-1.034v-4.459A1.034,1.034,0,0,0,211.166,206.483Z" transform="translate(-139.345 -139.345)"/><path class="a" d="M75.931,48H50.069A2.071,2.071,0,0,0,48,50.069V75.931A2.071,2.071,0,0,0,50.069,78H75.931A2.071,2.071,0,0,0,78,75.931V50.069A2.071,2.071,0,0,0,75.931,48ZM50.069,75.931V50.069H75.931l0,25.862Z"/></g></svg>

After

Width:  |  Height:  |  Size: 972 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18" viewBox="0 0 18 18"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642a9,9,0,1,1,9-9A9.01,9.01,0,0,1,330,1642Zm-.559-8.029a2.453,2.453,0,0,0-.534.059,2.38,2.38,0,0,0-1.187.678,2.369,2.369,0,0,0-.4.557,2.49,2.49,0,0,0-.2.543,1.652,1.652,0,0,0-.333.277,1.541,1.541,0,0,0-.269.418,1.567,1.567,0,0,0-.123.482,1.54,1.54,0,0,0,.043.508,1.482,1.482,0,0,0,.207.467,1.509,1.509,0,0,0,.337.367,1.6,1.6,0,0,0,.437.236,1.629,1.629,0,0,0,.5.086h3.232a1.837,1.837,0,0,0,1.151-.406,1.839,1.839,0,0,0,.671-1.664,1.834,1.834,0,0,0-.536-1.076,1.849,1.849,0,0,0-1.062-.512c-.007-.014-.015-.027-.025-.043a2.422,2.422,0,0,0-.489-.5,2.383,2.383,0,0,0-.6-.33,2.473,2.473,0,0,0-.668-.145C329.548,1633.973,329.494,1633.971,329.44,1633.971Zm6.132-3.549a.281.281,0,0,0-.09.014.275.275,0,0,0-.091.053.256.256,0,0,0-.063.078.282.282,0,0,0-.03.1.26.26,0,0,0,.01.1,5.658,5.658,0,0,1,.271,1.35,5.58,5.58,0,0,1-.062,1.35,5.586,5.586,0,0,1-1.083,2.484.221.221,0,0,0-.037.068.207.207,0,0,0-.018.072.254.254,0,0,0,0,.074.246.246,0,0,0,.024.07.266.266,0,0,0,.042.064.251.251,0,0,0,.057.047.242.242,0,0,0,.069.031.3.3,0,0,0,.076.012.207.207,0,0,0,.061-.01.174.174,0,0,0,.058-.02.272.272,0,0,0,.052-.035.268.268,0,0,0,.043-.045,6.144,6.144,0,0,0,.96-5.686.248.248,0,0,0-.055-.09.262.262,0,0,0-.082-.061.31.31,0,0,0-.1-.025Zm-5.74-1.656a3.6,3.6,0,0,0-1.634.391,3.61,3.61,0,0,0-1.512,1.451,3.576,3.576,0,0,0-.453,2,3.56,3.56,0,0,0,.225,1.035.245.245,0,0,0,.041.072.226.226,0,0,0,.059.057.413.413,0,0,0,.072.035.29.29,0,0,0,.082.012v.008h.007a.229.229,0,0,0,.058-.01.166.166,0,0,0,.061-.021.246.246,0,0,0,.053-.037.264.264,0,0,0,.044-.049.308.308,0,0,0,.031-.059.258.258,0,0,0,.015-.064.252.252,0,0,0,0-.066.246.246,0,0,0-.016-.062,3.068,3.068,0,0,1-.122-1.756,3.1,3.1,0,0,1,.315-.822,2.978,2.978,0,0,1,.55-.709,3.077,3.077,0,0,1,.732-.521,3.015,3.015,0,0,1,.833-.281,3.12,3.12,0,0,1,.556-.051,2.579,2.579,0,0,1,.325.018,3.059,3.059,0,0,1,2.732,3.035.266.266,0,0,0,.021.105.271.271,0,0,0,.059.086.286.286,0,0,0,.086.059.247.247,0,0,0,.105.021.268.268,0,0,0,.193-.08.258.258,0,0,0,.058-.086.251.251,0,0,0,.022-.105,3.636,3.636,0,0,0-.156-1.049,3.593,3.593,0,0,0-3.06-2.533A3.17,3.17,0,0,0,329.832,1628.766Zm-.061,2.365a1.4,1.4,0,0,0-.272.027,1.368,1.368,0,0,0-.4.156,1.4,1.4,0,0,0-.341.283,1.338,1.338,0,0,0-.08,1.637.275.275,0,0,0,.043.049.237.237,0,0,0,.054.035.352.352,0,0,0,.061.023.363.363,0,0,0,.065.008.3.3,0,0,0,.074-.01.215.215,0,0,0,.067-.031.305.305,0,0,0,.057-.045.36.36,0,0,0,.043-.061.263.263,0,0,0,.025-.072.272.272,0,0,0,0-.072.333.333,0,0,0-.015-.072.251.251,0,0,0-.034-.064.821.821,0,0,1-.108-.227.76.76,0,0,1-.034-.24.811.811,0,0,1,.158-.463.878.878,0,0,1,.179-.174.9.9,0,0,1,.219-.107.819.819,0,0,1,.241-.035.776.776,0,0,1,.246.041.731.731,0,0,1,.221.113.793.793,0,0,1,.171.174.763.763,0,0,1,.112.217.778.778,0,0,1,.039.246c0,.012,0,.027,0,.041v.039l0,.039,0,.021,0,.02a.258.258,0,0,0,0,.109.251.251,0,0,0,.04.1.259.259,0,0,0,.073.074.288.288,0,0,0,.1.043.533.533,0,0,0,.057,0,.461.461,0,0,0,.052,0,.282.282,0,0,0,.1-.041.275.275,0,0,0,.074-.074.239.239,0,0,0,.042-.1,1.344,1.344,0,0,0-.361-1.211,1.354,1.354,0,0,0-.361-.26,1.323,1.323,0,0,0-.425-.125A1.466,1.466,0,0,0,329.771,1631.131ZM330,1626.4c-.115,0-.23,0-.343.01a6.113,6.113,0,0,0-1.828.387,6.134,6.134,0,0,0-3.967,5.742.258.258,0,0,0,.021.105.288.288,0,0,0,.145.145.244.244,0,0,0,.105.021.25.25,0,0,0,.106-.021.253.253,0,0,0,.086-.061.258.258,0,0,0,.059-.084.274.274,0,0,0,.021-.105,5.59,5.59,0,0,1,5.282-5.584c.1-.006.21-.01.313-.01a5.494,5.494,0,0,1,1.346.166,5.586,5.586,0,0,1,2.847,1.727.246.246,0,0,0,.086.066.262.262,0,0,0,.1.025h.02a.3.3,0,0,0,.083-.012.287.287,0,0,0,.094-.057.272.272,0,0,0,.065-.084.252.252,0,0,0,.026-.1.249.249,0,0,0-.014-.1.289.289,0,0,0-.054-.1,6.259,6.259,0,0,0-1.435-1.2A6.178,6.178,0,0,0,330,1626.4Zm1.146,11.7h-3.221a1.022,1.022,0,0,1-.324-.055,1,1,0,0,1-.5-.389.993.993,0,0,1,.093-1.211.99.99,0,0,1,.258-.205.2.2,0,0,0,.04-.025.3.3,0,0,0,.052-.033.271.271,0,0,0,.061-.072.289.289,0,0,0,.032-.09,1.831,1.831,0,0,1,.476-.939,1.8,1.8,0,0,1,.415-.324,1.878,1.878,0,0,1,.5-.2,1.951,1.951,0,0,1,.412-.045c.038,0,.078,0,.124,0a1.918,1.918,0,0,1,.516.111,1.865,1.865,0,0,1,.46.256,1.91,1.91,0,0,1,.171.145,1.945,1.945,0,0,0-.558.244,1.851,1.851,0,0,0-.458.43.245.245,0,0,0-.046.1.267.267,0,0,0-.006.1.273.273,0,0,0,.033.1.279.279,0,0,0,.072.08.267.267,0,0,0,.166.055.233.233,0,0,0,.037,0,.248.248,0,0,0,.1-.035.224.224,0,0,0,.081-.07,1.307,1.307,0,0,1,.715-.475,1.319,1.319,0,0,1,.317-.039,1.093,1.093,0,0,1,.112.006,1.266,1.266,0,0,1,.426.115,1.224,1.224,0,0,1,.363.248,1.29,1.29,0,0,1,.357,1.2,1.334,1.334,0,0,1-.167.412,1.317,1.317,0,0,1-.661.529,1.336,1.336,0,0,1-.428.074h-.019Z" transform="translate(-321 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/气体监测</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/气体监测" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M8.40249666,14.1437584 C7.92416339,14.1420593 7.53450296,14.5190265 7.53103575,14.9868417 C7.53103575,15.4530477 7.92056828,15.8309473 8.40249666,15.8309473 C8.88123699,15.8326486 9.27106629,15.4550587 9.27395757,14.9868417 C9.27106628,14.5187892 8.88106628,14.1414935 8.40249666,14.1437584 Z M11.5975033,14.1437629 C11.1191701,14.1420593 10.7295096,14.5190265 10.7260424,14.9868417 C10.7260424,15.4530477 11.1166249,15.8309473 11.5975033,15.8309473 C12.0762437,15.8326486 12.466073,15.4550587 12.4689642,14.9868417 C12.465497,14.5190265 12.0758366,14.1420593 11.5975033,14.1437629 Z M7.42332279,5.38776855 C6.18196967,6.97268507 6.76069215,8.08510754 7.5739357,9.09302624 L7.75787209,9.31543699 C8.65643103,10.3854606 9.08835635,12.019493 6.08994617,13.2411935 C7.42043043,11.801537 6.6587764,10.3625178 5.75828922,9.31543699 C4.85876617,8.26835615 5.09015474,6.30484057 7.42332279,5.38776855 Z M10.5760136,5.38776855 C9.24263702,7.08999188 10.0091117,8.24732531 10.9105629,9.31543699 C11.8091219,10.3854606 12.2410472,12.019493 9.24263702,13.2411935 C10.5731213,11.801537 9.81146725,10.3625178 8.91098008,9.31543699 C8.01145702,8.26835615 8.24284559,6.30484057 10.5760136,5.38776855 Z M13.7287045,5.38776855 C12.3953279,7.08999188 13.1618025,8.24732531 14.0632538,9.31543699 C14.9618127,10.3854606 15.3937381,12.019493 12.3953279,13.2411935 C13.7258121,11.801537 12.9641581,10.3625178 12.0636709,9.31543699 C11.1641479,8.26835615 11.3955364,6.30484057 13.7287045,5.38776855 Z" id="形状结合" fill="#3B414A"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18.002" viewBox="0 0 18 18.002"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642a9,9,0,1,1,9-9A9.011,9.011,0,0,1,330,1642Zm1.006-8.988a.391.391,0,0,0-.389.393v4.1a.39.39,0,0,0,.389.389h2.979a1.719,1.719,0,0,0,1.708-1.914l-.3-2.623a.389.389,0,0,0-.386-.346Zm-5.426,0a.392.392,0,0,0-.385.346l-.3,2.623a1.718,1.718,0,0,0,1.707,1.914h2.95a.393.393,0,0,0,.276-.113.387.387,0,0,0,.113-.275v-4.1a.391.391,0,0,0-.389-.393Zm5.426-4.4a.389.389,0,0,0-.389.389v2.984a.389.389,0,0,0,.389.389h3.867a.384.384,0,0,0,.29-.129.392.392,0,0,0,.1-.3l-.207-1.807a1.716,1.716,0,0,0-1.707-1.523Zm-3.767,0a1.719,1.719,0,0,0-1.707,1.523l-.206,1.807a.387.387,0,0,0,.386.432h3.838a.386.386,0,0,0,.389-.389V1629a.389.389,0,0,0-.389-.389Zm6.745,8.5H331.4v-3.324h3.263l.26,2.277a.94.94,0,0,1-.934,1.047Zm-4.821,0H326.6a.94.94,0,0,1-.934-1.047l.259-2.277h3.236v3.324Zm5.274-5.52H331.4v-2.207h1.951a.94.94,0,0,1,.934.834l.157,1.373Zm-5.273,0h-3.015l.157-1.373a.939.939,0,0,1,.934-.834h1.924v2.207Z" transform="translate(-321 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>切片</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="智慧应急" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="智慧化工园区/智慧应急-事故研判" transform="translate(-1384.000000, -860.000000)">
<g id="编组-15" transform="translate(1368.000000, 680.000000)">
<g id="icon/20px/层级图标/视频监控" transform="translate(16.000000, 180.000000)">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="relitu" transform="translate(10.000000, 10.000000) scale(1, -1) translate(-10.000000, -10.000000) translate(4.564469, 4.564329)" fill="#3B414A" fill-rule="nonzero">
<path d="M8.30174143,10.7660559 C6.89281374,10.0383999 4.5786645,10.5174643 3.16973682,10.3297522 C1.76080912,10.1420401 0.851239033,8.84110125 0.372174627,7.49885121 C-0.853389525,4.06640185 1.20057193,3.13508906 2.87113691,3.21046379 C4.54242664,3.2880128 3.84376087,1.57323763 6.18617562,0.292591945 C8.52859038,-0.988053752 9.16057852,2.30524224 8.90039074,3.05319151 C8.6394782,3.80114078 8.45973845,4.51575122 10.2274209,6.38997294 C11.9951033,8.26491939 9.71066911,11.4951615 8.30174143,10.7660559 Z M9.46352697,6.43853165 C7.91617068,4.87088217 7.89225369,4.20483046 8.15751477,3.5003666 C8.38581324,2.89012118 8.258256,0.14039296 6.25792656,1.20216203 C4.25759713,2.26465585 4.85914548,3.97870626 3.4415207,3.93522084 C2.02317118,3.8917354 0.0800975449,4.67447302 1.08533556,7.44521919 C1.47815388,8.5280062 2.39859532,9.39409087 3.59299493,9.5303452 C4.78739453,9.66732427 6.73336719,9.32958749 7.92196873,9.90431983 C9.11057029,10.4797769 10.9456551,7.94022824 9.46352697,6.43853165 Z M6.90151082,8.41421935 C6.16805669,8.13953643 6.00571112,7.21257217 6.22386299,6.44867825 C6.44273961,5.68333482 5.77451362,4.62663905 5.4643176,4.03306303 C5.15484634,3.43731274 5.87815388,2.09868649 6.64639634,1.89358025 C7.89370321,1.560192 7.26533886,3.52210931 7.31752136,4.83174529 C7.37115338,6.14138126 9.23957704,6.99442031 9.22000859,7.7960016 C9.20044016,8.59758288 7.63424018,8.68962703 6.90151082,8.41421935 Z M5.0106197,7.35824834 C4.36703544,7.94167776 3.54661047,8.24824998 2.71676366,7.96921853 C1.88836637,7.68946231 1.3361015,6.32909334 1.97968575,5.75436101 C3.291496,4.58170411 3.42919983,5.80944254 4.49894122,5.28834223 C5.56795787,4.76796667 5.65347919,6.77481892 5.0106197,7.35824834 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/重载车辆</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/重载车辆" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M7.3734792,12.4495161 C8.09877289,12.4495161 8.6867396,13.0477084 8.6867396,13.7856158 C8.6867396,14.5235233 8.09877289,15.1217156 7.3734792,15.1217156 C6.64818551,15.1217156 6.0602188,14.5235233 6.0602188,13.7856158 C6.0602188,13.0477084 6.64818551,12.4495161 7.3734792,12.4495161 Z M13.0642743,12.4495161 C13.789568,12.4495161 14.3775347,13.0477084 14.3775347,13.7856158 C14.3775347,14.5235233 13.789568,15.1217156 13.0642743,15.1217156 C12.3389806,15.1217156 11.7510139,14.5235233 11.7510139,13.7856158 C11.7510139,13.0477084 12.3389806,12.4495161 13.0642743,12.4495161 Z M8.6867396,4.87828445 C9.64979723,4.87828445 10.4377535,5.67994427 10.4377535,6.65975073 L10.4377535,13.7856158 L9.12449307,13.7856158 C9.12449307,12.8017454 8.34053133,12.0041496 7.3734792,12.0041496 C6.42500424,12.0041496 5.65276609,12.7714048 5.62342292,13.7291378 C4.86991241,13.5304208 4.30920494,12.8306664 4.30920494,12.0041496 L4.30920494,6.65975073 C4.30920494,5.67994427 5.09716118,4.87828445 6.0602188,4.87828445 L8.6867396,4.87828445 Z M13.5841065,6.65996819 C13.9945004,6.66323015 14.4048943,6.71542155 14.8152881,7.55048387 L15.6907951,9.77731672 L15.6907951,12.0041496 C15.6907951,12.6662009 15.3309891,13.2468336 14.800555,13.5538582 C14.6888868,12.6794923 13.9541313,12.0041496 13.0642743,12.0041496 C12.0972221,12.0041496 11.3132604,12.8017454 11.3132604,13.7856158 L10.8755069,13.7856158 L10.8755069,6.65975073 L13.5841065,6.65996819 Z M7.34314653,10 C7.0496786,10 6.81177584,10.2379028 6.81177584,10.5313707 C6.81177584,10.8248386 7.0496786,11.0627414 7.34314653,11.0627414 C7.63661446,11.0627414 7.87451723,10.8248386 7.87451723,10.5313707 C7.87451723,10.2379028 7.63661446,10 7.34314653,10 Z M7.34314653,5.74903446 C7.0496786,5.74903446 6.81177584,5.98693722 6.81177584,6.28040515 L6.81177584,8.40588792 C6.81177584,8.69935585 7.0496786,8.93725861 7.34314653,8.93725861 C7.63661446,8.93725861 7.87451723,8.69935585 7.87451723,8.40588792 L7.87451723,6.28040515 C7.87451723,5.98693722 7.63661446,5.74903446 7.34314653,5.74903446 Z" id="形状结合" fill="#3B414A"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/ct_yinhuan</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/ct_yinhuan" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.001,1 C14.9715627,1 19.001,5.02943725 19.001,10 C18.9954889,14.9682782 14.9692782,18.9944889 10.001,19 C5.03043725,19 1.001,14.9705627 1.001,10 C1.001,5.02943725 5.03043725,1 10.001,1 Z M10.5144958,5.08615771 C10.0409155,4.80200955 9.42665523,4.95557461 9.14250707,5.42915488 L4.90869745,12.4855042 C4.81544821,12.6409196 4.76619038,12.8187561 4.76619038,13 C4.76619038,13.5522847 5.21390563,14 5.76619038,14 L14.2338096,14 C14.4150536,14 14.59289,13.9507422 14.7483054,13.8574929 C15.2218856,13.5733448 15.3754507,12.9590845 15.0913025,12.4855042 L10.8574929,5.42915488 C10.7730432,5.28840527 10.6552454,5.17060747 10.5144958,5.08615771 Z M10,11.5 C10.2761424,11.5 10.5,11.7238576 10.5,12 C10.5,12.2761424 10.2761424,12.5 10,12.5 C9.72385763,12.5 9.5,12.2761424 9.5,12 C9.5,11.7238576 9.72385763,11.5 10,11.5 Z M10,7.5 C10.2761424,7.5 10.5,7.72385763 10.5,8 L10.5,10 C10.5,10.2761424 10.2761424,10.5 10,10.5 C9.72385763,10.5 9.5,10.2761424 9.5,10 L9.5,8 C9.5,7.72385763 9.72385763,7.5 10,7.5 Z" id="形状结合" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><defs><style>.a{fill:currentColor;}.b{fill:none;}</style></defs><g transform="translate(0 2)"><rect class="a" width="30" height="3" rx="1.5"/><rect class="a" width="30" height="3" rx="1.5" transform="translate(0 22)"/><rect class="a" width="15" height="3" rx="1.5" transform="translate(0 15)"/><rect class="a" width="15" height="3" rx="1.5" transform="translate(0 7)"/><path class="a" d="M7.738.9A1,1,0,0,1,9.262.9L15.6,8.352A1,1,0,0,1,14.838,10H2.162A1,1,0,0,1,1.4,8.352Z" transform="translate(30 4) rotate(90)"/></g><rect class="b" width="30" height="30"/></svg>

After

Width:  |  Height:  |  Size: 647 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/gaokong</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/gaokong" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-68" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.03194995,17.993939 0.0060609562,13.9680501 0,9 C0.00551112896,4.03172183 4.03172183,0.00551112896 9,0 C13.9682782,0.00551112896 17.9944889,4.03172183 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M9,11.861 L9,11.861 L11.83,14.449 C11.919086,14.5347709 12.0320308,14.5915919 12.154,14.612 C12.1856627,14.6252796 12.2196653,14.6320007 12.254,14.6320007 C12.3388649,14.6304939 12.4194271,14.5943674 12.477,14.532 C12.5331482,14.4642094 12.5620263,14.3779317 12.558,14.29 L12.558,14.127 L11.748,9.759 L14.741,9.759 C15.014,9.759 15.146,9.653 15.146,9.435 L15.146,9.274 C15.121956,9.0736202 14.9417705,8.92947179 14.741,8.95 L11.667,8.95 L11.267,7.009 L13.128,7.009 C13.2355107,7.013888 13.3401171,6.97331719 13.4162171,6.89721713 C13.4923172,6.82111707 13.532888,6.71651068 13.528,6.609 L13.528,6.527 C13.5332016,6.41940296 13.4927318,6.31461106 13.4165604,6.23843961 C13.3403889,6.16226816 13.235597,6.1217984 13.128,6.127 L11.105,6.127 L10.62,3.7 C10.607247,3.58881994 10.5422428,3.49038493 10.445,3.435 L10.431,3.424 C10.411,3.407 10.393,3.392 10.377,3.377 L7.869,3.377 L7.789,3.458 L7.708,3.538 L7.708,3.62 L7.223,6.047 L5.123,6.047 C5.014663,6.04231387 4.90939501,6.08365176 4.83319529,6.16080399 C4.75699556,6.23795621 4.71696848,6.34372957 4.723,6.452 L4.723,6.532 C4.71696848,6.64027043 4.75699556,6.74604379 4.83319529,6.82319601 C4.90939501,6.90034824 5.014663,6.94168613 5.123,6.937 L6.983,6.937 L6.583,8.878 L3.266,8.878 C3.15848932,8.873112 3.05388293,8.91368281 2.97778287,8.98978287 C2.90168281,9.06588293 2.861112,9.17048932 2.866,9.278 L2.866,9.36 C2.861112,9.46751068 2.90168281,9.57211707 2.97778287,9.64821713 C3.05388293,9.72431719 3.15848932,9.764888 3.266,9.76 L6.421,9.76 L5.451,14.128 L5.451,14.291 C5.451,14.45 5.451,14.615 5.693,14.615 L5.854,14.615 C5.97960724,14.6126148 6.09748075,14.5538617 6.175,14.455 L9.009,11.864 L9,11.861 Z M11.507,12.993 L11.507,12.993 L9.73,11.378 L10.944,10.246 L11.51,12.993 L11.507,12.993 Z M6.573,12.993 L6.573,12.993 L7.139,10.246 L8.353,11.378 L6.576,12.993 L6.573,12.993 Z M9.08,10.728 L9.08,10.728 L8.191,9.92 L9.971,9.92 L9.082,10.728 L9.08,10.728 Z M10.699,8.948 L7.463,8.948 L7.863,7.007 L10.29,7.007 L10.69,8.947 L10.699,8.948 Z M10.213,6.036 L8.03,6.036 L8.43,4.175 L9.805,4.175 L10.205,6.035 L10.213,6.036 Z" id="减去_68"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/diaozhuang</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/diaozhuang" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-65" transform="translate(2.000000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.03172183,17.9944889 0.00551112896,13.9682782 0,9 C0.00551112896,4.03172183 4.03172183,0.00551112896 9,0 C13.9682782,0.00551112896 17.9944889,4.03172183 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M7.969,12.616 L10.369,12.616 C10.5366635,13.0468584 10.9477574,13.3339528 11.41,13.343 C11.8752107,13.3424873 12.2909335,13.0524388 12.452,12.616 L14.102,12.616 C14.3188198,12.6154504 14.4944504,12.4398198 14.495,12.223 L14.495,8.883 C14.492818,8.75998307 14.4351043,8.64455576 14.338,8.569 L11.823,6.643 C11.7568518,6.58840897 11.6726518,6.56058017 11.587,6.565 L9.642,6.565 C9.42534202,6.5649993 9.24955129,6.74034272 9.249,6.957 L9.249,9.61 L7.422,9.61 L8.64,5.896 L10.04,4.403 L10.04,4.603 C10.0426898,4.80407356 10.1942405,4.97189246 10.394,4.995 L10.414,4.995 C10.4929913,5.00507986 10.5521365,5.07236831 10.552,5.152 C10.552,5.24 10.526,5.292 10.474,5.309 C10.4527752,5.32125087 10.4284796,5.32715122 10.404,5.326 C10.2967298,5.31462688 10.1965473,5.26700495 10.12,5.191 L9.629,5.799 C9.84389813,5.99225434 10.1210513,6.10190906 10.41,6.108 C10.5692021,6.10861629 10.7261235,6.07015854 10.867,5.996 C11.1994942,5.81319322 11.3922265,5.45088786 11.358,5.073 C11.3312079,4.74636236 11.1381165,4.4565363 10.847,4.306 L10.847,3.406 C10.8461037,3.24103373 10.7452378,3.09309709 10.592,3.032 C10.5456607,3.01443518 10.4965557,3.00529149 10.447,3.005 C10.3379765,3.00567624 10.233953,3.05082531 10.159,3.13 L3.99,9.73 C3.92568793,9.8068506 3.89030844,9.90379041 3.89,10.004 L3.89,12.224 C3.89054961,12.4408198 4.06618016,12.6164504 4.283,12.617 L5.894,12.617 C6.0612164,13.0482096 6.47258167,13.3354935 6.935,13.344 C7.39993612,13.3433603 7.81530229,13.0532823 7.976,12.617 L7.969,12.616 Z M11.407,12.538 C11.323301,12.5388144 11.2428073,12.505856 11.1837145,12.446575 C11.1246218,12.3872941 11.0919195,12.3066959 11.093,12.223 C11.0921903,12.1394764 11.1250123,12.059138 11.1840752,12.0000752 C11.243138,11.9410123 11.3234764,11.9081903 11.407,11.909 C11.4906959,11.9079195 11.5712941,11.9406218 11.630575,11.9997145 C11.689856,12.0588073 11.7228144,12.139301 11.722,12.223 C11.7228143,12.3069642 11.6897505,12.3877123 11.6302821,12.4469925 C11.5708136,12.5062727 11.4899612,12.5390805 11.406,12.538 L11.407,12.538 Z M6.92800007,12.538 C6.84430105,12.5388144 6.76380726,12.505856 6.70471454,12.446575 C6.64562181,12.3872941 6.61291947,12.3066959 6.614,12.223 C6.61319034,12.1394764 6.64601233,12.059138 6.70507518,12.0000752 C6.76413803,11.9410123 6.84447644,11.9081903 6.92800007,11.909 C7.01152356,11.9081903 7.09186197,11.9410123 7.15092482,12.0000752 C7.20998767,12.059138 7.24280966,12.1394764 7.242,12.223 C7.24308585,12.3068714 7.21024725,12.3876253 7.15093627,12.4469363 C7.09162529,12.5062472 7.01087136,12.5390859 6.927,12.538 L6.92800007,12.538 Z M10.386,11.811 L7.97,11.811 C7.80455442,11.3900711 7.40122494,11.1107822 6.949,11.104 C6.49649526,11.1106502 6.09280635,11.3899145 5.927,11.811 L4.67,11.811 L4.67,10.376 L9.642,10.376 C9.85865728,10.3754487 10.0340007,10.199658 10.034,9.983 L10.034,7.351 L11.469,7.351 L13.709,9.08 L13.709,11.81 L12.432,11.81 C12.2661936,11.3889145 11.8625047,11.1096502 11.41,11.103 C10.9552912,11.1019191 10.547959,11.3839797 10.389,11.81 L10.386,11.811 Z M11.231,8.004 L11.231,8.004 L10.753,8.629 L12.641,10.074 L13.119,9.45 L11.23,8 L11.231,8.004 Z M6.594,9.61 L5.179,9.61 L7.36,7.252 L6.594,9.609 L6.594,9.61 Z" id="减去_65"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/访客车辆</title>
<defs>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-4">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="智慧化工园区/封闭园区-首页" transform="translate(-165.000000, -334.000000)" fill-rule="nonzero">
<g id="组件/指标/图标+指标+提示文字" transform="translate(165.000000, 333.000000)">
<g id="编组" transform="translate(0.000000, 1.000000)">
<path d="M26.7846097,13.1547005 L26.7846097,20.8452995 C26.7846097,21.5598306 26.4034118,22.2200847 25.7846097,22.5773503 L17.3923048,27.4226497 C16.7735027,27.7799153 16.011107,27.7799153 15.3923048,27.4226497 L7,22.5773503 C6.38119785,22.2200847 6,21.5598306 6,20.8452995 L6,13.1547005" id="路径" stroke="url(#linearGradient-1)"></path>
<polyline id="路径-2" stroke="url(#linearGradient-2)" points="14.2452902 19.1728187 16.3923048 23.1728187 18.5393195 19.1728187"></polyline>
<circle id="椭圆形" stroke="url(#linearGradient-3)" cx="16.1004998" cy="9.79680461" r="4.79680461"></circle>
<path d="M9.21189899,20 C10.6064298,16.3957395 12.90263,14.5936092 16.1004998,14.5936092 C19.2983695,14.5936092 21.6691371,16.3957395 23.2128024,20" id="路径-7" stroke="url(#linearGradient-4)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/普通车辆</title>
<defs>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="智慧化工园区/封闭园区-首页" transform="translate(-50.000000, -334.000000)">
<g id="组件/指标/图标+指标+提示文字" transform="translate(50.000000, 333.000000)">
<g id="编组" transform="translate(0.000000, 1.000000)">
<path d="M26.7846097,13.1547005 L26.7846097,20.8452995 C26.7846097,21.5598306 26.4034118,22.2200847 25.7846097,22.5773503 L17.3923048,27.4226497 C16.7735027,27.7799153 16.011107,27.7799153 15.3923048,27.4226497 L7,22.5773503 C6.38119785,22.2200847 6,21.5598306 6,20.8452995 L6,13.1547005" id="路径" stroke="url(#linearGradient-1)" stroke-linecap="round" stroke-linejoin="round" fill-rule="nonzero"></path>
<path d="M9.90034217,19.0136184 L8.56990481,13.8141154 C8.53940457,13.694917 8.55392553,13.5686576 8.6106893,13.4594954 L10.2163868,10.3715819 L10.2163868,10.3715819 L11.2463406,6.70753811 C11.488842,5.84484317 12.2755886,5.24875728 13.1717189,5.24875728 L20.0147356,5.24875728 C20.9482197,5.24875728 21.7575543,5.89451367 21.9648154,6.80469787 L22.7770429,10.3715819 L22.7770429,10.3715819 L24.4324946,13.4609689 C24.4904892,13.5691978 24.5066315,13.6949829 24.4778445,13.8143486 L23.2345161,18.9698438 C23.0535808,19.7200972 22.3822697,20.2487573 21.6105068,20.2487573 C20.8839325,20.2487573 20.2949276,19.6597524 20.2949276,18.933178 L20.2949276,18.8762963 C20.2949276,18.118307 19.6804558,17.5038352 18.9224665,17.5038352 L14.1387124,17.5038352 C13.3807231,17.5038352 12.7662514,18.118307 12.7662514,18.8762963 L12.7662514,18.973825 C12.7662514,19.6779506 12.1954448,20.2487573 11.4913191,20.2487573 C10.7411314,20.2487573 10.0863072,19.740391 9.90034217,19.0136184 Z" id="路径-3" stroke="url(#linearGradient-2)" fill-rule="nonzero"></path>
<line x1="10.2641418" y1="10.3923245" x2="22.8923048" y2="10.5" id="路径-4" stroke="url(#linearGradient-3)" fill-rule="nonzero"></line>
<rect id="矩形" fill="#DBF5FF" x="11.5344815" y="12.6780388" width="2.85714286" height="1.14285714" rx="0.571428571"></rect>
<rect id="矩形" fill="#DBF5FF" x="18.5344815" y="12.6780388" width="2.85714286" height="1.14285714" rx="0.571428571"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/危化品车辆</title>
<defs>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0.751031195%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#FFFFFF" offset="0%"></stop>
<stop stop-color="#C4EEFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="智慧化工园区/封闭园区-首页" transform="translate(-280.000000, -334.000000)" fill-rule="nonzero">
<g id="组件/指标/图标+指标+提示文字" transform="translate(280.000000, 333.000000)">
<g id="编组" transform="translate(0.000000, 1.000000)">
<path d="M18.6886842,21.5 C18.1581579,21.5 17.6828947,21.2589041 17.3623684,20.8863014 C17.0418421,21.2589041 16.5665789,21.5 16.0360526,21.5 C15.5055263,21.5 15.0302632,21.2589041 14.7097368,20.8863014 C14.3892105,21.2589041 13.9139473,21.5 13.3834211,21.5 C12.4218421,21.5 11.6371053,20.7219178 11.6371053,19.7684931 L11.6371053,19.0452055 C8.92921052,18.2780822 7.625,16.5684931 7.625,13.8287671 C7.625,9.2369863 11.3939474,5.5 16.025,5.5 C20.6560526,5.5 24.425,9.2369863 24.425,13.8287671 C24.425,16.5684931 23.1207895,18.2780822 20.435,19.0342466 L20.435,19.7575342 C20.435,20.7219178 19.6502632,21.5 18.6886842,21.5 Z" id="路径" stroke="url(#linearGradient-1)"></path>
<path d="M12.1681419,11.1818182 C10.6769139,11.1818182 9.45681818,12.3883573 9.45681818,13.8931419 C9.45681818,15.3979266 10.6633573,16.5909091 12.1681419,16.5909091 C13.6729266,16.5909091 14.8659091,15.38437 14.8659091,13.8931419 C14.8659091,12.4019139 13.65937,11.1818182 12.1681419,11.1818182 Z" id="路径" stroke="url(#linearGradient-2)"></path>
<path d="M19.8886364,11.1818182 C18.3936615,11.1818182 17.1840909,12.3883573 17.1840909,13.8931419 C17.1840909,15.3979266 18.3936615,16.5909091 19.8886364,16.5909091 C21.3836112,16.5909091 22.5931818,15.38437 22.5931818,13.8931419 C22.5931818,12.4019139 21.3836112,11.1818182 19.8886364,11.1818182 Z" id="路径" stroke="url(#linearGradient-2)"></path>
<path d="M26.3923048,13.1547005 L26.3923048,20.8452995 C26.3923048,21.5598306 26.011107,22.2200847 25.3923048,22.5773503 L17,27.4226497 C16.3811978,27.7799153 15.6188022,27.7799153 15,27.4226497 L6.60769515,22.5773503 C5.988893,22.2200847 5.60769515,21.5598306 5.60769515,20.8452995 L5.60769515,13.1547005" id="路径" stroke="url(#linearGradient-3)" stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/企业基本信息</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/32/企业基本信息" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M15.701,6.001 C15.2413609,5.99172687 14.785498,6.08570161 14.367,6.276 L6.592,10.164 C5.858,10.532 5.858,11.13 6.592,11.498 L14.367,15.386 C15.2192369,15.7526559 16.1847631,15.7526559 17.037,15.386 L24.814,11.501 C25.548,11.133 25.548,10.535 24.814,10.167 L17.034,6.279 C16.6160466,6.08781613 16.1605317,5.99281751 15.701,6.001 L15.701,6.001 Z" id="路径_1259-path" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
<path d="M15.701,20.412 C15.1251303,20.4209411 14.5547617,20.2988658 14.033,20.055 L6.414,16.247 C6.04507379,16.0622608 5.89576075,15.6134262 6.0805,15.2445 C6.26523925,14.8755738 6.71407379,14.7262608 7.083,14.911 L14.7,18.721 C15.3410973,18.9821226 16.0589027,18.9821226 16.7,18.721 L24.317,14.913 C24.5563139,14.7851624 24.8461661,14.7973347 25.0739193,14.9447866 C25.3016725,15.0922386 25.4314126,15.3517188 25.4127223,15.6223926 C25.394032,15.8930663 25.2298584,16.1322514 24.984,16.247 L17.365,20.055 C16.8445688,20.2986056 16.275558,20.420683 15.701,20.412 Z" id="路径_1259-path" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
<path d="M15.701,25.038 C15.1251303,25.0469411 14.5547617,24.9248658 14.033,24.681 L6.416,20.871 C6.0595067,20.680567 5.9195021,20.2408752 6.10025176,19.8793759 C6.28100141,19.5178766 6.71675765,19.3660651 7.083,19.537 L14.7,23.347 C15.3410973,23.6081226 16.0589027,23.6081226 16.7,23.347 L24.317,19.537 C24.6832423,19.3660651 25.1189986,19.5178766 25.2997482,19.8793759 C25.4804979,20.2408752 25.3404933,20.680567 24.984,20.871 L17.365,24.681 C16.8446274,24.9248836 16.2756285,25.0473004 15.701,25.039 L15.701,25.038 Z" id="路径_1259-path" fill="url(#linearGradient-3)" fill-rule="nonzero"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a{fill:#fff;}</style></defs><path class="a" d="M69.143,64H66.286A2.286,2.286,0,0,0,64,66.286v2.857a2.286,2.286,0,0,0,2.286,2.286h4.571a.571.571,0,0,0,.571-.571V66.286A2.286,2.286,0,0,0,69.143,64Zm-2.857,8.571A2.286,2.286,0,0,0,64,74.857v2.857A2.286,2.286,0,0,0,66.286,80h2.857a2.286,2.286,0,0,0,2.286-2.286V73.143a.571.571,0,0,0-.571-.571ZM77.714,64H74.857a2.286,2.286,0,0,0-2.286,2.286v4.571a.571.571,0,0,0,.571.571h4.571A2.286,2.286,0,0,0,80,69.143V66.286A2.286,2.286,0,0,0,77.714,64Zm0,8.571H73.143a.571.571,0,0,0-.571.571v4.571A2.286,2.286,0,0,0,74.857,80h2.857A2.286,2.286,0,0,0,80,77.714V74.857A2.286,2.286,0,0,0,77.714,72.571Z" transform="translate(-64 -64)"/></svg>

After

Width:  |  Height:  |  Size: 770 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/dongtu</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/dongtu" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="dongtu" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.02943725,18 0,13.9705627 0,9 C0,4.02943725 4.02943725,0 9,0 C13.9705627,0 18,4.02943725 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M7.577,11.648 L7.577,11.648 L9.777,13.763 C9.79323003,13.7758828 9.81104122,13.7866367 9.83,13.795 C9.91909039,13.8442324 10.0183204,13.8722905 10.12,13.877 C10.1741388,13.8767485 10.2279825,13.8690084 10.28,13.854 C10.4225444,13.7962209 10.5401184,13.6899793 10.612,13.554 C10.6126803,13.5479506 10.6147325,13.5421363 10.618,13.537 C10.6213002,13.5318797 10.6233551,13.5260575 10.624,13.52 L11.619,10.147 L13.483,9.447 C13.5345675,9.55425462 13.6420201,9.62344175 13.761,9.626 C13.7951561,9.62619423 13.8290555,9.62009233 13.861,9.608 L15.52,9.036 C15.6807461,8.98187075 15.7674756,8.80796475 15.714,8.647 L15.565,8.213 C15.5201474,8.086491 15.3991919,8.00303174 15.265,8.006 C15.2342068,8.00604023 15.2035727,8.01041653 15.174,8.019 L13.516,8.59 C13.3589695,8.64833013 13.2741154,8.81847575 13.322,8.979 L8.771,10.717 L6.885,11.426 C6.56936413,10.6116028 5.68459366,10.1724882 4.84510776,10.4135946 C4.00562186,10.6547009 3.48870727,11.4963896 3.65332968,12.3541589 C3.81795209,13.2119283 4.60973582,13.8024526 5.47883532,13.7156487 C6.34793482,13.6288447 7.00728181,12.8933844 6.999,12.02 C7.00079235,11.9703673 6.99676491,11.9206956 6.987,11.872 L7.581,11.644 L7.577,11.648 Z M4.226,7.314 C4.126,7.361 4.063,7.422 4.05099466,7.495 C4.05047274,7.58703696 4.088994,7.67498174 4.157,7.737 C4.257,7.845 6.479,10.337 6.822,10.664 C6.91667596,10.7934545 7.06231254,10.8761032 7.222,10.891 C7.28657829,10.8899064 7.35062606,10.8791194 7.412,10.859 L11.643,9.235 C11.6831394,9.21985644 11.7131241,9.18574887 11.723,9.144 L12.272,7.691 C12.2931692,7.60107178 12.2737929,7.50638387 12.219,7.432 C12.1581785,7.37227266 12.0751371,7.34072417 11.99,7.345 C11.9740186,7.34390782 11.9579814,7.34390782 11.942,7.345 L4.222,7.311 L4.226,7.314 Z M6.026,5.714 C5.93148858,5.71269608 5.84025575,5.74861451 5.772,5.814 L5.097,6.489 C5.02482128,6.54500953 4.99764064,6.64156168 5.03,6.727 C5.08430182,6.84615503 5.20627913,6.91965927 5.337,6.912 L10.951,6.946 C11.0659448,6.95359136 11.1759138,6.8980321 11.238,6.801 C11.2795042,6.72407194 11.2748816,6.63046456 11.226,6.558 L9.557,4.042 C9.49096942,3.95199106 9.3845471,3.90065353 9.273,3.905 C9.17497251,3.9023021 9.07980701,3.93821361 9.008,4.005 L7.156,6.098 C7.08927686,6.17189231 6.99351914,6.2128269 6.894,6.21 C6.81057369,6.21167845 6.72919503,6.18408047 6.664,6.132 L6.252,5.789 C6.18717452,5.73798446 6.10645198,5.711431 6.024,5.714 L6.026,5.714 Z M10.108,13.4360086 C10.090989,13.4343978 10.0745701,13.4289249 10.06,13.42 L8.081,11.499 L10.871,10.424 L11.077,10.344 L10.185,13.374 L10.173,13.387 C10.1605027,13.4043705 10.1449085,13.4192867 10.127,13.431 C10.120539,13.4344252 10.1133113,13.4361461 10.106,13.4360086 L10.108,13.4360086 Z M5.279,13.1230005 C4.67148678,13.1230005 4.179,12.6305132 4.179,12.023 C4.179,11.4154868 4.67148678,10.923 5.279,10.923 C5.88651322,10.923 6.379,11.4154868 6.379,12.023 C6.379,12.3149115 6.26297034,12.5948524 6.05646399,12.8011712 C5.84995764,13.00749 5.56991136,13.1232654 5.278,13.1230005 L5.279,13.1230005 Z M5.279,11.499 C4.98862904,11.499552 4.75363257,11.7352941 4.75399999,12.0256654 C4.75436827,12.3160367 4.98996127,12.5511826 5.2803327,12.5509991 C5.57070413,12.5508153 5.806,12.3153715 5.806,12.025 C5.80573546,11.8853223 5.74992618,11.7514853 5.65087795,11.6529999 C5.55182973,11.5545144 5.41767696,11.4994687 5.278,11.5 L5.279,11.499 Z" id="减去_51"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="26" height="26" viewBox="0 0 26 26"><defs><style>.a{fill:none;}.b{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><g transform="translate(-1775.4 -389.4)"><rect class="a" width="26" height="26" transform="translate(1775.4 389.4)"/><g transform="translate(1777.199 389.837)"><g transform="translate(0)"><path class="b" d="M139.274,73.783a.674.674,0,0,0-.674.674v6.361a2.982,2.982,0,0,1-1.5,2.583l-6.746,3.856a2.987,2.987,0,0,1-2.953,0L120.656,83.4a2.982,2.982,0,0,1-1.5-2.583V74.595a.674.674,0,0,0-1.348,0v6.223a4.332,4.332,0,0,0,2.178,3.753l6.746,3.856a4.341,4.341,0,0,0,4.291,0l6.746-3.856a4.332,4.332,0,0,0,2.178-3.753V74.457A.674.674,0,0,0,139.274,73.783Zm-19.049-2.3,2.23.4a.762.762,0,0,0,.907-.542.7.7,0,0,0-.6-.816l-2.23-.4a.777.777,0,0,0-.907.542.68.68,0,0,0-.006.24A.736.736,0,0,0,120.225,71.482Zm2.629-4.785,1.42,1.6a.833.833,0,0,0,1.084.108.647.647,0,0,0,.12-.975l-1.42-1.6a.832.832,0,0,0-1.084-.108.66.66,0,0,0-.279.646A.621.621,0,0,0,122.854,66.7Zm5.383.017a.779.779,0,0,0,1.528-.091l-.006-2.047a.725.725,0,0,0-.753-.707.737.737,0,0,0-.786.679l.006,2.047A.423.423,0,0,0,128.237,66.715Zm4.306,1.842a.831.831,0,0,0,1.084-.063l1.5-1.533a.65.65,0,0,0-.069-.981.831.831,0,0,0-1.083.063l-1.5,1.533a.648.648,0,0,0-.182.564A.662.662,0,0,0,132.542,68.557Zm1.831,3.017a.765.765,0,0,0,.878.582l2.246-.309a.7.7,0,0,0,.644-.786.765.765,0,0,0-.878-.582l-2.246.309A.7.7,0,0,0,134.373,71.573Z" transform="translate(-117.81 -63.869)"/><path class="b" d="M274.346,244.79h-.06a4.585,4.585,0,0,0-3.157,1.234,4.175,4.175,0,0,0-1.341,3.063v3.448h9.058v-3.448A4.406,4.406,0,0,0,274.346,244.79Zm3.173,6.361h-6.405v-2.064a3.055,3.055,0,0,1,3.173-2.913h.06a3.055,3.055,0,0,1,3.173,2.913Z" transform="translate(-263.242 -239.839)"/></g><path class="b" d="M-1658.974-1460.531a.492.492,0,0,1-.21-.678.528.528,0,0,1,.7-.2l.02.011a4.679,4.679,0,0,0,2.53.651,3.876,3.876,0,0,0,1.281-.322,4.712,4.712,0,0,1,1.839-.4,3.152,3.152,0,0,1,1.44.286,3.432,3.432,0,0,0,1.091.274,3.732,3.732,0,0,0,1.813-.257,5.484,5.484,0,0,1,2.082-.372,4.327,4.327,0,0,1,2.037.483,2.872,2.872,0,0,0,.732.265.581.581,0,0,1,.449.568.43.43,0,0,1-.449.449,3.617,3.617,0,0,1-1.188-.383,3.294,3.294,0,0,0-1.595-.381,4.663,4.663,0,0,0-1.721.316,4.751,4.751,0,0,1-2.264.311,4.473,4.473,0,0,1-1.386-.347,2.069,2.069,0,0,0-1.035-.209,3.656,3.656,0,0,0-1.459.32,4.9,4.9,0,0,1-1.6.391c-.1.008-.193.011-.289.011A5.862,5.862,0,0,1-1658.974-1460.531Zm2.847-1.779a6.013,6.013,0,0,1-3.02-.893.49.49,0,0,1-.177-.686.528.528,0,0,1,.711-.171,4.694,4.694,0,0,0,2.971.718,3,3,0,0,0,.931-.283,4,4,0,0,1,1.3-.379,4.073,4.073,0,0,1,2.162.324,4.314,4.314,0,0,0,1.665.352,2.912,2.912,0,0,0,1.343-.283,4.434,4.434,0,0,1,1.835-.413,4.856,4.856,0,0,1,2,.339,4.656,4.656,0,0,0,.788.232.611.611,0,0,1,.449.586.394.394,0,0,1-.449.422,5.321,5.321,0,0,1-1.15-.3,3.774,3.774,0,0,0-1.612-.277,3.407,3.407,0,0,0-1.448.328,4.244,4.244,0,0,1-1.771.369,5.326,5.326,0,0,1-2.033-.421,3.08,3.08,0,0,0-1.659-.263,2.969,2.969,0,0,0-.987.293,3.966,3.966,0,0,1-1.229.369,4.9,4.9,0,0,1-.6.038Z" transform="translate(1662.352 1478.369)"/></g></g></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>切片</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="封闭园区" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="图标切图" transform="translate(-93.000000, -113.000000)">
<g id="icon/20px/层级图标/视频监控" transform="translate(93.000000, 113.000000)">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M12.6268996,8.67787638 C13.9682164,8.67787638 15.0537507,9.7426092 15.0537507,11.0561906 C15.0537507,11.9319115 14.2448004,13.1245937 12.6268996,14.6342373 C11.0089988,13.1245937 10.2000484,11.9319115 10.2000484,11.0561906 C10.2000484,9.74260918 11.2871236,8.67787638 12.6268996,8.67787638 Z M9.06765185,10.056344 C9.30505432,10.056344 9.53776861,10.0764165 9.76419016,10.1149569 C9.68867773,10.3710835 9.64871908,10.640925 9.64871908,10.9199136 C9.64871908,11.7650806 10.262718,12.8508234 11.4907158,14.177142 L4.94624925,14.1777466 C4.94624925,11.9015588 6.79146405,10.056344 9.06765185,10.056344 Z M12.6194876,9.85950161 C11.9960842,9.85950161 11.4907158,10.36487 11.4907158,10.9882734 C11.4907158,11.6116769 11.9960842,12.1170453 12.6194876,12.1170453 C13.2428911,12.1170453 13.7482595,11.6116769 13.7482595,10.9882734 C13.7482595,10.36487 13.2428911,9.85950161 12.6194876,9.85950161 Z M8.99256201,5.36576265 C10.2594846,5.36576265 11.2859518,6.37168836 11.2859518,7.61263213 C11.2859518,7.88513567 11.2364249,8.1463063 11.1457136,8.38798079 C10.6241259,8.68127688 10.2022352,9.12468988 9.94083167,9.65795549 C9.65283161,9.78754174 9.3312542,9.85950161 8.99256201,9.85950161 C7.72624354,9.85950161 6.6997764,8.85357591 6.6997764,7.61263213 C6.6997764,6.37168834 7.72624352,5.36576265 8.99256201,5.36576265 Z" id="形状" fill="#3B414A"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/规划线</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/规划线" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="guihua" transform="translate(5.121814, 5.127224)" fill="#3B414A" fill-rule="nonzero">
<path d="M9.64020481,7.30979538 L7.73023009,5.39982066 C7.61309775,5.2833832 7.42392464,5.2833832 7.3067923,5.39982066 L5.39681758,7.30979538 C5.28038011,7.42692772 5.28038011,7.61610084 5.39681758,7.73323317 L7.3067923,9.65822342 C7.42392464,9.77466089 7.61309775,9.77466089 7.73023009,9.65822342 L9.64020481,7.7482487 C9.70085261,7.69146848 9.73526896,7.61210122 9.73526896,7.52902204 C9.73526896,7.44594286 9.70085261,7.36657561 9.64020481,7.30979538 Z M6.66713095,7.30979538 L6.4539105,7.52301584 C6.33677816,7.6394533 6.14760505,7.6394533 6.03047271,7.52301584 C5.91403524,7.4058835 5.91403524,7.21671038 6.03047271,7.09957804 L6.24369316,6.88635759 C6.3608255,6.76992013 6.54999861,6.76992013 6.66713095,6.88635759 C6.78440326,7.0026624 6.78574493,7.19183892 6.67013405,7.30979538 L6.66713095,7.30979538 Z M7.94044743,7.73323317 L7.30378918,8.36989142 C7.18665684,8.48632888 6.99748373,8.48632888 6.88035139,8.36989142 C6.76391393,8.25275908 6.76391393,8.06358597 6.88035139,7.94645363 L7.51700964,7.30979538 C7.59040249,7.22409396 7.70564017,7.18676365 7.81534375,7.21315248 C7.92504733,7.23954131 8.0107015,7.32519548 8.03709033,7.43489906 C8.06347916,7.54460264 8.02614885,7.65984032 7.94044743,7.73323317 Z M2.42074061,4.33672153 L4.33071533,2.42674681 C4.44715279,2.30961447 4.44715279,2.12044136 4.33071533,2.00330902 L2.42074061,0.0873280991 C2.30360827,-0.0291093664 2.11443516,-0.0291093664 1.99730282,0.0873280991 L0.0873280991,2.00030592 C-0.0291093664,2.11743826 -0.0291093664,2.30661137 0.0873280991,2.42374371 L1.99730282,4.33371843 C2.11360763,4.45099074 2.30278415,4.45233241 2.42074061,4.33672153 Z M2.63396106,3.7000633 C2.51480979,3.80210187 2.33719596,3.79524144 2.22627055,3.68431602 C2.11534513,3.57339061 2.1084847,3.39577678 2.21052327,3.27662551 C2.32765561,3.16018804 2.51682872,3.16018804 2.63396106,3.27662551 C2.75039853,3.39375784 2.75039853,3.58293096 2.63396106,3.7000633 L2.63396106,3.7000633 Z M1.36064459,2.8501846 C1.24420712,2.73305226 1.24420712,2.54387915 1.36064459,2.42674681 L1.99730282,1.79008858 C2.11443516,1.67365111 2.30360827,1.67365111 2.42074061,1.79008858 C2.53717807,1.90722092 2.53717807,2.09639403 2.42074061,2.21352637 L1.78408238,2.8501846 C1.66695004,2.96662207 1.47777693,2.96662207 1.36064459,2.8501846 L1.36064459,2.8501846 Z M8.15667098,3.27362239 C8.27380332,3.39005986 8.46297643,3.39005986 8.58010877,3.27362239 L9.2107608,2.64297036 C9.27068301,2.58585015 9.30436804,2.50652734 9.30386278,2.42374371 C9.30352532,2.3449603 9.27224762,2.26946239 9.21676702,2.21352637 L7.51700964,0.513768991 C7.46040614,0.455042711 7.38235036,0.421866189 7.30078608,0.421866189 C7.21922181,0.421866189 7.14116602,0.455042711 7.08456253,0.513768991 L6.4539105,1.14442102 C6.33747303,1.26155336 6.33747303,1.45072647 6.4539105,1.56785881 L8.15667098,3.27362239 Z M7.73023009,3.7000633 L6.03047271,2.00030592 C5.91334037,1.88386845 5.72416726,1.88386845 5.60703492,2.00030592 L0.423675858,7.18366498 C0.360321429,7.24678538 0.328395147,7.33485788 0.336585811,7.42391337 L0.486741061,8.9735155 C0.500470086,9.11671533 0.613820674,9.23006592 0.757020502,9.24379495 L2.30662263,9.3939502 C2.39567813,9.40214086 2.48375062,9.37021457 2.54687102,9.30686015 L7.73023009,4.12350109 C7.84666755,4.00636875 7.84666755,3.81719564 7.73023009,3.7000633 L7.73023009,3.7000633 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/企业能源档案</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/32/企业能源档案" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M15.51,21.856 L5.91,21.856 C4.86202635,21.8527062 4.01329381,21.0039737 4.01,19.956 L4.01,6.908 C4.01329381,5.86002635 4.86202635,5.01129381 5.91,5.008 L9.17,5.008 C10.2179737,5.01129381 11.0667062,5.86002635 11.07,6.908 L11.07,7.179 L21.133,7.179 C22.1809737,7.18229381 23.0297062,8.03102635 23.033,9.079 L23.033,10.979 L23.027,10.979 C22.9217129,10.978883 22.8182488,11.0064734 22.727,11.059 L15.806,15.059 C15.6202074,15.1681618 15.5060757,15.3675117 15.506,15.583 L15.506,21.853 L15.51,21.856 Z" id="减去_115" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
<path d="M23.036,13.982 L18.187,16.782 L18.187,22.382 L23.035,25.182 L27.887,22.382 L27.887,16.782 L23.036,13.982 Z M23.268,13.044 L28.58,16.112 C28.7229957,16.1945569 28.811346,16.346885 28.812,16.512 L28.812,22.652 C28.811346,22.817115 28.7229957,22.9694431 28.58,23.052 L23.268,26.122 C23.1244379,26.2048856 22.9475621,26.2048856 22.804,26.122 L17.487,23.054 C17.3440043,22.9714431 17.255654,22.819115 17.255,22.654 L17.255,16.515 C17.255654,16.349885 17.3440043,16.1975569 17.487,16.115 L22.804,13.045 C22.9475621,12.9621144 23.1244379,12.9621144 23.268,13.045 L23.268,13.044 Z M21.696,19.996 C21.538687,19.9958931 21.3921423,19.9160862 21.3067069,19.7839946 C21.2212716,19.651903 21.208583,19.4855195 21.273,19.342 L22.613,16.351 C22.7179341,16.1171074 22.9926074,16.0125659 23.2265,16.1175 C23.4603926,16.2224341 23.5649341,16.4971074 23.46,16.731 L22.412,19.068 L24.376,19.068 C24.5324837,19.0678396 24.6785072,19.1465648 24.7643762,19.277384 C24.8502453,19.4082032 24.8643912,19.5734922 24.802,19.717 L23.462,22.811 C23.3995205,22.9682319 23.2564116,23.0789921 23.0885358,23.1000457 C22.9206599,23.1210992 22.754632,23.0491083 22.6552607,22.9121743 C22.5558894,22.7752404 22.538929,22.5950729 22.611,22.442 L23.67,19.996 L21.696,19.996 Z" id="路径_628" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18.001" height="18.002" viewBox="0 0 18.001 18.002"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M356.056,1668.018a8.971,8.971,0,1,1,3.5-.707A8.941,8.941,0,0,1,356.056,1668.018ZM353,1654.994a2.158,2.158,0,0,0-2.158,2.158v5.249a2.153,2.153,0,0,0,.633,1.525,2.149,2.149,0,0,0,1.526.634h6.045a2.16,2.16,0,0,0,2.159-2.158v-5.249a2.149,2.149,0,0,0-.634-1.526,2.143,2.143,0,0,0-1.526-.633H355.7v-.8h-2.152v.8Zm5.278,8.8h-4.51a2.154,2.154,0,0,1-1.526-.633,2.149,2.149,0,0,1-.634-1.526v-1.574a2.474,2.474,0,0,1,.232-.112,2.4,2.4,0,0,1,.265-.094,2.283,2.283,0,0,1,.3-.065,2.209,2.209,0,0,1,.324-.023l.082,0,.071,0h.01l.081.007.083.011a1.824,1.824,0,0,1,.392.1,2.068,2.068,0,0,1,.335.166,3.036,3.036,0,0,1,.3.208c.093.073.182.149.273.227.106.091.211.18.323.266a2.812,2.812,0,0,0,.359.234,1.922,1.922,0,0,0,.424.167,2.05,2.05,0,0,0,.518.063,1.946,1.946,0,0,0,.508-.063,1.644,1.644,0,0,0,.4-.166,2.113,2.113,0,0,0,.329-.232c.094-.078.182-.161.268-.241l.024-.022c.073-.069.159-.151.249-.229a2.655,2.655,0,0,1,.275-.209,1.77,1.77,0,0,1,.321-.167,1.728,1.728,0,0,1,.39-.1l.076-.01h.007l.068-.006.065,0h.009l.077,0h.1l.1.007.115.011.015,0h.013l.1.012a1.978,1.978,0,0,1,.265.051,2.193,2.193,0,0,1,.249.08c.072.027.145.058.23.1.07.035.138.072.2.11v1.49a2.159,2.159,0,0,1-2.158,2.158Zm-2.306-3.334a2.049,2.049,0,0,1-.518-.063,1.888,1.888,0,0,1-.424-.167,2.64,2.64,0,0,1-.359-.234c-.1-.078-.2-.161-.3-.242l-.028-.024c-.085-.073-.176-.15-.273-.227a3.169,3.169,0,0,0-.3-.207,1.919,1.919,0,0,0-.335-.166,1.785,1.785,0,0,0-.392-.1l-.082-.011-.082-.007-.081,0h-.082a2.219,2.219,0,0,0-.324.023,2.288,2.288,0,0,0-.3.065,2.337,2.337,0,0,0-.265.093,2.532,2.532,0,0,0-.232.112v-1.381a2.161,2.161,0,0,1,1.942-2.147v.022H355.7v-.032h2.575a2.16,2.16,0,0,1,2.158,2.158v1.464c-.073-.042-.138-.078-.2-.11s-.15-.069-.23-.1a2.368,2.368,0,0,0-.249-.08,1.946,1.946,0,0,0-.265-.05l-.125-.016-.115-.011-.093-.006h-.013c-.034,0-.068,0-.1,0h-.077l-.075,0-.076.006-.067.009h-.008a1.72,1.72,0,0,0-.39.1,1.811,1.811,0,0,0-.321.167,2.541,2.541,0,0,0-.275.21c-.087.075-.171.153-.249.228-.094.089-.191.18-.292.264a2.194,2.194,0,0,1-.329.232,1.642,1.642,0,0,1-.4.166A1.946,1.946,0,0,1,355.968,1660.459Z" transform="translate(-347.056 -1650.016)"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/实控线</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/实控线" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="kongzhi" transform="translate(3.999297, 3.998828)" fill="#3B414A" fill-rule="nonzero">
<path d="M6.00070315,12 C2.69166764,12 0,9.30833236 0,6.00070315 C0,2.69307395 2.69166764,0 6.00070315,0 C9.30973866,0 12.0014063,2.69166764 12.0014063,6.00070315 C12.0014063,9.30973866 9.30973866,12 6.00070315,12 Z M6.00070315,1.09129263 C3.29356615,1.09129263 1.09129263,3.29356615 1.09129263,6.00070315 C1.09129263,8.70784015 3.29356615,10.9101137 6.00070315,10.9101137 C8.70784015,10.9101137 10.9101137,8.70784015 10.9101137,6.00070315 C10.9101137,3.29356615 8.70784015,1.09129263 6.00070315,1.09129263 Z" id="形状"></path>
<path d="M6.00070315,1.69178484 L7.80077347,3.49185515 L4.20063284,3.49185515 L6.00070315,1.69178484 L6.00070315,1.69178484 Z M6.00070315,10.3096215 L7.80077347,8.50955115 L4.20063284,8.50955115 L6.00070315,10.3096215 Z M1.69178484,6.00070315 L3.49185515,4.20063284 L3.49185515,7.80077347 L1.69178484,6.00070315 L1.69178484,6.00070315 Z M10.3096215,6.00070315 L8.50955115,4.20063284 L8.50955115,7.80077347 L10.3096215,6.00070315 L10.3096215,6.00070315 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/应急设施</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/应急设施" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M10.5,4.28867513 L14.6961524,6.71132487 C15.0055535,6.88995766 15.1961524,7.22008468 15.1961524,7.57735027 L15.1961524,12.4226497 C15.1961524,12.7799153 15.0055535,13.1100423 14.6961524,13.2886751 L10.5,15.7113249 C10.1905989,15.8899577 9.80940108,15.8899577 9.5,15.7113249 L5.30384758,13.2886751 C4.9944465,13.1100423 4.80384758,12.7799153 4.80384758,12.4226497 L4.80384758,7.57735027 C4.80384758,7.22008468 4.9944465,6.88995766 5.30384758,6.71132487 L9.5,4.28867513 C9.80940108,4.11004234 10.1905989,4.11004234 10.5,4.28867513 Z M11,7 L9,7 L9,9 L7,9 L7,11 L8.999,11 L9,13 L11,13 L10.999,11 L13,11 L13,9 L11,9 L11,7 Z" id="形状结合" fill="#3B414A"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/应急物资</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/应急物资" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<g id="wuziguanli" transform="translate(5.000000, 5.000000)" fill="#3B414A" fill-rule="nonzero">
<path d="M2.91024551,4.56413707 L7.3120656,4.56413707 C7.44209926,4.56342355 7.54747683,4.45845411 7.54867743,4.32843309 L7.54867743,0.221412583 C7.53983974,0.0970994929 7.43669971,0.000592233672 7.3120656,8.36968377e-06 L2.91024551,8.36968377e-06 C2.78164804,-0.00105915706 2.67541197,0.100123683 2.67023352,0.228612446 L2.67023352,4.33563296 C2.67546442,4.46408232 2.7816853,4.56520643 2.91024551,4.56413707 Z M3.77848892,1.52848729 C3.78072949,1.39646689 3.88855279,1.29069961 4.02060103,1.29099128 L6.20501025,1.29099128 C6.33659496,1.29099128 6.44365158,1.39691884 6.44502225,1.52848729 L6.44502225,1.94457924 L4.02070104,1.94457924 C3.88899109,1.94575271 3.78094359,1.84056878 3.77858893,1.70888379 L3.77848892,1.52848729 Z M4.42652133,5.21760169 L0.240012003,5.21760169 C0.108675877,5.21650617 0.0012645741,5.3219857 0,5.45331132 L0,9.77102776 C0.00520175366,9.90241351 0.115808038,10.0047799 0.247212366,9.99982333 L4.43382169,9.99982333 C4.56515781,10.000933 4.67256912,9.89545352 4.67383369,9.7641279 L4.67383369,5.45341132 C4.6737791,5.38936993 4.64742131,5.32816191 4.60093005,5.2841146 C4.55396078,5.23963363 4.49118208,5.2157333 4.42652133,5.21771589 L4.42652133,5.21760169 Z M3.55827792,6.94078253 C3.55592325,7.07246752 3.44787576,7.17765145 3.31616581,7.17647798 L1.35946798,7.17647798 C1.22775803,7.17765145 1.11971053,7.07246752 1.11735587,6.94078253 L1.11735587,6.76218599 C1.11861925,6.62946051 1.22672758,6.52260992 1.35946798,6.52289002 L3.31626582,6.52289002 C3.44831406,6.52259836 3.55613735,6.62836563 3.55837792,6.76038603 L3.55827792,6.94078253 Z M9.7521876,5.21771589 L5.56607831,5.21771589 C5.43474218,5.21660617 5.32733088,5.3220857 5.3260663,5.45341132 L5.3260663,9.77112776 C5.33132116,9.90251442 5.44197349,10.0048372 5.57337866,9.99982333 L9.759988,9.99982333 C9.89132412,10.000933 9.99873543,9.89545352 10,9.7641279 L10,5.45341132 C9.99994541,5.38936993 9.97358762,5.32816191 9.92709635,5.2841146 C9.88000372,5.2395086 9.81701973,5.21559867 9.7521876,5.21771589 L9.7521876,5.21771589 Z M8.88394419,6.94088253 C8.88158938,7.0732786 8.77244036,7.17875068 8.640032,7.17657797 L6.68373418,7.17657797 C6.55202425,7.17775144 6.44397676,7.07256752 6.44162208,6.94088253 L6.44162208,6.76228599 C6.44386266,6.6302656 6.55168595,6.52449833 6.68373418,6.52478999 L8.64053202,6.52478999 C8.77258026,6.52449832 8.88040356,6.63026559 8.88264413,6.76228599 L8.88394419,6.94088253 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/安全线</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/安全线" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M10,4.52419428 L14.2849888,6.51539636 L14.2849888,9.50219948 C14.2849888,12.2645043 12.4597202,14.8511149 10,15.4758057 C7.54027978,14.8413541 5.71501121,12.2645043 5.71501121,9.50219948 L5.71501121,6.51539636 L10,4.52419428 Z M12.4050773,8.18170871 C12.2158454,8.04979758 11.9393358,8.07611388 11.787476,8.24048781 L9.31965693,10.9102078 L8.212524,9.71189175 C8.06066416,9.54751782 7.78415464,9.52120152 7.59492271,9.65311264 C7.40569077,9.78502377 7.37539469,10.0252103 7.52725453,10.1895842 L8.97767365,11.7595259 C9.15353701,11.9498813 9.48707976,11.9498813 9.66294312,11.7595259 L12.4727455,8.71818025 C12.6246053,8.55380633 12.5943092,8.31361983 12.4050773,8.18170871 Z" id="形状结合" fill="#3B414A"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/疏散路线</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/疏散路线" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M10.5643083,6.06152676 C10.9464834,6.10273162 11.3379297,6.08006894 11.7242253,6.06564725 C11.9549726,6.05637614 12.1146415,6.14908711 12.2506176,6.3190572 C12.7193229,6.90519647 13.1921488,7.48824538 13.6577639,8.07644489 C13.8431858,8.31028252 13.8246436,8.62446965 13.616559,8.77589756 C13.3682997,8.95616886 13.1694862,8.8490362 12.9995161,8.63992149 C12.6904796,8.26083668 12.3505394,7.9013242 12.0837378,7.49545623 C11.8128158,7.07825693 11.4800865,6.91446758 10.942363,7.06589547 C11.3513213,7.5788961 11.7458579,8.07438465 12.1414247,8.56884309 C12.6667867,9.22709088 13.1993597,9.87915795 13.7133904,10.5456467 C13.8473063,10.7197373 13.9874028,10.7784542 14.200638,10.7733036 C14.7466026,10.7588819 15.2925671,10.7660928 15.8395617,10.7691831 C16.2155561,10.7712434 16.4535143,10.9916894 16.4638155,11.3388405 C16.4741167,11.6684794 16.2207068,11.9311605 15.8539834,11.9342508 C15.0576993,11.9414617 14.2614152,11.9332207 13.464101,11.9321906 C13.1725765,11.9321906 12.9438895,11.8209374 12.7594977,11.5870998 C12.4288286,11.1688704 12.0827077,10.7630024 11.7324663,10.3406525 C11.3121767,10.7805145 10.9083689,11.2111053 10.4932299,11.6324252 C10.375796,11.7529494 10.4005189,11.8745038 10.4283322,12.0094497 C10.5746095,12.7212638 10.7208868,13.433078 10.8640737,14.1448921 C10.8980677,14.3128019 10.9238208,14.4817419 10.8815858,14.6527421 C10.8146279,14.9236641 10.646718,15.1029053 10.367555,15.1245379 C10.0925125,15.1461704 9.90812071,14.9823811 9.84322305,14.7269109 C9.72166869,14.2417235 9.62174687,13.7524157 9.5187347,13.2631079 C9.38584899,12.629583 9.2581139,11.9939979 9.12831856,11.3594429 C9.06754138,11.0617377 9.12316795,10.8052374 9.34773448,10.5786106 L9.6043111,10.3049416 L10.1007535,9.74112164 C10.1841933,9.64944079 10.2295187,9.57527203 10.130627,9.45165743 C9.83498207,9.07978348 9.55375884,8.69657819 9.19527647,8.33088497 C9.19527647,8.55133103 9.20351745,8.77177707 9.19321622,8.991193 C9.17364391,9.40015134 9.00573407,9.5783624 8.60295646,9.58660338 C8.01166658,9.59896485 7.41934657,9.59793472 6.82805671,9.58763348 C6.50974909,9.58248287 6.30990547,9.38469951 6.30783028,9.11377749 C6.30578498,8.83152414 6.51695993,8.6450721 6.85071938,8.64198173 C7.2493765,8.63786124 7.64700349,8.63477088 8.0456606,8.64404198 C8.21872106,8.64816247 8.3062814,8.59871663 8.28155848,8.41432482 C8.27846811,8.39166214 8.28567897,8.36796934 8.28052836,8.34633679 C8.11879924,7.54387195 8.47728161,7.02778095 9.11801734,6.5652563 C9.57333115,6.23664746 9.98950033,5.99971946 10.5643083,6.06152676 Z M5.82059763,10.184074 C6.03280271,10.3499236 6.07400759,10.6476288 5.88549531,10.8855869 C5.6526878,11.1781415 5.39103688,11.4480334 5.13968717,11.7282265 C5.20149448,11.8415399 5.30450665,11.7900338 5.3827959,11.7900338 C6.22440536,11.7941543 7.06601483,11.7910639 7.90659416,11.7941543 C8.15176314,11.7951844 8.39075138,11.8271182 8.51230576,12.0846486 C8.68845657,12.4565225 8.42680565,12.8170652 7.95810025,12.8222158 C7.17314747,12.832517 6.38922484,12.8253061 5.60427208,12.8253061 L5.06860877,12.8253061 C5.35189225,13.1343426 5.57748892,13.3846622 5.80823618,13.6308613 C5.95039299,13.7822892 6.01735089,13.9532894 5.96893517,14.1603439 C5.88858568,14.5095552 5.51465148,14.6537722 5.26742226,14.4003623 C4.72011112,13.8388186 4.18937071,13.2613593 3.67588417,12.6687276 C3.45234775,12.4101671 3.51518518,12.1031908 3.73254087,11.860082 C4.20948724,11.326479 4.70188544,10.8052374 5.19119325,10.2819355 C5.37146455,10.0893028 5.57954914,9.9955617 5.82059763,10.184074 Z M8.43710688,4.8737964 C8.92538459,4.86246505 9.29828866,5.2436101 9.3054995,5.76382159 C9.31271035,6.29433428 8.93877616,6.72801554 8.46595027,6.73728662 C8.00754609,6.7455276 7.60270824,6.29639453 7.60476067,5.78133365 C7.60682875,5.3002668 7.9879738,4.88512774 8.43710688,4.8737964 Z" id="形状结合" fill="#3B414A"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/32/企业安全档案</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/32/企业安全档案" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M18.523,23.765 L6.006,23.765 C5.46730256,23.780142 5.01786925,23.3566461 5.001,22.818 L5.001,7.947 C5.01840759,7.40874887 5.46768056,6.98585112 6.006,7.001 L11.749,7.001 C12.1413301,6.99545418 12.5011554,7.21829612 12.671,7.572 L12.847,7.956 L21.997,7.956 C22.5337691,7.94365694 22.9801232,8.36635427 22.997,8.903 L22.997,11.049 C23.5330145,11.0366387 23.9790513,11.4581435 23.997,11.994 L23.997,14.894 C23.712,14.857 23.397,14.82 23.057,14.784 C23.036,14.784 23.014,14.784 22.992,14.784 C22.0597486,14.8251928 21.1325457,14.9439364 20.22,15.139 C19.364,15.328 18.557,15.539 17.82,15.752 C17.6522344,15.7987619 17.5356225,15.9508468 17.534,16.125 C17.534,16.637 17.534,17.108 17.524,17.563 L17.524,17.583 L17.524,17.844 C17.492,20.624 17.473,22.301 18.524,23.765 L18.523,23.765 Z M13.231,9.211 L13.231,9.211 L13.89,11.049 L21.659,11.049 L21.659,9.211 L13.231,9.211 Z" id="减去_110" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
<path d="M23.427,23.773 C23.3017514,23.849134 23.1601876,23.8943796 23.014,23.905 C22.8673738,23.8944056 22.7255749,23.8480549 22.601,23.77 C20.301,22.562 20.236,21.903 20.272,18.685 C20.272,18.365 20.28,18.6 20.281,18.234 C20.5539357,18.0757777 20.8455125,17.9521598 21.149,17.866 C21.7561337,17.7138446 22.3791189,17.6339575 23.005,17.628 C23.9415285,17.6363777 24.8655925,17.8436189 25.716,18.236 C25.716,18.649 25.724,18.455 25.728,18.809 C25.774,22.044 25.719,22.409 23.428,23.774 M26.909,18.801 C26.903,18.39 26.897,17.942 26.896,17.451 C26.89407,17.3260822 26.8096161,17.2175568 26.689,17.185 C25.4984853,16.8415598 24.2785368,16.6098901 23.045,16.493 C23.0293537,16.4918692 23.0136463,16.4918692 22.998,16.493 C22.3324597,16.5223189 21.6705112,16.606944 21.019,16.746 C20.419,16.879 19.838,17.027 19.306,17.184 C19.1881559,17.2191297 19.1070237,17.3270355 19.106,17.45 C19.106,17.893 19.106,18.3 19.097,18.678 C19.06,21.891 19.047,23.094 22.325,24.834 C22.5355342,24.9586622 22.7744124,25.0275032 23.019,25.034 C23.2620012,25.0254257 23.4990807,24.956707 23.709,24.834 C26.975,23.134 26.961,22.129 26.909,18.795 M24.72,18.595 L22.427,20.871 L21.427,19.947 C21.276,19.802 21.016,20.323 20.88,20.522 C20.744,20.721 20.728,20.902 20.88,21.048 L22.164,22.235 C22.31798,22.379777 22.55802,22.379777 22.712,22.235 L25.272,19.704 C25.423,19.559 25.4,19.379 25.272,19.179 C25.144,18.979 24.872,18.458 24.725,18.604" id="路径_613" fill="url(#linearGradient-2)" fill-rule="nonzero"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><defs><style>.a{fill:currentColor;}.b{fill:none;}</style></defs><g transform="translate(-1821 -24)"><g transform="translate(-14 -1)"><rect class="a" width="30" height="3" rx="1.5" transform="translate(1835 27)"/><rect class="a" width="30" height="3" rx="1.5" transform="translate(1835 49)"/><rect class="a" width="15" height="3" rx="1.5" transform="translate(1850 42)"/><rect class="a" width="15" height="3" rx="1.5" transform="translate(1850 34)"/><path class="a" d="M7.738.9A1,1,0,0,1,9.262.9L15.6,8.352A1,1,0,0,1,14.838,10H2.162A1,1,0,0,1,1.4,8.352Z" transform="translate(1835 48) rotate(-90)"/></g><rect class="b" width="30" height="30" transform="translate(1821 24)"/></g></svg>

After

Width:  |  Height:  |  Size: 766 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><defs><style>.a,.b{fill:none;}.a{stroke:#fff;}</style></defs><g transform="translate(0.832 -9)"><path class="a" d="M114.156,107.265a3.975,3.975,0,0,0,1.476-5.49,4.131,4.131,0,0,0-5.581-1.49c-1.6.906-1.1,3.238-2.071,5.436a8.54,8.54,0,0,0-.939-5.462,3.975,3.975,0,0,0-5.49-1.476,4.131,4.131,0,0,0-1.49,5.581c.906,1.6,3.238,1.1,5.436,2.071a8.541,8.541,0,0,0-5.462.939,3.975,3.975,0,0,0-1.476,5.49,4.131,4.131,0,0,0,5.581,1.49c1.6-.906,1.1-3.236,2.069-5.433a8.546,8.546,0,0,0,.94,5.459,3.975,3.975,0,0,0,5.49,1.476,4.131,4.131,0,0,0,1.49-5.581c-.906-1.6-3.236-1.1-5.433-2.07A8.546,8.546,0,0,0,114.156,107.265Zm-7.06,1.568a1.514,1.514,0,1,1,1.514-1.514A1.514,1.514,0,0,1,107.1,108.833Z" transform="translate(-98.08 -88.319)"/><rect class="b" width="20" height="20" transform="translate(-0.832 9)"/></g></svg>

After

Width:  |  Height:  |  Size: 886 B

View File

@ -0,0 +1,32 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="8.042%" y1="0%" x2="65.682%" y2="23.865%" id="a">
<stop stop-color="#FFA900" stop-opacity="0" offset="0%"/>
<stop stop-color="#FFA900" stop-opacity=".631" offset="63.146%"/>
<stop stop-color="#FFA900" offset="100%"/>
</linearGradient>
</defs>
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)">
<path d="M35 18c0-9.94-8.06-18-18-18" id="Oval-2" stroke="url(#a)" stroke-width="4">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="0.9s"
repeatCount="indefinite" />
</path>
<circle fill="#FFA900" cx="35" cy="18" r="2">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="0.9s"
repeatCount="indefinite" />
</circle>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/16/tc_cheliang</title>
<g id="icon/16/tc_cheliang" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="cheliang-" transform="translate(1.000000, 3.000000)" fill="#FFFFFF" fill-rule="nonzero">
<path d="M5.4958382,0.10958891 C6.48812342,-0.0365296368 7.49694378,-0.0365296368 8.48922899,0.10958891 C9.18698909,0.247071286 9.88474918,0.357057187 10.5406437,0.535784276 C11.0286737,0.658286472 11.4186485,1.01911475 11.5733286,1.49128679 C11.8570844,2.27951908 12.1547953,3.06087725 12.4664615,3.8353613 C12.5222823,3.96596956 12.6897448,4.15844488 12.7874312,4.14469665 C13.3408828,4.05256104 13.8676929,4.41280613 13.9736233,4.95584266 C14.0087922,5.09579531 14.0087922,5.24208538 13.9736233,5.38203803 L13.1781768,5.59513571 C13.2274507,5.86792899 13.2600714,6.14338837 13.2758632,6.42002997 L13.2758632,10.2282918 C13.2668837,10.4585538 13.1837997,10.6800353 13.0386248,10.8607107 C12.3022709,11.0006488 11.5469536,11.014601 10.8057925,10.9019554 C10.28945,10.5788718 10.6104197,10.0358165 10.4429573,9.59587285 L3.66072916,9.59587285 C3.52815474,10.0633129 3.45140113,10.8469625 3.29789391,10.9019554 C2.54077965,11.0326815 1.76635506,11.0326815 1.00924081,10.9019554 C0.848586783,10.6917744 0.760548637,10.4363954 0.758047173,10.1732988 C0.716181567,9.62336933 0.716181567,9.1009363 0.716181567,8.56475503 C0.716181567,7.56800781 0.716181567,6.57126058 0.758047173,5.56763924 L0.018421475,5.37516391 C-0.00614049167,5.26419039 -0.00614049167,5.14930561 0.018421475,5.03833209 C0.227749503,4.48840258 0.50685354,4.06220722 1.22554643,4.12407429 C1.30927765,4.12407429 1.46976247,3.95909544 1.51860567,3.8353613 C1.78533585,3.22265575 2.01826216,2.59619754 2.21636577,1.95872687 C2.48473086,1.01698135 3.31998399,0.339488505 4.30964604,0.260819524 C4.69341409,0.192078336 5.09113735,0.143959504 5.4749054,0.0820924352 L5.4958382,0.10958891 Z M2.41173859,4.35779433 C5.42065688,4.98507482 8.52952231,4.98507482 11.5384406,4.35779433 C11.2802694,3.59476714 11.0220981,2.91422938 10.8406805,2.2268175 C10.7295229,1.68638694 10.2420026,1.30157624 9.68239875,1.3125597 C8.23803536,1.25069263 6.78669437,1.2025738 5.34233098,1.18882556 C4.87041656,1.20705122 4.40218218,1.2785512 3.94681079,1.40192324 C3.73697582,1.44425795 3.55333797,1.56817192 3.43744593,1.74562918 C3.04670028,2.57739756 2.75364104,3.43666241 2.41173859,4.35779433 Z M3.00483467,7.6023784 C3.25448472,7.61567474 3.50486187,7.60184312 3.75143797,7.56113369 C3.94426275,7.51729748 4.1091244,7.39486031 4.20498203,7.22430187 C4.23987003,7.12119008 4.07938521,6.86684769 3.93983319,6.80498062 C3.37225958,6.54300616 2.7898264,6.31348802 2.19543296,6.11756874 C1.90237372,6.02133108 1.56744888,6.04195343 1.49767287,6.44752644 C1.35812085,7.04557478 1.49767287,7.37553248 1.95121693,7.47177014 C2.30707458,7.54051133 2.64897702,7.55425957 3.03972267,7.58863016 L3.00483467,7.6023784 Z M11.0500085,7.6023784 C11.4174701,7.5765513 11.7831935,7.53065327 12.1454919,7.46489602 C12.6688119,7.348036 12.5571703,6.92871476 12.5432151,6.56438646 C12.5292599,6.20005817 12.3338871,6.0282052 12.0478055,6.11069462 C11.3313516,6.3206036 10.631675,6.58253759 9.95452519,6.89434416 C9.64751075,7.03870066 9.75915236,7.43739955 10.1080324,7.51301486 C10.4200584,7.55912003 10.7346201,7.58666639 11.0500085,7.59550428 L11.0500085,7.6023784 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/16/tc_ranliao</title>
<g id="icon/16/tc_ranliao" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M2,9 L2,8 L14,8 L14,9 L13.0931667,9 L12.0183,12.0500699 L4.02078852,12.0500699 L3.12707803,9 L2,9 Z M6.00973538,14.0500699 C6.56202012,14.0500699 7.00973538,13.6023547 7.00973538,13.0500699 C7.00973538,12.4977852 6.56202012,12.0500699 6.00973538,12.0500699 C5.45745063,12.0500699 5.00973538,12.4977852 5.00973538,13.0500699 C5.00973538,13.6023547 5.45745063,14.0500699 6.00973538,14.0500699 Z M9.98983941,14.0500699 C10.5421242,14.0500699 10.9898394,13.6023547 10.9898394,13.0500699 C10.9898394,12.4977852 10.5421242,12.0500699 9.98983941,12.0500699 C9.43755466,12.0500699 8.98983941,12.4977852 8.98983941,13.0500699 C8.98983941,13.6023547 9.43755466,14.0500699 9.98983941,14.0500699 Z M3.97611601,2.70119272 L7.04163726,1.85280773 L8.67143081,3.88064436 C8.74824853,3.97590612 8.8632505,4.03699325 8.98948312,4.04852718 C9.11526653,4.05707084 9.23925302,4.01947876 9.33628594,3.94301305 L10.1125492,3.2966855 L11.4467518,3.2966855 L13.0931667,6.98902352 L3.12707803,6.98902352 L3.97611601,2.70119272 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/16/tc_renyuan</title>
<g id="icon/16/tc_renyuan" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="gongren" transform="translate(3.000000, 2.000000)" fill="#FFFFFF" fill-rule="nonzero">
<path d="M10,11.5341044 C10,12.3237241 8.16000578,13 8.16000578,13 L6.9933343,12.8903776 C6.9933343,12.8903776 5.76726393,12.7179326 5,12.7179326 C4.23386316,12.7179326 3.0066657,12.8903776 3.0066657,12.8903776 L2.24561514,12.997465 C2.24561514,12.997465 0,12.3208478 0,11.5341044 L0,11.1526846 C0,10.4188187 0.850667508,9.67820906 1.8476381,9.11022308 C1.89592896,9.08277685 2.49504187,12.8981288 2.49504187,12.8981288 L3.16000577,12.8903775 C3.16000577,12.8903775 2.64805336,8.95108691 2.70001445,8.92430691 C2.97598902,8.78236323 3.15754933,8.64932455 3.4290156,8.53919835 C3.52971546,8.49793962 4.01113568,8.20391226 3.74182242,7.41213138 C3.11808724,6.69711547 2.6931942,6.0043458 2.6931942,4.4421203 L7.32126993,4.4421203 C7.32126993,5.98816081 6.88552518,6.68734923 6.26590815,7.40335639 L6.26949168,7.40335639 C6.00610279,8.30157472 6.42732561,8.51459586 6.49440105,8.5390196 C6.76303518,8.63889206 7.03046998,8.79498948 7.29999999,8.92430693 C7.36678644,8.95630316 6.83999421,12.8903776 6.83999421,12.8903776 L7.52001469,12.8819276 C7.52001469,12.8819276 8.09110966,9.07905561 8.1495153,9.11121435 C9.16160028,9.66844283 10,10.4038362 10,11.1526846 L10,11.5341044 Z M7.63810823,2.79687359 C7.63810823,1.00160694 5.46419619,0.104054868 5.46419619,0.104054868 C5.15631672,-0.051880052 4.85070584,-0.0163575804 4.53580382,0.104054868 C4.53580382,0.104054868 2.36180509,0.892146993 2.36180509,2.79687359 C2.36180509,3.08163846 1.90224725,3.02050599 1.7501932,3.92125931 L8.24993687,3.92125931 C7.97322537,3.01428224 7.63810823,3.08163846 7.63810823,2.79687359 L7.63810823,2.79687359 Z" id="形状"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/16/tc_yongdian</title>
<g id="icon/16/tc_yongdian" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9.07430076,1.42678924 L9.06453157,1.44025488 L3.54282859,8.64833079 C3.38467337,8.87170193 3.348765,9.15131191 3.48606169,9.39870998 L3.51721748,9.4499322 C3.65055369,9.67699979 3.88554224,9.80215099 4.14983835,9.80215101 L7.09115578,9.80188697 L6.3819656,13.9801947 L6.3721964,14.0216478 C6.30354807,14.3485195 6.46724796,14.6339382 6.75636309,14.7704427 L6.79306355,14.7862847 L6.80124855,14.7913013 C6.88045818,14.8330183 6.96679667,14.8565172 7.05551145,14.863118 L7.10910996,14.8652303 C7.32191981,14.8652303 7.51703953,14.7815321 7.66727378,14.6312978 C7.68846143,14.6100975 7.70780562,14.5871318 7.72509681,14.5626495 L12.7971532,7.39074598 C12.8401213,7.33012381 12.8698118,7.26111594 12.8842837,7.18823337 C12.9159676,7.02770187 12.9159676,6.87139487 12.878475,6.72142464 C12.868989,6.68322597 12.8552621,6.64620758 12.8375501,6.61105922 L12.812203,6.56458958 C12.6783387,6.33937021 12.4444063,6.2150111 12.1811663,6.2150111 L9.66203618,6.21474708 L10.376243,2.00528355 C10.3811704,1.97614661 10.3836434,1.94664747 10.3836359,1.91709683 L10.3825797,1.86957105 C10.368322,1.58626463 10.228121,1.34045075 9.96857743,1.23114147 L9.95088728,1.22454068 L9.93530939,1.21529955 C9.63061637,1.05159966 9.28579046,1.14506702 9.07403673,1.42678924 L9.07430076,1.42678924 Z" id="路径" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/16/tc_yongshui</title>
<g id="icon/16/tc_yongshui" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M7.9997907,2 C8.13639639,2.15858661 8.27174917,2.31818064 8.40583721,2.47876813 C8.83456225,2.99085953 9.25017612,3.51306036 9.65230573,4.04489282 C9.53806214,4.21513123 9.4328732,4.38067273 9.33481512,4.54246771 C8.79738507,5.42901627 8.50089624,6.16039153 8.50089624,6.65457138 C8.50089624,8.32258193 9.85983859,9.67151142 11.5320468,9.67151142 C11.87081,9.67151142 12.1967261,9.61614146 12.5010953,9.51396603 C12.5,11.9973998 10.4823256,14 8,14 C5.51746511,14 3.5,11.9973998 3.5,9.52109679 C3.5,8.78744491 3.9401628,7.70165634 4.73802326,6.38549985 C5.07374419,5.8315633 5.46576744,5.24804565 5.9025814,4.64507741 C6.44105711,3.90472403 7.00523993,3.18220812 7.59416279,2.47876813 C7.73732558,2.30715721 7.8731628,2.14709507 7.9997907,2 Z M11.5319642,3.25995456 C11.5859239,3.32259688 11.6393888,3.38563712 11.6923541,3.44906979 C11.9249808,3.72693125 12.1478352,4.01232777 12.3605351,4.30477016 C12.5330783,4.54294489 12.687929,4.77343657 12.82054,4.99224361 C13.1356979,5.5121304 13.3095639,5.94110104 13.3095639,6.23081627 C13.3095639,7.20896536 12.5125748,8 11.5320468,8 C10.5514362,8 9.7545298,7.20896535 9.7545298,6.23081627 C9.7545298,5.941021 9.92839577,5.51213041 10.2435537,4.99224361 C10.3761647,4.77343657 10.5310154,4.54294489 10.7035586,4.30477016 C10.9162585,4.01232777 11.1391128,3.72693125 11.3717396,3.44906979 C11.4282895,3.38128282 11.4819457,3.31805767 11.5319642,3.25995456 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/16/tc_zhengqi</title>
<g id="icon/16/tc_zhengqi" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M6.14205943,12.0612872 C5.58574461,12.0593348 5.13255874,12.4924983 5.12852629,13.0300529 C5.12852629,13.5657585 5.58156339,13.9999934 6.14205943,13.9999934 C6.69884768,14.0019483 7.15222993,13.5680693 7.15559257,13.0300529 C7.15222992,12.4922256 6.69864913,12.0586846 6.14205943,12.0612872 Z M9.85794057,12.0612923 C9.30162575,12.0593348 8.84843989,12.4924983 8.84440743,13.0300529 C8.84440743,13.5657585 9.29866566,13.9999934 9.85794057,13.9999934 C10.4147288,14.0019483 10.8681111,13.5680693 10.8714737,13.0300529 C10.8674413,12.4924983 10.4142554,12.0593348 9.85794057,12.0612923 Z M5.00325313,2 C3.45249924,3.95598192 4.34393044,5.28584458 5.39234323,6.51318479 C6.43739212,7.74272191 6.93973322,9.62034738 3.45249924,11.0241727 C4.99988924,9.36989968 4.11406453,7.71635899 3.06677304,6.51318479 C2.02060285,5.31001059 2.28971415,3.05378434 5.00325313,2 Z M8.6699198,2 C7.11916591,3.95598192 8.0105971,5.28584458 9.05900989,6.51318479 C10.1040588,7.74272191 10.6063999,9.62034738 7.11916591,11.0241727 C8.66655591,9.36989968 7.7807312,7.71635899 6.73343971,6.51318479 C5.68726951,5.31001059 5.95638082,3.05378434 8.6699198,2 Z M12.3365865,2 C9.62304748,3.05378434 9.35393618,5.31001059 10.4001064,6.51318479 C11.4473979,7.71635899 12.3332226,9.36989968 10.7858326,11.0241727 C14.2730666,9.62034738 13.7707255,7.74272191 12.7256766,6.51318479 C11.6772638,5.28584458 10.7858326,3.95598192 12.3377078,2.00146461 L12.3365865,2 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18.947" viewBox="0 0 18 18.947"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642.947a9.486,9.486,0,1,1,9-9.473A9.256,9.256,0,0,1,330,1642.947Zm-3.07-14.143-2.869,5.012,2.81,5.049,5.678.033,2.869-5.012-2.81-5.047-5.679-.035Zm5.121,9.2h0l-4.67-.029-2.311-4.152,2.359-4.121,4.67.029,2.311,4.15L332.05,1638Zm-3.748-3.65-.928.445,0,.967.981.6.79-.959-.838-1.055Zm3.336.041-1.007.568-.045.781,1,.582.791-1.023-.739-.908Zm-1.7-1.922-1.171.752-.107,1.254,1.322.727,1.073-1.473-1.117-1.26Zm-2.271-.078h0a5.344,5.344,0,0,0-.948.592l-.024.76.96.684.709-.982Zm3.987-1.311-1.048.588-.024.764,1.081.643.77-.9-.778-1.094Z" transform="translate(-321 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 953 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/linshiyongdian</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/linshiyongdian" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-70" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.03172183,17.9944889 0.00551112896,13.9682782 0,9 C0.00551112896,4.03172183 4.03172183,0.00551112896 9,0 C13.9682782,0.00551112896 17.9944889,4.03172183 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M4.991,4.04 C4.588775,4.04055175 4.263,4.36677462 4.263,4.769 L4.263,13.514 C4.26355084,13.9158349 4.58916509,14.2414492 4.991,14.242 L13.007,14.242 C13.4092254,14.242 13.7354483,13.916225 13.736,13.514 L13.736,4.769 C13.7354492,4.3666128 13.4093872,4.04055084 13.007,4.04 L4.991,4.04 Z M13.008,13.514 L4.991,13.514 L4.991,4.769 L5.356,4.769 L5.356,8.049 L12.644,8.049 L12.644,4.769 L13.008,4.769 L13.008,13.513 L13.008,13.514 Z M8.521,8.776 L8.521,8.776 L7.177,10.683 L8.999,11.146 L8.055,13.076 L10.821,10.487 L8.999,10.212 L10.059,8.776 L8.521,8.776 Z M11.914,7.319 L6.084,7.319 L6.084,4.768 L11.914,4.768 L11.914,7.318 L11.914,7.319 Z M10.548,5.497 L10.548,6.59 L11.276,6.59 L11.276,5.5 L10.548,5.497 Z M8.725,5.497 L8.725,6.59 L9.454,6.59 L9.454,5.5 L8.725,5.497 Z M6.903,5.497 L6.903,6.59 L7.632,6.59 L7.632,5.5 L6.903,5.497 Z" id="减去_70"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/donghuo</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/donghuo" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="减去-59" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)" fill-rule="nonzero">
<path d="M9,18 C4.03172183,17.9944889 0.00551112896,13.9682782 0,9 C0.00551112896,4.03172183 4.03172183,0.00551112896 9,0 C13.9682782,0.00551112896 17.9944889,4.03172183 18,9 C17.9944889,13.9682782 13.9682782,17.9944889 9,18 L9,18 Z M5.866,6.311 C5.7931235,6.88914646 5.60107536,7.44588177 5.302,7.946 C5.06603033,8.36790963 4.88585671,8.81867982 4.766,9.287 C4.461,10.81 5.077,11.826 6.966,12.91 C6.4439462,12.0554506 6.52186815,10.96374 7.16,10.192 C7.46854371,9.73021709 7.68767075,9.21462406 7.806,8.672 L7.806,8.672 L7.806,8.678 C8.07044007,9.07672027 8.16241118,9.5654295 8.061,10.033 C8.63838075,9.30107021 8.90552388,8.37181428 8.805,7.445 C10.499142,8.69738234 11.0802013,10.9677326 10.196,12.88 C11.82,11.952 12.676,10.787 12.738,9.416 C12.6751166,7.84564831 11.9657499,6.37117881 10.778,5.342 C11.0613289,5.88981442 10.9850486,6.5545993 10.585,7.024 C9.849,4.209 8.015,3.633 7.997,3.624 C8.18,4.8 7.608,6.186 6.25,7.862 C6.25941943,7.31922796 6.1255896,6.78356373 5.862,6.309 L5.866,6.311 Z" id="减去_59"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>icon/20px/层级图标/视频监控</title>
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-1">
<stop stop-color="#F0F7FC" offset="0%"></stop>
<stop stop-color="#C2EDFF" offset="100%"></stop>
</linearGradient>
</defs>
<g id="icon/20px/层级图标/视频监控" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组">
<g id="icon/层级图标/背景" transform="translate(1.000000, 1.000000)" fill="url(#linearGradient-1)">
<circle id="椭圆形" cx="9" cy="9" r="9"></circle>
</g>
<path d="M7.66031333,11.888661 L6.47949465,11.888661 L6.47949465,10.3985248 L5.33340592,10.1905988 L5.33340592,14.9728964 L6.47949465,14.5916987 L6.47949465,12.9282909 L8.3201826,12.9282909 L9.32735148,11.576772 L8.00761295,10.8836854 L7.66031333,11.888661 Z M13.6338667,12.20055 L16.3080737,10.5024878 L7.97288299,5.02710365 L7.00044407,5.02710365 L5.68070553,7.10636345 L5.68070553,7.79945005 L13.0087274,12.2352043 L13.6338667,12.2352043 L13.6338667,12.20055 Z M12.6266978,12.5470933 L6.30584484,8.45788232 L5.64597557,9.15096892 L12.9739974,13.5867232 L13.6338667,13.5867232 L13.9811663,13.2401799 L14.3284659,12.2352043 C14.3284659,12.2352043 13.356027,12.9282909 13.321297,12.9282909 C12.9392675,12.6857106 12.6266978,12.5470933 12.6266978,12.5470933 L12.6266978,12.5470933 Z" id="形状" fill="#3B414A"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="18" height="18" viewBox="0 0 18 18"><defs><style>.a{fill:url(#a);}</style><linearGradient id="a" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#f0f7fc"/><stop offset="1" stop-color="#c2edff"/></linearGradient></defs><path class="a" d="M330,1642a9,9,0,1,1,9-9A9.01,9.01,0,0,1,330,1642Zm-3.489-4.051a4.921,4.921,0,0,0,3.631,1.619,4.8,4.8,0,0,0,1.964-.422,5.532,5.532,0,0,0,3.169-5.107,5.767,5.767,0,0,0-1.2-3.244,22.365,22.365,0,0,0-3.573-3.807l-.362-.324-.363.324a22.234,22.234,0,0,0-3.572,3.807,5.421,5.421,0,0,0,.306,7.152Zm3.633.984a4.407,4.407,0,0,1-3.463-1.729l.009-.027c.118-.387.236-.781.351-1.176l.016-.043a.665.665,0,0,0,.232.039h.008a.537.537,0,0,1,.079,0,7.08,7.08,0,0,0,1.327.129,3.8,3.8,0,0,0,2.767-.967,8.719,8.719,0,0,0,1.6-1.953,3.394,3.394,0,0,0,.4-1.467c-.23.311-.6.436-1.278.436-.4,0-.892-.041-1.464-.092l-.046,0c-.471-.043-1-.09-1.61-.121a1.3,1.3,0,0,0-.151-.006c-.025,0-.051,0-.077,0a1.776,1.776,0,0,0-1.3.57,4.615,4.615,0,0,0-.756,2.955c0,.057,0,.109,0,.164-.04.09-.078.174-.112.252l-.337.8,0,.012a4.752,4.752,0,0,1,.325-5.543,19.641,19.641,0,0,1,3.164-3.371l.321-.285.321.285a19.674,19.674,0,0,1,3.163,3.371,5.1,5.1,0,0,1,1.063,2.871A4.746,4.746,0,0,1,330.143,1638.934Zm-1.375-3.283a5.994,5.994,0,0,1-1.019-.086l-.027-.006a.569.569,0,0,1-.42-.209c.066-.148.128-.275.192-.395a3.248,3.248,0,0,1,.356-.547,1.95,1.95,0,0,1,.225-.236l.066-.057.063-.049.134-.09a2.149,2.149,0,0,1,.6-.24,4.375,4.375,0,0,1,.633-.094c.121-.01.241-.02.357-.025.286-.021.556-.041.795-.08a3.93,3.93,0,0,0,.454-.1,2.875,2.875,0,0,0,.34-.115c.1-.045.165-.074.209-.1l.074-.037-.075.031c-.069.031-.139.057-.215.084a3.324,3.324,0,0,1-.343.094,4.056,4.056,0,0,1-.454.068c-.247.025-.526.027-.822.029l-.329,0a4.648,4.648,0,0,0-.659.057,2.207,2.207,0,0,0-.668.223,1.417,1.417,0,0,0-.158.09l-.077.055-.068.053a2,2,0,0,0-.27.246,3.69,3.69,0,0,0-.424.566l-.006.01a2.894,2.894,0,0,1,.593-1.916,1.618,1.618,0,0,1,1.165-.5l.086,0c.054,0,.1,0,.134,0,.8.043,1.441.113,1.954.17l.057.006a10.71,10.71,0,0,0,1.086.09l.078,0a1.575,1.575,0,0,0,.671-.15c-.023.039-.046.084-.069.129l-.027.055a6.915,6.915,0,0,1-1.779,2.176A3.6,3.6,0,0,1,328.768,1635.65Z" transform="translate(-321 -1624)"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 559 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 377 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 775 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 633 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 810 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Some files were not shown because too many files have changed in this diff Show More