提交 7cb1f6cc 作者: 陈师旦

合并分支 'dev_csd' 到 'main'

Merge

查看合并请求 !50
......@@ -3,3 +3,6 @@ VITE_GLOB_APP_NAME = Basic APP
# APP 描述
VITE_GLOB_APP_DESCRIPTION = APP 基础工程
# 地图基础服务ip
VITE_MAP_API_BASE_URL = 'https://hntq.zhijietianqi.com'
\ No newline at end of file
......@@ -3,3 +3,5 @@ VITE_GLOB_API_URL=http://192.168.0.156:8081
# API 接口地址前缀
VITE_GLOB_API_URL_PREFIX=/api
......@@ -3,3 +3,4 @@ VITE_GLOB_API_URL=http://localhost:8080
# API 接口地址前缀
VITE_GLOB_API_URL_PREFIX=/api
......@@ -47,6 +47,7 @@ module.exports = {
'workflow',
'types',
'release',
'upd',
],
],
},
......
......@@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="stylesheet" type="text/css" href="https://at.alicdn.com/t/c/font_4105118_8gdcfjv45sh.css" /> -->
<script>
const coverSupport =
'CSS' in window &&
......
{
"name": "basic-app",
"version": "3.0.3.0",
"description": "APP 基础工程",
"name": "hntq-app-v5",
"version": "0.0.2",
"description": "湖南天气app v5",
"keywords": [
"app",
"basic"
......@@ -81,14 +81,19 @@
"@dcloudio/uni-quickapp-webview": "3.0.0-3080720230703001",
"@dcloudio/uni-ui": "^1.4.28",
"@faker-js/faker": "^8.0.2",
"@turf/turf": "^6.5.0",
"@types/mapbox-gl": "^2.7.11",
"@vue/runtime-core": "~3.2.47",
"@vueuse/core": "^10.2.1",
"axios": "^1.4.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.9",
"lodash-es": "^4.17.21",
"mapbox-gl": "^2.15.0",
"mapbox-gl-controls": "^2.3.5",
"nanoid": "^4.0.2",
"pinia": "~2.0.36",
"pnpm": "8.6.7",
"qs": "~6.9.7",
"stompjs": "^2.3.3",
"urijs": "^1.19.11",
......
This source diff could not be displayed because it is too large. You can view the blob instead.
<script setup lang="ts">
import { checkUpgrade } from '@/utils/upgrade'
// 本地
import './static/iconfont.css'
// import * as Push from '@/utils/push'
onLaunch(() => {
......
/**
* @desc 新增
*/
import * as defs from '../../baseClass'
import { defHttp } from '/@/utils/http/axios'
export class Params {
/** 组件 */
component?: string
/** 是否启用 */
enable?: boolean
/** 是否隐藏 */
hidden?: boolean
/** 图标 */
icon?: string
/** 元数据 */
meta?: string
/** 名称 */
name: string
/** 路径 */
path?: string
/** 父级ID */
pid?: string
/** 重定向 */
redirect?: string
/** 序号 */
serial?: number
/** 权限类型 */
type: 'DIR' | 'MENU' | 'BUTTON'
/** 标识 */
uid: string
}
export const init = new defs.Result()
export function request(params: Params, config?: http.RequestConfig<Params>, options?: http.RequestOptions) {
return defHttp.request(
{
url: '/sys/permission/add',
method: 'POST',
data: params,
...config,
},
options,
)
}
.example-page {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
justify-content: center;
}
.box-shadow-def {
box-shadow: 0rpx 0rpx 12rpx 0rpx rgb(3 21 37 / 15%);
}
.box-shadow-bottom {
background: #fff;
box-shadow: 0 0 6px 0 rgb(3 21 37 / 15%);
}
.translateX(-50%) {
transform: translateX(-50%);
}
.letter-spacing-1 {
letter-spacing: 1px;
}
.border-bottom {
border-bottom: 2rpx solid #eee;
}
.line-blue {
position: relative;
padding-left: 20rpx;
&::before {
content: '';
width: 6rpx;
height: 40rpx;
background: #1890ff;
border-radius: 3rpx;
position: absolute;
left: 0;
top: 8rpx;
z-index: 10;
}
}
......@@ -97,6 +97,7 @@
}
const hasError = ref(false)
function onError() {
if (hasError.value) {
return
......
<script setup lang="ts">
import dayjs from 'dayjs'
const props = defineProps({
type: {
type: String,
default: '5',
},
})
const opts = [
{ label: '小时级', value: '4', format: 'MM月DD日HH时', valueFormat: 'YYYY-MM-DD HH' },
{ label: '分钟级', value: '5', format: 'MM月DD日HH时mm分', valueFormat: 'YYYY-MM-DD HH:mm' },
]
const _type = ref<string>(props.type)
const active = computed(() => opts.find((v) => v.value === _type.value))
// 是否显示
const show = ref<boolean>(true)
// 开始时间
const sTime = ref<string>(dayjs().subtract(1, 'day').format(active.value.valueFormat))
// 结束时间
const eTime = ref<string>(dayjs().format(active.value.valueFormat))
watch(
() => props.type,
(val) => {
_type.value = val
},
)
// 时间组件改变
function change(e) {
const format = active.value.valueFormat
const { startDate, endDate } = toRaw(e)
sTime.value = dayjs(toRaw(startDate).result).format(format)
eTime.value = dayjs(toRaw(endDate).result).format(format)
}
function cancel() {
show.value = false
}
</script>
<template>
<view class="h-84 lh-10 flex text-28 bg-#fff p-2 pt-0 pb-0 pos-relative">
<fui-icon name="wait" size="40" />
<text class="ml-1">小时级:</text>
<text class="text-#1890FF" @click="show = !show">
{{ dayjs(sTime).format(active.format) }}
-
{{ dayjs(eTime).format(active.format) }}
</text>
<fui-icon name="arrowright" size="45" class="absolute right-16" color="#000000" />
<!-- 时间组件 -->
<fui-date-picker
range
:value="dayjs(sTime).format(active.valueFormat)"
:show="show"
:type="type"
@change="change"
@cancel="cancel"
/>
</view>
</template>
<script setup lang="ts">
import { liveModules } from '/@/utils/const/Navigation'
import type { navItemType } from '/@/utils/const/Navigation'
defineProps({
dataSouce: {
type: Array as PropType<navItemType[]>,
default: () => liveModules,
},
})
// const colors = {
// m: '#1890FF',
// f: '#FF9A03',
// c: '#63C56D',
// w: '#1890FF',
// }
// const getColor = (type: string) => colors[type]
function goRoute(nav: UniApp.NavigateToOptions) {
uni.navigateTo(nav)
}
const lastString = (string: string) => string.charAt(string.length - 1)
const getUrl = (item) => `/static/images/business/${lastString(item.value)}/${item.value}.svg`
</script>
<template>
<fui-grid :columns="4" class="mt-4 bg-#fff" :showBorder="false">
<fui-grid-item
v-for="(item, index) in dataSouce"
:key="index"
:highlight="false"
@click="goRoute(item.navigate)"
>
<view class="fui-grid__cell flex flex-col flex-center">
<!-- <image src="/static/uni-logo.png" class="fui-icon w50" mode="widthFix" /> -->
<!-- :color="getColor(lastString(item.value))" -->
<!-- <FuiIcon custom-prefix="font_family" :name="`icon-${item.value}`" size="100" :primary="true" /> -->
<image :src="getUrl(item)" class="fui-icon w-100 h-98" />
<text class="text-24 mt-2">{{ item.label }}</text>
</view>
</fui-grid-item>
</fui-grid>
</template>
<style lang="less">
.fui-grid__cell {
border: none;
}
</style>
<script setup lang="ts">
import { has } from 'lodash-es'
import { useSlots } from 'vue'
defineProps({
title: {
type: String,
default: '监测预报',
},
url: {
type: String,
default: '/static/warnforecast.png',
},
myStyle: {
type: String,
default: '',
},
bgColor: {
type: String,
default: '#1F8BF6',
},
})
const isSlot = computed(() => has(toRaw(useSlots()), 'content'))
</script>
<template>
<!-- 头部 -->
<view
:style="`background:${bgColor} url(${url}) no-repeat center bottom;background-size:100% 100%;${myStyle}`"
class="h-171 bg-[url(/static/warnforecast.png)] text-c0 lh-32 text-center text-36 font-500 pos-relative"
>
<slot name="content"></slot>
<text v-if="!isSlot"> {{ title }}</text>
</view>
</template>
<script lang="ts" setup>
defineProps({
title: {
type: String,
default: '气象服务',
},
otherTitle: {
type: String,
default: '查看全部',
},
otherTitleVis: {
type: Boolean,
default: true,
},
})
</script>
<template>
<!-- 头部 -->
<view class="flex lh-7 justify-between pb-3 b-#EEEEEE b-b-2 b-b-solid">
<view class="text-black text-35 font-600 line-blue">{{ title }}</view>
<view class="b-2 b-#3E8FFD b-solid b-rd-4 pl-3 pr-1 text-#3E8FFD flex align-center" v-if="otherTitleVis">
<text class="text-28 font-500">{{ otherTitle }}</text>
<fui-icon name="arrowright" size="36" color="#3E8FFD" />
</view>
<slot name="content"></slot>
</view>
</template>
<script setup lang="ts"></script>
<template>
<view class="pb-18">
<slot name="container"></slot>
</view>
</template>
<script>
export default {
data() {
return {
loading: true,
}
},
created() {
Message.loading()
},
methods: {
changeOption() {},
onViewClick(options) {
console.log(options)
},
maploaded() {
Message.hideLoading()
},
},
}
</script>
<script module="echarts" lang="renderjs">
import { mapOpts,mapStyles } from './style'
import { appendScript, appendStylesheet } from '/@/utils/dom'
import { accessToken, defaultStyle, loadMapControl, PopupImage, buildTdtTileUrl, EmptyImage, CustomControl } from '/@/components/Map/Mapbox'
let mapInstance
export default {
mounted () {
if (typeof window.mapInstance === 'function') {
this.initMap()
} else {
this.loadMaplibs().then(() =>{
this.initMap()
})
}
},
methods: {
loadMaplibs(){
const id = 'mapbox-gl'
const resource = 'static/js/mapbox-gl-js/mapbox-gl.'
return Promise.all([appendScript(id,`${resource}js`),appendStylesheet(id,`${resource}css`)])
},
initMap() {
mapInstance = new mapboxgl.Map({
accessToken,
container: 'echarts',
...mapOpts,
style: Object.assign({
...mapStyles,
})
})
mapInstance.on('load',()=>{
this.$ownerInstance.callMethod('maploaded')
})
},
onClick(event, ownerInstance) {
// 调用 service 层的方法
// ownerInstance.callMethod('onViewClick', {
// test: 'test'
// })
}
// updateEcharts(newValue, oldValue, ownerInstance, instance) {
// // 监听 service 层数据变更
// },
}
}
</script>
<template>
<view class="content">
<!-- #ifdef APP-PLUS || H5 -->
<view id="echarts" class="w-100% h-100%" />
<!-- #endif -->
<!-- #ifndef APP-PLUS || H5 -->
<view>非 APP、H5 环境不支持</view>
<!-- #endif -->
</view>
</template>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
</style>
{
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"pageOrientation": "portrait" //横屏配置,全局屏幕旋转设置(仅 APP/微信/QQ小程序),支持 auto / portrait / landscape
},
"pages": [
// pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"path": "pages/home/index",
"style": {
"navigationBarTitleText": "Basic APP"
"navigationBarTitleText": "首页",
"enablePullDownRefresh": false,
// #ifdef H5
"navigationStyle": "custom",
// #endif
"app-plus": {
"titleNView": false
},
"enableReachBottom": false
}
},
{
"path": "pages/business/index",
"style": {
"navigationBarTitleText": "监测预报",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#1890FF",
"app-plus": {
"titleNView": {
"backgroundImage": "/static/warnforecast.png",
"backgroundRepeat": "no-repeat"
}
},
"SplitLineStyles": {
"height": "160px"
}
}
},
{
"path": "pages/message/index",
"style": {
"navigationBarTitleText": "消息",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#1890FF",
"app-plus": {
"titleNView": {
"backgroundImage": "/static/warnforecast.png",
"backgroundRepeat": "no-repeat"
}
}
}
},
{
"path": "pages/mine/index",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false,
// #ifdef H5
"navigationStyle": "custom",
// #endif
"app-plus": {
"titleNView": false
},
"enableReachBottom": false
}
},
// 降水实况
{
"path": "pages/business/monitor/rain",
"style": {
"navigationBarTitleText": "降水监测",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#1890FF",
"app-plus": {
"titleNView": {
"buttons": [
{
"type": "share"
}
]
}
}
}
},
// === PDF 文件预览 ===
{
"path": "pages/common/viewer/pdf",
......@@ -60,11 +136,41 @@
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
}
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"resizable": true
"resizable": true,
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#1890FF",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"height": "60px",
"fontSize": "10px",
"iconWidth": "24px",
"spacing": "6px",
"list": [
{
"pagePath": "pages/home/index",
"iconPath": "static/icons/home.png",
"selectedIconPath": "static/icons/homeSelect.png",
"text": "首页"
},
{
"pagePath": "pages/business/index",
"iconPath": "static/icons/monitorforecast.png",
"selectedIconPath": "static/icons/monitorforecastSelect.png",
"text": "监测预报"
},
{
"pagePath": "pages/message/index",
"iconPath": "static/icons/message.png",
"selectedIconPath": "static/icons/messageSelect.png",
"text": "消息"
},
{
"pagePath": "pages/mine/index",
"iconPath": "static/icons/mine.png",
"selectedIconPath": "static/icons/mineSelect.png",
"text": "我的"
}
]
}
}
<script setup lang="ts">
import { climateModules, forecastModules, liveModules, weatherModules } from '@/utils/const/Navigation'
const navs = [
{ dataSouce: liveModules, title: '实况监测' },
{ dataSouce: forecastModules, title: '预报信息' },
{ dataSouce: climateModules, title: '气候' },
{ dataSouce: weatherModules, title: '天气' },
]
onMounted(() => {})
</script>
<template>
<view class="">
<!-- 头部 -->
<!-- <Header title="监测预报" /> -->
<!-- 内容 -->
<view class="p-2 pt-3 pb-1">
<view class="box-shadow-def p-2 pt-3 b-rd-2 mb-3 bg-#fff" v-for="(item, index) in navs" :key="index">
<MenuHeader :title="item.title" otherTitle="展开更多" />
<Grid :dataSouce="item.dataSouce" />
</view>
</view>
</view>
</template>
<script setup lang="ts">
onNavigationBarButtonTap((e) => {
if (e.index === 0) {
uni.showToast({
title: '你点了分享按钮',
icon: 'none',
})
}
})
</script>
<template>
<view class="bg h-100vh">
<CustomPicker />
<Map style="height: 100%" />
</view>
</template>
<script lang="ts" setup>
import URI from 'urijs'
import { getExtranetUrl } from '/@/utils/proxy'
const link = ref<string>('')
......
<script setup lang="ts">
import Header from './modules/header.vue'
import Warning from './modules/warning.vue'
import MeteService from './modules/meteService.vue'
import CommonFunction from './modules/commonFunction.vue'
onMounted(() => {
// test API
// API.example.hello.request().then((body) => {
// title.value = body
// console.log('[API]', body, $app.name, $app.version)
// Message.toast(body)
// })
})
// const surprise = () => {
// // #ifdef APP-PLUS
// const orientation = plus.navigator.getOrientation()
// if (orientation === 0) {
// plus.screen.lockOrientation('landscape-primary')
// } else if (orientation === 90) {
// plus.screen.lockOrientation('portrait-primary')
// }
// Message.toast('🥳 surprise ~ ')
// // #endif
// // #ifndef APP-PLUS
// Message.toast(`使用 APP 运行点击有惊喜~ ╰(*°▽°*)╯`)
// // #endif
// }
</script>
<template>
<view class="content">
<!-- 头部 -->
<Header />
<!-- 内容 -->
<view class="p-2 pt-3">
<Warning />
<MeteService />
<CommonFunction />
</view>
<!-- <Weather /> -->
</view>
</template>
<style lang="less">
.content {
height: calc(100vh);
overflow: auto;
background-color: #f2f2f2;
letter-spacing: 3rpx;
}
</style>
<template>
<view class="p-2 b-rd-2 box-shadow-def mt-3 bg-#fff">
<MenuHeader title="常用功能" otherTitle="自定义" />
<Grid />
</view>
</template>
<script setup lang="ts">
const city = ref<string>('长沙市')
const county = ref<string>('天心区')
const path = ref<string>('/static/header.png')
onMounted(() => {})
</script>
<template>
<view class="text-c0 bg-cover h-362 pos-relative p-4 pt-13 pb-0" :style="`background-image: url(${path})`">
<fui-row>
<!-- 定位 -->
<fui-col :span="12">
<view class="flex">
<FuiIcon custom-prefix="font_family" name="icon-location" color="#fff" size="42" />
<text class="ml-2 text-30">{{ city }} &nbsp;{{ county }}</text>
</view>
</fui-col>
<!-- 应急响应 -->
<fui-col :span="12">
<view class="flex flex-justify-end b-rd-0.7 text-24 lh-7 h-56">
<view class="pl-3 pr-4 inline-block pr-2 bg-[#f6f7fb] b-rd-l-0.7 bg-[#FF9A03]">暴雨</view>
<view class="pos-relative pr-1.3 pl-2 inline-block bg-[#fff] text-c2 font-650 b-rd-r-0.7 triangle">
|| 响应
</view>
</view>
</fui-col>
</fui-row>
<!-- 天气温度监测及天气类型 -->
<fui-row class="pt-6 pb-5 pl-0.5">
<!-- 天气监测 -->
<fui-col :span="9" class="h-128">
<view>
<text class="text-112">26°</text>
<text class="text-32">多云</text>
</view>
</fui-col>
<!-- 天气类型 -->
<fui-col :span="15">
<fui-row class="h-128" :isFlex="true" justify="end" align="middle">
<fui-col :span="8" v-for="item in 2" :key="item">
<view class="h-40 text-27 mr-1 p-1 pr-2 mb-1 bg-amber b-rd-10 flex-center">
<FuiIcon custom-prefix="font_family" name="icon-gw" color="#fff" size="36" />
<text class="ml-1">高温</text>
</view>
</fui-col>
</fui-row>
</fui-col>
</fui-row>
<!-- 空气质量及预报 -->
<fui-row>
<fui-col :span="12">
<view>
<text class="mr-4 text-32">18° ~ 29°</text>
<FuiIcon class="mt-1" custom-prefix="font_family" name="icon-bianzu" color="#fff" size="36" />
<text>20 优</text>
</view>
</fui-col>
<fui-col :span="12">
<view class="flex-1 flex flex-justify-end">
<text class="bg-[rgba(0,7,17,0.3)] text-28 pt-1 pb-1 pl-3 pr-1 b-rd-4">
城市预报
<fui-icon name="arrowright" :size="28" color="#fff" />
</text>
</view>
</fui-col>
</fui-row>
</view>
</template>
<style lang="less" scoped>
.triangle {
&::after {
content: '';
width: 0;
height: 0;
position: absolute;
border-style: solid;
border-color: #fff transparent;
border-width: 0 0 56rpx 20rpx;
top: 0;
left: -20rpx;
z-index: 99;
}
}
</style>
<script setup lang="ts"></script>
<template>
<view class="box-shadow-def bg-#fff b-rd-2 mt-3 p-3 pb-0">
<!-- 头部 -->
<MenuHeader />
<!-- 内容 -->
<view
class="b-0 b-t-2 b-solid pt-3"
:style="`border-color:${index !== 0 ? '#EEEEEE' : 'transparent'};`"
v-for="(item, index) in 3"
:key="item"
>
<view class="text-#333333 font-550 text-30"> 湖南省未来三天天气预报 </view>
<view class="pt-4 pb-4">
<text class="text-24 font-500 w-132 b-2 b-#1890FF b-solid b-rd-4 p-1 pl-2 pr-1 text-#3E8FFD">
决策服务
</text>
<text class="text-#999999 ml-2 text-24"> 2023/02/28 17:00 </text>
</view>
</view>
</view>
</template>
<script setup lang="ts"></script>
<template>
<view class="h-80 bg-[#FFFBE6] b-rd-5 pl-3 lh-10 flex box-shadow-def">
<view>
<image src="/static/images/earlyWarningIcon/by-1.svg" alt="by" class="w-54 h-50 mt-2 shadow-yellow" />
</view>
<view class="ml-2 overflow-hidden">
<text class="text-28 text[#000000]"> 湖南省气象台5月15日14:00发布 </text>
<text class="text-28 text-red">暴雨红色预警</text>
</view>
</view>
</template>
<script setup lang="ts">
const url = ref<string>('/static/images/weather-little-icon/day1.png')
/**
* 切换城市
*/
function cityChange() {
uni.showToast({ title: '切换城市' })
}
/**
* 预报预览
*/
function previewForecast() {
uni.showToast({ title: '预报预览' })
}
</script>
<template>
<view class="weather-container">
<view class="weather-city" @tap="cityChange">
<FuiIcon name="location" color="#3FA5FF" class="location-icon" />
<text class="location-text">天心区</text>
<text class="right-line" />
</view>
<view class="weather-info">
<image :src="url" />
<text> 晴 39°</text>
<view class="weather-air"></view>
</view>
<view class="weather-detail" @tap="previewForecast"> 未来24小时预报 > </view>
</view>
</template>
<style lang="less" scoped>
.weather-container {
display: flex;
width: 100%;
height: 70rpx;
padding: 20rpx;
align-items: center;
justify-content: center;
background-color: #fff;
.weather-city {
flex: 1;
display: flex;
align-items: center;
justify-content: left;
.location-icon {
font-size: 42rpx !important;
margin-right: 10rpx;
vertical-align: middle;
}
.location-text {
vertical-align: middle;
}
.right-line {
display: block;
width: 2px;
height: 42rpx;
background-color: #eee;
margin-left: 24rpx;
border-radius: 10%;
}
}
.weather-info {
flex: 1.3;
display: flex;
align-items: center;
justify-content: left;
image {
width: 50rpx;
height: 50rpx;
margin-right: 18rpx;
// margin-bottom: 10rpx;
}
text {
vertical-align: top;
}
.weather-air {
width: 65rpx;
// height: 42rpx;
line-height: 42rpx;
background-color: #24e228;
border-radius: 5px;
text-align: center;
font-size: 27rpx;
margin-left: 10rpx;
color: #fff;
}
}
.weather-detail {
flex: 1.4;
font-size: 28rpx;
color: #aaa;
}
}
</style>
<script setup lang="ts">
import dayjs from 'dayjs'
import { checkUpgrade } from '@/utils/upgrade'
import { useRuntime } from '@/hooks/app/useRuntime'
const { app } = useRuntime()
const year = ref(dayjs().year())
const title = ref('Hello World')
const version = computed(() => app.value.version)
onMounted(() => {
// test API
API.example.hello
.request()
.then((body) => {
title.value = body
console.log('[API]', body, $app.name, $app.version)
Message.toast(body)
})
.catch((err) => {
console.error('[API]', err)
})
})
function surprise() {
// #ifdef APP-PLUS
const orientation = plus.navigator.getOrientation()
if (orientation === 0) {
plus.screen.lockOrientation('landscape-primary')
} else if (orientation === 90) {
plus.screen.lockOrientation('portrait-primary')
}
Message.toast('🥳 surprise~')
// #endif
// #ifndef APP-PLUS
Message.toast(`在手机上运行点击有惊喜~ ╰(*°▽°*)╯`)
// #endif
}
const animate = ref()
function handUp() {
if (animate.value) {
return
}
Message.toast('👋🏻')
animate.value = 'animate-swing'
setTimeout(() => (animate.value = null), 1500)
}
</script>
<template>
<view class="content flex-center flex-col">
<fui-avatar
src="/static/logo.png"
radius="14"
size="large"
background="transparent"
class="!mb-3"
@click="surprise"
/>
<view class="flex-center flex-col mb-3">
<text class="title">{{ title }}</text>
<text class="title">{{ $t('app.hello') }}</text>
<Icon icon="emojione-grinning-face" size="48" class="mt-3" />
<fui-divider />
<uni-icons type="hand-up" size="30" :class="[animate]" @click="handUp" />
</view>
<fui-footer isFixed>
<template #text>
<view v-if="version" @click="checkUpgrade(true)">V{{ version }}</view>
<view class="mt-1">壹润科技 版权所有</view>
<view class="mt-1">Copyright © 2021-{{ year }} Yiring. All Ringhts Reserved</view>
</template>
</fui-footer>
</view>
</template>
<style lang="less" scoped>
.content {
height: calc(100vh - 100rpx);
}
.title {
display: flex;
justify-content: center;
font-size: 36rpx;
color: #8f8f94;
}
</style>
<script setup lang="ts">
import MenuHeader from '@/components/Layout/MenuHeader.vue'
const options = ['全部消息', '应急响应', '预警信号', '临灾警报', '服务材料', '重要天气']
const value = ref<string>('全部消息')
onMounted(() => {})
</script>
<template>
<view class="bg-#fff">
<!-- 头部 -->
<!-- <Header title="消息" /> -->
<!-- tab -->
<view class="bg-#fff box-shadow-bottom pt-3.5 pl-3.2 pb-2.5">
<fui-data-tag
:modelValue="value"
:options="options"
background="#F9FAFD"
activeColor="#fff"
defaultBorderColor="#1890FF"
activeBgColor="linear-gradient(94deg, #1890FF 0%, #377ED9 100%)"
width="216"
gap="25"
/>
</view>
<!-- 内容 -->
<view class="bg-#fff p-3.5 pt-0 mt-3">
<MenuHeader title="全部消息" :otherTitleVis="false">
<template #content>
<text class="font-500 text-28 text-#1890FF">
<FuiIcon custom-prefix="font_family" name="icon-read" size="36" color="#1890FF" />
全部阅毕
</text>
</template>
</MenuHeader>
<view v-for="item in 6" :key="item" class="flex-center pt-3 pb-2 b-#EEEEEE b-solid b-0 b-b-2">
<view class="pr-5 text-left">
<text class="text-28 font-550 text-#333333"> 湖南省长沙市启动洪涝灾害 II 级 应急响应 </text>
<view class="lh-10">
<text class="b-rd-20 p-1 pl-2 pr-2 bg-#1890FF1A text-#1890FFFF text-24">未阅</text>
<text class="text-#999999FF text-24 ml-2">2023/05/23 14:00</text>
</view>
</view>
<view>
<image src="/static/images/message/fireHazard.png" class="w-204 h-154" />
</view>
</view>
</view>
</view>
</template>
export const lists = [
{
title: '应急状态管理',
icon: 'emergencyManage',
},
{
title: '用户默认层级',
icon: 'user',
},
{
title: '常用功能设置',
icon: 'common',
},
{
title: '消息推送设置',
icon: 'push',
},
{
title: '问卷调查填写',
icon: 'survey',
},
{
title: '问题意见反馈',
icon: 'feedback',
},
{
title: '关于湖南天气',
icon: 'about',
},
{
title: '值班电话号码',
icon: 'phone',
suffix: '0731-85600016',
},
{
title: '系统缓存清除',
icon: 'clear',
},
{
title: '系统检查更新',
icon: 'update',
},
]
<script setup lang="ts">
import { lists } from './constant/index'
import View from '@/components/Layout/View.vue'
const url = '/static/images/mine/provincial.png'
const bgUrl = '/static/header/mine.png'
</script>
<template>
<View>
<template #container>
<Header title="我的" class="h-405" :url="bgUrl">
<template #content>
<view
class="w-200 h-250 pos-absolute left-50% z-1 bottom-0% transform lh-8"
style="transform: translateX(-50%)"
>
<image :src="url" class="w-144 h-144" />
<text class="letter-spacing-1">18771683288</text>
</view>
</template>
</Header>
<view class="bg-#F0F2F5">
<fui-list>
<fui-list-cell arrow v-for="(item, index) in lists.slice(0, 4)" :key="index" class="border-bottom">
<FuiIcon custom-prefix="font_family" :name="`icon-${item.icon}`" color="#333333" size="42" />
<text class="ml-3.5 text-30 text-#333333 font-500">{{ item.title }}</text>
</fui-list-cell>
</fui-list>
<fui-list style="margin-top: 20rpx">
<fui-list-cell arrow v-for="(item, index) in lists.slice(4, 6)" :key="index" class="border-bottom">
<FuiIcon custom-prefix="font_family" :name="`icon-${item.icon}`" color="#333333" size="42" />
<text class="ml-3.5 text-30 text-#333333 font-500">{{ item.title }}</text>
</fui-list-cell>
</fui-list>
<fui-list style="margin-top: 20rpx">
<fui-list-cell
arrow
v-for="(item, index) in lists.slice(6, 10)"
:key="index"
class="border-bottom pos-relative"
>
<FuiIcon custom-prefix="font_family" :name="`icon-${item.icon}`" color="#333333" size="42" />
<text class="ml-3.5 text-30 text-#333333 font-500">{{ item.title }}</text>
<text v-if="item.suffix" class="text-#1890FF pos-absolute right-70">
{{ item.suffix }}
</text>
</fui-list-cell>
</fui-list>
</view>
<view class="p-6 pt-5 pb-2">
<fui-button background="#fff" radius="50rpx" color="#1890FF">退出当前账号</fui-button>
</view>
</template>
</View>
</template>
@font-face {
font-family: "font_family"; /* Project id 4105118 */
src: url('//at.alicdn.com/t/c/font_4105118_j7v7r42023c.woff2?t=1687340820798') format('woff2'),
url('//at.alicdn.com/t/c/font_4105118_j7v7r42023c.woff?t=1687340820798') format('woff'),
url('//at.alicdn.com/t/c/font_4105118_j7v7r42023c.ttf?t=1687340820798') format('truetype');
}
.font_family {
font-family: "font_family" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-about:before {
content: "\e639";
}
.icon-feedback:before {
content: "\e63a";
}
.icon-clear:before {
content: "\e63b";
}
.icon-common:before {
content: "\e63c";
}
.icon-update:before {
content: "\e63d";
}
.icon-user:before {
content: "\e63e";
}
.icon-phone:before {
content: "\e63f";
}
.icon-emergencyManage:before {
content: "\e640";
}
.icon-survey:before {
content: "\e641";
}
.icon-push:before {
content: "\e642";
}
.icon-read:before {
content: "\e638";
}
.icon-areal-rainfall-m:before {
content: "\e616";
}
.icon-radar-m:before {
content: "\e617";
}
.icon-geology-disaster-m:before {
content: "\e618";
}
.icon-rain-m:before {
content: "\e619";
}
.icon-envir-m:before {
content: "\e61a";
}
.icon-iceSnow-m:before {
content: "\e61b";
}
.icon-humidness-m:before {
content: "\e61c";
}
.icon-tem-m:before {
content: "\e61d";
}
.icon-satellite-m:before {
content: "\e61e";
}
.icon-forest-m:before {
content: "\e61f";
}
.icon-torrents-m:before {
content: "\e620";
}
.icon-typhoon-m:before {
content: "\e621";
}
.icon-light-m:before {
content: "\e622";
}
.icon-water-m:before {
content: "\e623";
}
.icon-wind-m:before {
content: "\e624";
}
.icon-situation-field-m:before {
content: "\e625";
}
.icon-important-process-w:before {
content: "\e626";
}
.icon-meeting-materials-w:before {
content: "\e627";
}
.icon-pattern-product-w:before {
content: "\e628";
}
.icon-be-onduty-w:before {
content: "\e629";
}
.icon-tem-f:before {
content: "\e62a";
}
.icon-torrents-f:before {
content: "\e62b";
}
.icon-rain-f:before {
content: "\e62c";
}
.icon-fog-f:before {
content: "\e62d";
}
.icon-envir-f:before {
content: "\e62e";
}
.icon-geology-disaster-f:before {
content: "\e62f";
}
.icon-grid-f:before {
content: "\e630";
}
.icon-areal-rainfall-f:before {
content: "\e631";
}
.icon-forest-fire-f:before {
content: "\e632";
}
.icon-drought-c:before {
content: "\e633";
}
.icon-metaphase-climate-c:before {
content: "\e634";
}
.icon-rain-c:before {
content: "\e635";
}
.icon-service-product-c:before {
content: "\e636";
}
.icon-tem-c:before {
content: "\e637";
}
.icon-gw:before {
content: "\e615";
}
.icon-bianzu:before {
content: "\e611";
}
.icon-location:before {
content: "\e610";
}
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 36</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -1104.000000)" fill-rule="nonzero">
<g id="编组-36" transform="translate(31.500000, 1104.000000)">
<path d="M36.4256784,33.4495296 L33.2669336,33.4495296 L30.4271465,29.5099446 C30.2040551,29.200454 30.1765012,28.790992 30.3561158,28.454402 L33.6162859,22.3449874 C33.7846408,22.0294978 33.7717161,21.6481215 33.5823884,21.3447537 L29.2403256,14.3872797 L29.2403256,14.3872797 C29.1264807,14.2018706 28.9416696,14.0697112 28.7277924,14.0207643 C28.5139151,13.9718173 28.2890889,14.0102291 28.1042858,14.1272911 C27.7177704,14.3771201 27.6032088,14.885651 27.846005,15.2737823 L31.6764348,21.4103001 C31.8657762,21.7136334 31.8787437,22.0949819 31.7104451,22.4104765 L28.4153957,28.5874177 C28.2358666,28.9239653 28.2634297,29.3333321 28.4864542,29.6427753 L31.2293849,33.4485522 L31.2293849,33.4485522 L26.8989753,33.4485522 L24.0575712,29.5100235 C23.8342731,29.2005053 23.8066261,28.790875 23.9863082,28.4541587 L27.2463484,22.3449874 C27.4147033,22.0294978 27.4017786,21.6481215 27.2124509,21.3447537 L22.8703881,14.3872797 L22.8703881,14.3872797 C22.756734,14.2019345 22.5720982,14.0697916 22.3583806,14.0208386 C22.144663,13.9718856 21.9199867,14.0102736 21.7353379,14.1272911 C21.3483575,14.3768023 21.2337034,14.8857442 21.4770571,15.2737823 L25.3074493,21.4102399 C25.4968108,21.7136054 25.5097596,22.0949999 25.3414095,22.4105101 L22.0456009,28.5872912 C21.8659922,28.9239016 21.8935721,29.3333805 22.1166976,29.6428653 L24.8604369,33.4485522 L24.8604369,33.4485522 L20.5300274,33.4485522 L17.6903354,29.5099654 C17.4671897,29.2004675 17.4396113,28.7909613 17.6192437,28.4543381 L20.8793797,22.3449874 C21.0477345,22.0294978 21.0348099,21.6481215 20.8454822,21.3447537 L16.5034194,14.3872797 L16.5034194,14.3872797 C16.3895744,14.2018706 16.2047634,14.0697112 15.9908861,14.0207643 C15.7770089,13.9718173 15.5521827,14.0102291 15.3673796,14.1272911 C14.9812115,14.3774343 14.8671032,14.8859015 15.1100883,15.2737823 L18.9395816,21.4102678 C19.1288902,21.7136211 19.1418169,22.0949706 18.973485,22.4104469 L15.6776074,28.587357 C15.498017,28.9239332 15.5255717,29.3333666 15.7486412,29.6428439 L18.4924786,33.4495296 L18.4924786,33.4495296 L14.3243604,33.4495296 C13.8645606,33.4543633 13.4956439,33.8261752 13.5,34.2803203 C13.5,34.7396988 13.8701424,35.1111111 14.3243604,35.1111111 L36.4256784,35.1111111 C36.880886,35.1111111 37.25,34.7396988 37.25,34.2803203 C37.25,33.8219193 36.8818756,33.4495296 36.4256784,33.4495296 Z" id="路径" fill="#63C56D"></path>
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-26" fill="#EEEEEE"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 33</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -1006.000000)" fill-rule="nonzero">
<g id="编组-33" transform="translate(294.500000, 1006.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-27" fill="#EEEEEE"></path>
<path d="M19.7273,9.75 C24.3582797,9.75 28.3993399,12.920942 29.9901159,17.5220855 L30.081,17.795 L30.1239175,17.7778833 C30.8339977,17.4987182 31.5831356,17.3364676 32.3514375,17.3002669 L32.681825,17.2924963 C36.8794692,17.2924963 40.25,21.0211389 40.25,25.5850741 C40.25,28.8947048 38.4635435,31.856705 35.7355021,33.1752614 C35.3625655,33.3555145 34.9141167,33.1993137 34.7338636,32.8263771 C34.5536105,32.4534405 34.7098113,32.0049917 35.0827479,31.8247386 C37.2832353,30.7611672 38.75,28.3292259 38.75,25.5850741 C38.75,21.8176768 36.0153683,18.7924963 32.681825,18.7924963 C31.7267138,18.7924963 30.8040238,19.0394559 29.9682052,19.5085683 C29.5354427,19.7514611 28.9903338,19.5146275 28.8725536,19.0325401 C27.7560185,14.4624367 24.0161588,11.25 19.7273,11.25 C14.5109622,11.25 10.25,15.9636331 10.25,21.8137852 C10.25,25.1973586 11.6865524,28.3081476 14.0702291,30.2887947 C14.3888144,30.553514 14.4324815,31.0263757 14.1677622,31.344961 C13.903043,31.6635463 13.4301812,31.7072134 13.1115959,31.4424942 C10.3823275,29.1746876 8.75,25.6399565 8.75,21.8137852 C8.75,15.1670922 13.6468651,9.75 19.7273,9.75 Z" id="路径" fill="#63C56D"></path>
<path d="M27,28.75 C24.1005114,28.75 21.75,31.1005114 21.75,34 C21.75,36.8994886 24.1005114,39.25 27,39.25 C29.8994886,39.25 32.25,36.8994886 32.25,34 C32.25,31.1005114 29.8994886,28.75 27,28.75 Z M27,30.25 C29.0710614,30.25 30.75,31.9289386 30.75,34 C30.75,36.0710614 29.0710614,37.75 27,37.75 C24.9289386,37.75 23.25,36.0710614 23.25,34 C23.25,31.9289386 24.9289386,30.25 27,30.25 Z" id="路径" fill="#63C56D"></path>
<path d="M20.1863101,15.75 C21.6471183,15.75 23.0179784,16.3298453 24.0303545,17.3423146 C24.3232342,17.6352213 24.3232124,18.110095 24.0303057,18.4029747 C23.737399,18.6958545 23.2625252,18.6958326 22.9696455,18.4029259 C22.2357933,17.6690061 21.2451863,17.25 20.1863101,17.25 C18.0123527,17.25 16.25,19.0123527 16.25,21.1863101 C16.25,22.2451863 16.6690061,23.2357933 17.4029259,23.9696455 C17.6958326,24.2625252 17.6958545,24.737399 17.4029747,25.0303057 C17.110095,25.3232124 16.6352213,25.3232342 16.3423146,25.0303545 C15.3298453,24.0179784 14.75,22.6471183 14.75,21.1863101 C14.75,18.1839256 17.1839256,15.75 20.1863101,15.75 Z" id="路径" fill="#63C56D"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 42</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -1006.000000)">
<g id="编组-42" transform="translate(31.500000, 1006.000000)">
<g id="编组-32" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-26" fill="#EEEEEE"></path>
<path d="M36.5638019,13.2427352 C36.9418417,13.2781575 37.2279459,13.5883553 37.24324,13.9574674 L37.2405624,14.0594329 L35.1523856,36.3451814 C35.026036,37.6929638 33.7146548,38.672247 32.1631381,38.7455827 L31.9758639,38.75 L17.0241361,38.75 C15.4549204,38.75 14.0880443,37.8225547 13.8684008,36.5050781 L13.8476108,36.3451432 L11.7595563,14.0594289 C11.7209159,13.6470216 12.0239138,13.2813752 12.4363211,13.2427348 C12.8143612,13.2073144 13.1531091,13.4589652 13.2367047,13.8188116 L13.2530153,13.9194996 L15.3410662,36.2051758 C15.3886994,36.7132827 16.0142686,37.1869917 16.8535403,37.2442205 L17.0241361,37.25 L31.9758639,37.25 C32.8420104,37.25 33.5187368,36.8080477 33.6418066,36.3062535 L33.6589306,36.20521 L35.7471041,13.9194957 C35.7825265,13.5414558 36.0927243,13.2553517 36.4618364,13.2400576 L36.5638019,13.2427352 Z" id="路径" fill="#63C56D"></path>
<path d="M29.497154,17 C28.1142857,17 27,15.9897336 27,14.7486979 C27,13.5076623 29.497154,11 29.497154,11 C29.497154,11 32,13.5076873 32,14.7486979 C32,15.9897085 30.8800223,17 29.497154,17 Z" id="路径" fill="#63C56D"></path>
<path d="M26.4971122,22 C25.1142795,22 24,20.9897336 24,19.7486979 C24,18.5076623 26.4971122,16 26.4971122,16 C26.4971122,16 29,18.5076873 29,19.7486979 C29,20.9897085 27.8800007,22 26.4971401,22 L26.4971122,22 Z" id="路径" fill="#63C56D"></path>
<path d="M18.587596,25.8139947 C20.4237925,25.0025822 22.5150814,24.971374 24.6438713,26.2104352 L24.8994922,26.3652513 C26.6550149,27.4701257 28.3213144,27.4701257 29.8061145,26.8139947 C30.1712043,26.6526621 30.4249343,26.496134 30.5427169,26.405532 C30.8710325,26.1529815 31.3419175,26.2144013 31.594468,26.5427169 C31.8470185,26.8710325 31.7855987,27.3419175 31.4572831,27.594468 C31.2500657,27.753866 30.8959254,27.9723379 30.412404,28.1860053 C28.5762075,28.9974178 26.4849186,29.028626 24.3561287,27.7895648 L24.1005078,27.6347487 C22.3449851,26.5298743 20.6786856,26.5298743 19.1938855,27.1860053 C18.8287957,27.3473379 18.5750657,27.503866 18.4572831,27.594468 C18.1289675,27.8470185 17.6580825,27.7855987 17.405532,27.4572831 C17.1529815,27.1289675 17.2144013,26.6580825 17.5427169,26.405532 C17.7499343,26.246134 18.1040746,26.0276621 18.587596,25.8139947 Z" id="路径" fill="#63C56D"></path>
<path d="M18.587596,30.8139947 C20.4237925,30.0025822 22.5150814,29.971374 24.6438713,31.2104352 L24.8994922,31.3652513 C26.6550149,32.4701257 28.3213144,32.4701257 29.8061145,31.8139947 C30.1712043,31.6526621 30.4249343,31.496134 30.5427169,31.405532 C30.8710325,31.1529815 31.3419175,31.2144013 31.594468,31.5427169 C31.8470185,31.8710325 31.7855987,32.3419175 31.4572831,32.594468 C31.2500657,32.753866 30.8959254,32.9723379 30.412404,33.1860053 C28.5762075,33.9974178 26.4849186,34.028626 24.3561287,32.7895648 L24.1005078,32.6347487 C22.3449851,31.5298743 20.6786856,31.5298743 19.1938855,32.1860053 C18.8287957,32.3473379 18.5750657,32.503866 18.4572831,32.594468 C18.1289675,32.8470185 17.6580825,32.7855987 17.405532,32.4572831 C17.1529815,32.1289675 17.2144013,31.6580825 17.5427169,31.405532 C17.7499343,31.246134 18.1040746,31.0276621 18.587596,30.8139947 Z" id="路径" fill="#63C56D"></path>
<path d="M19.4971122,19 C18.1142795,19 17,17.9897586 17,16.748723 C17,15.5076873 19.4971122,13 19.4971122,13 C19.4971122,13 22,15.5076873 22,16.748723 C22,17.9897586 20.8800007,19 19.4971401,19 L19.4971122,19 Z" id="路径" fill="#63C56D"></path>
</g>
<rect id="矩形" x="8.5" y="8" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 41</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -1006.000000)">
<g id="编组-41" transform="translate(207.500000, 1006.000000)">
<g id="编组-25" fill-rule="nonzero">
<path d="M9.5982325,18.051371 C11.8859012,13.4096338 16.6572709,10.7320957 21.5965409,11.3337902 C26.2260631,11.8977609 30.0881008,15.2312706 31.5612169,19.8215368 L31.666,20.169 L32.8581489,20.1692473 C36.2961124,20.1664417 39.2462057,22.0827895 40.3084381,25.2193693 L40.3904004,25.4763468 C41.4040278,28.8601953 40.2263654,32.5501837 37.4678594,34.6018026 C37.135493,34.8489978 36.6656655,34.7799528 36.4184704,34.4475864 C36.1712753,34.11522 36.2403202,33.6453925 36.5726867,33.3981974 C38.8194466,31.7271859 39.7879556,28.692541 38.9534826,25.9067737 C38.1916251,23.3634225 35.8996389,21.765811 33.1206829,21.6734764 L32.858761,21.6692471 L31.0913881,21.6692471 C30.7452865,21.6692471 30.4441292,21.4324159 30.3625305,21.0960709 C29.2795945,16.6322701 25.7175379,13.3469013 21.4151526,12.8227826 C17.1181045,12.2993226 12.9536257,14.6362932 10.9437006,18.7144816 C8.92566032,22.8091358 9.504005,27.8000981 12.3933728,31.2535011 C12.6591714,31.5711864 12.6171089,32.0441936 12.2994236,32.3099923 C11.9817383,32.5757909 11.5087311,32.5337284 11.2429324,32.2160431 C7.97093337,28.3053151 7.31868938,22.6766211 9.5982325,18.051371 Z" id="路径" fill="#63C56D"></path>
<path d="M33,32.25 L17,32.25 C16.5857864,32.25 16.25,32.5857864 16.25,33 L16.25,37 C16.25,37.4142136 16.5857864,37.75 17,37.75 L33,37.75 C33.4142136,37.75 33.75,37.4142136 33.75,37 L33.75,33 C33.75,32.5857864 33.4142136,32.25 33,32.25 Z M32.25,33.75 L32.25,36.25 L17.75,36.25 L17.75,33.75 L32.25,33.75 Z" id="矩形" fill="#63C56D"></path>
<path d="M33,26.75 C33.4142136,26.75 33.75,27.0857864 33.75,27.5 C33.75,27.8796958 33.4678461,28.193491 33.1017706,28.2431534 L33,28.25 L24,28.25 C23.5857864,28.25 23.25,27.9142136 23.25,27.5 C23.25,27.1203042 23.5321539,26.806509 23.8982294,26.7568466 L24,26.75 L33,26.75 Z" id="路径" fill="#63C56D"></path>
<path d="M18,26.75 C18.4142136,26.75 18.75,27.0857864 18.75,27.5 C18.75,27.8796958 18.4678461,28.193491 18.1017706,28.2431534 L18,28.25 L17,28.25 C16.5857864,28.25 16.25,27.9142136 16.25,27.5 C16.25,27.1203042 16.5321539,26.806509 16.8982294,26.7568466 L17,26.75 L18,26.75 Z" id="路径" fill="#63C56D"></path>
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-27" fill="#EEEEEE"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 24</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -1006.000000)" fill-rule="nonzero">
<g id="编组-24" transform="translate(119.500000, 1006.000000)">
<path d="M39.9482759,14.3055556 C40.3624894,14.3055556 40.6982759,14.641342 40.6982759,15.0555556 C40.6982759,15.4352513 40.416122,15.7490465 40.0500464,15.7987089 L39.9482759,15.8055556 L28.9137931,15.8055556 C28.4995795,15.8055556 28.1637931,15.4697691 28.1637931,15.0555556 C28.1637931,14.6758598 28.445947,14.3620646 28.8120225,14.3124022 L28.9137931,14.3055556 L39.9482759,14.3055556 Z" id="直线" fill="#63C56D"></path>
<path d="M34.9827586,18.75 C35.3969722,18.75 35.7327586,19.0857864 35.7327586,19.5 C35.7327586,19.8796958 35.4506047,20.193491 35.0845292,20.2431534 L34.9827586,20.25 L28.362069,20.25 C27.9478554,20.25 27.612069,19.9142136 27.612069,19.5 C27.612069,19.1203042 27.8942228,18.806509 28.2602984,18.7568466 L28.362069,18.75 L34.9827586,18.75 Z" id="直线备份" fill="#63C56D"></path>
<path d="M31.6724138,23.1944444 C32.0866274,23.1944444 32.4224138,23.5302309 32.4224138,23.9444444 C32.4224138,24.3241402 32.1402599,24.6379354 31.7741844,24.6875978 L31.6724138,24.6944444 L28.362069,24.6944444 C27.9478554,24.6944444 27.612069,24.358658 27.612069,23.9444444 C27.612069,23.5647487 27.8942228,23.2509535 28.2602984,23.2012911 L28.362069,23.1944444 L31.6724138,23.1944444 Z" id="直线备份-2" fill="#63C56D"></path>
<path d="M18.7001868,9.75406178 C15.6066451,9.86475028 13.1127586,12.2240415 13.1127586,15.15 L13.112,27.168 L12.95664,27.2867602 C10.9373422,28.8822215 9.7362069,31.2214738 9.7362069,33.75 C9.7362069,38.4593705 13.8649993,42.25 18.9275862,42.25 C23.9901731,42.25 28.1189655,38.4593705 28.1189655,33.75 L28.1136568,33.4591185 C28.0253602,31.0426316 26.8401649,28.8208576 24.8985325,27.2867602 L24.742,27.168 L24.7424138,15.15 C24.7424138,12.1526767 22.1253908,9.75 18.9275862,9.75 L18.7001868,9.75406178 Z M18.9275862,11.25 C21.3242272,11.25 23.2424138,13.0110782 23.2424138,15.15 L23.2424138,27.5494575 C23.2424138,27.7960518 23.3636316,28.0268899 23.5666362,28.1668823 C25.4790065,29.4856573 26.6189655,31.5343565 26.6189655,33.75 C26.6189655,37.6009695 23.1890092,40.75 18.9275862,40.75 C14.6661632,40.75 11.2362069,37.6009695 11.2362069,33.75 C11.2362069,31.5343565 12.3761659,29.4856573 14.2885362,28.1668823 C14.4915408,28.0268899 14.6127586,27.7960518 14.6127586,27.5494575 L14.6127586,15.15 C14.6127586,13.0110782 16.5309452,11.25 18.9275862,11.25 Z" id="路径" fill="#63C56D"></path>
<path d="M18.9275862,20.4396552 C19.307282,20.4396552 19.6210772,20.7218091 19.6707396,21.0878846 L19.6775862,21.1896552 L19.6775862,30.8103448 C19.6775862,31.2245584 19.3417998,31.5603448 18.9275862,31.5603448 C18.5478904,31.5603448 18.2340952,31.2781909 18.1844328,30.9121154 L18.1775862,30.8103448 L18.1775862,21.1896552 C18.1775862,20.7754416 18.5133726,20.4396552 18.9275862,20.4396552 Z" id="路径" fill="#63C56D"></path>
<path d="M18.8613793,30.0603448 C16.5907808,30.0603448 14.7348276,31.8230455 14.7348276,34.0172414 C14.7348276,36.2114373 16.5907808,37.9741379 18.8613793,37.9741379 C21.1319778,37.9741379 22.987931,36.2114373 22.987931,34.0172414 C22.987931,31.8230455 21.1319778,30.0603448 18.8613793,30.0603448 Z M18.8613793,31.5603448 C20.320351,31.5603448 21.487931,32.6692597 21.487931,34.0172414 C21.487931,35.3652231 20.320351,36.4741379 18.8613793,36.4741379 C17.4024076,36.4741379 16.2348276,35.3652231 16.2348276,34.0172414 C16.2348276,32.6692597 17.4024076,31.5603448 18.8613793,31.5603448 Z" id="路径" fill="#63C56D"></path>
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-28" fill="#EEEEEE"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 43</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -734.000000)">
<g id="编组-43" transform="translate(119.500000, 734.000000)">
<g id="编组-18" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-21" fill="#EEEEEE"></path>
<path d="M18.3913043,34.2934783 C18.8055179,34.2934783 19.1413043,34.6292647 19.1413043,35.0434783 C19.1413043,35.423174 18.8591505,35.7369692 18.4930749,35.7866316 L18.3913043,35.7934783 L12,35.7934783 C11.5857864,35.7934783 11.25,35.4576918 11.25,35.0434783 C11.25,34.6637825 11.5321539,34.3499873 11.8982294,34.3003249 L12,34.2934783 L18.3913043,34.2934783 Z" id="路径" fill="#FF9A03"></path>
<path d="M25.6956522,30.6413043 C26.1098657,30.6413043 26.4456522,30.9770908 26.4456522,31.3913043 C26.4456522,31.7710001 26.1634983,32.0847953 25.7974227,32.1344577 L25.6956522,32.1413043 L12.9130435,32.1413043 C12.4988299,32.1413043 12.1630435,31.8055179 12.1630435,31.3913043 C12.1630435,31.0116086 12.4451974,30.6978134 12.8112729,30.648151 L12.9130435,30.6413043 L25.6956522,30.6413043 Z" id="路径" fill="#FF9A03"></path>
<path d="M26.6086957,34.2934783 C27.0229092,34.2934783 27.3586957,34.6292647 27.3586957,35.0434783 C27.3586957,35.423174 27.0765418,35.7369692 26.7104662,35.7866316 L26.6086957,35.7934783 L23.8695652,35.7934783 C23.4553517,35.7934783 23.1195652,35.4576918 23.1195652,35.0434783 C23.1195652,34.6637825 23.4017191,34.3499873 23.7677947,34.3003249 L23.8695652,34.2934783 L26.6086957,34.2934783 Z" id="路径" fill="#FF9A03"></path>
<path d="M37.5652174,34.2934783 C37.979431,34.2934783 38.3152174,34.6292647 38.3152174,35.0434783 C38.3152174,35.423174 38.0330635,35.7369692 37.6669879,35.7866316 L37.5652174,35.7934783 L33.9130435,35.7934783 C33.4988299,35.7934783 33.1630435,35.4576918 33.1630435,35.0434783 C33.1630435,34.6637825 33.4451974,34.3499873 33.8112729,34.3003249 L33.9130435,34.2934783 L37.5652174,34.2934783 Z" id="路径" fill="#FF9A03"></path>
<path d="M37.5652174,30.6413043 C37.979431,30.6413043 38.3152174,30.9770908 38.3152174,31.3913043 C38.3152174,31.7710001 38.0330635,32.0847953 37.6669879,32.1344577 L37.5652174,32.1413043 L33,32.1413043 C32.5857864,32.1413043 32.25,31.8055179 32.25,31.3913043 C32.25,31.0116086 32.5321539,30.6978134 32.8982294,30.648151 L33,30.6413043 L37.5652174,30.6413043 Z" id="路径" fill="#FF9A03"></path>
<path d="M37.5652174,25.1630435 C37.979431,25.1630435 38.3152174,25.4988299 38.3152174,25.9130435 C38.3152174,26.2927392 38.0330635,26.6065344 37.6669879,26.6561969 L37.5652174,26.6630435 L30.2608696,26.6630435 C29.846656,26.6630435 29.5108696,26.327257 29.5108696,25.9130435 C29.5108696,25.5333477 29.7930234,25.2195525 30.159099,25.1698901 L30.2608696,25.1630435 L37.5652174,25.1630435 Z" id="路径" fill="#FF9A03"></path>
<path d="M22.9565217,25.1630435 C23.3707353,25.1630435 23.7065217,25.4988299 23.7065217,25.9130435 C23.7065217,26.2927392 23.4243679,26.6065344 23.0582923,26.6561969 L22.9565217,26.6630435 L19.3043478,26.6630435 C18.8901343,26.6630435 18.5543478,26.327257 18.5543478,25.9130435 C18.5543478,25.5333477 18.8365017,25.2195525 19.2025773,25.1698901 L19.3043478,25.1630435 L22.9565217,25.1630435 Z" id="路径" fill="#FF9A03"></path>
<path d="M13.826087,25.1630435 C14.2403005,25.1630435 14.576087,25.4988299 14.576087,25.9130435 C14.576087,26.2927392 14.2939331,26.6065344 13.9278575,26.6561969 L13.826087,26.6630435 L12.9130435,26.6630435 C12.4988299,26.6630435 12.1630435,26.327257 12.1630435,25.9130435 C12.1630435,25.5333477 12.4451974,25.2195525 12.8112729,25.1698901 L12.9130435,25.1630435 L13.826087,25.1630435 Z" id="路径" fill="#FF9A03"></path>
<path d="M14.7391304,19.6847826 C15.153344,19.6847826 15.4891304,20.020569 15.4891304,20.4347826 C15.4891304,20.8144784 15.2069766,21.1282736 14.840901,21.177936 L14.7391304,21.1847826 L12.9130435,21.1847826 C12.4988299,21.1847826 12.1630435,20.8489962 12.1630435,20.4347826 C12.1630435,20.0550868 12.4451974,19.7412916 12.8112729,19.6916292 L12.9130435,19.6847826 L14.7391304,19.6847826 Z" id="路径" fill="#FF9A03"></path>
<path d="M17.2271739,13.75 C17.3783261,13.75 17.525023,13.7956397 17.6486378,13.8796197 L17.7367299,13.9496795 L22.452,18.315 L37.5652174,18.3152174 C37.9449132,18.3152174 38.2587084,18.5973713 38.3083708,18.9634468 L38.3152174,19.0652174 C38.3152174,19.4449132 38.0330635,19.7587084 37.6669879,19.8083708 L37.5652174,19.8152174 L22.1576087,19.8152174 C22.0064565,19.8152174 21.8597596,19.7695777 21.7361448,19.6855977 L21.6480527,19.6155379 L16.933,15.25 L12.9130435,15.25 C12.5333477,15.25 12.2195525,14.9678461 12.1698901,14.6017706 L12.1630435,14.5 C12.1630435,14.1203042 12.4451974,13.806509 12.8112729,13.7568466 L12.9130435,13.75 L17.2271739,13.75 Z" id="路径" fill="#FF9A03"></path>
<path d="M37.5652174,14.2065217 C37.979431,14.2065217 38.3152174,14.5423082 38.3152174,14.9565217 C38.3152174,15.3362175 38.0330635,15.6500127 37.6669879,15.6996751 L37.5652174,15.7065217 L23.8695652,15.7065217 C23.4553517,15.7065217 23.1195652,15.3707353 23.1195652,14.9565217 C23.1195652,14.576826 23.4017191,14.2630308 23.7677947,14.2133684 L23.8695652,14.2065217 L37.5652174,14.2065217 Z" id="路径" fill="#FF9A03"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 45</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -636.000000)">
<g id="编组-45" transform="translate(294.500000, 636.000000)">
<g id="编组-21" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-22" fill="#EEEEEE"></path>
<path d="M23.0333516,12.1747636 C27.2181161,12.6519956 30.4157258,13.5115431 32.2922732,14.887271 C34.1840473,16.2741549 35.3423723,18.5816494 35.9259315,21.5329729 C36.3757658,23.8079891 36.4437649,26.2033265 36.2921098,28.3775305 L36.2662229,28.7170844 L36.2311316,29.089894 C36.2276774,29.1217775 36.2244106,29.1503932 36.2213704,29.1756537 C36.1718743,29.5868994 35.7983693,29.8801554 35.3871236,29.8306593 C34.9758779,29.7811632 34.6826219,29.4076582 34.732118,28.9964126 L34.7718669,28.5870697 L34.7957455,28.273156 C34.93896,26.2199615 34.8744725,23.9483222 34.454421,21.8239316 C33.9369283,19.2067363 32.941017,17.2227854 31.4053997,16.0970046 C29.7991579,14.9194422 26.8051397,14.114622 22.8633926,13.6651038 C19.8589359,13.3224745 16.7040609,13.2176472 13.904397,13.2547195 L13.26,13.266 L13.2763532,13.8188162 L13.311843,14.718949 L13.3629472,15.6838737 C13.5041741,18.0504013 13.7582816,20.415991 14.1524952,22.6179265 C14.8409002,26.46311 15.8848626,29.3787111 17.2913741,30.9499671 C18.4334524,32.225817 19.9371949,33.1696419 21.722508,33.8196474 C23.0624991,34.3075179 24.502215,34.6091924 25.9681341,34.7575867 C26.8498723,34.8468446 27.6429727,34.8724171 28.2984908,34.8583112 L28.7693466,34.8395807 C29.1823941,34.8085231 29.5424125,35.1181871 29.5734702,35.5312347 C29.6045278,35.9442823 29.2948638,36.3043007 28.8818162,36.3353583 L28.6316506,36.3486742 C26.4478665,36.4372478 23.7880138,36.1679922 21.2093351,35.2291344 C19.2059476,34.4997313 17.4938168,33.4251113 16.1737422,31.9504165 C14.5328128,30.1172852 13.4097059,26.9806474 12.6759713,22.8822693 C12.2702307,20.6159482 12.0100821,18.1941201 11.8656111,15.77323 C11.8352963,15.2652467 11.8114738,14.7789464 11.793364,14.3186067 L11.7645301,13.4338088 L11.7509769,12.7128074 L11.75,12.53694 C11.75,12.1345993 12.0674714,11.8039345 12.4694788,11.7875613 L13.1159494,11.7686637 C16.1574092,11.6995243 19.6764058,11.7919363 23.0333516,12.1747636 Z" id="路径" fill="#FF9A03"></path>
<path d="M20.2064614,18.0320519 C20.587632,17.869935 21.0280535,18.0475131 21.1901704,18.4286837 L21.2878815,18.6470802 L21.517211,19.1251768 C21.7986328,19.6949401 22.1402481,20.3322612 22.5429301,21.020614 C23.6953103,22.9905159 25.1029831,24.9684541 26.7717567,26.8226496 C27.1294499,27.220087 27.517254,27.6315854 27.9331215,28.0557944 C28.6747252,28.812273 29.4991006,29.602683 30.3919635,30.418091 C31.82669,31.7283564 33.3658746,33.0387026 34.9052678,34.2856741 L35.5325731,34.7901741 L36.9532197,35.9024284 C37.2832494,36.1527347 37.347878,36.62319 37.0975716,36.9532197 C36.8472653,37.2832494 36.37681,37.347878 36.0467803,37.0975716 L35.4701496,36.6521442 L34.8994636,36.2032327 L33.9611064,35.4512466 C32.4002804,34.1869137 30.8392457,32.8579659 29.3804341,31.5257048 C28.4682394,30.692642 27.6242183,29.8833958 26.8619825,29.1058711 C26.4317051,28.6669633 26.0293565,28.2400318 25.6568148,27.8260959 C23.9152383,25.8910082 22.4492647,23.8311508 21.2481984,21.7780239 C20.9113791,21.2022582 20.6147481,20.6593819 20.3576965,20.1577838 L20.0988707,19.6396134 L19.9219723,19.2669951 L19.8098296,19.0157608 C19.6477128,18.6345902 19.8252909,18.1941687 20.2064614,18.0320519 Z" id="路径" fill="#FF9A03"></path>
<path d="M27.6939348,18.8656983 C28.0713082,18.9076287 28.3520255,19.2227097 28.3609578,19.5920306 L28.3565239,19.6939348 L27.467635,27.6939348 C27.4218928,28.1056149 27.0510787,28.4022661 26.6393986,28.3565239 C26.2620251,28.3145935 25.9813079,27.9995125 25.9723755,27.6301917 L25.9768094,27.5282875 L26.8656983,19.5282875 C26.9076287,19.150914 27.2227097,18.8701968 27.5920306,18.8612644 L27.6939348,18.8656983 Z" id="路径" fill="#FF9A03"></path>
<path d="M20.606066,25.9797601 L26.8282882,26.868649 C27.2383387,26.9272276 27.523263,27.3071266 27.4646843,27.7171771 C27.4109873,28.0930568 27.0872918,28.3637956 26.7178722,28.361188 L26.6161562,28.3535732 L20.393934,27.4646843 C19.9838835,27.4061057 19.6989592,27.0262067 19.7575379,26.6161562 C19.811235,26.2402766 20.1349304,25.9695378 20.50435,25.9721454 L20.606066,25.9797601 Z" id="路径" fill="#FF9A03"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 44</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -734.000000)">
<g id="编组-44" transform="translate(31.500000, 734.000000)">
<g id="编组-17" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-17" fill="#EEEEEE"></path>
<path d="M19.7382717,10.75 C24.3462517,10.75 28.3746426,13.8040054 29.9696101,18.244757 L30.065,18.521 L30.1175655,18.5000624 C30.8245048,18.2310375 31.5699833,18.07476 32.3343375,18.0398941 L32.6630162,18.0324102 C36.846027,18.0324102 40.2155172,21.63966 40.2155172,26.0648991 C40.2155172,29.2758858 38.4266447,32.1462142 35.701811,33.4207362 C35.3266126,33.5962326 34.8801861,33.4343422 34.7046897,33.0591438 C34.5291932,32.6839453 34.6910837,32.2375189 35.0662821,32.0620224 C37.2586473,31.0365589 38.7155172,28.6989439 38.7155172,26.0648991 C38.7155172,22.4460931 35.9938798,19.5324102 32.6630162,19.5324102 C31.7065688,19.5324102 30.7830065,19.7716293 29.9473692,20.2255106 C29.5171615,20.4591805 28.9820494,20.2247142 28.8622137,19.7500357 C27.7512193,15.3493025 24.0227966,12.25 19.7382717,12.25 C14.528942,12.25 10.2844828,16.7939131 10.2844828,22.4236547 C10.2844828,25.6774657 11.7127556,28.6705561 14.085978,30.5789049 C14.4087751,30.8384716 14.4600335,31.3105708 14.2004668,31.633368 C13.9409001,31.9561651 13.4688009,32.0074235 13.1460037,31.7478568 C10.4180349,29.5542503 8.78448276,26.1309764 8.78448276,22.4236547 C8.78448276,15.9874769 13.6767984,10.75 19.7382717,10.75 Z" id="路径" fill="#FF9A03"></path>
<path d="M19.8522994,16.5431034 C21.2696647,16.5431034 22.59981,17.1057271 23.5820786,18.0880863 C23.8749584,18.380993 23.8749365,18.8558667 23.5820298,19.1487465 C23.2891231,19.4416262 22.8142494,19.4416043 22.5213696,19.1486976 C21.8176248,18.444888 20.8677328,18.0431034 19.8522994,18.0431034 C17.7675893,18.0431034 16.0775862,19.7331065 16.0775862,21.8178167 C16.0775862,22.83325 16.4793707,23.783142 17.1831804,24.4868869 C17.4760871,24.7797666 17.4761089,25.2546403 17.1832292,25.547547 C16.8903495,25.8404537 16.4154758,25.8404756 16.122569,25.5475959 C15.1402099,24.5653272 14.5775862,23.235182 14.5775862,21.8178167 C14.5775862,18.9046794 16.9391622,16.5431034 19.8522994,16.5431034 Z" id="路径" fill="#FF9A03"></path>
<path d="M28.8448276,32.4741379 C29.2590411,32.4741379 29.5948276,32.8099244 29.5948276,33.2241379 C29.5948276,33.6038337 29.3126737,33.9176289 28.9465981,33.9672913 L28.8448276,33.9741379 L23.0517241,33.9741379 C22.6375106,33.9741379 22.3017241,33.6383515 22.3017241,33.2241379 C22.3017241,32.8444422 22.583878,32.530647 22.9499536,32.4809845 L23.0517241,32.4741379 L28.8448276,32.4741379 Z" id="路径" fill="#FF9A03"></path>
<path d="M22.0862069,38.2672414 C22.5004205,38.2672414 22.8362069,38.6030278 22.8362069,39.0172414 C22.8362069,39.3969371 22.554053,39.7107323 22.1879775,39.7603948 L22.0862069,39.7672414 L14.362069,39.7672414 C13.9478554,39.7672414 13.612069,39.4314549 13.612069,39.0172414 C13.612069,38.6375456 13.8942228,38.3237504 14.2602984,38.274088 L14.362069,38.2672414 L22.0862069,38.2672414 Z" id="路径" fill="#FF9A03"></path>
<path d="M36.5689655,38.2672414 C36.9831791,38.2672414 37.3189655,38.6030278 37.3189655,39.0172414 C37.3189655,39.3969371 37.0368116,39.7107323 36.6707361,39.7603948 L36.5689655,39.7672414 L28.8448276,39.7672414 C28.430614,39.7672414 28.0948276,39.4314549 28.0948276,39.0172414 C28.0948276,38.6375456 28.3769815,38.3237504 28.743057,38.274088 L28.8448276,38.2672414 L36.5689655,38.2672414 Z" id="路径" fill="#FF9A03"></path>
<path d="M32.7068966,26.6810345 C33.1211101,26.6810345 33.4568966,27.0168209 33.4568966,27.4310345 C33.4568966,27.8107302 33.1747427,28.1245254 32.8086671,28.1741879 L32.7068966,28.1810345 L26.9137931,28.1810345 C26.4995795,28.1810345 26.1637931,27.845248 26.1637931,27.4310345 C26.1637931,27.0513387 26.445947,26.7375435 26.8120225,26.6878811 L26.9137931,26.6810345 L32.7068966,26.6810345 Z" id="路径" fill="#FF9A03"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 29</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -832.000000)" fill-rule="nonzero">
<g id="编组-29" transform="translate(31.500000, 832.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-13" fill="#EEEEEE"></path>
<g id="编组" transform="translate(11.500000, 11.000000)" fill="#FF9A03">
<path d="M18.5382462,16.6345904 C18.4386615,16.5065286 18.2973996,16.417414 18.1389924,16.3827225 C15.4239534,15.7901087 13.5278527,13.449753 13.5278527,10.6914158 C13.5278527,9.56496701 13.927674,8.5146181 14.7165336,7.56933247 C15.3277579,6.83672901 15.9540216,6.44543926 15.958278,6.44288367 C16.1248466,6.34151179 16.2409054,6.17454635 16.2780783,5.98287684 C16.3152512,5.79149129 16.2698492,5.59300686 16.1535066,5.43654775 L12.4660136,0.487215084 C12.4609059,0.480116213 12.4555144,0.473301297 12.4498392,0.466486382 C12.2401387,0.206099803 11.9413368,0.0428257769 11.609051,0.00733142324 C11.2767652,-0.0284468852 10.9504384,0.067529847 10.6899445,0.27765642 C10.6205522,0.333750059 10.5572981,0.397047084 10.5012424,0.466486382 C10.4958509,0.473301297 10.4904595,0.480116213 10.4853517,0.487215084 L5.79873117,6.77369104 C5.54022358,7.11926407 5.4985105,7.5798388 5.69005015,7.96289386 C5.89407535,8.370653 6.31489506,8.6321754 6.78821082,8.6321754 L7.56685497,8.6321754 L3.50791693,14.0727499 C3.20627745,14.4773855 3.1583216,15.002702 3.38249393,15.4499308 C3.61489538,15.9133451 4.08594104,16.2063865 4.62225206,16.2291029 L0.330912579,21.7562836 C-0.0379786012,22.2321919 -0.102676439,22.8384355 0.158101249,23.3714187 C0.447822708,23.9631806 1.06727613,24.3348774 1.77469591,24.3348774 L9.35994987,24.3348774 L9.35994987,26.9143231 C9.30319738,28.0481547 10.1842798,29.014737 11.3190458,29.0740835 C11.3556512,29.0760712 11.3899864,29.0769231 11.426308,29.0769231 C12.5202122,29.0769231 13.4410214,28.216256 13.4986252,27.1105359 C13.5020303,27.0455102 13.5028816,26.9793488 13.5028816,26.9143231 L13.5028816,24.3348774 L21.0713936,24.3348774 C21.7788134,24.3348774 22.3982668,23.9626127 22.6879882,23.3708508 C22.9487659,22.8381515 22.8843518,22.2336117 22.5148931,21.7571355 L18.5382462,16.6345904 Z M21.4439737,22.7583602 C21.4025443,22.8429788 21.2802427,22.9434988 21.0713936,22.9434988 L12.8017046,22.9434988 C12.4191928,22.9434988 12.1124456,23.249886 12.1124456,23.6326571 L12.1124456,26.9305085 C12.1124456,26.9424346 12.1110268,26.9546447 12.1115943,26.9665708 C12.1127294,26.990423 12.1118781,27.0145592 12.110743,27.0384114 C12.0908797,27.4174911 11.7662554,27.7093966 11.3874326,27.6900877 C11.0086097,27.6702109 10.7089565,27.3459344 10.7285362,26.9668547 C10.7291037,26.9549286 10.7217259,26.9427186 10.7217259,26.9307925 L10.7217259,23.6326571 C10.7217259,23.249886 10.4266129,22.9434988 10.0441011,22.9434988 L1.77469591,22.9434988 C1.56584675,22.9434988 1.44354513,22.8429788 1.40211582,22.7583602 C1.37544215,22.7041249 1.38168492,22.6618156 1.42510057,22.6061604 L6.58305057,15.9613335 C6.74536269,15.7523427 6.77430646,15.4729312 6.65824762,15.235261 C6.54190501,14.9975908 6.30070693,14.8507861 6.03624033,14.8507861 L4.68950376,14.8507861 C4.67730198,14.8507861 4.66680277,14.845675 4.65800613,14.8439712 L9.50239862,8.33913401 C9.65903549,8.12900744 9.68372282,7.85271939 9.56624517,7.61845666 C9.44876752,7.38419392 9.20927201,7.24079673 8.94735927,7.24079673 L7.18689705,7.24079673 L11.4753989,1.4821928 L14.6282835,5.71141603 C14.3555877,5.93801198 14.0210318,6.2478067 13.6884622,6.64051623 C12.6774166,7.83454628 12.1428082,9.2350115 12.1428082,10.6919837 C12.1428082,12.3900336 12.7018202,13.9679706 13.7591191,15.2559897 C14.7310055,16.4397974 16.0854036,17.2930816 17.5941686,17.6778404 L21.4204214,22.6055925 C21.4641208,22.6620995 21.4706473,22.7038409 21.4439737,22.7583602 Z" id="形状"></path>
<path d="M26.4866376,8.53376528 C26.1817853,7.77821625 25.8938692,7.06443268 25.9663341,5.7096651 C25.9785977,5.47993953 25.8832427,5.25831356 25.710644,5.11538546 C25.5380453,4.97245737 25.3097278,4.92605172 25.0984213,4.99095089 C24.1735915,5.27518815 23.4467215,5.84279255 22.9969394,6.63256608 C22.9872219,6.64938828 22.977782,6.66650052 22.9683421,6.68361277 C22.6673768,5.67718084 22.64933,4.46134147 22.7378982,2.82494698 C22.7509474,2.58450546 22.6459983,2.3536352 22.459422,2.21209664 C22.2729475,2.07056263 22.0303805,2.0377818 21.8155673,2.12508524 C20.2116221,2.77738074 19.1404744,3.96537646 18.6315543,5.65687818 C18.4982855,6.09976624 18.4122161,6.54439452 18.3580757,6.97771132 C18.2974863,6.88668066 18.2172038,6.81185666 18.1237448,6.75931269 C17.9244906,6.6469767 17.6846988,6.64599734 17.48461,6.75670235 C16.8718513,7.09575679 16.3662629,7.70338644 16.0225405,8.51375266 C15.7351797,9.19128147 15.5769231,9.97554427 15.5769231,10.7218121 C15.5769231,12.3497955 16.1855171,13.8521924 17.290815,14.9523066 C18.3683485,16.0248672 19.8087617,16.6153846 21.3471831,16.6153846 C22.8817174,16.6153846 24.3043615,16.0216768 25.3527425,14.9433154 C26.4150056,13.8510323 27,12.3515357 27,10.7206519 C26.9994447,9.80558199 26.7387377,9.15908725 26.4866376,8.53376528 L26.4866376,8.53376528 Z M21.3477384,15.1999991 C18.8719934,15.1999991 16.9326551,13.2329612 16.9326551,10.7221021 C16.9326551,10.1080916 17.0903565,9.38328664 17.3910442,8.81713243 C17.5923356,9.51815432 17.9385567,10.3270703 18.5260499,10.8465284 C18.7191425,11.0173356 18.9872942,11.0614124 19.2212686,10.9608034 C19.4552616,10.8601933 19.6161555,10.6318417 19.6385664,10.3685458 C19.6616108,10.0979403 19.6521709,9.75772572 19.6416205,9.36385409 C19.5852589,7.2926926 19.6879869,5.19948823 21.3366326,3.98132855 C21.3030378,5.87527681 21.5173784,7.58447085 22.7004164,9.08425744 C22.8917126,9.32701926 23.2132235,9.40851995 23.4900338,9.28496375 C23.7665665,9.16140755 23.9320419,8.86179828 23.8962259,8.54971737 C23.8468054,8.12075115 23.9731331,7.34083892 24.6305924,6.79556744 C24.7216594,7.80344955 25.0012461,8.49693045 25.2377982,9.08338733 C25.465188,9.6469312 25.6448232,10.0921396 25.6453785,10.7218121 C25.6451009,13.2747267 23.7976626,15.1999991 21.3477384,15.1999991 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 22</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -734.000000)">
<g id="编组-22" transform="translate(294.500000, 734.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-23" fill="#EEEEEE" fill-rule="nonzero"></path>
<path d="M35.15,33.3943886 L34.7,30.9350009 L36.35,29.7053071 L38,30.9350009 L38,32.4721182 L35.15,33.3943886 Z M11,36.9999993 L11,16.009711 C11,15.4574263 11.4477153,15.009711 12,15.009711 C12.3465761,15.009711 12.6684414,15.1891618 12.8506485,15.4839762 L16.7,21.712297 L16.7,21.712297 L18.35,22.1734322 L17.6,26.1699372 L20,30.0127305 L18.5,33.2406769 L21.5,29.7053071 L18.5,25.5550903 L20,22.7882792 L22.7,23.7105495 L24.8,28.4756132 L32.15,31.8572713 L36.2565869,36.1762174 C36.6371475,36.5764574 36.6211941,37.2094214 36.220954,37.5899819 C36.0365059,37.7653609 35.7921257,37.8638098 35.5376129,37.8652668 L12.0057247,37.9999829 C11.453449,38.0031446 11.0031781,37.5579998 11.0000164,37.0057241 C11.0000055,37.0038158 11,37.0019076 11,36.9999993 Z M31.25,33.0869651 L24.8,30.0127305 L21.8,24.9402434 L20.75,24.4791082 L20,25.5550903 L23,29.8590188 L17.3,35.2389294 L18.5,30.0127305 L16.1,26.4773607 L16.55,23.2494144 L15.65,23.0957026 L12.5,17.8695038 L12.5,36.4686232 L34.25,36.3149115 L31.25,33.0869651 Z M27.8,27.7070546 L29.6,25.2476669 L31.4,26.1699372 L31.55,27.5533428 L30.05,29.5515953 L27.8,27.7070546 Z M23.9,21.2511618 L25.7,18.7917741 L29.15,20.021468 L29.15,21.4048736 L25.85,23.4031261 L23.9,21.2511618 Z M16.55,17.8695038 L17.3,15.2564043 L19.1,15.2564043 L20,17.1009451 L19.25,17.8695038 L16.55,17.8695038 Z" id="形状" fill="#FF9A03" fill-rule="nonzero"></path>
<path d="M24.3345043,13.9205105 C24.0295336,13.7427085 23.9117219,13.3224091 24.0709056,12.9822087 L24.8246639,11.3736284 C24.9838475,11.0329879 25.3601356,10.9013968 25.6647123,11.0791988 C25.971259,11.2578811 26.0882827,11.6799408 25.928705,12.018821 L25.1753407,13.626521 C25.0157631,13.9671616 24.6394749,14.0987527 24.3345043,13.9205105 Z" id="路径" fill="#FF9A03"></path>
<path d="M28.0709056,12.9827051 L28.8246639,11.373722 C28.9838475,11.0329961 29.3601356,10.9013721 29.6647123,11.0792186 C29.971259,11.2579456 30.0882827,11.6801111 29.928705,12.0190761 L29.1753407,13.6271788 C29.015369,13.9670242 28.6394749,14.0982081 28.3345043,13.9212419 C28.0295336,13.7433954 27.9117219,13.3229907 28.0709056,12.9827051 Z" id="路径" fill="#FF9A03"></path>
<path d="M26.0709056,16.98211 L26.8246639,15.3736098 C26.9838475,15.0329862 27.3601356,14.9014017 27.6647123,15.0791949 C27.971259,15.2578682 28.0882827,15.679907 27.928705,16.0187702 L27.1753407,17.6263902 C27.0161571,17.9670138 26.639869,18.0985983 26.3352923,17.9208051 C26.3348983,17.9203651 26.3348983,17.9203651 26.3345043,17.9203651 C26.0295336,17.7425719 25.9117219,17.3222934 26.0709056,16.98211 Z" id="路径" fill="#FF9A03"></path>
<path d="M22.0709056,16.9823927 L22.8246639,15.3736631 C22.9838475,15.0329909 23.3601356,14.9013876 23.6647123,15.0792062 C23.971259,15.257905 24.0882827,15.680004 23.928705,16.0189155 L23.1753407,17.6267649 C23.015369,17.9669969 22.6394749,18.0986002 22.3345043,17.9207817 C22.0295336,17.7429631 21.9117219,17.3226248 22.0709056,16.9823927 Z" id="路径" fill="#FF9A03"></path>
<path d="M32.0668743,13.0621358 L32.8906374,11.3442146 C33.0408858,11.0303909 33.3960523,10.9091593 33.6835325,11.0729639 C33.9728723,11.2375794 34.0833272,11.6264127 33.9327069,11.9386145 L33.1093158,13.6557248 C32.9594392,13.969143 32.6050166,14.0907801 32.3175363,13.9273809 C32.0278246,13.7627654 31.9166259,13.375554 32.0668743,13.0621358 Z" id="路径" fill="#FF9A03"></path>
<path d="M30.0669238,17.0625716 L30.8906658,15.3442874 C31.0409103,15.0303973 31.3960677,14.9091401 31.6835406,15.0729793 C31.972873,15.2376296 32.0833251,15.626545 31.9327086,15.9388129 L31.1093386,17.656286 C30.9583502,17.9697705 30.6035647,18.0906222 30.3157199,17.9271885 C30.0278751,17.7633493 29.9166792,17.376056 30.0669238,17.0625716 Z" id="路径" fill="#FF9A03"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 46</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -636.000000)">
<g id="编组-46" transform="translate(207.500000, 636.000000)">
<g id="编组-20" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-18" fill="#EEEEEE"></path>
<path d="M11,19.75 C11.3796958,19.75 11.693491,20.0321539 11.7431534,20.3982294 L11.75,20.5 L11.75,33.75 L20,33.75 C20.3796958,33.75 20.693491,34.0321539 20.7431534,34.3982294 L20.75,34.5 C20.75,34.8796958 20.4678461,35.193491 20.1017706,35.2431534 L20,35.25 L11,35.25 C10.6203042,35.25 10.306509,34.9678461 10.2568466,34.6017706 L10.25,34.5 L10.25,20.5 C10.25,20.0857864 10.5857864,19.75 11,19.75 Z" id="路径" fill="#FF9A03"></path>
<path d="M20,12.75 C20.4142136,12.75 20.75,13.0857864 20.75,13.5 C20.75,13.8796958 20.4678461,14.193491 20.1017706,14.2431534 L20,14.25 L11.75,14.25 L11.75,20.5 C11.75,20.8796958 11.4678461,21.193491 11.1017706,21.2431534 L11,21.25 C10.6203042,21.25 10.306509,20.9678461 10.2568466,20.6017706 L10.25,20.5 L10.25,13.5 C10.25,13.1203042 10.5321539,12.806509 10.8982294,12.7568466 L11,12.75 L20,12.75 Z" id="路径" fill="#FF9A03"></path>
<path d="M13.4783367,18.8139947 C16.9902858,17.2620696 20.9806374,17.2212295 25.0678887,19.6619018 L25.3994922,19.8652513 C29.141126,22.2201257 32.7333515,22.2201257 35.9153738,20.8139947 C36.3779323,20.6095908 36.7879897,20.391217 37.1397868,20.1741906 L37.433426,19.9840723 L37.5427169,19.905532 C37.8710325,19.6529815 38.3419175,19.7144013 38.594468,20.0427169 C38.8470185,20.3710325 38.7855987,20.8419175 38.4572831,21.094468 C38.0875657,21.378866 37.4294902,21.7848379 36.5216633,22.1860053 C33.0097142,23.7379304 29.0193626,23.7787705 24.9321113,21.3380982 L24.6005078,21.1347487 C20.858874,18.7798743 17.2666485,18.7798743 14.0846262,20.1860053 C13.6220677,20.3904092 13.2120103,20.608783 12.8602132,20.8258094 L12.566574,21.0159277 L12.4572831,21.094468 C12.1289675,21.3470185 11.6580825,21.2855987 11.405532,20.9572831 C11.1529815,20.6289675 11.2144013,20.1580825 11.5427169,19.905532 C11.9124343,19.621134 12.5705098,19.2151621 13.4783367,18.8139947 Z" id="路径" fill="#FF9A03"></path>
<path d="M38,12.75 C38.3796958,12.75 38.693491,13.0321539 38.7431534,13.3982294 L38.75,13.5 L38.75,20.5 C38.75,20.9142136 38.4142136,21.25 38,21.25 C37.6203042,21.25 37.306509,20.9678461 37.2568466,20.6017706 L37.25,20.5 L37.25,14.25 L20,14.25 C19.6203042,14.25 19.306509,13.9678461 19.2568466,13.6017706 L19.25,13.5 C19.25,13.1203042 19.5321539,12.806509 19.8982294,12.7568466 L20,12.75 L38,12.75 Z" id="路径" fill="#FF9A03"></path>
<path d="M38,19.75 C38.3796958,19.75 38.693491,20.0321539 38.7431534,20.3982294 L38.75,20.5 L38.75,34.5 C38.75,34.8796958 38.4678461,35.193491 38.1017706,35.2431534 L38,35.25 L20,35.25 C19.5857864,35.25 19.25,34.9142136 19.25,34.5 C19.25,34.1203042 19.5321539,33.806509 19.8982294,33.7568466 L20,33.75 L37.25,33.75 L37.25,20.5 C37.25,20.1203042 37.5321539,19.806509 37.8982294,19.7568466 L38,19.75 Z" id="路径" fill="#FF9A03"></path>
<path d="M13.5455344,25.5380808 C16.995131,24.3948021 20.8965157,24.3579221 24.917647,26.1377027 L25.320147,26.3217627 C29.1015545,28.1066928 32.7582657,28.1066928 35.9825715,27.0380808 C36.3564081,26.9141824 36.6960439,26.783612 36.9986566,26.6522652 L37.3343963,26.4992387 L37.5788689,26.3761172 C37.5972885,26.366165 37.6127495,26.3575485 37.6252082,26.3503608 C37.983994,26.143369 38.4426474,26.2664223 38.6496392,26.6252082 C38.856631,26.983994 38.7335777,27.4426474 38.3747918,27.6496392 L38.2561809,27.7157572 L37.96832,27.8620501 C37.8077515,27.9393131 37.6224676,28.0221819 37.4135553,28.1080956 L36.9645485,28.2832239 C36.8045928,28.3424475 36.6344578,28.4022655 36.4544656,28.4619192 C33.004869,29.6051979 29.1034843,29.6420779 25.082353,27.8622973 L24.679853,27.6782373 C20.8984455,25.8933072 17.2417343,25.8933072 14.0174285,26.9619192 C13.6435919,27.0858176 13.3039561,27.216388 13.0013434,27.3477348 L12.6656037,27.5007613 L12.4211311,27.6238828 C12.4027115,27.633835 12.3872505,27.6424515 12.3747918,27.6496392 C12.016006,27.856631 11.5573526,27.7335777 11.3503608,27.3747918 C11.143369,27.016006 11.2664223,26.5573526 11.6252082,26.3503608 L11.7438191,26.2842428 L12.03168,26.1379499 C12.1922485,26.0606869 12.3775324,25.9778181 12.5864447,25.8919044 L13.0354515,25.7167761 C13.1954072,25.6575525 13.3655422,25.5977345 13.5455344,25.5380808 Z" id="路径" fill="#FF9A03"></path>
<path d="M19.5119065,12.9305575 C19.8264009,12.6609909 20.2998758,12.6974121 20.5694425,13.0119065 C20.854911,13.3449531 21.2626189,13.9263144 21.6669659,14.7125445 C23.2511171,17.7928385 23.2928052,21.1290024 20.7788934,24.2366338 L20.5694425,24.4880935 C18.2939319,27.1428558 18.2939319,29.9316453 19.6669659,32.6014334 C19.8693405,32.9949397 20.0859994,33.348816 20.3015491,33.6561737 L20.436696,33.8431699 L20.5694425,34.0119065 C20.8390091,34.3264009 20.8025879,34.7998758 20.4880935,35.0694425 C20.1735991,35.3390091 19.7001242,35.3025879 19.4305575,34.9880935 C19.145089,34.6550469 18.7373811,34.0736856 18.3330341,33.2874555 C16.7488829,30.2071615 16.7071948,26.8709976 19.2211066,23.7633662 L19.4305575,23.5119065 C21.7060681,20.8571442 21.7060681,18.0683547 20.3330341,15.3985666 C20.1306595,15.0050603 19.9140006,14.651184 19.6984509,14.3438263 L19.563304,14.1568301 L19.4305575,13.9880935 C19.1609909,13.6735991 19.1974121,13.2001242 19.5119065,12.9305575 Z" id="路径" fill="#FF9A03"></path>
<path d="M28.5119065,12.9305575 C28.8264009,12.6609909 29.2998758,12.6974121 29.5694425,13.0119065 C29.854911,13.3449531 30.2626189,13.9263144 30.6669659,14.7125445 C32.2511171,17.7928385 32.2928052,21.1290024 29.7788934,24.2366338 L29.5694425,24.4880935 C27.2939319,27.1428558 27.2939319,29.9316453 28.6669659,32.6014334 C28.8693405,32.9949397 29.0859994,33.348816 29.3015491,33.6561737 L29.436696,33.8431699 L29.5694425,34.0119065 C29.8390091,34.3264009 29.8025879,34.7998758 29.4880935,35.0694425 C29.1735991,35.3390091 28.7001242,35.3025879 28.4305575,34.9880935 C28.145089,34.6550469 27.7373811,34.0736856 27.3330341,33.2874555 C25.7488829,30.2071615 25.7071948,26.8709976 28.2211066,23.7633662 L28.4305575,23.5119065 C30.7060681,20.8571442 30.7060681,18.0683547 29.3330341,15.3985666 C29.1306595,15.0050603 28.9140006,14.651184 28.6984509,14.3438263 L28.563304,14.1568301 L28.4305575,13.9880935 C28.1609909,13.6735991 28.1974121,13.2001242 28.5119065,12.9305575 Z" id="路径" fill="#FF9A03"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 48</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -637.000000)">
<g id="编组-48" transform="translate(31.500000, 637.000000)">
<g id="编组-16" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-16" fill="#EEEEEE"></path>
<path d="M19.56821,8.25 C24.3345991,8.25 28.5012045,11.4129939 30.145489,16.0107229 L30.247,16.308 L30.327693,16.2751091 C31.0572505,15.9974737 31.8265629,15.8361998 32.6153618,15.8002194 L32.9545525,15.7924963 C37.2717396,15.7924963 40.75,19.5161913 40.75,24.0850741 C40.75,27.4004363 38.9031678,30.3637637 36.0905269,31.6793569 C35.7153285,31.8548533 35.2689021,31.6929629 35.0934056,31.3177644 C34.9179092,30.942566 35.0797996,30.4961396 35.4549981,30.3206431 C37.7351704,29.2541084 39.25,26.8234945 39.25,24.0850741 C39.25,20.3226244 36.4195924,17.2924963 32.9545525,17.2924963 C31.9594369,17.2924963 30.9985021,17.5413955 30.1291335,18.0135982 C29.6989258,18.2472681 29.1638137,18.0128018 29.0439779,17.5381233 C27.8903842,12.9686511 24.0183867,9.75 19.56821,9.75 C14.1576159,9.75 9.75,14.4685808 9.75,20.3137852 C9.75,23.6919022 11.2329483,26.7995705 13.6972634,28.7811685 C14.0200605,29.0407352 14.0713189,29.5128344 13.8117522,29.8356316 C13.5521855,30.1584287 13.0800863,30.2096871 12.7572891,29.9501204 C9.93822759,27.6832647 8.25,24.1454128 8.25,20.3137852 C8.25,13.6621446 13.3054723,8.25 19.56821,8.25 Z" id="路径" fill="#FF9A03"></path>
<path d="M19.5,26.25 C19.8796958,26.25 20.193491,26.5321539 20.2431534,26.8982294 L20.25,27 L20.25,34 C20.25,34.4142136 19.9142136,34.75 19.5,34.75 C19.1203042,34.75 18.806509,34.4678461 18.7568466,34.1017706 L18.75,34 L18.75,27 C18.75,26.5857864 19.0857864,26.25 19.5,26.25 Z" id="路径" fill="#FF9A03"></path>
<path d="M25.5,30.25 C25.8796958,30.25 26.193491,30.5321539 26.2431534,30.8982294 L26.25,31 L26.25,38 C26.25,38.4142136 25.9142136,38.75 25.5,38.75 C25.1203042,38.75 24.806509,38.4678461 24.7568466,38.1017706 L24.75,38 L24.75,31 C24.75,30.5857864 25.0857864,30.25 25.5,30.25 Z" id="路径" fill="#FF9A03"></path>
<path d="M30.5,26.25 C30.8796958,26.25 31.193491,26.5321539 31.2431534,26.8982294 L31.25,27 L31.25,34 C31.25,34.4142136 30.9142136,34.75 30.5,34.75 C30.1203042,34.75 29.806509,34.4678461 29.7568466,34.1017706 L29.75,34 L29.75,27 C29.75,26.5857864 30.0857864,26.25 30.5,26.25 Z" id="路径" fill="#FF9A03"></path>
</g>
<rect id="矩形" x="8.5" y="7.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 47</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -636.000000)">
<g id="编组-47" transform="translate(119.500000, 636.000000)">
<g id="编组-19" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-20" fill="#EEEEEE"></path>
<path d="M23.9985739,7.75398346 C20.8111182,7.86519316 18.2409091,10.2911879 18.2409091,13.3 L18.24,25.716 L18.0703264,25.8468752 C15.9883398,27.4892913 14.75,29.8972427 14.75,32.5 C14.75,37.347725 19.0070272,41.25 24.2272727,41.25 C29.4475182,41.25 33.7045455,37.347725 33.7045455,32.5 L33.6990723,32.2005788 C33.6080405,29.7131481 32.3861293,27.4261214 30.384219,25.8468752 L30.213,25.716 L30.2136364,13.3 C30.2136364,10.2195495 27.5195793,7.75 24.2272727,7.75 L23.9985739,7.75398346 Z M24.2272727,9.25 C26.718885,9.25 28.7136364,11.07852 28.7136364,13.3 L28.7136364,26.09944 C28.7136364,26.3462274 28.835043,26.5772206 29.0383085,26.7171747 C31.0219472,28.0829663 32.2045455,30.2049856 32.2045455,32.5 C32.2045455,36.488755 28.6468236,39.75 24.2272727,39.75 C19.8077219,39.75 16.25,36.488755 16.25,32.5 C16.25,30.2049856 17.4325983,28.0829663 19.416237,26.7171747 C19.6195025,26.5772206 19.7409091,26.3462274 19.7409091,26.09944 L19.7409091,13.3 C19.7409091,11.07852 21.7356605,9.25 24.2272727,9.25 Z" id="路径" fill="#FF9A03"></path>
<path d="M24.5,19.25 C24.8796958,19.25 25.193491,19.5321539 25.2431534,19.8982294 L25.25,20 L25.25,30 C25.25,30.4142136 24.9142136,30.75 24.5,30.75 C24.1203042,30.75 23.806509,30.4678461 23.7568466,30.1017706 L23.75,30 L23.75,20 C23.75,19.5857864 24.0857864,19.25 24.5,19.25 Z" id="路径" fill="#FF9A03"></path>
<path d="M24.5,29.75 C22.4289614,29.75 20.75,31.4289614 20.75,33.5 C20.75,35.5710386 22.4289614,37.25 24.5,37.25 C26.5710386,37.25 28.25,35.5710386 28.25,33.5 C28.25,31.4289614 26.5710386,29.75 24.5,29.75 Z M24.5,31.25 C25.7426114,31.25 26.75,32.2573886 26.75,33.5 C26.75,34.7426114 25.7426114,35.75 24.5,35.75 C23.2573886,35.75 22.25,34.7426114 22.25,33.5 C22.25,32.2573886 23.2573886,31.25 24.5,31.25 Z" id="路径" fill="#FF9A03"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 31</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -734.000000)" fill-rule="nonzero">
<g id="编组-31" transform="translate(207.500000, 734.000000)">
<path d="M35.2635764,36.9739208 C32.5632063,39.2600341 30.259676,39.2600341 27.5593059,36.9739208 C25.7983298,35.4828238 24.2946795,35.4828238 22.5337034,36.9739208 C19.8581358,39.2388336 17.6755176,39.2388336 14.99995,36.9739208 C13.220372,35.4651568 12.0174517,35.4651568 10.2347735,36.9739208 L9.5,35.867965 C11.6640164,34.0341276 13.4838984,33.9599261 15.7347235,35.867965 C17.8553355,37.6664683 19.4240924,37.8784726 21.7958296,35.867965 C24.0466547,33.9599261 26.1393639,34.0482613 28.2909791,35.867965 C30.4983998,37.7371364 32.2314731,37.8113379 34.5257026,35.867965 C36.7765277,33.9599261 38.2491749,33.9599261 40.5,35.867965 L39.7652265,36.9739208 C37.9577458,35.4404229 37.0741574,35.4404229 35.2635764,36.9739208 Z" id="路径" fill="#FF9A03"></path>
<path d="M35.2635764,32.6737666 C32.5632063,34.9598798 30.259676,34.9598798 27.5593059,32.6737666 C25.7983298,31.1826696 24.2946795,31.1826696 22.5337034,32.6737666 C19.8581358,34.9386794 17.6755176,34.9386794 14.99995,32.6737666 C13.220372,31.1650025 12.0174517,31.1650025 10.2347735,32.6737666 L9.5,31.5678107 C11.6640164,29.7339734 13.4838984,29.6597719 15.7347235,31.5678107 C17.8553355,33.366314 19.4240924,33.5783184 21.7958296,31.5678107 C24.0466547,29.6597719 26.1393639,29.748107 28.2909791,31.5678107 C30.4983998,33.4369821 32.2314731,33.5111837 34.5257026,31.5678107 C36.7765277,29.6597719 38.2491749,29.6597719 40.5,31.5678107 C40.3598399,31.778775 40.2314783,31.9719804 40.1149154,32.1474269 C39.9983524,32.3228735 39.8817895,32.4983201 39.7652265,32.6737666 C37.9577458,31.1402687 37.0741574,31.1402687 35.2635764,32.6737666 L35.2635764,32.6737666 Z" id="路径" fill="#FF9A03"></path>
<path d="M20.8245868,11.6410352 L12.084012,27.675518 C11.8115784,28.1752942 12.173322,28.7844828 12.7425287,28.7844828 L30.2236784,28.7844828 C30.7928851,28.7844828 31.1546287,28.1752942 30.8821951,27.675518 L22.1416203,11.6410352 C21.8574101,11.1196549 21.108797,11.1196549 20.8245868,11.6410352 Z M21.483,13.566 L28.96,27.284 L14.005,27.284 L21.483,13.566 Z" id="路径" fill="#FF9A03"></path>
<path d="M30.688836,18.3766047 C30.9844161,18.0405324 31.4982205,18.0409819 31.7953464,18.3546601 L31.864862,18.4395917 L38.3284547,27.6021533 C38.6583203,28.0697592 38.3629728,28.7044887 37.8201807,28.7775448 L37.7155997,28.7844828 L30.2236784,28.7844828 C29.8094648,28.7844828 29.4736784,28.4486963 29.4736784,28.0344828 C29.4736784,27.654787 29.7558323,27.3409918 30.1219078,27.2913294 L30.2236784,27.2844828 L36.268,27.284 L31.187,20.081 L28.2895423,23.3758583 C28.0408553,23.6586136 27.6265937,23.7094256 27.3196466,23.5108009 L27.2310548,23.4437129 C26.9482996,23.1950259 26.8974875,22.7807642 27.0961123,22.4738172 L27.1632003,22.3852254 L30.688836,18.3766047 Z" id="路径" fill="#FF9A03"></path>
<path d="M25.2290642,18.1219212 C25.6432778,18.1219212 25.9790642,18.4577076 25.9790642,18.8719212 C25.9790642,19.2516169 25.6969103,19.5654121 25.3308348,19.6150746 L25.2290642,19.6219212 L17.7371429,19.6219212 C17.3229294,19.6219212 16.9871429,19.2861347 16.9871429,18.8719212 C16.9871429,18.4922254 17.2692968,18.1784302 17.6353724,18.1287678 L17.7371429,18.1219212 L25.2290642,18.1219212 Z" id="路径" fill="#FF9A03"></path>
<path d="M18.3272797,16.222316 C18.5255305,15.8586273 18.9810725,15.7245133 19.3447613,15.9227641 C19.6781426,16.1044939 19.8186174,16.5024199 19.6870111,16.8476118 L19.6443132,16.9402456 L17.1470061,21.5215264 C16.9487553,21.8852151 16.4932133,22.0193291 16.1295246,21.8210783 C15.7961432,21.6393484 15.6556685,21.2414225 15.7872747,20.8962305 L15.8299726,20.8035968 L18.3272797,16.222316 Z" id="路径" fill="#FF9A03"></path>
<path d="M23.6214459,15.9227641 C23.9548272,15.7410342 24.3653908,15.838583 24.5842065,16.1362361 L24.6389274,16.222316 L27.1362345,20.8035968 C27.3344853,21.1672855 27.2003713,21.6228275 26.8366825,21.8210783 C26.5033012,22.0028082 26.0927376,21.9052594 25.8739219,21.6076063 L25.819201,21.5215264 L23.3218939,16.9402456 C23.1236431,16.5765568 23.2577571,16.1210148 23.6214459,15.9227641 Z" id="路径" fill="#FF9A03"></path>
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-19" fill="#EEEEEE"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 49</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -462.000000)">
<g id="编组-49" transform="translate(119.500000, 462.000000)">
<g id="编组-13" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-10" fill="#EEEEEE"></path>
<path d="M18.3913043,34.2934783 C18.8055179,34.2934783 19.1413043,34.6292647 19.1413043,35.0434783 C19.1413043,35.423174 18.8591505,35.7369692 18.4930749,35.7866316 L18.3913043,35.7934783 L12,35.7934783 C11.5857864,35.7934783 11.25,35.4576918 11.25,35.0434783 C11.25,34.6637825 11.5321539,34.3499873 11.8982294,34.3003249 L12,34.2934783 L18.3913043,34.2934783 Z" id="路径" fill="#1890FF"></path>
<path d="M25.6956522,30.6413043 C26.1098657,30.6413043 26.4456522,30.9770908 26.4456522,31.3913043 C26.4456522,31.7710001 26.1634983,32.0847953 25.7974227,32.1344577 L25.6956522,32.1413043 L12.9130435,32.1413043 C12.4988299,32.1413043 12.1630435,31.8055179 12.1630435,31.3913043 C12.1630435,31.0116086 12.4451974,30.6978134 12.8112729,30.648151 L12.9130435,30.6413043 L25.6956522,30.6413043 Z" id="路径" fill="#1890FF"></path>
<path d="M26.6086957,34.2934783 C27.0229092,34.2934783 27.3586957,34.6292647 27.3586957,35.0434783 C27.3586957,35.423174 27.0765418,35.7369692 26.7104662,35.7866316 L26.6086957,35.7934783 L23.8695652,35.7934783 C23.4553517,35.7934783 23.1195652,35.4576918 23.1195652,35.0434783 C23.1195652,34.6637825 23.4017191,34.3499873 23.7677947,34.3003249 L23.8695652,34.2934783 L26.6086957,34.2934783 Z" id="路径" fill="#1890FF"></path>
<path d="M37.5652174,34.2934783 C37.979431,34.2934783 38.3152174,34.6292647 38.3152174,35.0434783 C38.3152174,35.423174 38.0330635,35.7369692 37.6669879,35.7866316 L37.5652174,35.7934783 L33.9130435,35.7934783 C33.4988299,35.7934783 33.1630435,35.4576918 33.1630435,35.0434783 C33.1630435,34.6637825 33.4451974,34.3499873 33.8112729,34.3003249 L33.9130435,34.2934783 L37.5652174,34.2934783 Z" id="路径" fill="#1890FF"></path>
<path d="M37.5652174,30.6413043 C37.979431,30.6413043 38.3152174,30.9770908 38.3152174,31.3913043 C38.3152174,31.7710001 38.0330635,32.0847953 37.6669879,32.1344577 L37.5652174,32.1413043 L33,32.1413043 C32.5857864,32.1413043 32.25,31.8055179 32.25,31.3913043 C32.25,31.0116086 32.5321539,30.6978134 32.8982294,30.648151 L33,30.6413043 L37.5652174,30.6413043 Z" id="路径" fill="#1890FF"></path>
<path d="M37.5652174,25.1630435 C37.979431,25.1630435 38.3152174,25.4988299 38.3152174,25.9130435 C38.3152174,26.2927392 38.0330635,26.6065344 37.6669879,26.6561969 L37.5652174,26.6630435 L30.2608696,26.6630435 C29.846656,26.6630435 29.5108696,26.327257 29.5108696,25.9130435 C29.5108696,25.5333477 29.7930234,25.2195525 30.159099,25.1698901 L30.2608696,25.1630435 L37.5652174,25.1630435 Z" id="路径" fill="#1890FF"></path>
<path d="M22.9565217,25.1630435 C23.3707353,25.1630435 23.7065217,25.4988299 23.7065217,25.9130435 C23.7065217,26.2927392 23.4243679,26.6065344 23.0582923,26.6561969 L22.9565217,26.6630435 L19.3043478,26.6630435 C18.8901343,26.6630435 18.5543478,26.327257 18.5543478,25.9130435 C18.5543478,25.5333477 18.8365017,25.2195525 19.2025773,25.1698901 L19.3043478,25.1630435 L22.9565217,25.1630435 Z" id="路径" fill="#1890FF"></path>
<path d="M13.826087,25.1630435 C14.2403005,25.1630435 14.576087,25.4988299 14.576087,25.9130435 C14.576087,26.2927392 14.2939331,26.6065344 13.9278575,26.6561969 L13.826087,26.6630435 L12.9130435,26.6630435 C12.4988299,26.6630435 12.1630435,26.327257 12.1630435,25.9130435 C12.1630435,25.5333477 12.4451974,25.2195525 12.8112729,25.1698901 L12.9130435,25.1630435 L13.826087,25.1630435 Z" id="路径" fill="#1890FF"></path>
<path d="M14.7391304,19.6847826 C15.153344,19.6847826 15.4891304,20.020569 15.4891304,20.4347826 C15.4891304,20.8144784 15.2069766,21.1282736 14.840901,21.177936 L14.7391304,21.1847826 L12.9130435,21.1847826 C12.4988299,21.1847826 12.1630435,20.8489962 12.1630435,20.4347826 C12.1630435,20.0550868 12.4451974,19.7412916 12.8112729,19.6916292 L12.9130435,19.6847826 L14.7391304,19.6847826 Z" id="路径" fill="#1890FF"></path>
<path d="M17.2271739,13.75 C17.3783261,13.75 17.525023,13.7956397 17.6486378,13.8796197 L17.7367299,13.9496795 L22.452,18.315 L37.5652174,18.3152174 C37.9449132,18.3152174 38.2587084,18.5973713 38.3083708,18.9634468 L38.3152174,19.0652174 C38.3152174,19.4449132 38.0330635,19.7587084 37.6669879,19.8083708 L37.5652174,19.8152174 L22.1576087,19.8152174 C22.0064565,19.8152174 21.8597596,19.7695777 21.7361448,19.6855977 L21.6480527,19.6155379 L16.933,15.25 L12.9130435,15.25 C12.5333477,15.25 12.2195525,14.9678461 12.1698901,14.6017706 L12.1630435,14.5 C12.1630435,14.1203042 12.4451974,13.806509 12.8112729,13.7568466 L12.9130435,13.75 L17.2271739,13.75 Z" id="路径" fill="#1890FF"></path>
<path d="M37.5652174,14.2065217 C37.979431,14.2065217 38.3152174,14.5423082 38.3152174,14.9565217 C38.3152174,15.3362175 38.0330635,15.6500127 37.6669879,15.6996751 L37.5652174,15.7065217 L23.8695652,15.7065217 C23.4553517,15.7065217 23.1195652,15.3707353 23.1195652,14.9565217 C23.1195652,14.576826 23.4017191,14.2630308 23.7677947,14.2133684 L23.8695652,14.2065217 L37.5652174,14.2065217 Z" id="路径" fill="#1890FF"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 51</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -364.000000)">
<g id="编组-51" transform="translate(207.500000, 364.000000)">
<g id="编组-8" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-5" fill="#EEEEEE"></path>
<path d="M23.0333516,12.1747636 C27.2181161,12.6519956 30.4157258,13.5115431 32.2922732,14.887271 C34.1840473,16.2741549 35.3423723,18.5816494 35.9259315,21.5329729 C36.3757658,23.8079891 36.4437649,26.2033265 36.2921098,28.3775305 L36.2662229,28.7170844 L36.2311316,29.089894 C36.2276774,29.1217775 36.2244106,29.1503932 36.2213704,29.1756537 C36.1718743,29.5868994 35.7983693,29.8801554 35.3871236,29.8306593 C34.9758779,29.7811632 34.6826219,29.4076582 34.732118,28.9964126 L34.7718669,28.5870697 L34.7957455,28.273156 C34.93896,26.2199615 34.8744725,23.9483222 34.454421,21.8239316 C33.9369283,19.2067363 32.941017,17.2227854 31.4053997,16.0970046 C29.7991579,14.9194422 26.8051397,14.114622 22.8633926,13.6651038 C19.8589359,13.3224745 16.7040609,13.2176472 13.904397,13.2547195 L13.26,13.266 L13.2763532,13.8188162 L13.311843,14.718949 L13.3629472,15.6838737 C13.5041741,18.0504013 13.7582816,20.415991 14.1524952,22.6179265 C14.8409002,26.46311 15.8848626,29.3787111 17.2913741,30.9499671 C18.4334524,32.225817 19.9371949,33.1696419 21.722508,33.8196474 C23.0624991,34.3075179 24.502215,34.6091924 25.9681341,34.7575867 C26.8498723,34.8468446 27.6429727,34.8724171 28.2984908,34.8583112 L28.7693466,34.8395807 C29.1823941,34.8085231 29.5424125,35.1181871 29.5734702,35.5312347 C29.6045278,35.9442823 29.2948638,36.3043007 28.8818162,36.3353583 L28.6316506,36.3486742 C26.4478665,36.4372478 23.7880138,36.1679922 21.2093351,35.2291344 C19.2059476,34.4997313 17.4938168,33.4251113 16.1737422,31.9504165 C14.5328128,30.1172852 13.4097059,26.9806474 12.6759713,22.8822693 C12.2702307,20.6159482 12.0100821,18.1941201 11.8656111,15.77323 C11.8352963,15.2652467 11.8114738,14.7789464 11.793364,14.3186067 L11.7645301,13.4338088 L11.7509769,12.7128074 L11.75,12.53694 C11.75,12.1345993 12.0674714,11.8039345 12.4694788,11.7875613 L13.1159494,11.7686637 C16.1574092,11.6995243 19.6764058,11.7919363 23.0333516,12.1747636 Z" id="路径" fill="#1890FF"></path>
<path d="M20.2064614,18.0320519 C20.587632,17.869935 21.0280535,18.0475131 21.1901704,18.4286837 L21.2878815,18.6470802 L21.517211,19.1251768 C21.7986328,19.6949401 22.1402481,20.3322612 22.5429301,21.020614 C23.6953103,22.9905159 25.1029831,24.9684541 26.7717567,26.8226496 C27.1294499,27.220087 27.517254,27.6315854 27.9331215,28.0557944 C28.6747252,28.812273 29.4991006,29.602683 30.3919635,30.418091 C31.82669,31.7283564 33.3658746,33.0387026 34.9052678,34.2856741 L35.5325731,34.7901741 L36.9532197,35.9024284 C37.2832494,36.1527347 37.347878,36.62319 37.0975716,36.9532197 C36.8472653,37.2832494 36.37681,37.347878 36.0467803,37.0975716 L35.4701496,36.6521442 L34.8994636,36.2032327 L33.9611064,35.4512466 C32.4002804,34.1869137 30.8392457,32.8579659 29.3804341,31.5257048 C28.4682394,30.692642 27.6242183,29.8833958 26.8619825,29.1058711 C26.4317051,28.6669633 26.0293565,28.2400318 25.6568148,27.8260959 C23.9152383,25.8910082 22.4492647,23.8311508 21.2481984,21.7780239 C20.9113791,21.2022582 20.6147481,20.6593819 20.3576965,20.1577838 L20.0988707,19.6396134 L19.9219723,19.2669951 L19.8098296,19.0157608 C19.6477128,18.6345902 19.8252909,18.1941687 20.2064614,18.0320519 Z" id="路径" fill="#1890FF"></path>
<path d="M27.5920306,18.8612644 L27.6939348,18.8656983 C28.0713082,18.9076287 28.3520255,19.2227097 28.3609578,19.5920306 L28.3565239,19.6939348 L27.467635,27.6939348 C27.4218928,28.1056149 27.0510787,28.4022661 26.6393986,28.3565239 C26.2620251,28.3145935 25.9813079,27.9995125 25.9723755,27.6301917 L25.9768094,27.5282875 L26.8656983,19.5282875 C26.9076287,19.150914 27.2227097,18.8701968 27.5920306,18.8612644 Z" id="路径" fill="#1890FF"></path>
<path d="M20.606066,25.9797601 L26.8282882,26.868649 C27.2383387,26.9272276 27.523263,27.3071266 27.4646843,27.7171771 C27.4109873,28.0930568 27.0872918,28.3637956 26.7178722,28.361188 L26.6161562,28.3535732 L20.393934,27.4646843 C19.9838835,27.4061057 19.6989592,27.0262067 19.7575379,26.6161562 C19.811235,26.2402766 20.1349304,25.9695378 20.50435,25.9721454 L20.606066,25.9797601 Z" id="路径" fill="#1890FF"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 28</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -462.000000)" fill-rule="nonzero">
<g id="编组-28" transform="translate(294.500000, 462.000000)">
<g id="矩形备份-36" fill="#EEEEEE">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-13"></path>
</g>
<path d="M30.0382462,27.6345904 C29.9386615,27.5065286 29.7973996,27.417414 29.6389924,27.3827225 C26.9239534,26.7901087 25.0278527,24.449753 25.0278527,21.6914158 C25.0278527,20.564967 25.427674,19.5146181 26.2165336,18.5693325 C26.8277579,17.836729 27.4540216,17.4454393 27.458278,17.4428837 C27.6248466,17.3415118 27.7409054,17.1745464 27.7780783,16.9828768 C27.8152512,16.7914913 27.7698492,16.5930069 27.6535066,16.4365478 L23.9660136,11.4872151 C23.9609059,11.4801162 23.9555144,11.4733013 23.9498392,11.4664864 C23.7401387,11.2060998 23.4413368,11.0428258 23.109051,11.0073314 C22.7767652,10.9715531 22.4504384,11.0675298 22.1899445,11.2776564 C22.1205522,11.3337501 22.0572981,11.3970471 22.0012424,11.4664864 C21.9958509,11.4733013 21.9904595,11.4801162 21.9853517,11.4872151 L17.2987312,17.773691 C17.0402236,18.1192641 16.9985105,18.5798388 17.1900501,18.9628939 C17.3940753,19.370653 17.8148951,19.6321754 18.2882108,19.6321754 L19.066855,19.6321754 L15.0079169,25.0727499 C14.7062775,25.4773855 14.6583216,26.002702 14.8824939,26.4499308 C15.1148954,26.9133451 15.585941,27.2063865 16.1222521,27.2291029 L11.8309126,32.7562836 C11.4620214,33.2321919 11.3973236,33.8384355 11.6581012,34.3714187 C11.9478227,34.9631806 12.5672761,35.3348774 13.2746959,35.3348774 L20.8599499,35.3348774 L20.8599499,37.9143231 C20.8031974,39.0481547 21.6842798,40.014737 22.8190458,40.0740835 C22.8556512,40.0760712 22.8899864,40.0769231 22.926308,40.0769231 C24.0202122,40.0769231 24.9410214,39.216256 24.9986252,38.1105359 C25.0020303,38.0455102 25.0028816,37.9793488 25.0028816,37.9143231 L25.0028816,35.3348774 L32.5713936,35.3348774 C33.2788134,35.3348774 33.8982668,34.9626127 34.1879882,34.3708508 C34.4487659,33.8381515 34.3843518,33.2336117 34.0148931,32.7571355 L30.0382462,27.6345904 Z M32.9439737,33.7583602 C32.9025443,33.8429788 32.7802427,33.9434988 32.5713936,33.9434988 L24.3017046,33.9434988 C23.9191928,33.9434988 23.6124456,34.249886 23.6124456,34.6326571 L23.6124456,37.9305085 C23.6124456,37.9424346 23.6110268,37.9546447 23.6115943,37.9665708 C23.6127294,37.990423 23.6118781,38.0145592 23.610743,38.0384114 C23.5908797,38.4174911 23.2662554,38.7093966 22.8874326,38.6900877 C22.5086097,38.6702109 22.2089565,38.3459344 22.2285362,37.9668547 C22.2291037,37.9549286 22.2217259,37.9427186 22.2217259,37.9307925 L22.2217259,34.6326571 C22.2217259,34.249886 21.9266129,33.9434988 21.5441011,33.9434988 L13.2746959,33.9434988 C13.0658467,33.9434988 12.9435451,33.8429788 12.9021158,33.7583602 C12.8754421,33.7041249 12.8816849,33.6618156 12.9251006,33.6061604 L18.0830506,26.9613335 C18.2453627,26.7523427 18.2743065,26.4729312 18.1582476,26.235261 C18.041905,25.9975908 17.8007069,25.8507861 17.5362403,25.8507861 L16.1895038,25.8507861 C16.177302,25.8507861 16.1668028,25.845675 16.1580061,25.8439712 L21.0023986,19.339134 C21.1590355,19.1290074 21.1837228,18.8527194 21.0662452,18.6184567 C20.9487675,18.3841939 20.709272,18.2407967 20.4473593,18.2407967 L18.6868971,18.2407967 L22.9753989,12.4821928 L26.1282835,16.711416 C25.8555877,16.938012 25.5210318,17.2478067 25.1884622,17.6405162 C24.1774166,18.8345463 23.6428082,20.2350115 23.6428082,21.6919837 C23.6428082,23.3900336 24.2018202,24.9679706 25.2591191,26.2559897 C26.2310055,27.4397974 27.5854036,28.2930816 29.0941686,28.6778404 L32.9204214,33.6055925 C32.9641208,33.6620995 32.9706473,33.7038409 32.9439737,33.7583602 Z" id="形状" fill="#1890FF"></path>
<path d="M37.9866376,19.5337653 C37.6817853,18.7782162 37.3938692,18.0644327 37.4663341,16.7096651 C37.4785977,16.4799395 37.3832427,16.2583136 37.210644,16.1153855 C37.0380453,15.9724574 36.8097278,15.9260517 36.5984213,15.9909509 C35.6735915,16.2751882 34.9467215,16.8427926 34.4969394,17.6325661 C34.4872219,17.6493883 34.477782,17.6665005 34.4683421,17.6836128 C34.1673768,16.6771808 34.14933,15.4613415 34.2378982,13.824947 C34.2509474,13.5845055 34.1459983,13.3536352 33.959422,13.2120966 C33.7729475,13.0705626 33.5303805,13.0377818 33.3155673,13.1250852 C31.7116221,13.7773807 30.6404744,14.9653765 30.1315543,16.6568782 C29.9982855,17.0997662 29.9122161,17.5443945 29.8580757,17.9777113 C29.7974863,17.8866807 29.7172038,17.8118567 29.6237448,17.7593127 C29.4244906,17.6469767 29.1846988,17.6459973 28.98461,17.7567023 C28.3718513,18.0957568 27.8662629,18.7033864 27.5225405,19.5137527 C27.2351797,20.1912815 27.0769231,20.9755443 27.0769231,21.7218121 C27.0769231,23.3497955 27.6855171,24.8521924 28.790815,25.9523066 C29.8683485,27.0248672 31.3087617,27.6153846 32.8471831,27.6153846 C34.3817174,27.6153846 35.8043615,27.0216768 36.8527425,25.9433154 C37.9150056,24.8510323 38.5,23.3515357 38.5,21.7206519 C38.4994447,20.805582 38.2387377,20.1590872 37.9866376,19.5337653 L37.9866376,19.5337653 Z M32.8477384,26.1999991 C30.3719934,26.1999991 28.4326551,24.2329612 28.4326551,21.7221021 C28.4326551,21.1080916 28.5903565,20.3832866 28.8910442,19.8171324 C29.0923356,20.5181543 29.4385567,21.3270703 30.0260499,21.8465284 C30.2191425,22.0173356 30.4872942,22.0614124 30.7212686,21.9608034 C30.9552616,21.8601933 31.1161555,21.6318417 31.1385664,21.3685458 C31.1616108,21.0979403 31.1521709,20.7577257 31.1416205,20.3638541 C31.0852589,18.2926926 31.1879869,16.1994882 32.8366326,14.9813286 C32.8030378,16.8752768 33.0173784,18.5844709 34.2004164,20.0842574 C34.3917126,20.3270193 34.7132235,20.4085199 34.9900338,20.2849637 C35.2665665,20.1614076 35.4320419,19.8617983 35.3962259,19.5497174 C35.3468054,19.1207511 35.4731331,18.3408389 36.1305924,17.7955674 C36.2216594,18.8034496 36.5012461,19.4969305 36.7377982,20.0833873 C36.965188,20.6469312 37.1448232,21.0921396 37.1453785,21.7218121 C37.1451009,24.2747267 35.2976626,26.1999991 32.8477384,26.1999991 Z" id="形状" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 14</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -462.000000)">
<g id="编组-14" transform="translate(207.500000, 462.000000)">
<g id="矩形备份-35" fill="#EEEEEE" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-11"></path>
</g>
<path d="M35.65,32.8943886 L35.2,30.4350009 L36.85,29.2053071 L38.5,30.4350009 L38.5,31.9721182 L35.65,32.8943886 Z M11.5,36.4999993 L11.5,15.509711 C11.5,14.9574263 11.9477153,14.509711 12.5,14.509711 C12.8465761,14.509711 13.1684414,14.6891618 13.3506485,14.9839762 L17.2,21.212297 L17.2,21.212297 L18.85,21.6734322 L18.1,25.6699372 L20.5,29.5127305 L19,32.7406769 L22,29.2053071 L19,25.0550903 L20.5,22.2882792 L23.2,23.2105495 L25.3,27.9756132 L32.65,31.3572713 L36.7565869,35.6762174 C37.1371475,36.0764574 37.1211941,36.7094214 36.720954,37.0899819 C36.5365059,37.2653609 36.2921257,37.3638098 36.0376129,37.3652668 L12.5057247,37.4999829 C11.953449,37.5031446 11.5031781,37.0579998 11.5000164,36.5057241 C11.5000055,36.5038158 11.5,36.5019076 11.5,36.4999993 Z M31.75,32.5869651 L25.3,29.5127305 L22.3,24.4402434 L21.25,23.9791082 L20.5,25.0550903 L23.5,29.3590188 L17.8,34.7389294 L19,29.5127305 L16.6,25.9773607 L17.05,22.7494144 L16.15,22.5957026 L13,17.3695038 L13,35.9686232 L34.75,35.8149115 L31.75,32.5869651 Z M28.3,27.2070546 L30.1,24.7476669 L31.9,25.6699372 L32.05,27.0533428 L30.55,29.0515953 L28.3,27.2070546 Z M24.4,20.7511618 L26.2,18.2917741 L29.65,19.521468 L29.65,20.9048736 L26.35,22.9031261 L24.4,20.7511618 Z M17.05,17.3695038 L17.8,14.7564043 L19.6,14.7564043 L20.5,16.6009451 L19.75,17.3695038 L17.05,17.3695038 Z" id="形状" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M24.8345043,13.4205105 C24.5295336,13.2427085 24.4117219,12.8224091 24.5709056,12.4822087 L25.3246639,10.8736284 C25.4838475,10.5329879 25.8601356,10.4013968 26.1647123,10.5791988 C26.471259,10.7578811 26.5882827,11.1799408 26.428705,11.518821 L25.6753407,13.126521 C25.5157631,13.4671616 25.1394749,13.5987527 24.8345043,13.4205105 Z" id="路径" fill="#1890FF"></path>
<path d="M28.5709056,12.4827051 L29.3246639,10.873722 C29.4838475,10.5329961 29.8601356,10.4013721 30.1647123,10.5792186 C30.471259,10.7579456 30.5882827,11.1801111 30.428705,11.5190761 L29.6753407,13.1271788 C29.515369,13.4670242 29.1394749,13.5982081 28.8345043,13.4212419 C28.5295336,13.2433954 28.4117219,12.8229907 28.5709056,12.4827051 Z" id="路径" fill="#1890FF"></path>
<path d="M26.5709056,16.48211 L27.3246639,14.8736098 C27.4838475,14.5329862 27.8601356,14.4014017 28.1647123,14.5791949 C28.471259,14.7578682 28.5882827,15.179907 28.428705,15.5187702 L27.6753407,17.1263902 C27.5161571,17.4670138 27.139869,17.5985983 26.8352923,17.4208051 C26.8348983,17.4203651 26.8348983,17.4203651 26.8345043,17.4203651 C26.5295336,17.2425719 26.4117219,16.8222934 26.5709056,16.48211 Z" id="路径" fill="#1890FF"></path>
<path d="M22.5709056,16.4823927 L23.3246639,14.8736631 C23.4838475,14.5329909 23.8601356,14.4013876 24.1647123,14.5792062 C24.471259,14.757905 24.5882827,15.180004 24.428705,15.5189155 L23.6753407,17.1267649 C23.515369,17.4669969 23.1394749,17.5986002 22.8345043,17.4207817 C22.5295336,17.2429631 22.4117219,16.8226248 22.5709056,16.4823927 Z" id="路径" fill="#1890FF"></path>
<path d="M32.5668743,12.5621358 L33.3906374,10.8442146 C33.5408858,10.5303909 33.8960523,10.4091593 34.1835325,10.5729639 C34.4728723,10.7375794 34.5833272,11.1264127 34.4327069,11.4386145 L33.6093158,13.1557248 C33.4594392,13.469143 33.1050166,13.5907801 32.8175363,13.4273809 C32.5278246,13.2627654 32.4166259,12.875554 32.5668743,12.5621358 Z" id="路径" fill="#1890FF"></path>
<path d="M30.5669238,16.5625716 L31.3906658,14.8442874 C31.5409103,14.5303973 31.8960677,14.4091401 32.1835406,14.5729793 C32.472873,14.7376296 32.5833251,15.126545 32.4327086,15.4388129 L31.6093386,17.156286 C31.4583502,17.4697705 31.1035647,17.5906222 30.8157199,17.4271885 C30.5278751,17.2633493 30.4166792,16.876056 30.5669238,16.5625716 Z" id="路径" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 10</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -168.000000)" fill-rule="nonzero">
<g id="编组-10" transform="translate(294.500000, 168.000000)">
<g id="矩形备份-31" fill="#EEEEEE">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-4"></path>
</g>
<path d="M30.0850847,37.0028525 C26.543661,36.9987301 23.6738305,34.0883479 23.6697627,30.4969526 C23.6697627,29.0417615 24.6667797,26.5580429 26.6331525,23.1162892 C28.0670508,20.607012 29.5208814,18.4654488 29.5351187,18.4436003 C29.6599219,18.2606444 29.865408,18.1514447 30.0848814,18.1514447 C30.3043547,18.1514447 30.5098409,18.2606444 30.6346441,18.4436003 C30.6488814,18.4654488 32.1027119,20.607012 33.5362034,23.1162892 C35.5029831,26.5580429 36.5,29.0417615 36.5,30.4969526 C36.4959322,34.0887601 33.6261017,36.9991424 30.0850847,37.0028525 Z M30.0850847,20.0393638 L30.0850847,20.039776 C28.2830508,22.8017535 25.0044068,28.282836 25.0044068,30.4977771 C25.0044068,33.3430262 27.2791187,35.6498957 30.0850847,35.6498957 C32.8906441,35.6498957 35.1649492,33.3430262 35.1649492,30.4977771 C35.1641356,28.2820116 31.8867119,22.8017535 30.0850847,20.0393638 Z M29.0514576,34.2907555 L29.0514576,34.2882821 C28.9176271,34.2882821 28.7870508,34.2474708 28.6768136,34.1712072 C27.4402034,33.3191165 26.7059661,32.2584347 26.4948475,31.0200794 C26.148678,28.984873 27.3812203,27.2501862 27.4336949,27.1772205 C27.6568414,26.892884 28.0616102,26.8376069 28.3510666,27.05194 C28.6405231,27.2662731 28.7115611,27.6738697 28.5120678,27.9757206 C28.4966102,27.9971569 27.5597966,29.3410444 27.8124068,30.7991212 C27.9616949,31.6582199 28.5047458,32.4150842 29.4269152,33.0532247 C29.6690231,33.220634 29.7753499,33.5283015 29.6892135,33.812212 C29.6030772,34.0961224 29.3445528,34.2901076 29.0514576,34.2907555 L29.0514576,34.2907555 Z M19.1569492,32.314911 C19.4381569,32.3155493 19.6888513,32.4946101 19.7839942,32.7627835 C19.8791371,33.030957 19.7983478,33.3307977 19.5819216,33.5127549 C19.3654953,33.694712 19.0597926,33.7198084 18.8172881,33.575527 L18.8160678,33.5771759 C18.6968814,33.5771759 18.5801356,33.5446093 18.4776271,33.4831862 C16.7520678,32.4521854 15.7070508,31.1021143 15.3710508,29.4704864 C14.7808135,26.6013276 16.6406101,23.9539516 16.7207458,23.8467704 C16.9369793,23.5438537 17.3545838,23.4759341 17.6534915,23.6950677 C17.9523992,23.9142014 18.0194199,24.3374069 17.8031864,24.6403236 C17.7771525,24.6774248 16.2090169,26.9335894 16.6812881,29.2021211 C16.9387796,30.4413009 17.7718644,31.4887911 19.1569492,32.314911 L19.1569492,32.314911 Z M27.4727458,19.5537504 C27.1601535,19.731579 26.7647678,19.6272652 26.5774237,19.3175395 C24.8494237,16.1911458 22.9725424,13.2659231 22.0658305,11.8882322 C21.2722034,13.09938 19.7223729,15.5064227 18.1904407,18.1884266 C15.3421695,23.1760633 13.8362712,26.8255837 13.8362712,28.743303 C13.8362712,33.3459118 17.5286102,37.0898342 22.0658305,37.0898342 C22.9123034,37.0907321 23.7538288,36.9590489 24.5606102,36.6994472 C24.9116591,36.5887193 25.2850393,36.7861308 25.3962565,37.1412655 C25.5074736,37.4964002 25.3147586,37.8758825 24.9649492,37.9905686 C24.0273555,38.2920355 23.0494839,38.4451261 22.0658305,38.4444422 C16.7911186,38.4444422 12.5,34.0924702 12.5,28.743303 C12.5012203,26.5555695 14.0278644,22.7733093 17.0384407,17.5020546 C19.251322,13.6303392 21.4943051,10.3258599 21.516678,10.2924688 C21.6413643,10.1093392 21.8468927,10 22.0664407,10 C22.2859886,10 22.491517,10.1093392 22.6162034,10.2924688 C22.6434576,10.3324556 25.3375593,14.3031075 27.7416271,18.6559016 C27.9041993,18.9798213 27.7855439,19.3760355 27.4727458,19.5537504 L27.4727458,19.5537504 Z" id="形状" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 26</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-206.000000, -266.000000)" fill-rule="nonzero">
<g id="编组-26" transform="translate(206.500000, 266.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-3" fill="#EEEEEE"></path>
<path d="M20.7273,11.25 C25.3427273,11.25 29.3802809,14.269403 30.9797158,18.6628011 L31.075,18.935 L31.1341062,18.9114232 C31.8418006,18.6457597 32.5879375,18.4914665 33.3528923,18.4570442 L33.681825,18.4496556 C37.8710402,18.4496556 41.25,22.0177151 41.25,26.3993889 C41.25,29.5796007 39.4547964,32.4208082 36.7233211,33.6810146 C36.3472071,33.8545403 35.9016362,33.69031 35.7281104,33.3141961 C35.5545847,32.9380821 35.718815,32.4925112 36.0949289,32.3189854 C38.2919824,31.3053425 39.75,28.9977877 39.75,26.3993889 C39.75,22.8284272 37.0237972,19.9496556 33.681825,19.9496556 C32.7213074,19.9496556 31.7939707,20.1865769 30.955309,20.6358892 C30.526228,20.8657691 29.9952454,20.6323337 29.8745462,20.1607544 C28.7619987,15.8139633 25.0251314,12.75 20.7273,12.75 C15.5025334,12.75 11.25,17.2404766 11.25,22.7995222 C11.25,24.5759313 11.6847163,26.2831252 12.4988815,27.7891309 C12.6958673,28.1535063 12.5601713,28.6085796 12.1957958,28.8055654 C11.8314204,29.0025513 11.3763472,28.8668552 11.1793613,28.5024797 C10.2471165,26.7780558 9.75,24.825807 9.75,22.7995222 C9.75,16.4297612 14.6552939,11.25 20.7273,11.25 Z" id="路径" fill="#1890FF"></path>
<path d="M32.5,34.25 C32.8796958,34.25 33.193491,34.5321539 33.2431534,34.8982294 L33.25,35 L33.25,38 C33.25,38.4142136 32.9142136,38.75 32.5,38.75 C32.1203042,38.75 31.806509,38.4678461 31.7568466,38.1017706 L31.75,38 L31.75,35 C31.75,34.5857864 32.0857864,34.25 32.5,34.25 Z" id="路径" fill="#1890FF"></path>
<path d="M28.5,30.75 C28.8796958,30.75 29.193491,31.0321539 29.2431534,31.3982294 L29.25,31.5 L29.25,34.5 C29.25,34.9142136 28.9142136,35.25 28.5,35.25 C28.1203042,35.25 27.806509,34.9678461 27.7568466,34.6017706 L27.75,34.5 L27.75,31.5 C27.75,31.0857864 28.0857864,30.75 28.5,30.75 Z" id="路径备份" fill="#1890FF"></path>
<path d="M32.5,29.25 C32.8796958,29.25 33.193491,29.5321539 33.2431534,29.8982294 L33.25,30 L33.25,32 C33.25,32.4142136 32.9142136,32.75 32.5,32.75 C32.1203042,32.75 31.806509,32.4678461 31.7568466,32.1017706 L31.75,32 L31.75,30 C31.75,29.5857864 32.0857864,29.25 32.5,29.25 Z" id="路径" fill="#1890FF"></path>
<path d="M28.5,25.75 C28.8796958,25.75 29.193491,26.0321539 29.2431534,26.3982294 L29.25,26.5 L29.25,28.5 C29.25,28.9142136 28.9142136,29.25 28.5,29.25 C28.1203042,29.25 27.806509,28.9678461 27.7568466,28.6017706 L27.75,28.5 L27.75,26.5 C27.75,26.0857864 28.0857864,25.75 28.5,25.75 Z" id="路径备份-2" fill="#1890FF"></path>
<path d="M22.5450575,30.8377042 L20.9316435,32.4281392 L20.9316435,32.4281392 L20.0863606,32.4281392 L20.0863606,31.5795161 L21.6443946,30.0441121 C21.8787554,29.8131554 21.8815149,29.435941 21.6505581,29.2015802 C21.6498227,29.2008339 21.6490852,29.2000895 21.6483458,29.1993471 C21.4195301,28.9695963 21.0477885,28.9688383 20.8180377,29.197654 C20.8152762,29.2004043 20.8125422,29.203182 20.809836,29.2059867 L20.0863606,29.9558004 L20.0863606,29.9558004 L20.0863606,28.5880649 C20.0863606,28.2632856 19.823075,28 19.4982958,28 C19.1735165,28 18.9102309,28.2632856 18.9102309,28.5880649 L18.9102309,29.9189781 L18.9102309,29.9189781 L18.1843969,29.190178 C17.9548169,28.9596598 17.5828957,28.9555236 17.3482458,29.1808789 C17.119029,29.4010163 17.1116687,29.7652898 17.3318061,29.9945065 C17.3342194,29.9970194 17.3366555,29.9995103 17.339114,30.0019789 L18.9102309,31.5795161 L18.9102309,31.5795161 L18.9102309,32.4281392 L18.1384064,32.4281392 L16.5581701,30.8414453 C16.3357873,30.6181537 15.9744969,30.617417 15.7512053,30.8397998 C15.7506652,30.8403377 15.7501261,30.8408768 15.7495881,30.8414169 C15.526038,31.065849 15.526034,31.4287895 15.7495792,31.6532266 L16.5214126,32.4281392 L16.5214126,32.4281392 L15.0719998,32.4281392 C14.756093,32.4281392 14.5,32.6842322 14.5,33.000139 C14.5,33.3160458 14.756093,33.5721388 15.0719998,33.5721388 L16.5214126,33.5721388 L16.5214126,33.5721388 L15.7797539,34.3407955 C15.5587905,34.5698024 15.561683,34.9335115 15.7862606,35.1589752 C16.0065947,35.3801786 16.3645316,35.3808833 16.5857351,35.1605492 C16.5875152,35.1587761 16.5892834,35.1569912 16.5910397,35.1551945 L18.1384064,33.5722528 L18.1384064,33.5722528 L18.9102309,33.5722528 L18.9102309,34.2733587 L17.3391259,35.8507938 C17.1148617,36.0759616 17.1155941,36.4402983 17.340762,36.6645625 C17.3432343,36.6670249 17.345729,36.6694648 17.3482458,36.6718819 C17.5829024,36.8972437 17.9548288,36.8931259 18.1844383,36.662624 L18.9102309,35.9340107 L18.9102309,35.9340107 L18.9102309,37.412384 C18.9102309,37.7371319 19.1734911,38.000392 19.498239,38.000392 C19.8229869,38.000392 20.0862471,37.7371319 20.0862471,37.412384 L20.0862471,35.8970744 L20.0862471,35.8970744 L20.8120604,36.6257811 C21.0416552,36.8562911 21.413579,36.8604181 21.6482322,36.6350596 C21.8774424,36.4149285 21.8848025,36.0506654 21.6646715,35.8214553 C21.6622544,35.8189385 21.6598145,35.8164438 21.6573521,35.8139715 L20.0862471,34.2365364 L20.0862471,34.2365364 L20.0862471,33.5722528 L20.93153,33.5722528 L22.5117663,35.1589468 C22.7341491,35.3822383 23.0954396,35.382975 23.3187311,35.1605922 C23.3192713,35.1600543 23.3198103,35.1595153 23.3203483,35.1589752 C23.544926,34.9335114 23.5478187,34.5698022 23.3268556,34.3407949 L22.5853098,33.5722528 L22.5853098,33.5722528 L23.9244782,33.5722528 C24.240385,33.5722528 24.496478,33.3161598 24.496478,33.000253 C24.496478,32.6843462 24.240385,32.4282532 23.9244782,32.4282532 L22.5853098,32.4282532 L22.5853098,32.4282532 L23.3573507,31.6532071 C23.5809035,31.428784 23.5809083,31.0658458 23.3573614,30.8414169 C23.1337303,30.6169034 22.7707315,30.6152443 22.5450575,30.8377042 Z" id="路径" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 12</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -266.000000)">
<g id="编组-12" transform="translate(119.500000, 266.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-3" fill="#EEEEEE" fill-rule="nonzero"></path>
<path d="M29.58824,21.25 L21.82352,21.25 C21.5004102,21.25 21.213619,21.456934 21.1117614,21.7635689 L18.2882414,30.2635689 L18.2631294,30.3595228 C18.1828669,30.7755876 18.468254,31.1861753 18.9016153,31.243519 L22.994,31.785 L21.09943,38.8045681 C20.8958302,39.5589207 21.8373498,40.0829633 22.37118,39.5124144 L31.54766,29.7047448 L31.6146346,29.6227007 C31.9146731,29.1987391 31.6968209,28.5838521 31.1692073,28.4616671 L26.619,27.407 L30.1969703,22.438118 C30.5540437,21.9419928 30.1995023,21.25 29.58824,21.25 Z M28.123,22.75 L24.7442297,27.446469 L24.6888195,27.5356017 C24.4633587,27.9608001 24.6966929,28.5024568 25.1837527,28.6152503 L29.563,29.629 L23.331,36.289 L24.66529,31.3492667 L24.6853517,31.2483471 C24.7372457,30.8457973 24.4545312,30.4652228 24.0395847,30.4103158 L19.997,29.875 L22.364,22.75 L28.123,22.75 Z" id="路径备份-5" fill="#3E8FFD" fill-rule="nonzero"></path>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
<path d="M19.56821,9.25 C24.3029032,9.25 28.4605147,12.1097607 30.1229594,16.2922176 L30.233,16.584 L30.4413757,16.5109501 C31.127737,16.2829652 31.8476991,16.1488958 32.5847055,16.1152431 L32.9545525,16.1068148 C37.2553948,16.1068148 40.75,19.5078995 40.75,23.7137037 C40.75,26.7712398 38.8850719,29.49157 36.0662471,30.6901933 C35.6850639,30.8522804 35.2446563,30.6746679 35.0825692,30.2934846 C34.9204821,29.9123014 35.0980946,29.4718938 35.4792779,29.3098067 C37.7532663,28.3428592 39.25,26.1596063 39.25,23.7137037 C39.25,20.3455694 36.4359372,17.6068148 32.9545525,17.6068148 C31.9488433,17.6068148 30.9786044,17.8352777 30.1032212,18.2675227 C29.6814863,18.4757662 29.174363,18.2489147 29.0485098,17.7957187 C27.9035178,13.6726132 24.0360581,10.75 19.56821,10.75 C14.1412713,10.75 9.75,15.0237118 9.75,20.2852593 C9.75,23.3192205 11.2184153,26.1166867 13.6698859,27.9087499 C14.004279,28.1531965 14.0771951,28.6224388 13.8327485,28.9568319 C13.588302,29.291225 13.1190597,29.3641411 12.7846666,29.1196945 C9.95276064,27.0495271 8.25,23.8056114 8.25,20.2852593 C8.25,14.1860385 13.3218169,9.25 19.56821,9.25 Z" id="路径备份-7" fill="#1890FF" fill-rule="nonzero"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 11</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -266.000000)">
<g id="编组-11" transform="translate(31.500000, 266.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-2" fill="#EEEEEE" fill-rule="nonzero"></path>
<rect id="矩形备份-33" x="8.5" y="8.5" width="32" height="32"></rect>
<path d="M24.5,9.75 C16.3537964,9.75 9.75,16.3537964 9.75,24.5 C9.75,32.6462036 16.3537964,39.25 24.5,39.25 C32.6462036,39.25 39.25,32.6462036 39.25,24.5 C39.25,16.3537964 32.6462036,9.75 24.5,9.75 Z M24.5,11.25 C31.8177764,11.25 37.75,17.1822236 37.75,24.5 C37.75,31.8177764 31.8177764,37.75 24.5,37.75 C17.1822236,37.75 11.25,31.8177764 11.25,24.5 C11.25,17.1822236 17.1822236,11.25 24.5,11.25 Z" id="路径备份-2" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M25,17.75 C20.9959664,17.75 17.75,20.9959664 17.75,25 C17.75,29.0040336 20.9959664,32.25 25,32.25 C29.0040336,32.25 32.25,29.0040336 32.25,25 C32.25,20.9959664 29.0040336,17.75 25,17.75 Z M25,19.25 C28.1756064,19.25 30.75,21.8243936 30.75,25 C30.75,28.1756064 28.1756064,30.75 25,30.75 C21.8243936,30.75 19.25,28.1756064 19.25,25 C19.25,21.8243936 21.8243936,19.25 25,19.25 Z" id="路径备份-3" fill="#3E8FFD" fill-rule="nonzero"></path>
<path d="M25,9.75 C25.3796958,9.75 25.693491,10.0321539 25.7431534,10.3982294 L25.75,10.5 L25.75,38.5 C25.75,38.9142136 25.4142136,39.25 25,39.25 C24.6203042,39.25 24.306509,38.9678461 24.2568466,38.6017706 L24.25,38.5 L24.25,10.5 C24.25,10.0857864 24.5857864,9.75 25,9.75 Z" id="路径备份-4" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M38.5,24.25 C38.9142136,24.25 39.25,24.5857864 39.25,25 C39.25,25.3796958 38.9678461,25.693491 38.6017706,25.7431534 L38.5,25.75 L10.5,25.75 C10.0857864,25.75 9.75,25.4142136 9.75,25 C9.75,24.6203042 10.0321539,24.306509 10.3982294,24.2568466 L10.5,24.25 L38.5,24.25 Z" id="路径备份-6" fill="#1890FF" fill-rule="nonzero"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 53</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -168.000000)" fill-rule="nonzero">
<g id="编组-2" transform="translate(31.500000, 168.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形" fill="#EEEEEE"></path>
<path d="M19.56821,9.25 C24.3345991,9.25 28.5012045,12.4129939 30.145489,17.0107229 L30.247,17.308 L30.327693,17.2751091 C31.0572505,16.9974737 31.8265629,16.8361998 32.6153618,16.8002194 L32.9545525,16.7924963 C37.2717396,16.7924963 40.75,20.5161913 40.75,25.0850741 C40.75,28.4004363 38.9031678,31.3637637 36.0905269,32.6793569 C35.7153285,32.8548533 35.2689021,32.6929629 35.0934056,32.3177644 C34.9179092,31.942566 35.0797996,31.4961396 35.4549981,31.3206431 C37.7351704,30.2541084 39.25,27.8234945 39.25,25.0850741 C39.25,21.3226244 36.4195924,18.2924963 32.9545525,18.2924963 C31.9594369,18.2924963 30.9985021,18.5413955 30.1291335,19.0135982 C29.6989258,19.2472681 29.1638137,19.0128018 29.0439779,18.5381233 C27.8903842,13.9686511 24.0183867,10.75 19.56821,10.75 C14.1576159,10.75 9.75,15.4685808 9.75,21.3137852 C9.75,24.6919022 11.2329483,27.7995705 13.6972634,29.7811685 C14.0200605,30.0407352 14.0713189,30.5128344 13.8117522,30.8356316 C13.5521855,31.1584287 13.0800863,31.2096871 12.7572891,30.9501204 C9.93822759,28.6832647 8.25,25.1454128 8.25,21.3137852 C8.25,14.6621446 13.3054723,9.25 19.56821,9.25 Z" id="路径" fill="#1890FF"></path>
<path d="M19.5,27.25 C19.8796958,27.25 20.193491,27.5321539 20.2431534,27.8982294 L20.25,28 L20.25,35 C20.25,35.4142136 19.9142136,35.75 19.5,35.75 C19.1203042,35.75 18.806509,35.4678461 18.7568466,35.1017706 L18.75,35 L18.75,28 C18.75,27.5857864 19.0857864,27.25 19.5,27.25 Z" id="路径" fill="#1890FF"></path>
<path d="M25.5,31.25 C25.8796958,31.25 26.193491,31.5321539 26.2431534,31.8982294 L26.25,32 L26.25,39 C26.25,39.4142136 25.9142136,39.75 25.5,39.75 C25.1203042,39.75 24.806509,39.4678461 24.7568466,39.1017706 L24.75,39 L24.75,32 C24.75,31.5857864 25.0857864,31.25 25.5,31.25 Z" id="路径" fill="#1890FF"></path>
<path d="M30.5,27.25 C30.8796958,27.25 31.193491,27.5321539 31.2431534,27.8982294 L31.25,28 L31.25,35 C31.25,35.4142136 30.9142136,35.75 30.5,35.75 C30.1203042,35.75 29.806509,35.4678461 29.7568466,35.1017706 L29.75,35 L29.75,28 C29.75,27.5857864 30.0857864,27.25 30.5,27.25 Z" id="路径" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 9</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -364.000000)" fill-rule="nonzero">
<g id="编组-9" transform="translate(119.500000, 364.000000)">
<g id="矩形备份-34" fill="#EEEEEE">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-6"></path>
</g>
<g id="编组" transform="translate(9.500000, 9.500000)" fill="#1890FF">
<path d="M25.9053079,25.9052791 C20.4974094,31.313254 11.7678186,31.3626741 6.2893208,26.0641296 L7.29535937,25.0580768 C12.2161235,29.7988798 20.0455745,29.7529897 24.8992694,24.8992264 C29.7529642,20.0454631 29.7988537,12.2159016 25.0581176,7.29506814 L26.0641561,6.28901539 C31.3626259,11.7675904 31.3132065,20.4973043 25.9053079,25.9052791 Z M13.6965345,3.89480706 L17.3155577,0.278270685 C17.7063612,-0.111788258 18.3393426,-0.111677248 18.7300093,0.278518747 L22.3459986,3.894559 C22.7361613,4.28524333 22.7362723,4.91820935 22.3462466,5.30903051 L18.7297612,8.92810482 C18.3396347,9.31902667 17.7064698,9.31925321 17.3158058,8.92886868 C17.3157198,8.92878271 17.3156338,8.92869673 17.3158057,8.92835279 L13.6962865,5.30878253 C13.3055269,4.91849349 13.3055314,4.28532851 13.6960584,3.89480698 C13.6961378,3.89472763 13.6962172,3.89464829 13.6965345,3.89480706 Z M18.0229075,1.58351249 L15.0047918,4.60167076 L18.0229075,7.61982903 L21.0410232,4.60167076 L18.0229075,1.58351249 Z M22.7106942,9.64252458 C26.1559351,13.2678445 26.1065157,18.9935202 22.551846,22.5482399 C18.9971764,26.1029597 13.2680515,26.1523798 9.64631266,22.7070904 L10.6523512,21.7010376 C13.7198864,24.5885855 18.5453416,24.5426954 21.5458075,21.5421872 C24.5462734,18.541679 24.5956928,13.7161557 21.7046557,10.6485773 L22.7106942,9.64252458 Z M16.0108304,7.62335904 L15.0047918,8.6294118 L18.6571905,12.281862 C19.0476981,12.6723951 19.0476981,13.3055524 18.6571905,13.6960855 L16.6815227,15.6717811 L16.6815227,15.6717811 L17.184542,16.1748075 C17.462353,16.4526224 17.462353,16.9030453 17.184542,17.1808602 C16.9067361,17.4586701 16.4563204,17.4586733 16.1785105,17.1808673 C16.1785082,17.180865 16.1785058,17.1808626 16.1785034,17.1808602 L15.6754842,16.6778339 L15.6754842,16.6778339 L13.6998164,18.6535294 C13.3091498,19.0437254 12.6761684,19.0438364 12.2853649,18.6537775 L3.63261879,10.0069773 C3.24172237,9.61682539 3.24150475,8.98366045 3.63189479,8.59300195 C3.63197411,8.59292258 3.63205345,8.59284321 3.63237081,8.59300187 L8.59327479,3.63202794 C8.98378636,3.24149092 9.61695134,3.24148646 10.0074784,3.63200799 C10.0074817,3.63201132 10.007485,3.63201464 10.0074784,3.63202794 L13.9952233,7.61982903 L13.9952233,7.61982903 L15.0047918,6.61730629 L16.0108304,7.62335904 Z M4.94087612,9.30011364 L12.9927146,17.3520657 L17.3522151,12.9925038 L9.30037659,4.94055169 L4.94087612,9.30011364 Z M6.61407711,15.0010793 L7.62011568,13.9950265 L8.62615425,15.0010793 L7.62011568,16.007132 L8.92509102,17.3121258 C9.31490853,17.7029615 9.31513056,18.3357361 8.92558742,18.7268453 L5.31213533,22.3454235 C4.92214624,22.7364825 4.28898142,22.7369312 3.89818042,22.3466839 C3.89809431,22.3465979 3.89800821,22.3465119 3.89818015,22.3461676 L0.279156887,18.7296312 C-0.111739535,18.3394793 -0.111957156,17.7063143 0.278432888,17.3156559 C0.278512211,17.3155765 0.278591547,17.3154971 0.278908908,17.3156558 L3.89489817,13.6996155 C4.28571625,13.3097648 4.91850625,13.3095427 5.30959781,13.6991191 L7.11886137,15.5058706 L7.11886137,15.5058706 L6.61407711,15.0010793 Z M4.60552993,21.0409258 L7.62364564,18.0227675 L4.60552993,15.0046093 L1.58741421,18.0227675 L4.60552993,21.0409258 Z" id="形状"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 27</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -266.000000)" fill-rule="nonzero">
<g id="编组-27" transform="translate(294.500000, 266.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-4" fill="#EEEEEE"></path>
<path d="M24.4421337,19.2565949 C23.7416098,19.3181149 22.9285756,19.8095861 21.9110446,20.7117315 L21.741,20.864 L21.8055371,20.8241686 C19.4369344,22.2728068 19.7795091,23.9042667 22.2447247,25.2606915 L22.602425,25.4481291 C22.9737827,25.6336895 23.3859353,25.8134804 23.8372838,25.9862578 L24.5313109,26.2400353 L25.15396,26.4520775 L25.5219629,26.5657266 L25.854607,26.6563297 C26.9066971,26.9190963 27.4025922,26.7852515 27.6734846,26.1296618 C27.8280681,25.7555527 27.7636854,25.4308294 27.5504454,24.9697993 L27.4462937,24.7566448 L26.8566409,23.6728603 C26.3776958,22.7708547 26.138459,22.0856957 26.138459,21.4639907 C26.138459,20.1288319 25.6594796,19.25 24.5905574,19.25 L24.4421337,19.2565949 Z M24.52913,20.7555102 L24.543,20.754 L24.5304412,20.7249153 C24.5840038,20.8231922 24.6251048,21.0213495 24.6357549,21.3113652 L24.638459,21.4639907 C24.638459,22.3912001 24.9470737,23.2750528 25.5318181,24.3763121 L25.935,25.114 L25.6086858,25.0170805 L25.2376236,24.8957108 C25.1714772,24.873296 25.1031609,24.8497793 25.0326467,24.8251476 L24.3523755,24.5783311 L23.9233224,24.4133332 L23.5363975,24.2559104 L23.1907585,24.1054074 L22.8855632,23.9611692 C22.7429361,23.890507 22.6151595,23.8219484 22.5017598,23.7551248 L22.293989,23.6236817 C21.6643808,23.192521 21.6597049,22.827551 22.1395911,22.4195697 L22.2979534,22.2957757 C22.3842627,22.2331244 22.4811587,22.1692596 22.5881678,22.1038128 L22.7038663,22.0166543 C23.5727263,21.2195616 24.2183601,20.8069786 24.52913,20.7555102 Z" id="路径-2" fill="#1890FF"></path>
<path d="M20.2179454,29.4764555 L20.6709176,29.7682411 C21.911232,30.5397645 23.4105219,31.2585692 25.1655948,31.9211809 C30.2472851,33.8397268 33.8276057,32.0402811 33.7492026,29.2245323 C33.7461711,29.1156583 33.7349503,29.006998 33.7158628,28.8983389 C33.6375032,28.4522619 33.4459351,28.0440194 33.1035621,27.520951 L32.8583714,27.1663618 L32.1266516,26.1265125 L31.8605232,25.7312695 C30.8380765,24.135611 30.2729423,22.4756055 30.2133053,20.2336859 L30.2080383,19.831907 C30.2080383,19.6502923 30.2057985,19.4724437 30.2013349,19.2983614 L30.1812881,18.7874141 C30.1768403,18.7041396 30.1718405,18.6218067 30.1662907,18.5404156 L30.1264073,18.06337 C29.630919,13.0954344 26.8987548,11.9852367 22.4494705,14.7449351 L22.0273354,15.0149948 C21.8137683,15.1556938 21.596464,15.3048969 21.3754759,15.4626052 L20.9286038,15.7893625 L20.4720035,16.1388028 L20.0057699,16.5109283 L19.5299984,16.9057413 C14.9109734,21.8625558 15.2219827,26.1416984 20.2179454,29.4764555 Z M28.7080383,19.831907 C28.7080383,22.5827804 29.3672159,24.6204344 30.5975566,26.5405379 L30.9076183,27.0008591 L31.7316302,28.168423 C32.047331,28.6280142 32.1969681,28.9215239 32.238484,29.157861 C32.2451028,29.19554 32.2488149,29.2314876 32.2497838,29.2662829 C32.263527,29.7598549 31.8184623,30.4553037 31.0184128,30.8574032 C29.845315,31.4469945 28.0707562,31.4146552 25.6954047,30.5178629 C25.3631303,30.3924158 25.0414229,30.2658213 24.730257,30.1380438 L24.1219729,29.8809011 C23.6267696,29.6652836 23.1608009,29.4463144 22.7239489,29.2238286 L22.2136949,28.9551473 C16.8371866,26.0259194 16.3734173,22.4912825 20.563174,17.9894936 L21.0451037,17.5888434 L21.5107337,17.2142941 C21.5869887,17.154045 21.6625707,17.0948839 21.7374829,17.0368111 L22.1789427,16.7014357 C22.2511879,16.6477171 22.3227695,16.5950872 22.3936905,16.5435464 L22.8113148,16.2473719 L23.213235,15.9773463 C26.4318624,13.8789446 28.0943045,14.3977198 28.5653815,17.563032 L28.6171348,17.9638504 L28.6571284,18.3911351 L28.6855109,18.8448981 C28.6930531,19.0005669 28.6986849,19.1606507 28.7024312,19.3251515 L28.7080383,19.831907 Z" id="路径-2备份" fill="#1890FF"></path>
<path d="M31.7940213,10.8962816 L31.358059,10.3886978 C29.7886853,8.5611545 26.6934574,8.98112961 22.5946987,11.210899 L22.0023914,11.5417018 L21.3967691,11.896844 C21.2947412,11.9580469 21.1921727,12.0202521 21.0890705,12.0834537 L20.4097916,12.5063148 L19.4377609,13.074654 L18.8290379,13.4412993 C17.8251319,14.0646472 16.8846202,14.7294734 15.9942436,15.4780775 C13.3947943,17.663623 11.6936531,20.164 11.305412,23.0387833 C10.7531285,27.1282416 14.3292238,31.8126252 20.653365,35.4381 C22.5180542,36.5070804 24.5960755,37.4703197 26.8463501,38.3015269 L27.5170236,38.5442511 C27.6260534,38.5828473 27.7337234,38.6205162 27.8400562,38.6572604 L28.4621846,38.8666514 C28.5632578,38.8997076 28.6630384,38.9318444 28.7615489,38.9630644 L29.3375495,39.1394036 C29.431069,39.1669668 29.5233632,39.1936184 29.6144543,39.219361 L30.1467445,39.3629297 C33.6878632,40.2697302 35.2820148,39.6572824 36.4718692,37.7051693 L36.8801432,37.0059491 L36.937738,36.911948 C37.3060308,36.3200516 37.5379818,35.8022624 37.6569534,35.2760142 C37.8782899,34.2969739 37.7153459,33.3603553 37.142251,31.8598812 L36.5860457,30.5102689 L34.9270702,26.5371122 L34.771188,26.1496093 L34.6048151,25.6707061 L33.722195,22.9501358 L33.7007669,22.8887167 C33.4491121,22.1783467 33.3962765,21.3818132 33.4882653,20.0654556 L33.5363985,19.468212 L33.6575044,18.2030149 L33.7041775,17.6511184 L33.7377477,17.1589275 C33.7422159,17.0813966 33.7461119,17.0059976 33.7494225,16.9325525 L33.7621581,16.5139055 C33.7713283,15.850494 33.7193458,15.3468871 33.5930961,14.8251476 L33.4804034,14.4007556 L33.3421652,13.9154153 L33.2109287,13.4886694 C33.1251802,13.2219221 33.0423251,12.9888934 32.9588143,12.7788949 C32.7360756,12.2187895 32.5009747,11.8008121 32.1743262,11.3674323 L32.0009193,11.145687 L31.7940213,10.8962816 Z M30.2200693,11.3659283 L30.8787277,12.1405124 L30.9764704,12.2702843 C31.2225848,12.5968157 31.3917542,12.8975759 31.5649836,13.3331836 L31.6194528,13.4744147 L31.7308229,13.7891738 C31.7497459,13.8455197 31.76888,13.9039079 31.7882708,13.964487 L31.9080603,14.3554443 L32.0361983,14.806127 C32.0583719,14.8866146 32.0809845,14.9698883 32.1040818,15.0560969 C32.2183639,15.4826454 32.2675809,15.9102845 32.2597291,16.5104499 L32.2482337,16.8926238 L32.2234257,17.3244329 L32.162092,18.0832135 L32.0738595,18.9981989 C31.8801213,20.990902 31.8821415,22.119895 32.2231425,23.1994425 L32.5510495,24.1939018 L33.2139795,26.241229 L33.3499203,26.6310157 L33.3999708,26.76218 L34.4929228,29.3992037 L35.5101543,31.8270977 L35.712726,32.3227045 L35.7409815,32.3950857 C36.2179498,33.6438816 36.3354245,34.3191377 36.1938763,34.9452491 C36.1270821,35.2407005 35.9959647,35.5543033 35.7795609,35.9276488 L35.527989,36.3448107 L35.2597556,36.8089764 C35.1948304,36.9208218 35.1289424,37.0268166 35.0612608,37.1268246 L34.9232604,37.3188175 C34.2658027,38.1771556 33.4038847,38.5060482 31.6622708,38.1946198 L31.2753571,38.1180439 C31.1417335,38.0892247 31.0033756,38.0570982 30.8600373,38.0216239 L30.4148352,37.9051174 L29.9382743,37.7682819 C29.8561522,37.7437684 29.7726619,37.7183978 29.6877728,37.692165 L29.1614052,37.5243814 L28.5999876,37.3356628 L28.0020435,37.1257666 L27.3660964,36.8944505 C25.1926381,36.0916178 23.1903075,35.163464 21.3993845,34.1367718 C15.5457603,30.7810329 12.3404662,26.5823676 12.7919174,23.2395367 C13.1221273,20.7944528 14.6193896,18.5937418 16.9595516,16.6261979 C17.7897121,15.9282218 18.6732507,15.3036687 19.6202965,14.7156264 L20.3457404,14.28075 L21.2712425,13.7389061 C25.8302301,10.8285115 29.0937718,10.0543494 30.2200693,11.3659283 Z" id="路径-2备份" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 3</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -168.000000)">
<g id="编组-3" transform="translate(119.500000, 168.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份" fill="#EEEEEE" fill-rule="nonzero"></path>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
<path d="M23.9985739,7.75398346 C20.8111182,7.86519316 18.2409091,10.2911879 18.2409091,13.3 L18.24,25.716 L18.0703264,25.8468752 C15.9883398,27.4892913 14.75,29.8972427 14.75,32.5 C14.75,37.347725 19.0070272,41.25 24.2272727,41.25 C29.4475182,41.25 33.7045455,37.347725 33.7045455,32.5 L33.6990723,32.2005788 C33.6080405,29.7131481 32.3861293,27.4261214 30.384219,25.8468752 L30.213,25.716 L30.2136364,13.3 C30.2136364,10.2195495 27.5195793,7.75 24.2272727,7.75 L23.9985739,7.75398346 Z M24.2272727,9.25 C26.718885,9.25 28.7136364,11.07852 28.7136364,13.3 L28.7136364,26.09944 C28.7136364,26.3462274 28.835043,26.5772206 29.0383085,26.7171747 C31.0219472,28.0829663 32.2045455,30.2049856 32.2045455,32.5 C32.2045455,36.488755 28.6468236,39.75 24.2272727,39.75 C19.8077219,39.75 16.25,36.488755 16.25,32.5 C16.25,30.2049856 17.4325983,28.0829663 19.416237,26.7171747 C19.6195025,26.5772206 19.7409091,26.3462274 19.7409091,26.09944 L19.7409091,13.3 C19.7409091,11.07852 21.7356605,9.25 24.2272727,9.25 Z" id="路径" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M24.5,19.25 C24.8796958,19.25 25.193491,19.5321539 25.2431534,19.8982294 L25.25,20 L25.25,30 C25.25,30.4142136 24.9142136,30.75 24.5,30.75 C24.1203042,30.75 23.806509,30.4678461 23.7568466,30.1017706 L23.75,30 L23.75,20 C23.75,19.5857864 24.0857864,19.25 24.5,19.25 Z" id="路径" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M24.5,29.75 C22.4289614,29.75 20.75,31.4289614 20.75,33.5 C20.75,35.5710386 22.4289614,37.25 24.5,37.25 C26.5710386,37.25 28.25,35.5710386 28.25,33.5 C28.25,31.4289614 26.5710386,29.75 24.5,29.75 Z M24.5,31.25 C25.7426114,31.25 26.75,32.2573886 26.75,33.5 C26.75,34.7426114 25.7426114,35.75 24.5,35.75 C23.2573886,35.75 22.25,34.7426114 22.25,33.5 C22.25,32.2573886 23.2573886,31.25 24.5,31.25 Z" id="路径" fill="#1890FF" fill-rule="nonzero"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 30</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -462.000000)" fill-rule="nonzero">
<g id="编组-30" transform="translate(31.500000, 462.000000)">
<path d="M35.2635764,36.4739208 C32.5632063,38.7600341 30.259676,38.7600341 27.5593059,36.4739208 C25.7983298,34.9828238 24.2946795,34.9828238 22.5337034,36.4739208 C19.8581358,38.7388336 17.6755176,38.7388336 14.99995,36.4739208 C13.220372,34.9651568 12.0174517,34.9651568 10.2347735,36.4739208 L9.5,35.367965 C11.6640164,33.5341276 13.4838984,33.4599261 15.7347235,35.367965 C17.8553355,37.1664683 19.4240924,37.3784726 21.7958296,35.367965 C24.0466547,33.4599261 26.1393639,33.5482613 28.2909791,35.367965 C30.4983998,37.2371364 32.2314731,37.3113379 34.5257026,35.367965 C36.7765277,33.4599261 38.2491749,33.4599261 40.5,35.367965 L39.7652265,36.4739208 C37.9577458,34.9404229 37.0741574,34.9404229 35.2635764,36.4739208 Z" id="路径" fill="#1890FF"></path>
<path d="M35.2635764,32.1737666 C32.5632063,34.4598798 30.259676,34.4598798 27.5593059,32.1737666 C25.7983298,30.6826696 24.2946795,30.6826696 22.5337034,32.1737666 C19.8581358,34.4386794 17.6755176,34.4386794 14.99995,32.1737666 C13.220372,30.6650025 12.0174517,30.6650025 10.2347735,32.1737666 L9.5,31.0678107 C11.6640164,29.2339734 13.4838984,29.1597719 15.7347235,31.0678107 C17.8553355,32.866314 19.4240924,33.0783184 21.7958296,31.0678107 C24.0466547,29.1597719 26.1393639,29.248107 28.2909791,31.0678107 C30.4983998,32.9369821 32.2314731,33.0111837 34.5257026,31.0678107 C36.7765277,29.1597719 38.2491749,29.1597719 40.5,31.0678107 C40.3598399,31.278775 40.2314783,31.4719804 40.1149154,31.6474269 C39.9983524,31.8228735 39.8817895,31.9983201 39.7652265,32.1737666 C37.9577458,30.6402687 37.0741574,30.6402687 35.2635764,32.1737666 L35.2635764,32.1737666 Z" id="路径" fill="#1890FF"></path>
<path d="M20.8245868,11.1410352 L12.084012,27.175518 C11.8115784,27.6752942 12.173322,28.2844828 12.7425287,28.2844828 L30.2236784,28.2844828 C30.7928851,28.2844828 31.1546287,27.6752942 30.8821951,27.175518 L22.1416203,11.1410352 C21.8574101,10.6196549 21.108797,10.6196549 20.8245868,11.1410352 Z M21.483,13.066 L28.96,26.784 L14.005,26.784 L21.483,13.066 Z" id="路径" fill="#1890FF"></path>
<path d="M30.688836,17.8766047 C30.9844161,17.5405324 31.4982205,17.5409819 31.7953464,17.8546601 L31.864862,17.9395917 L38.3284547,27.1021533 C38.6583203,27.5697592 38.3629728,28.2044887 37.8201807,28.2775448 L37.7155997,28.2844828 L30.2236784,28.2844828 C29.8094648,28.2844828 29.4736784,27.9486963 29.4736784,27.5344828 C29.4736784,27.154787 29.7558323,26.8409918 30.1219078,26.7913294 L30.2236784,26.7844828 L36.268,26.784 L31.187,19.581 L28.2895423,22.8758583 C28.0408553,23.1586136 27.6265937,23.2094256 27.3196466,23.0108009 L27.2310548,22.9437129 C26.9482996,22.6950259 26.8974875,22.2807642 27.0961123,21.9738172 L27.1632003,21.8852254 L30.688836,17.8766047 Z" id="路径" fill="#1890FF"></path>
<path d="M25.2290642,17.6219212 C25.6432778,17.6219212 25.9790642,17.9577076 25.9790642,18.3719212 C25.9790642,18.7516169 25.6969103,19.0654121 25.3308348,19.1150746 L25.2290642,19.1219212 L17.7371429,19.1219212 C17.3229294,19.1219212 16.9871429,18.7861347 16.9871429,18.3719212 C16.9871429,17.9922254 17.2692968,17.6784302 17.6353724,17.6287678 L17.7371429,17.6219212 L25.2290642,17.6219212 Z" id="路径" fill="#1890FF"></path>
<path d="M18.3272797,15.722316 C18.5255305,15.3586273 18.9810725,15.2245133 19.3447613,15.4227641 C19.6781426,15.6044939 19.8186174,16.0024199 19.6870111,16.3476118 L19.6443132,16.4402456 L17.1470061,21.0215264 C16.9487553,21.3852151 16.4932133,21.5193291 16.1295246,21.3210783 C15.7961432,21.1393484 15.6556685,20.7414225 15.7872747,20.3962305 L15.8299726,20.3035968 L18.3272797,15.722316 Z" id="路径" fill="#1890FF"></path>
<path d="M23.6214459,15.4227641 C23.9548272,15.2410342 24.3653908,15.338583 24.5842065,15.6362361 L24.6389274,15.722316 L27.1362345,20.3035968 C27.3344853,20.6672855 27.2003713,21.1228275 26.8366825,21.3210783 C26.5033012,21.5028082 26.0927376,21.4052594 25.8739219,21.1076063 L25.819201,21.0215264 L23.3218939,16.4402456 C23.1236431,16.0765568 23.2577571,15.6210148 23.6214459,15.4227641 Z" id="路径" fill="#1890FF"></path>
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-12" fill="#EEEEEE"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 52</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -364.000000)">
<g id="编组-52" transform="translate(31.500000, 364.000000)">
<g id="编组-15" fill-rule="nonzero">
<g id="矩形备份-32" fill="#EEEEEE">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-13"></path>
</g>
<path d="M34.0007609,16.4655237 C33.2323056,15.7097186 32.3651771,15.0681632 31.4232961,14.5525753 C29.4049797,13.3251245 26.923198,12.7978187 24.4294559,13.0673306 C24.1693174,13.0849074 23.9091788,13.1083432 23.6490403,13.1405675 C25.4401092,11.9629178 27.4883266,11.2979265 29.599336,11.233478 C29.9282469,11.2246896 30.2003458,10.9786136 30.2392171,10.6593006 C30.2780884,10.3399876 30.0717716,10.0382515 29.7548211,9.95329666 C24.9945845,8.66725633 19.6991203,10.164219 15.9375766,13.8524303 C13.2733989,16.4596647 11.7035973,19.8314925 11.5182111,23.3468647 C11.332825,26.8886022 12.5677357,30.1491099 14.9986857,32.5307746 C15.7671409,33.2836501 16.6342695,33.9281351 17.5791406,34.443723 C19.5914768,35.6682443 22.0732584,36.1955501 24.5729807,35.9318972 C24.8331192,35.9143204 25.0932578,35.8908845 25.3533963,35.8586603 C23.5623274,37.03631 21.51411,37.7013012 19.4031006,37.7657497 C19.0741898,37.7745382 18.8020908,38.0206142 18.7632195,38.3399272 C18.7243482,38.6592402 18.930665,38.9609763 19.2476155,39.0459311 C20.3748826,39.3505967 21.5350407,39.5 22.6951989,39.5 C26.4328219,39.5 30.1943656,37.9620246 33.0648601,35.1467974 C35.7290377,32.5395631 37.2958493,29.1677352 37.4812354,25.652363 C37.6696116,22.1076961 36.434701,18.8471883 34.0007609,16.4655237 Z M36.1536317,25.5820556 C35.9861862,28.7751853 34.5539291,31.8423476 32.1229791,34.2210827 C29.7877122,36.5119336 26.8155545,37.8741403 23.7985452,38.1436522 C25.3922676,37.4991673 26.8753564,36.5295105 28.1581086,35.2727649 C28.2179106,35.2141754 28.2836928,35.1497269 28.3434947,35.0852784 C28.5528016,34.8684971 28.5856927,34.5403957 28.4212373,34.2884607 C28.2956532,34.0951152 28.0833562,33.9867246 27.8590988,33.9867246 C27.7903265,33.9867246 27.7215543,33.9984425 27.652782,34.0189489 C26.6152179,34.3529092 25.5447626,34.5579726 24.4713173,34.62828 C24.462347,34.62828 24.4533768,34.62828 24.4444065,34.6312095 C22.1958525,34.8714266 20.0639123,34.4202872 18.2728434,33.3275923 C18.2638731,33.3217334 18.2549028,33.3158744 18.2429424,33.3100155 C17.4027248,32.8530171 16.6282893,32.2788396 15.9435567,31.6079894 C13.7817156,29.4899777 12.6843495,26.5780777 12.8488049,23.4113132 C13.0162504,20.221113 14.4485076,17.1539507 16.8764675,14.7722861 C19.2117343,12.4843647 22.1838921,11.1192285 25.2009013,10.8497166 C23.6071789,11.4942015 22.1300703,12.4609288 20.8503082,13.7147449 L20.8383478,13.7264628 C20.814427,13.7528281 20.7875161,13.7762639 20.7606053,13.8026292 C20.7247241,13.837783 20.691833,13.8700072 20.6589419,13.9051609 C20.449635,14.1219422 20.4167439,14.4500436 20.5811993,14.7019786 C20.7456547,14.9539136 21.0626052,15.0652337 21.3496546,14.9714905 C22.3872188,14.6375301 23.457674,14.4324668 24.5311193,14.3621593 C24.5400896,14.3621593 24.5490599,14.3621593 24.5610203,14.3592298 C26.770703,14.1190127 28.9624451,14.5818701 30.7325833,15.662847 C30.7415536,15.668706 30.7505239,15.6745649 30.7624843,15.6804239 C31.602702,16.1374223 32.3771374,16.7086703 33.06187,17.3824499 C35.2237111,19.5033911 36.3210772,22.4152911 36.1536317,25.5820556 Z" id="形状" fill="#1890FF"></path>
<path d="M20.9616803,20.9599934 C19.0127732,22.9092855 19.0127732,26.0834705 20.9616803,28.0380309 C21.9361338,29.012677 23.2160916,29.5 24.4986832,29.5 C25.778641,29.5 27.0612326,29.012677 28.0383197,28.0380309 C29.9872268,26.0887389 29.9872268,22.9145538 28.0383197,20.9599934 C26.086779,19.0133355 22.913221,19.0133355 20.9616803,20.9599934 Z M26.9777243,26.9761823 C25.6098736,28.3412726 23.3871162,28.3412726 22.0240819,26.9761823 C20.6586394,25.6086844 20.6586394,23.3865004 22.0240819,22.0238177 C23.3919326,20.6587274 25.6146899,20.6587274 26.9777243,22.0238177 C28.3407586,23.3913156 28.3407586,25.6134996 26.9777243,26.9761823 Z" id="形状" fill="#1890FF"></path>
</g>
<g id="编组备份-3" transform="translate(11.500000, 9.500000)"></g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 50</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -364.000000)">
<g id="编组-50" transform="translate(294.500000, 364.000000)">
<g id="编组-7" fill-rule="nonzero">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-9" fill="#EEEEEE"></path>
<path d="M24.1067202,9.90437867 L23.8781865,10.0857578 L23.6494964,10.2742446 C23.2957945,10.5695088 22.9027673,10.9144263 22.4802018,11.3063711 C21.2751019,12.4241449 20.0706299,13.6977431 18.9452016,15.1069752 C15.704086,19.1654155 13.75,23.5153809 13.75,28 C13.75,34.2062509 18.5835929,39.25 24.5625,39.25 C30.5414071,39.25 35.375,34.2062509 35.375,28 C35.375,23.5153809 33.420914,19.1654155 30.1797984,15.1069752 C29.0543701,13.6977431 27.8498981,12.4241449 26.6447982,11.3063711 C26.3067458,10.9928153 25.9875979,10.7093569 25.6923655,10.4573405 L25.2468135,10.0857578 L25.0182798,9.90437867 C24.7492867,9.69854044 24.3757133,9.69854044 24.1067202,9.90437867 Z M24.562,11.466 L24.7193767,11.5989595 L25.1560381,11.9799465 L25.624733,12.4061289 C26.7780316,13.4758551 27.9319581,14.6960069 29.0077016,16.0430248 C32.0556485,19.8595845 33.875,23.9096191 33.875,28 C33.875,33.3917691 29.6983621,37.75 24.5625,37.75 C19.4266379,37.75 15.25,33.3917691 15.25,28 C15.25,23.9096191 17.0693515,19.8595845 20.1172984,16.0430248 C21.1930419,14.6960069 22.3469684,13.4758551 23.500267,12.4061289 L23.9689619,11.9799465 L24.4056233,11.5989595 L24.562,11.466 Z" id="路径" fill="#1890FF"></path>
<path d="M16.0396159,26.0206391 C15.6840177,26.1058312 15.3499156,26.1956641 15.0411134,26.2868168 L14.6069716,26.4209861 L14.2380931,26.5472164 C13.944616,26.6565868 13.75,26.9368057 13.75,27.25 C13.75,33.8599481 18.571102,39.25 24.5625,39.25 C30.553898,39.25 35.375,33.8599481 35.375,27.25 C35.375,26.7291389 34.8571172,26.3668704 34.3678329,26.5454682 L34.3442696,26.5540692 C33.5041856,26.8574164 32.2398952,27.1950256 30.787279,27.3792342 C28.6268344,27.6532036 26.6961932,27.4790349 25.1898402,26.7329647 L24.9284571,26.5953433 C23.8866212,26.0129505 22.6860983,25.6774007 21.361762,25.5540153 C19.643927,25.3939686 17.8250099,25.5929049 16.0396159,26.0206391 Z M21.222613,27.0475472 C22.2256335,27.1409963 23.1277165,27.3723648 23.9091846,27.754334 L24.1965429,27.9046567 C26.0665828,28.9500206 28.3995124,29.1940435 30.9759851,28.8673169 C31.8836804,28.7522106 32.7664518,28.571609 33.5976039,28.3496627 L33.829,28.286 L33.8182498,28.4162878 C33.3026884,33.6800254 29.338524,37.75 24.5625,37.75 L24.3028106,37.7459809 C19.5571804,37.5989327 15.6713506,33.4342046 15.2820646,28.1280082 L15.262,27.787 L15.1908275,27.8092135 C15.5475141,27.6970566 15.95014,27.5845214 16.3890878,27.4793609 C18.0277389,27.0867826 19.691099,26.9048596 21.222613,27.0475472 Z" id="路径" fill="#1890FF"></path>
</g>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 5</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -168.000000)" fill-rule="nonzero">
<g id="编组-5" transform="translate(207.500000, 168.000000)">
<path d="M15.7352941,18.3088235 C16.1495077,18.3088235 16.4852941,18.64461 16.4852941,19.0588235 C16.4852941,19.4385193 16.2031402,19.7523145 15.8370647,19.8019769 L15.7352941,19.8088235 L14.3235294,19.8088235 C13.1783609,19.8088235 12.25,20.7371909 12.25,21.8823529 C12.25,22.9777253 13.0993888,23.8747449 14.1754476,23.950676 L14.3235294,23.9558824 L15.7352941,23.9558824 C16.1495077,23.9558824 16.4852941,24.2916688 16.4852941,24.7058824 C16.4852941,25.0855781 16.2031402,25.3993733 15.8370647,25.4490357 L15.7352941,25.4558824 L14.3235294,25.4558824 C12.3499315,25.4558824 10.75,23.8559398 10.75,21.8823529 C10.75,19.9724302 12.248375,18.4124344 14.1337437,18.313777 L14.3235294,18.3088235 L15.7352941,18.3088235 Z" id="路径" fill="#1890FF"></path>
<path d="M22.7941176,29.6029412 C23.2083312,29.6029412 23.5441176,29.9387276 23.5441176,30.3529412 C23.5441176,30.7326369 23.2619638,31.0464321 22.8958882,31.0960946 L22.7941176,31.1029412 L20.6764706,31.1029412 C19.5313194,31.1029412 18.6029412,32.0313194 18.6029412,33.1764706 C18.6029412,34.2718326 19.4523459,35.1688617 20.5283909,35.2447936 L20.6764706,35.25 L22.7941176,35.25 C23.2083312,35.25 23.5441176,35.5857864 23.5441176,36 C23.5441176,36.3796958 23.2619638,36.693491 22.8958882,36.7431534 L22.7941176,36.75 L20.6764706,36.75 C18.7028923,36.75 17.1029412,35.1500489 17.1029412,33.1764706 C17.1029412,31.2665561 18.6013345,29.7065526 20.4866867,29.6078947 L20.6764706,29.6029412 L22.7941176,29.6029412 Z" id="路径" fill="#1890FF"></path>
<path d="M26.3235294,11.25 C26.737743,11.25 27.0735294,11.5857864 27.0735294,12 C27.0735294,12.3796958 26.7913755,12.693491 26.4253,12.7431534 L26.3235294,12.75 L24.2058824,12.75 C23.0607203,12.75 22.1323529,13.6783609 22.1323529,14.8235294 C22.1323529,15.9188914 22.9817576,16.8159205 24.0578026,16.8918524 L24.2058824,16.8970588 L26.3235294,16.8970588 C26.737743,16.8970588 27.0735294,17.2328453 27.0735294,17.6470588 C27.0735294,18.0267546 26.7913755,18.3405498 26.4253,18.3902122 L26.3235294,18.3970588 L24.2058824,18.3970588 C22.2323041,18.3970588 20.6323529,16.7971077 20.6323529,14.8235294 C20.6323529,12.9135959 22.1307383,11.3536102 24.0160977,11.2549534 L24.2058824,11.25 L26.3235294,11.25 Z" id="路径" fill="#1890FF"></path>
<path d="M35.5,16.8970588 C35.9142136,16.8970588 36.25,17.2328453 36.25,17.6470588 C36.25,18.0267546 35.9678461,18.3405498 35.6017706,18.3902122 L35.5,18.3970588 L24.2058824,18.3970588 C23.7916688,18.3970588 23.4558824,18.0612724 23.4558824,17.6470588 C23.4558824,17.2673631 23.7380362,16.9535679 24.1041118,16.9039054 L24.2058824,16.8970588 L35.5,16.8970588 Z" id="路径" fill="#1890FF"></path>
<path d="M36.9117647,23.9558824 C37.3259783,23.9558824 37.6617647,24.2916688 37.6617647,24.7058824 C37.6617647,25.0855781 37.3796108,25.3993733 37.0135353,25.4490357 L36.9117647,25.4558824 L15.7352941,25.4558824 C15.3210806,25.4558824 14.9852941,25.1200959 14.9852941,24.7058824 C14.9852941,24.3261866 15.267448,24.0123914 15.6335236,23.962729 L15.7352941,23.9558824 L36.9117647,23.9558824 Z" id="路径" fill="#1890FF"></path>
<path d="M31.2647059,29.6029412 C31.6789194,29.6029412 32.0147059,29.9387276 32.0147059,30.3529412 C32.0147059,30.7326369 31.732552,31.0464321 31.3664764,31.0960946 L31.2647059,31.1029412 L22.7941176,31.1029412 C22.3799041,31.1029412 22.0441176,30.7671547 22.0441176,30.3529412 C22.0441176,29.9732454 22.3262715,29.6594502 22.6923471,29.6097878 L22.7941176,29.6029412 L31.2647059,29.6029412 Z" id="路径" fill="#1890FF"></path>
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-9" fill="#EEEEEE"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 40</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-294.000000, -1278.000000)" fill-rule="nonzero">
<g id="编组-40" transform="translate(294.500000, 1278.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-27" fill="#EEEEEE"></path>
<path d="M37.5,19.75 L12.5,19.75 C12.0857864,19.75 11.75,20.0857864 11.75,20.5 L11.75,35.1666667 C11.75,36.3150677 12.6726401,37.25 13.8157895,37.25 L36.1842105,37.25 C37.3273745,37.25 38.25,36.3150729 38.25,35.1666667 L38.25,20.5 C38.25,20.0857864 37.9142136,19.75 37.5,19.75 Z M13.25,21.25 L36.75,21.25 L36.75,35.1666667 C36.75,35.4910605 36.4944676,35.75 36.1842105,35.75 L13.8157895,35.75 L13.7245576,35.7424251 C13.4569903,35.697556 13.25,35.4586133 13.25,35.1666667 L13.25,21.25 Z" id="路径" fill="#1890FF"></path>
<path d="M36.1842105,11.75 L13.8157895,11.75 C12.6571808,11.75 11.75,12.7528471 11.75,13.9545455 L11.75,20.5 C11.75,20.9142136 12.0857864,21.25 12.5,21.25 L37.5,21.25 C37.9142136,21.25 38.25,20.9142136 38.25,20.5 L38.25,13.9545455 C38.25,12.7528411 37.3428341,11.75 36.1842105,11.75 Z M36.1842105,13.25 L36.2638308,13.2572819 C36.5260284,13.3053413 36.75,13.5864018 36.75,13.9545455 L36.75,19.75 L13.25,19.75 L13.25,13.9545455 C13.25,13.5495965 13.5210166,13.25 13.8157895,13.25 L36.1842105,13.25 Z" id="路径" fill="#1890FF"></path>
<path d="M30.9696699,23.9696699 C31.2625631,23.6767767 31.7374369,23.6767767 32.0303301,23.9696699 C32.2965966,24.2359365 32.3208027,24.6526002 32.1029482,24.9462117 L32.0303301,25.0303301 L24.0303301,33.0303301 C23.7640635,33.2965966 23.3473998,33.3208027 23.0537883,33.1029482 L22.9696699,33.0303301 L18.9696699,29.0303301 C18.6767767,28.7374369 18.6767767,28.2625631 18.9696699,27.9696699 C19.2359365,27.7034034 19.6526002,27.6791973 19.9462117,27.8970518 L20.0303301,27.9696699 L23.5,31.439 L30.9696699,23.9696699 Z" id="路径" fill="#1890FF"></path>
<path d="M20,10.75 C20.3796958,10.75 20.693491,11.0321539 20.7431534,11.3982294 L20.75,11.5 L20.75,16.5 C20.75,16.9142136 20.4142136,17.25 20,17.25 C19.6203042,17.25 19.306509,16.9678461 19.2568466,16.6017706 L19.25,16.5 L19.25,11.5 C19.25,11.0857864 19.5857864,10.75 20,10.75 Z" id="路径" fill="#1890FF"></path>
<path d="M30,10.75 C30.3796958,10.75 30.693491,11.0321539 30.7431534,11.3982294 L30.75,11.5 L30.75,16.5 C30.75,16.9142136 30.4142136,17.25 30,17.25 C29.6203042,17.25 29.306509,16.9678461 29.2568466,16.6017706 L29.25,16.5 L29.25,11.5 C29.25,11.0857864 29.5857864,10.75 30,10.75 Z" id="路径" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 39</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-207.000000, -1278.000000)" fill-rule="nonzero">
<g id="编组-39" transform="translate(207.500000, 1278.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-27" fill="#EEEEEE"></path>
<path d="M33.5,12.75 L15.5,12.75 C15.0857864,12.75 14.75,13.0857864 14.75,13.5 L14.75,36.5 L14.7568003,36.6034445 C14.8284194,37.1406538 15.4509704,37.4381498 15.9197733,37.1215226 L24.5,31.325 L33.0802267,37.1215226 C33.5783298,37.4579389 34.25,37.1010679 34.25,36.5 L34.25,13.5 C34.25,13.0857864 33.9142136,12.75 33.5,12.75 Z M32.75,14.25 L32.75,35.088 L24.9197733,29.7999224 L24.8212813,29.7437135 C24.5842985,29.6312958 24.3021565,29.6500321 24.0802267,29.7999224 L16.25,35.088 L16.25,14.25 L32.75,14.25 Z" id="路径" fill="#1890FF"></path>
<path d="M33.5,12.75 L15.5,12.75 C15.0857864,12.75 14.75,13.0857864 14.75,13.5 L14.75,20.5 C14.75,20.9142136 15.0857864,21.25 15.5,21.25 L33.5,21.25 C33.9142136,21.25 34.25,20.9142136 34.25,20.5 L34.25,13.5 C34.25,13.0857864 33.9142136,12.75 33.5,12.75 Z M32.75,14.25 L32.75,19.75 L16.25,19.75 L16.25,14.25 L32.75,14.25 Z" id="矩形" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 54</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-31.000000, -1278.000000)">
<g id="编组-37" transform="translate(31.500000, 1278.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-26" fill="#EEEEEE" fill-rule="nonzero"></path>
<path d="M24.5,10.25 C21.3243627,10.25 18.75,12.8243627 18.75,16 C18.75,19.1756373 21.3243627,21.75 24.5,21.75 C27.6756373,21.75 30.25,19.1756373 30.25,16 C30.25,12.8243627 27.6756373,10.25 24.5,10.25 Z M24.5,11.75 C26.8472102,11.75 28.75,13.6527898 28.75,16 C28.75,18.3472102 26.8472102,20.25 24.5,20.25 C22.1527898,20.25 20.25,18.3472102 20.25,16 C20.25,13.6527898 22.1527898,11.75 24.5,11.75 Z" id="椭圆形" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M24.5,24.25 C31.5556158,24.25 37.25,30.4189162 37.25,38 C37.25,38.4142136 36.9142136,38.75 36.5,38.75 C36.0857864,38.75 35.75,38.4142136 35.75,38 C35.75,31.2217172 30.6991842,25.75 24.5,25.75 C18.3008158,25.75 13.25,31.2217172 13.25,38 C13.25,38.4142136 12.9142136,38.75 12.5,38.75 C12.0857864,38.75 11.75,38.4142136 11.75,38 C11.75,30.4189162 17.4443842,24.25 24.5,24.25 Z" id="路径" fill="#1890FF" fill-rule="nonzero"></path>
<path d="M23.7855838,24.771725 L20.7855838,34.1606139 C20.7076638,34.4044745 20.7595138,34.6712356 20.9231072,34.8681537 L23.9231072,38.4792648 C24.2229986,38.8402451 24.7770014,38.8402451 25.0768928,38.4792648 L28.0768928,34.8681537 C28.2404862,34.6712356 28.2923362,34.4044745 28.2144162,34.1606139 L25.2144162,24.771725 C24.9921428,24.0760917 24.0078572,24.0760917 23.7855838,24.771725 Z M24.5,27.464 L26.66,34.226 L24.5,36.826 L22.339,34.226 L24.5,27.464 Z" id="路径" fill="#1890FF" fill-rule="nonzero"></path>
<rect id="矩形" x="8.5" y="8.5" width="32" height="32"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="50px" height="49px" viewBox="0 0 50 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>编组 38</title>
<g id="375" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="监测预报-展开" transform="translate(-119.000000, -1278.000000)" fill-rule="nonzero">
<g id="编组-38" transform="translate(119.500000, 1278.000000)">
<path d="M40.5,0 L8.5,0 C3.80557963,0 0,3.80557963 0,8.5 L0,40.5 C0,45.1944204 3.80557963,49 8.5,49 L40.5,49 C45.1944204,49 49,45.1944204 49,40.5 L49,8.5 C49,3.80557963 45.1944204,0 40.5,0 Z M8.5,1 L40.5,1 C44.6421356,1 48,4.35786438 48,8.5 L48,40.5 C48,44.6421356 44.6421356,48 40.5,48 L8.5,48 C4.35786438,48 1,44.6421356 1,40.5 L1,8.5 C1,4.35786438 4.35786438,1 8.5,1 Z" id="矩形备份-28" fill="#EEEEEE"></path>
<path d="M34.3177083,11.96875 L14.6822917,11.96875 C13.1836468,11.96875 11.96875,13.1836468 11.96875,14.6822917 L11.96875,34.3177083 C11.96875,35.8163766 13.1836374,37.03125 14.6822917,37.03125 L34.3177083,37.03125 C35.816386,37.03125 37.03125,35.816386 37.03125,34.3177083 L37.03125,14.6822917 C37.03125,13.1836374 35.8163766,11.96875 34.3177083,11.96875 Z M14.6822917,13.46875 L34.3177083,13.46875 C34.9879456,13.46875 35.53125,14.0120607 35.53125,14.6822917 L35.53125,34.3177083 C35.53125,34.9879588 34.9879588,35.53125 34.3177083,35.53125 L14.6822917,35.53125 C14.0120607,35.53125 13.46875,34.9879456 13.46875,34.3177083 L13.46875,14.6822917 C13.46875,14.0120739 14.0120739,13.46875 14.6822917,13.46875 Z" id="路径" fill="#1890FF"></path>
<path d="M30.2862794,21.2795265 C30.5633737,20.9716439 31.037591,20.9466851 31.3454735,21.2237794 C31.6253667,21.4756833 31.6714387,21.8904988 31.4693172,22.1951547 L31.4012206,22.2829735 L26.3262206,27.9218624 C26.0001045,28.2842137 25.4308975,28.2393342 25.1590049,27.8572718 L25.1017841,27.7631499 L23.061,23.795 L18.7137206,28.6267235 C18.4618167,28.9066167 18.0470012,28.9526887 17.7423453,28.7505672 L17.6545265,28.6824706 C17.3746333,28.4305667 17.3285613,28.0157512 17.5306828,27.7110953 L17.5987794,27.6232765 L22.6737794,21.9843876 C22.9998955,21.6220363 23.5691025,21.6669158 23.8409951,22.0489782 L23.8982159,22.1431001 L25.938,26.11 L30.2862794,21.2795265 Z" id="路径" fill="#1890FF"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="186px" height="156px" viewBox="0 0 186 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>BB-R</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.13" transform="translate(-360.000000, -1333.000000)">
<g id="BB-R" transform="translate(360.000000, 1333.000000)">
<g id="Group-6-Copy-2">
<g id="Group-5">
<g id="Group-3-Copy">
<g id="Group-2">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.870708,142.151701 C185.870708,149.727635 180.321404,155.862495 173.451821,155.862495 L12.6045508,155.862495 C5.75559683,155.862495 0.185664414,149.727635 0.185664414,142.151701 L0.185664414,13.8960751 C0.185664414,6.3201408 5.73496745,0.185281001 12.6045508,0.185281001 L173.451821,0.185281001 C180.300775,0.185281001 185.870708,6.3201408 185.870708,13.8960751 L185.870708,142.151701 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.29301048 9.46991782 105.416128 9.46991782 105.416128 104.477898 8.29301048 104.477898"></polygon>
<path d="M67.4993291,52.825672 C69.0465325,58.4046888 65.7458318,64.1689866 60.1758994,65.7129949 C54.5853376,67.2570033 48.8091114,63.9837056 47.261908,58.4046888 C45.7147045,52.825672 49.0154052,47.0613742 54.605967,45.5173659 C60.1758994,43.9733575 65.9521256,47.2466552 67.4993291,52.825672 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.708089,10.8904055 L175.49413,10.8904055 L175.49413,104.951394 L111.708089,104.951394 L111.708089,10.8904055 Z M8.29301048,110.756865 L56.8545694,110.756865 L56.8545694,148.265974 L8.29301048,148.265974 L8.29301048,110.756865 Z M64.0954815,110.756865 L175.49413,110.756865 L175.49413,148.265974 L64.0954815,148.265974 L64.0954815,110.756865 Z" id="Shape" fill="#D12821"></path>
</g>
<path d="M99.0673731,123.142887 L101.40911,123.142887 L101.40911,129.094993 L108.654483,129.094993 L108.654483,123.142887 L110.996219,123.142887 L110.996219,137.403974 L108.654483,137.403974 L108.654483,131.092344 L101.40911,131.092344 L101.40911,137.403974 L99.0673731,137.403974 L99.0673731,123.142887 Z M116.326839,123.142887 L118.988813,123.142887 L124.452865,137.403974 L121.951009,137.403974 L120.650045,133.828715 L114.665607,133.828715 L113.364642,137.403974 L110.862787,137.403974 L116.326839,123.142887 Z M115.366126,131.911258 L119.949525,131.911258 L117.707863,125.65955 L117.627803,125.65955 L115.366126,131.911258 Z M124.319432,123.142887 L126.641154,123.142887 L126.641154,135.406623 L134.366883,135.406623 L134.366883,137.403974 L124.319432,137.403974 L124.319432,123.142887 Z M134.633748,123.142887 L136.955469,123.142887 L136.955469,135.406623 L144.681198,135.406623 L144.681198,137.403974 L134.633748,137.403974 L134.633748,123.142887 Z" id="HALL" fill="#FFFFFF"></path>
<path d="M127.294397,19.9872848 C129.778998,23.293245 131.725269,26.1859603 133.05039,28.6654305 L129.944638,30.8969536 C128.453878,28.2521854 126.466197,25.2768212 123.940186,22.0535099 L127.294397,19.9872848 Z M129.861818,37.0129801 L133.42308,38.4180132 C131.683859,44.4927152 129.778998,50.1954967 127.708497,55.4850331 L124.023006,53.8733775 C126.259147,48.3772185 128.205417,42.7570861 129.861818,37.0129801 Z M145.473395,56.4354967 L141.083933,56.4354967 L140.214323,52.5923179 C141.580853,52.7576159 142.864564,52.8402649 144.106865,52.8402649 C145.183525,52.8402649 145.763265,52.3443709 145.763265,51.4352318 L145.763265,18.5409272 L149.697217,18.5409272 L149.697217,27.0537748 C150.276957,29.0786755 150.980928,31.0622517 151.767718,32.9631788 C154.335139,30.8556291 156.57128,28.0042384 158.517551,24.4503311 L161.540482,26.9298013 C159.138701,31.0209272 156.40564,34.1615894 153.341299,36.3104636 C155.70167,41.104106 158.766011,45.5258278 162.534323,49.5756291 L159.925492,52.8402649 C155.61885,47.6333775 152.181818,42.0545695 149.697217,36.0211921 L149.697217,52.3856954 C149.697217,55.0717881 148.289276,56.4354967 145.473395,56.4354967 Z M140.752653,31.6407947 L134.12705,31.6407947 L134.12705,27.8802649 L144.355325,27.8802649 L144.355325,31.4341722 C143.237254,41.104106 139.883043,48.2119205 134.3341,52.7576159 L131.683859,49.6996026 C136.611651,45.7324503 139.634583,39.6990728 140.752653,31.6407947 Z M127.749907,62.2760265 L158.766011,62.2760265 L158.766011,65.2927152 L145.142115,65.2927152 L145.142115,67.1523179 L160.670872,67.1523179 L160.670872,75.6651656 L157.02679,75.6651656 L157.02679,70.0450331 L145.142115,70.0450331 L145.142115,77.5660927 L141.415213,77.5660927 L141.415213,70.0450331 L129.530538,70.0450331 L129.530538,75.7064901 L125.886456,75.7064901 L125.886456,67.1523179 L141.415213,67.1523179 L141.415213,65.2927152 L127.749907,65.2927152 L127.749907,62.2760265 Z M131.435399,71.6153642 L139.634583,71.6153642 L139.634583,73.8055629 L131.435399,73.8055629 L131.435399,71.6153642 Z M131.393989,75.1692715 L139.593173,75.1692715 L139.593173,77.3594702 L134.20987,77.3594702 L137.067161,77.9793377 L136.280371,79.3843709 L157.979221,79.3843709 C157.813581,85.5417219 157.606531,89.1369536 157.399481,90.1287417 C157.15102,91.1205298 156.69551,91.8230464 155.99154,92.2362914 C155.28757,92.5668874 153.672579,92.7735099 151.187978,92.7735099 L151.063748,92.7735099 L150.028497,89.5501987 C150.732468,89.6328477 151.436438,89.6741722 152.181818,89.6741722 C152.968609,89.6741722 153.465529,89.5501987 153.713989,89.3435762 C153.921039,89.0956291 154.045269,88.6823841 154.128089,88.1038411 C154.128089,87.525298 154.210909,85.7070199 154.293729,82.6490066 L134.08564,82.6490066 C133.58872,83.3101987 133.05039,83.9300662 132.553469,84.5499338 L149.490167,84.5499338 L149.490167,92.7321854 L135.038071,92.7321854 L135.038071,94.2198675 C135.038071,95.1290066 135.534991,95.6249007 136.487421,95.6249007 L154.376549,95.6249007 C155.66026,95.6249007 156.52987,95.3356291 156.98538,94.8397351 C157.31666,94.4264901 157.689351,93.3107285 158.020631,91.4098013 L161.292022,92.4842384 C161.002152,94.4264901 160.629462,95.7901987 160.173952,96.6166887 C159.469981,97.9803974 157.896401,98.6829139 155.49462,98.7655629 L135.162301,98.7655629 C132.677699,98.7655629 131.435399,97.6911258 131.435399,95.6249007 L131.435399,85.7483444 C130.027458,87.1533775 128.578108,88.4344371 127.045937,89.5915232 L124.726976,86.781457 C128.122597,84.5086093 131.062709,81.367947 133.54731,77.3594702 L131.393989,77.3594702 L131.393989,75.1692715 Z M135.038071,89.7568212 L145.887495,89.7568212 L145.887495,87.525298 L135.038071,87.525298 L135.038071,89.7568212 Z M147.088386,71.5740397 L155.28757,71.5740397 L155.28757,73.7642384 L147.088386,73.7642384 L147.088386,71.5740397 Z M147.046976,75.210596 L155.24616,75.210596 L155.24616,77.4007947 L147.046976,77.4007947 L147.046976,75.210596 Z" id="冰-雹" fill="#FFFFFF"></path>
<path d="M28.7854842,136.153219 L28.7854842,138.409536 C26.3257291,139.32694 23.5429759,140.070781 20.4372245,140.616265 L20.1390724,138.310358 C23.4187458,137.764874 26.3008831,137.045828 28.7854842,136.153219 Z M24.5616623,118.474596 L26.8226494,119.367205 C25.5555028,122.317775 24.2635102,124.722861 22.9466716,126.607258 C23.9405121,126.508079 24.9591985,126.359311 25.977885,126.210543 C26.5244972,125.24355 27.0711095,124.226967 27.6425677,123.136 L29.7544787,123.92943 C27.4934917,128.09494 25.5803488,131.119894 24.0398961,133.004291 C25.7294249,132.607576 27.4189536,132.086887 29.1333284,131.442225 L29.1333284,133.599364 C26.3008831,134.640742 23.5926679,135.359788 21.0583748,135.706914 L20.4123785,133.549775 C20.8347607,133.351417 21.1826048,133.128265 21.480757,132.855523 C22.3503673,131.987709 23.4435918,130.500026 24.7355844,128.367682 C23.4187458,128.56604 22.0522152,128.739603 20.6608386,128.913166 L20.0396883,126.756026 C20.4372245,126.582464 20.7850686,126.284927 21.0832208,125.838623 C22.4249054,123.631894 23.5678219,121.177219 24.5616623,118.474596 Z M34.922449,122.243391 L30.0029388,122.243391 L30.0029388,119.962278 L42.1526382,119.962278 L42.1526382,122.243391 L37.28282,122.243391 L37.28282,138.037616 L42.7986345,138.037616 L42.7986345,140.318728 L29.3072505,140.318728 L29.3072505,138.037616 L34.922449,138.037616 L34.922449,122.243391 Z" id="红" fill="#FFFFFF"></path>
</g>
</g>
</g>
</g>
<g id="bingbao" transform="translate(34.508349, 15.152318)" fill="#D12821" fill-rule="nonzero">
<path d="M45.675281,35.5590205 L24.856638,82.4080101 C23.9009945,84.5698011 22.3390824,84.5621623 21.3834389,82.4080101 L0.569933723,35.5590205 C-0.390847698,33.3972296 -0.108264898,30.1889179 1.20189153,28.3708746 L20.7463432,1.35994555 C21.3923468,0.474076063 22.2412499,-0.0121971968 23.1200384,0.000232542513 C24.0191654,0.000232542513 24.8823273,0.496756965 25.4937336,1.35994555 L45.0381853,28.3708746 C46.3483418,30.181279 46.6309246,33.4125073 45.675281,35.5590205 Z M24.8977409,9.89252695 L24.8977409,34.596527 L42.6850416,34.596527 L24.8977409,9.88488808 L24.8977409,9.89252695 Z M23.1200384,34.5888881 L5.3327378,34.5888881 L23.1200384,74.1427881 L23.1200384,34.596527 L23.1200384,34.5888881 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="186px" height="156px" viewBox="0 0 186 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>DF-R</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.13" transform="translate(-956.000000, -1803.000000)">
<g id="DF-R" transform="translate(956.000000, 1803.000000)">
<g id="Group-7-Copy">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.870708,142.151701 C185.870708,149.727635 180.321404,155.862495 173.451821,155.862495 L12.6045508,155.862495 C5.75559683,155.862495 0.185664414,149.727635 0.185664414,142.151701 L0.185664414,13.8960751 C0.185664414,6.3201408 5.73496745,0.185281001 12.6045508,0.185281001 L173.451821,0.185281001 C180.300775,0.185281001 185.870708,6.3201408 185.870708,13.8960751 L185.870708,142.151701 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.29301048 9.46991782 105.416128 9.46991782 105.416128 104.477898 8.29301048 104.477898"></polygon>
<path d="M67.4993291,52.825672 C69.0465325,58.4046888 65.7458318,64.1689866 60.1758994,65.7129949 C54.5853376,67.2570033 48.8091114,63.9837056 47.261908,58.4046888 C45.7147045,52.825672 49.0154052,47.0613742 54.605967,45.5173659 C60.1758994,43.9733575 65.9521256,47.2466552 67.4993291,52.825672 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.708089,10.8904055 L175.49413,10.8904055 L175.49413,104.951394 L111.708089,104.951394 L111.708089,10.8904055 Z M8.29301048,110.756865 L56.8545694,110.756865 L56.8545694,148.265974 L8.29301048,148.265974 L8.29301048,110.756865 Z M64.0954815,110.756865 L175.49413,110.756865 L175.49413,148.265974 L64.0954815,148.265974 L64.0954815,110.756865 Z" id="Shape" fill="#D12821"></path>
</g>
<path d="M103.055388,122.863258 C104.896753,122.863258 106.337822,123.262728 107.398609,124.081642 C108.419365,124.880583 109.05984,126.05902 109.320033,127.656901 L106.958282,127.656901 C106.758134,126.738119 106.317807,126.05902 105.677332,125.599629 C105.016842,125.140238 104.136189,124.92053 103.055388,124.92053 C101.714393,124.92053 100.653607,125.359947 99.8730278,126.278728 C99.0123896,127.237457 98.5920779,128.575682 98.5920779,130.333351 C98.5920779,132.011126 98.9723599,133.309404 99.7329239,134.208212 C100.553532,135.16694 101.834482,135.646305 103.575774,135.646305 C104.256278,135.646305 104.896753,135.566411 105.497199,135.406623 C106.057614,135.246834 106.557985,135.027126 107.038341,134.747497 L107.038341,131.811391 L103.255536,131.811391 L103.255536,129.81404 L109.380078,129.81404 L109.380078,135.84604 C108.619514,136.445245 107.758876,136.884662 106.778148,137.204238 C105.737377,137.523815 104.596531,137.683603 103.315581,137.683603 C101.033889,137.683603 99.2725826,136.964556 98.0116475,135.526464 C96.8307718,134.188238 96.2503414,132.450543 96.2503414,130.333351 C96.2503414,128.196185 96.8307718,126.438517 98.0116475,125.060344 C99.2525677,123.582305 100.933814,122.863258 103.055388,122.863258 Z M115.00977,123.142887 L117.671744,123.142887 L123.135796,137.403974 L120.633941,137.403974 L119.332976,133.828715 L113.348538,133.828715 L112.047573,137.403974 L109.545718,137.403974 L115.00977,123.142887 Z M114.049058,131.911258 L118.632456,131.911258 L116.390794,125.65955 L116.310735,125.65955 L114.049058,131.911258 Z M123.501584,123.142887 L125.823306,123.142887 L125.823306,135.406623 L133.549035,135.406623 L133.549035,137.403974 L123.501584,137.403974 L123.501584,123.142887 Z M134.315121,123.142887 L144.622764,123.142887 L144.622764,125.140238 L136.656857,125.140238 L136.656857,129.094993 L144.142408,129.094993 L144.142408,131.092344 L136.656857,131.092344 L136.656857,135.406623 L144.963017,135.406623 L144.963017,137.403974 L134.315121,137.403974 L134.315121,123.142887 Z" id="GALE" fill="#FFFFFF"></path>
<path d="M124.975436,27.2741722 L140.835473,27.2741722 C141.083933,25.0839735 141.249573,22.7698013 141.290983,20.3729801 L141.290983,16.7777483 L145.266345,16.7777483 L145.266345,19.4638411 C145.266345,22.1912583 145.100705,24.794702 144.769425,27.2741722 L161.581892,27.2741722 L161.581892,31.0760265 L145.763265,31.0760265 C148.661967,39.9194702 154.252319,46.7380132 162.451503,51.5729801 L160.008312,54.7549669 C152.057588,49.8786755 146.467236,43.0601325 143.320074,34.2993377 C140.587013,43.762649 134.99666,50.7051656 126.590427,55.1268874 L124.064416,51.8209272 C132.594879,47.6884768 137.978182,40.7459603 140.172913,31.0760265 L124.975436,31.0760265 L124.975436,27.2741722 Z M137.025751,68.7364238 C139.220482,71.4638411 141.249573,74.0672848 143.113024,76.546755 C144.603785,73.7366887 145.763265,70.72 146.674286,67.4966887 L150.566827,68.1578808 C149.324527,72.6209272 147.709536,76.5880795 145.721855,80.1006623 C148.123636,83.5719205 150.194137,86.7539073 151.891948,89.6466225 L148.330686,92.0847682 C146.839926,89.44 145.183525,86.7125828 143.278664,83.9025166 C140.794063,87.3324503 137.895362,90.3078146 134.58256,92.7872848 L131.932319,89.44 C135.452171,86.7952318 138.433692,83.7372185 140.835473,80.2659603 C138.682152,77.207947 136.363191,74.0259603 133.79577,70.72 L137.025751,68.7364238 Z M128.743748,60.8434437 L156.28141,60.8434437 L156.28141,77.7451656 C156.28141,84.0678146 156.44705,88.1176159 156.86115,89.8945695 C157.19243,91.6301987 157.606531,92.5393377 158.103451,92.5393377 C158.476141,92.5393377 158.807421,90.8863576 159.055881,87.6217219 L162.575733,89.3160265 C162.037403,92.4566887 161.457662,94.6055629 160.836512,95.68 C160.132542,96.6717881 159.345751,97.2090066 158.517551,97.2090066 C156.36423,97.2090066 154.790649,95.8866225 153.796809,93.2831788 C152.761558,90.7210596 152.264638,85.5554967 152.264638,77.7451656 L152.264638,64.645298 L132.677699,64.645298 L132.677699,77.207947 C132.594879,85.3075497 130.897069,92.1260927 127.625677,97.6222517 L124.312876,94.9361589 C127.128757,90.2251656 128.619518,84.3157616 128.743748,77.207947 L128.743748,60.8434437 Z" id="大-风" fill="#FFFFFF"></path>
<path d="M28.7854842,136.153219 L28.7854842,138.409536 C26.3257291,139.32694 23.5429759,140.070781 20.4372245,140.616265 L20.1390724,138.310358 C23.4187458,137.764874 26.3008831,137.045828 28.7854842,136.153219 Z M24.5616623,118.474596 L26.8226494,119.367205 C25.5555028,122.317775 24.2635102,124.722861 22.9466716,126.607258 C23.9405121,126.508079 24.9591985,126.359311 25.977885,126.210543 C26.5244972,125.24355 27.0711095,124.226967 27.6425677,123.136 L29.7544787,123.92943 C27.4934917,128.09494 25.5803488,131.119894 24.0398961,133.004291 C25.7294249,132.607576 27.4189536,132.086887 29.1333284,131.442225 L29.1333284,133.599364 C26.3008831,134.640742 23.5926679,135.359788 21.0583748,135.706914 L20.4123785,133.549775 C20.8347607,133.351417 21.1826048,133.128265 21.480757,132.855523 C22.3503673,131.987709 23.4435918,130.500026 24.7355844,128.367682 C23.4187458,128.56604 22.0522152,128.739603 20.6608386,128.913166 L20.0396883,126.756026 C20.4372245,126.582464 20.7850686,126.284927 21.0832208,125.838623 C22.4249054,123.631894 23.5678219,121.177219 24.5616623,118.474596 Z M34.922449,122.243391 L30.0029388,122.243391 L30.0029388,119.962278 L42.1526382,119.962278 L42.1526382,122.243391 L37.28282,122.243391 L37.28282,138.037616 L42.7986345,138.037616 L42.7986345,140.318728 L29.3072505,140.318728 L29.3072505,138.037616 L34.922449,138.037616 L34.922449,122.243391 Z" id="红" fill="#FFFFFF"></path>
</g>
<g id="dafeng-2" transform="translate(20.705009, 18.596026)" fill="#D12821" fill-rule="nonzero">
<path d="M57.3592871,19.649839 L35.5285137,11.9607716 L30.3918611,24.3487135 L57.3592871,19.649839 Z M8.56108769,78.1721854 L0,74.7548222 L30.3918611,0 L78.3339518,17.0868165 L78.3339518,25.6302247 L26.5393717,34.6008034 L8.56108769,78.1721854 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="186px" height="156px" viewBox="0 0 186 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>DF-O</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.13" transform="translate(-35.000000, -1803.000000)">
<g id="DF-O" transform="translate(35.000000, 1803.000000)">
<g id="Group-7-Copy">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.870708,142.151701 C185.870708,149.727635 180.321404,155.862495 173.451821,155.862495 L12.6045508,155.862495 C5.75559683,155.862495 0.185664414,149.727635 0.185664414,142.151701 L0.185664414,13.8960751 C0.185664414,6.3201408 5.73496745,0.185281001 12.6045508,0.185281001 L173.451821,0.185281001 C180.300775,0.185281001 185.870708,6.3201408 185.870708,13.8960751 L185.870708,142.151701 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.29301048 9.46991782 105.416128 9.46991782 105.416128 104.477898 8.29301048 104.477898"></polygon>
<path d="M67.4993291,52.825672 C69.0465325,58.4046888 65.7458318,64.1689866 60.1758994,65.7129949 C54.5853376,67.2570033 48.8091114,63.9837056 47.261908,58.4046888 C45.7147045,52.825672 49.0154052,47.0613742 54.605967,45.5173659 C60.1758994,43.9733575 65.9521256,47.2466552 67.4993291,52.825672 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.708089,10.8904055 L175.49413,10.8904055 L175.49413,104.951394 L111.708089,104.951394 L111.708089,10.8904055 Z M8.29301048,110.756865 L56.8545694,110.756865 L56.8545694,148.265974 L8.29301048,148.265974 L8.29301048,110.756865 Z M64.0954815,110.756865 L175.49413,110.756865 L175.49413,148.265974 L64.0954815,148.265974 L64.0954815,110.756865 Z" id="Shape" fill="#EC8D15"></path>
</g>
<path d="M103.055388,122.863258 C104.896753,122.863258 106.337822,123.262728 107.398609,124.081642 C108.419365,124.880583 109.05984,126.05902 109.320033,127.656901 L106.958282,127.656901 C106.758134,126.738119 106.317807,126.05902 105.677332,125.599629 C105.016842,125.140238 104.136189,124.92053 103.055388,124.92053 C101.714393,124.92053 100.653607,125.359947 99.8730278,126.278728 C99.0123896,127.237457 98.5920779,128.575682 98.5920779,130.333351 C98.5920779,132.011126 98.9723599,133.309404 99.7329239,134.208212 C100.553532,135.16694 101.834482,135.646305 103.575774,135.646305 C104.256278,135.646305 104.896753,135.566411 105.497199,135.406623 C106.057614,135.246834 106.557985,135.027126 107.038341,134.747497 L107.038341,131.811391 L103.255536,131.811391 L103.255536,129.81404 L109.380078,129.81404 L109.380078,135.84604 C108.619514,136.445245 107.758876,136.884662 106.778148,137.204238 C105.737377,137.523815 104.596531,137.683603 103.315581,137.683603 C101.033889,137.683603 99.2725826,136.964556 98.0116475,135.526464 C96.8307718,134.188238 96.2503414,132.450543 96.2503414,130.333351 C96.2503414,128.196185 96.8307718,126.438517 98.0116475,125.060344 C99.2525677,123.582305 100.933814,122.863258 103.055388,122.863258 Z M115.00977,123.142887 L117.671744,123.142887 L123.135796,137.403974 L120.633941,137.403974 L119.332976,133.828715 L113.348538,133.828715 L112.047573,137.403974 L109.545718,137.403974 L115.00977,123.142887 Z M114.049058,131.911258 L118.632456,131.911258 L116.390794,125.65955 L116.310735,125.65955 L114.049058,131.911258 Z M123.501584,123.142887 L125.823306,123.142887 L125.823306,135.406623 L133.549035,135.406623 L133.549035,137.403974 L123.501584,137.403974 L123.501584,123.142887 Z M134.315121,123.142887 L144.622764,123.142887 L144.622764,125.140238 L136.656857,125.140238 L136.656857,129.094993 L144.142408,129.094993 L144.142408,131.092344 L136.656857,131.092344 L136.656857,135.406623 L144.963017,135.406623 L144.963017,137.403974 L134.315121,137.403974 L134.315121,123.142887 Z" id="GALE" fill="#FFFFFF"></path>
<path d="M124.975436,27.2741722 L140.835473,27.2741722 C141.083933,25.0839735 141.249573,22.7698013 141.290983,20.3729801 L141.290983,16.7777483 L145.266345,16.7777483 L145.266345,19.4638411 C145.266345,22.1912583 145.100705,24.794702 144.769425,27.2741722 L161.581892,27.2741722 L161.581892,31.0760265 L145.763265,31.0760265 C148.661967,39.9194702 154.252319,46.7380132 162.451503,51.5729801 L160.008312,54.7549669 C152.057588,49.8786755 146.467236,43.0601325 143.320074,34.2993377 C140.587013,43.762649 134.99666,50.7051656 126.590427,55.1268874 L124.064416,51.8209272 C132.594879,47.6884768 137.978182,40.7459603 140.172913,31.0760265 L124.975436,31.0760265 L124.975436,27.2741722 Z M137.025751,68.7364238 C139.220482,71.4638411 141.249573,74.0672848 143.113024,76.546755 C144.603785,73.7366887 145.763265,70.72 146.674286,67.4966887 L150.566827,68.1578808 C149.324527,72.6209272 147.709536,76.5880795 145.721855,80.1006623 C148.123636,83.5719205 150.194137,86.7539073 151.891948,89.6466225 L148.330686,92.0847682 C146.839926,89.44 145.183525,86.7125828 143.278664,83.9025166 C140.794063,87.3324503 137.895362,90.3078146 134.58256,92.7872848 L131.932319,89.44 C135.452171,86.7952318 138.433692,83.7372185 140.835473,80.2659603 C138.682152,77.207947 136.363191,74.0259603 133.79577,70.72 L137.025751,68.7364238 Z M128.743748,60.8434437 L156.28141,60.8434437 L156.28141,77.7451656 C156.28141,84.0678146 156.44705,88.1176159 156.86115,89.8945695 C157.19243,91.6301987 157.606531,92.5393377 158.103451,92.5393377 C158.476141,92.5393377 158.807421,90.8863576 159.055881,87.6217219 L162.575733,89.3160265 C162.037403,92.4566887 161.457662,94.6055629 160.836512,95.68 C160.132542,96.6717881 159.345751,97.2090066 158.517551,97.2090066 C156.36423,97.2090066 154.790649,95.8866225 153.796809,93.2831788 C152.761558,90.7210596 152.264638,85.5554967 152.264638,77.7451656 L152.264638,64.645298 L132.677699,64.645298 L132.677699,77.207947 C132.594879,85.3075497 130.897069,92.1260927 127.625677,97.6222517 L124.312876,94.9361589 C127.128757,90.2251656 128.619518,84.3157616 128.743748,77.207947 L128.743748,60.8434437 Z" id="大-风" fill="#FFFFFF"></path>
<path d="M20.2136104,123.111205 L23.3442078,123.111205 L23.3442078,118.474596 L25.6548868,118.474596 L25.6548868,123.111205 L28.0152579,123.111205 L28.0152579,125.367523 L25.6548868,125.367523 L25.6548868,126.483285 C26.6735733,127.599046 27.6922597,128.813987 28.7109462,130.128106 L27.3692616,132.136477 C26.7232653,130.847152 26.1518071,129.78098 25.6548868,128.888371 L25.6548868,141.211338 L23.3442078,141.211338 L23.3442078,130.227285 C22.6485195,132.210861 21.8286011,134.070464 20.8596067,135.756503 L19.8409202,133.15306 C21.4062189,130.871947 22.5491354,128.293298 23.2945158,125.367523 L20.2136104,125.367523 L20.2136104,123.111205 Z M29.7544787,129.334675 L40.8109536,129.334675 L40.8109536,135.533351 L29.7544787,135.533351 L29.7544787,129.334675 Z M38.5996586,133.599364 L38.5996586,131.268662 L31.9657737,131.268662 L31.9657737,133.599364 L38.5996586,133.599364 Z M28.4127941,138.607894 L31.8663896,138.607894 C31.4688534,137.888848 31.0216252,137.219391 30.499859,136.574728 L32.636616,135.806093 C33.1832282,136.599523 33.6801484,137.516927 34.1273766,138.607894 L36.5125937,138.607894 C37.108898,137.715285 37.6306642,136.773086 38.0778924,135.806093 L40.1898033,136.549934 C39.7922672,137.293775 39.345039,137.988026 38.8729647,138.607894 L42.3265603,138.607894 L42.3265603,140.715444 L28.4127941,140.715444 L28.4127941,138.607894 Z M32.0403117,126.309722 C31.1210093,127.400689 30.0277848,128.318093 28.7606382,129.086728 L27.4189536,127.326305 C28.5618701,126.681642 29.5308646,125.937801 30.3756289,125.069987 C29.8041707,124.524503 29.1333284,123.954225 28.363102,123.359152 L29.7793247,121.995444 C30.425321,122.516132 31.0216252,123.036821 31.5682375,123.582305 C32.0403117,122.863258 32.4378479,122.094623 32.760846,121.301192 L29.0836364,121.301192 L29.0836364,119.317616 L34.7733729,119.317616 L34.7733729,120.978861 C34.3261447,122.689695 33.6304564,124.202172 32.686308,125.491497 L38.2766605,125.491497 C37.0095139,123.731073 36.0405195,121.772291 35.3696772,119.615152 L37.0343599,118.672954 C37.233128,119.317616 37.4567421,119.912689 37.7052022,120.482967 C38.4008905,119.912689 38.9971948,119.292821 39.494115,118.623364 L41.0345677,119.937483 C40.3140334,120.780503 39.494115,121.549139 38.5499666,122.193801 C38.7984267,122.640106 39.0965788,123.086411 39.394731,123.507921 C40.2394954,122.838464 40.9848757,122.119417 41.606026,121.325987 L43.1464787,122.664901 C42.4010983,123.532715 41.556334,124.301351 40.6121855,124.995603 C41.3327199,125.789033 42.1277922,126.483285 42.9974026,127.103152 L41.4569499,128.888371 C40.4631095,128.045351 39.5686531,127.152742 38.8232727,126.210543 L38.8232727,127.549457 L32.0403117,127.549457 L32.0403117,126.309722 Z" id="橙" fill="#FFFFFF"></path>
</g>
<g id="dafeng-2" transform="translate(20.705009, 18.596026)" fill="#EC8D15" fill-rule="nonzero">
<path d="M57.3592871,19.649839 L35.5285137,11.9607716 L30.3918611,24.3487135 L57.3592871,19.649839 Z M8.56108769,78.1721854 L0,74.7548222 L30.3918611,0 L78.3339518,17.0868165 L78.3339518,25.6302247 L26.5393717,34.6008034 L8.56108769,78.1721854 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="186px" height="156px" viewBox="0 0 186 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>DF-Y</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.13" transform="translate(-354.000000, -1800.000000)">
<g id="DF-Y" transform="translate(354.000000, 1800.000000)">
<g id="Group-7-Copy">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.870708,142.151701 C185.870708,149.727635 180.321404,155.862495 173.451821,155.862495 L12.6045508,155.862495 C5.75559683,155.862495 0.185664414,149.727635 0.185664414,142.151701 L0.185664414,13.8960751 C0.185664414,6.3201408 5.73496745,0.185281001 12.6045508,0.185281001 L173.451821,0.185281001 C180.300775,0.185281001 185.870708,6.3201408 185.870708,13.8960751 L185.870708,142.151701 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.29301048 9.46991782 105.416128 9.46991782 105.416128 104.477898 8.29301048 104.477898"></polygon>
<path d="M67.4993291,52.825672 C69.0465325,58.4046888 65.7458318,64.1689866 60.1758994,65.7129949 C54.5853376,67.2570033 48.8091114,63.9837056 47.261908,58.4046888 C45.7147045,52.825672 49.0154052,47.0613742 54.605967,45.5173659 C60.1758994,43.9733575 65.9521256,47.2466552 67.4993291,52.825672 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.708089,10.8904055 L175.49413,10.8904055 L175.49413,104.951394 L111.708089,104.951394 L111.708089,10.8904055 Z M8.29301048,110.756865 L56.8545694,110.756865 L56.8545694,148.265974 L8.29301048,148.265974 L8.29301048,110.756865 Z M64.0954815,110.756865 L175.49413,110.756865 L175.49413,148.265974 L64.0954815,148.265974 L64.0954815,110.756865 Z" id="Shape" fill="#FFFF00"></path>
</g>
<path d="M103.055388,122.863258 C104.896753,122.863258 106.337822,123.262728 107.398609,124.081642 C108.419365,124.880583 109.05984,126.05902 109.320033,127.656901 L106.958282,127.656901 C106.758134,126.738119 106.317807,126.05902 105.677332,125.599629 C105.016842,125.140238 104.136189,124.92053 103.055388,124.92053 C101.714393,124.92053 100.653607,125.359947 99.8730278,126.278728 C99.0123896,127.237457 98.5920779,128.575682 98.5920779,130.333351 C98.5920779,132.011126 98.9723599,133.309404 99.7329239,134.208212 C100.553532,135.16694 101.834482,135.646305 103.575774,135.646305 C104.256278,135.646305 104.896753,135.566411 105.497199,135.406623 C106.057614,135.246834 106.557985,135.027126 107.038341,134.747497 L107.038341,131.811391 L103.255536,131.811391 L103.255536,129.81404 L109.380078,129.81404 L109.380078,135.84604 C108.619514,136.445245 107.758876,136.884662 106.778148,137.204238 C105.737377,137.523815 104.596531,137.683603 103.315581,137.683603 C101.033889,137.683603 99.2725826,136.964556 98.0116475,135.526464 C96.8307718,134.188238 96.2503414,132.450543 96.2503414,130.333351 C96.2503414,128.196185 96.8307718,126.438517 98.0116475,125.060344 C99.2525677,123.582305 100.933814,122.863258 103.055388,122.863258 Z M115.00977,123.142887 L117.671744,123.142887 L123.135796,137.403974 L120.633941,137.403974 L119.332976,133.828715 L113.348538,133.828715 L112.047573,137.403974 L109.545718,137.403974 L115.00977,123.142887 Z M114.049058,131.911258 L118.632456,131.911258 L116.390794,125.65955 L116.310735,125.65955 L114.049058,131.911258 Z M123.501584,123.142887 L125.823306,123.142887 L125.823306,135.406623 L133.549035,135.406623 L133.549035,137.403974 L123.501584,137.403974 L123.501584,123.142887 Z M134.315121,123.142887 L144.622764,123.142887 L144.622764,125.140238 L136.656857,125.140238 L136.656857,129.094993 L144.142408,129.094993 L144.142408,131.092344 L136.656857,131.092344 L136.656857,135.406623 L144.963017,135.406623 L144.963017,137.403974 L134.315121,137.403974 L134.315121,123.142887 Z" id="GALE" fill="#444444"></path>
<path d="M124.975436,27.2741722 L140.835473,27.2741722 C141.083933,25.0839735 141.249573,22.7698013 141.290983,20.3729801 L141.290983,16.7777483 L145.266345,16.7777483 L145.266345,19.4638411 C145.266345,22.1912583 145.100705,24.794702 144.769425,27.2741722 L161.581892,27.2741722 L161.581892,31.0760265 L145.763265,31.0760265 C148.661967,39.9194702 154.252319,46.7380132 162.451503,51.5729801 L160.008312,54.7549669 C152.057588,49.8786755 146.467236,43.0601325 143.320074,34.2993377 C140.587013,43.762649 134.99666,50.7051656 126.590427,55.1268874 L124.064416,51.8209272 C132.594879,47.6884768 137.978182,40.7459603 140.172913,31.0760265 L124.975436,31.0760265 L124.975436,27.2741722 Z M137.025751,68.7364238 C139.220482,71.4638411 141.249573,74.0672848 143.113024,76.546755 C144.603785,73.7366887 145.763265,70.72 146.674286,67.4966887 L150.566827,68.1578808 C149.324527,72.6209272 147.709536,76.5880795 145.721855,80.1006623 C148.123636,83.5719205 150.194137,86.7539073 151.891948,89.6466225 L148.330686,92.0847682 C146.839926,89.44 145.183525,86.7125828 143.278664,83.9025166 C140.794063,87.3324503 137.895362,90.3078146 134.58256,92.7872848 L131.932319,89.44 C135.452171,86.7952318 138.433692,83.7372185 140.835473,80.2659603 C138.682152,77.207947 136.363191,74.0259603 133.79577,70.72 L137.025751,68.7364238 Z M128.743748,60.8434437 L156.28141,60.8434437 L156.28141,77.7451656 C156.28141,84.0678146 156.44705,88.1176159 156.86115,89.8945695 C157.19243,91.6301987 157.606531,92.5393377 158.103451,92.5393377 C158.476141,92.5393377 158.807421,90.8863576 159.055881,87.6217219 L162.575733,89.3160265 C162.037403,92.4566887 161.457662,94.6055629 160.836512,95.68 C160.132542,96.6717881 159.345751,97.2090066 158.517551,97.2090066 C156.36423,97.2090066 154.790649,95.8866225 153.796809,93.2831788 C152.761558,90.7210596 152.264638,85.5554967 152.264638,77.7451656 L152.264638,64.645298 L132.677699,64.645298 L132.677699,77.207947 C132.594879,85.3075497 130.897069,92.1260927 127.625677,97.6222517 L124.312876,94.9361589 C127.128757,90.2251656 128.619518,84.3157616 128.743748,77.207947 L128.743748,60.8434437 Z" id="大-风" fill="#444444"></path>
<path d="M21.7789091,120.433377 L26.6238813,120.433377 L26.6238813,118.499391 L28.9097143,118.499391 L28.9097143,120.433377 L33.8789165,120.433377 L33.8789165,118.474596 L36.1647495,118.474596 L36.1647495,120.433377 L41.2084898,120.433377 L41.2084898,122.516132 L36.1647495,122.516132 L36.1647495,124.251762 L42.5253284,124.251762 L42.5253284,126.359311 L32.5869239,126.359311 L32.5869239,127.822199 L39.8419592,127.822199 L39.8419592,136.89706 L34.7982189,136.89706 C37.6306642,137.566517 40.2146494,138.384742 42.5501744,139.37653 L41.3078738,141.310517 C38.7487347,140.120371 36.1399035,139.202967 33.4813803,138.508715 L34.5746048,136.89706 L28.0152579,136.89706 L29.1581744,138.235974 C27.0214174,139.475709 24.4125863,140.517086 21.3316809,141.335311 L20.3626865,139.277351 C23.1205937,138.657483 25.4312727,137.864053 27.3195696,136.89706 L23.0460557,136.89706 L23.0460557,127.822199 L30.3010909,127.822199 L30.3010909,126.359311 L20.3875325,126.359311 L20.3875325,124.251762 L26.6238813,124.251762 L26.6238813,122.516132 L21.7789091,122.516132 L21.7789091,120.433377 Z M33.8789165,124.251762 L33.8789165,122.516132 L28.9097143,122.516132 L28.9097143,124.251762 L33.8789165,124.251762 Z M37.5809722,134.913483 L37.5809722,133.277033 L32.5869239,133.277033 L32.5869239,134.913483 L37.5809722,134.913483 Z M30.3010909,134.913483 L30.3010909,133.277033 L25.3070427,133.277033 L25.3070427,134.913483 L30.3010909,134.913483 Z M25.3070427,131.367841 L30.3010909,131.367841 L30.3010909,129.78098 L25.3070427,129.78098 L25.3070427,131.367841 Z M32.5869239,129.78098 L32.5869239,131.367841 L37.5809722,131.367841 L37.5809722,129.78098 L32.5869239,129.78098 Z" id="黄" fill="#444444"></path>
</g>
<g id="dafeng-2" transform="translate(20.705009, 18.596026)" fill="#FFFF00" fill-rule="nonzero">
<path d="M57.3592871,19.649839 L35.5285137,11.9607716 L30.3918611,24.3487135 L57.3592871,19.649839 Z M8.56108769,78.1721854 L0,74.7548222 L30.3918611,0 L78.3339518,17.0868165 L78.3339518,25.6302247 L26.5393717,34.6008034 L8.56108769,78.1721854 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="186px" height="156px" viewBox="0 0 186 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>DF-B</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.13" transform="translate(-648.000000, -1800.000000)">
<g id="DF-B" transform="translate(648.000000, 1800.000000)">
<g id="Group-7-Copy">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.870708,142.151701 C185.870708,149.727635 180.321404,155.862495 173.451821,155.862495 L12.6045508,155.862495 C5.75559683,155.862495 0.185664414,149.727635 0.185664414,142.151701 L0.185664414,13.8960751 C0.185664414,6.3201408 5.73496745,0.185281001 12.6045508,0.185281001 L173.451821,0.185281001 C180.300775,0.185281001 185.870708,6.3201408 185.870708,13.8960751 L185.870708,142.151701 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.29301048 9.46991782 105.416128 9.46991782 105.416128 104.477898 8.29301048 104.477898"></polygon>
<path d="M67.4993291,52.825672 C69.0465325,58.4046888 65.7458318,64.1689866 60.1758994,65.7129949 C54.5853376,67.2570033 48.8091114,63.9837056 47.261908,58.4046888 C45.7147045,52.825672 49.0154052,47.0613742 54.605967,45.5173659 C60.1758994,43.9733575 65.9521256,47.2466552 67.4993291,52.825672 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.708089,10.8904055 L175.49413,10.8904055 L175.49413,104.951394 L111.708089,104.951394 L111.708089,10.8904055 Z M8.29301048,110.756865 L56.8545694,110.756865 L56.8545694,148.265974 L8.29301048,148.265974 L8.29301048,110.756865 Z M64.0954815,110.756865 L175.49413,110.756865 L175.49413,148.265974 L64.0954815,148.265974 L64.0954815,110.756865 Z" id="Shape" fill="#3265FE"></path>
</g>
<path d="M103.055388,122.863258 C104.896753,122.863258 106.337822,123.262728 107.398609,124.081642 C108.419365,124.880583 109.05984,126.05902 109.320033,127.656901 L106.958282,127.656901 C106.758134,126.738119 106.317807,126.05902 105.677332,125.599629 C105.016842,125.140238 104.136189,124.92053 103.055388,124.92053 C101.714393,124.92053 100.653607,125.359947 99.8730278,126.278728 C99.0123896,127.237457 98.5920779,128.575682 98.5920779,130.333351 C98.5920779,132.011126 98.9723599,133.309404 99.7329239,134.208212 C100.553532,135.16694 101.834482,135.646305 103.575774,135.646305 C104.256278,135.646305 104.896753,135.566411 105.497199,135.406623 C106.057614,135.246834 106.557985,135.027126 107.038341,134.747497 L107.038341,131.811391 L103.255536,131.811391 L103.255536,129.81404 L109.380078,129.81404 L109.380078,135.84604 C108.619514,136.445245 107.758876,136.884662 106.778148,137.204238 C105.737377,137.523815 104.596531,137.683603 103.315581,137.683603 C101.033889,137.683603 99.2725826,136.964556 98.0116475,135.526464 C96.8307718,134.188238 96.2503414,132.450543 96.2503414,130.333351 C96.2503414,128.196185 96.8307718,126.438517 98.0116475,125.060344 C99.2525677,123.582305 100.933814,122.863258 103.055388,122.863258 Z M115.00977,123.142887 L117.671744,123.142887 L123.135796,137.403974 L120.633941,137.403974 L119.332976,133.828715 L113.348538,133.828715 L112.047573,137.403974 L109.545718,137.403974 L115.00977,123.142887 Z M114.049058,131.911258 L118.632456,131.911258 L116.390794,125.65955 L116.310735,125.65955 L114.049058,131.911258 Z M123.501584,123.142887 L125.823306,123.142887 L125.823306,135.406623 L133.549035,135.406623 L133.549035,137.403974 L123.501584,137.403974 L123.501584,123.142887 Z M134.315121,123.142887 L144.622764,123.142887 L144.622764,125.140238 L136.656857,125.140238 L136.656857,129.094993 L144.142408,129.094993 L144.142408,131.092344 L136.656857,131.092344 L136.656857,135.406623 L144.963017,135.406623 L144.963017,137.403974 L134.315121,137.403974 L134.315121,123.142887 Z" id="GALE" fill="#FFFFFF"></path>
<path d="M124.975436,27.2741722 L140.835473,27.2741722 C141.083933,25.0839735 141.249573,22.7698013 141.290983,20.3729801 L141.290983,16.7777483 L145.266345,16.7777483 L145.266345,19.4638411 C145.266345,22.1912583 145.100705,24.794702 144.769425,27.2741722 L161.581892,27.2741722 L161.581892,31.0760265 L145.763265,31.0760265 C148.661967,39.9194702 154.252319,46.7380132 162.451503,51.5729801 L160.008312,54.7549669 C152.057588,49.8786755 146.467236,43.0601325 143.320074,34.2993377 C140.587013,43.762649 134.99666,50.7051656 126.590427,55.1268874 L124.064416,51.8209272 C132.594879,47.6884768 137.978182,40.7459603 140.172913,31.0760265 L124.975436,31.0760265 L124.975436,27.2741722 Z M137.025751,68.7364238 C139.220482,71.4638411 141.249573,74.0672848 143.113024,76.546755 C144.603785,73.7366887 145.763265,70.72 146.674286,67.4966887 L150.566827,68.1578808 C149.324527,72.6209272 147.709536,76.5880795 145.721855,80.1006623 C148.123636,83.5719205 150.194137,86.7539073 151.891948,89.6466225 L148.330686,92.0847682 C146.839926,89.44 145.183525,86.7125828 143.278664,83.9025166 C140.794063,87.3324503 137.895362,90.3078146 134.58256,92.7872848 L131.932319,89.44 C135.452171,86.7952318 138.433692,83.7372185 140.835473,80.2659603 C138.682152,77.207947 136.363191,74.0259603 133.79577,70.72 L137.025751,68.7364238 Z M128.743748,60.8434437 L156.28141,60.8434437 L156.28141,77.7451656 C156.28141,84.0678146 156.44705,88.1176159 156.86115,89.8945695 C157.19243,91.6301987 157.606531,92.5393377 158.103451,92.5393377 C158.476141,92.5393377 158.807421,90.8863576 159.055881,87.6217219 L162.575733,89.3160265 C162.037403,92.4566887 161.457662,94.6055629 160.836512,95.68 C160.132542,96.6717881 159.345751,97.2090066 158.517551,97.2090066 C156.36423,97.2090066 154.790649,95.8866225 153.796809,93.2831788 C152.761558,90.7210596 152.264638,85.5554967 152.264638,77.7451656 L152.264638,64.645298 L132.677699,64.645298 L132.677699,77.207947 C132.594879,85.3075497 130.897069,92.1260927 127.625677,97.6222517 L124.312876,94.9361589 C127.128757,90.2251656 128.619518,84.3157616 128.743748,77.207947 L128.743748,60.8434437 Z" id="大-风" fill="#FFFFFF"></path>
<path d="M33.9037625,128.020556 C33.1583822,129.161113 32.2887718,130.128106 31.3197774,130.896742 L29.5557106,129.260291 C31.2700853,127.822199 32.5123859,126.08657 33.2826122,124.078199 L35.5435993,124.648477 C35.3945232,125.045192 35.2206011,125.441907 35.071525,125.838623 L41.680564,125.838623 L41.680564,128.020556 L33.9037625,128.020556 Z M21.7789091,125.218755 L24.1144341,125.218755 L24.1144341,131.392636 L21.7789091,131.392636 L21.7789091,125.218755 Z M26.5244972,124.450119 L28.8351763,124.450119 L28.8351763,132.186066 L26.5244972,132.186066 L26.5244972,124.450119 Z M36.1150575,128.491656 C37.6058182,129.136318 38.9475028,129.904954 40.1898033,130.797563 L38.7238887,132.458808 C37.4567421,131.46702 36.0902115,130.599205 34.6491429,129.880159 L36.1150575,128.491656 Z M20.5614545,119.987073 L26.052423,119.987073 L26.052423,118.474596 L28.4376401,118.474596 L28.4376401,119.987073 L34.4503748,119.987073 L34.4503748,118.474596 L36.8355918,118.474596 L36.8355918,119.987073 L42.3265603,119.987073 L42.3265603,122.193801 L36.8355918,122.193801 L36.8355918,123.780662 L34.4503748,123.780662 L34.4503748,122.193801 L28.4376401,122.193801 L28.4376401,123.755868 L26.052423,123.755868 L26.052423,122.193801 L20.5614545,122.193801 L20.5614545,119.987073 Z M40.1401113,132.929907 L40.1401113,138.632689 L42.7240965,138.632689 L42.7240965,140.740238 L20.1639184,140.740238 L20.1639184,138.632689 L22.7479035,138.632689 L22.7479035,132.929907 L40.1401113,132.929907 Z M25.0088905,138.632689 L27.7419518,138.632689 L27.7419518,135.062252 L25.0088905,135.062252 L25.0088905,138.632689 Z M29.9780928,138.632689 L32.810538,138.632689 L32.810538,135.062252 L29.9780928,135.062252 L29.9780928,138.632689 Z M35.071525,138.632689 L37.8791243,138.632689 L37.8791243,135.062252 L35.071525,135.062252 L35.071525,138.632689 Z" id="蓝" fill="#FFFFFF"></path>
</g>
<g id="dafeng-2" transform="translate(20.705009, 18.596026)" fill="#3265FE" fill-rule="nonzero">
<path d="M57.3592871,19.649839 L35.5285137,11.9607716 L30.3918611,24.3487135 L57.3592871,19.649839 Z M8.56108769,78.1721854 L0,74.7548222 L30.3918611,0 L78.3339518,17.0868165 L78.3339518,25.6302247 L26.5393717,34.6008034 L8.56108769,78.1721854 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论