提交 2159e3d8 作者: test

Merge branch 'dev_csd' of https://gitlab.yiring.com/hntq/hntq-v5 into dev_fzm

...@@ -3,3 +3,6 @@ VITE_GLOB_APP_NAME = Basic APP ...@@ -3,3 +3,6 @@ VITE_GLOB_APP_NAME = Basic APP
# APP 描述 # APP 描述
VITE_GLOB_APP_DESCRIPTION = 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 ...@@ -3,3 +3,5 @@ VITE_GLOB_API_URL=http://192.168.0.156:8081
# API 接口地址前缀 # API 接口地址前缀
VITE_GLOB_API_URL_PREFIX=/api VITE_GLOB_API_URL_PREFIX=/api
...@@ -3,3 +3,4 @@ VITE_GLOB_API_URL=http://localhost:8080 ...@@ -3,3 +3,4 @@ VITE_GLOB_API_URL=http://localhost:8080
# API 接口地址前缀 # API 接口地址前缀
VITE_GLOB_API_URL_PREFIX=/api VITE_GLOB_API_URL_PREFIX=/api
...@@ -47,6 +47,7 @@ module.exports = { ...@@ -47,6 +47,7 @@ module.exports = {
'workflow', 'workflow',
'types', 'types',
'release', 'release',
'upd',
], ],
], ],
}, },
......
<!DOCTYPE html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<!-- <link rel="stylesheet" type="text/css" href="https://at.alicdn.com/t/c/font_4105118_8gdcfjv45sh.css" /> -->
<script> <script>
const coverSupport = const coverSupport =
'CSS' in window && 'CSS' in window &&
......
{ {
"name": "basic-app", "name": "hntq-app-v5",
"version": "3.0.3.0", "version": "0.0.2",
"description": "APP 基础工程", "description": "湖南天气app v5",
"keywords": [ "keywords": [
"app", "app",
"basic" "basic"
...@@ -81,14 +81,19 @@ ...@@ -81,14 +81,19 @@
"@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3081220230802001", "@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3081220230802001",
"@dcloudio/uni-ui": "^1.4.28", "@dcloudio/uni-ui": "^1.4.28",
"@faker-js/faker": "^8.0.2", "@faker-js/faker": "^8.0.2",
"@turf/turf": "^6.5.0",
"@types/mapbox-gl": "^2.7.11",
"@vue/runtime-core": "~3.2.47", "@vue/runtime-core": "~3.2.47",
"@vueuse/core": "^10.3.0", "@vueuse/core": "^10.3.0",
"axios": "^1.4.0", "axios": "^1.4.0",
"crypto-js": "^4.1.1", "crypto-js": "^4.1.1",
"dayjs": "^1.11.9", "dayjs": "^1.11.9",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"mapbox-gl": "^2.15.0",
"mapbox-gl-controls": "^2.3.5",
"nanoid": "^4.0.2", "nanoid": "^4.0.2",
"pinia": "~2.0.36", "pinia": "~2.0.36",
"pnpm": "8.6.7",
"qs": "~6.9.7", "qs": "~6.9.7",
"stompjs": "^2.3.3", "stompjs": "^2.3.3",
"urijs": "^1.19.11", "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"> <script setup lang="ts">
import { checkUpgrade } from '@/utils/upgrade' import { checkUpgrade } from '@/utils/upgrade'
// 本地
import './static/iconfont.css'
// import * as Push from '@/utils/push' // import * as Push from '@/utils/push'
onLaunch(() => { 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 { .example-page {
height: 100vh;
display: flex; display: flex;
justify-content: center;
align-items: 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 @@ ...@@ -97,6 +97,7 @@
} }
const hasError = ref(false) const hasError = ref(false)
function onError() { function onError() {
if (hasError.value) { if (hasError.value) {
return 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>
import type { Ref } from 'vue'
import { toRaw } from 'vue'
import type mapboxgl from 'mapbox-gl'
import { RulerControl } from 'mapbox-gl-controls'
// Mapbox accessToken
export const accessToken = 'pk.eyJ1IjoiaWZ6bSIsImEiOiJjamswc3M1a2gwYWEwM3Zxa3ZsMjh3djkwIn0.h93-XtdRdtoC1KbVv_ZIow'
// 天地图密钥
export const tk = 'aa0ccd36f2dbb86dbb16cbf63f0034a6'
// 自定义图层 host
// const host = 'http://192.168.0.156:1234'
// const host = 'https://gis.kshg.yiring.com'
const host = 'http://hb.straw.yiring.com:40051'
// 构建天地图图层地址
export function buildTdtTileUrl(id: string, tk: string) {
// return `${host}/api/tdt/cache/${id}/{z}/{y}/{x}/${tk}?v=2022`
return `${host}/straw/api/proxy/t/${id}/{z}/{y}/{x}/${tk}?v=2022`
}
/**
* 地图样式
*/
export const defaultStyle: mapboxgl.Style = {
zoom: 5.5,
version: 8,
sprite: `${host}/api/sprites/straw.v2/sprite`,
glyphs: `${host}/api/fonts/{fontstack}/{range}.pbf`,
sources: {
'wms-img_w-source': {
type: 'raster',
tiles: [buildTdtTileUrl('img', tk)],
tileSize: 256,
maxzoom: 18,
},
'wms-cia_w-source': {
type: 'raster',
tiles: [buildTdtTileUrl('cia', tk)],
tileSize: 256,
maxzoom: 18,
},
'wms-vec_w-source': {
type: 'raster',
tiles: [buildTdtTileUrl('vec', tk)],
tileSize: 256,
maxzoom: 18,
},
'wms-cva_w-source': {
type: 'raster',
tiles: [buildTdtTileUrl('cva', tk)],
tileSize: 256,
maxzoom: 18,
},
'wms-ter_w-source': {
type: 'raster',
tiles: [buildTdtTileUrl('cva', tk)],
tileSize: 256,
maxzoom: 18,
},
'wms-cta_w-source': {
type: 'raster',
tiles: [buildTdtTileUrl('cva', tk)],
tileSize: 256,
maxzoom: 18,
},
'100000': {
type: 'vector',
url: `${host}/api/tilesets/100000/tilejson`,
},
'430000': {
type: 'vector',
url: `${host}/api/tilesets/430000/tilejson`,
},
'430000.mask': {
type: 'vector',
url: `${host}/api/tilesets/430000.mask/tilejson`,
},
},
layers: [
// 火点核查所需默认图层
{
id: 'wms-img_w-layer',
type: 'raster',
source: 'wms-img_w-source',
layout: { visibility: 'visible' },
},
{
id: 'wms-cia_w-layer',
type: 'raster',
source: 'wms-cia_w-source',
layout: { visibility: 'visible' },
},
{
id: 'wms-vec_w-layer',
type: 'raster',
source: 'wms-vec_w-source',
layout: { visibility: 'none' },
},
{
id: 'wms-cva_w-layer',
type: 'raster',
source: 'wms-cva_w-source',
layout: { visibility: 'none' },
},
{
id: 'wms-ter_w-layer',
type: 'raster',
source: 'wms-ter_w-source',
layout: { visibility: 'none' },
},
{
id: 'wms-cta_w-layer',
type: 'raster',
source: 'wms-cta_w-source',
layout: { visibility: 'none' },
},
// 占位图层
{
id: 'background',
type: 'background',
layout: { visibility: 'none' },
paint: { 'background-color': 'hsla(0, 0%, 0%, 0)' },
},
{
id: `100000-line`,
source: '100000',
'source-layer': '100000',
type: 'line',
paint: {
'line-width': 1,
},
},
{
id: '430000-mask',
type: 'fill',
source: '430000.mask',
'source-layer': '430000.mask',
layout: {
visibility: 'visible',
},
paint: {
'fill-color': '#fff',
'fill-opacity': 0.3,
},
minzoom: 5,
},
{
id: `430000-shadow`,
type: 'line',
source: '430000',
'source-layer': '430000',
layout: {
'line-join': 'round',
'line-cap': 'round',
},
paint: {
'line-width': 8,
'line-blur': 92.7,
'line-offset': -4,
},
minzoom: 5,
},
{
id: `430000-line`,
source: '430000',
'source-layer': '430000',
type: 'line',
paint: {
'line-width': 2,
},
},
],
}
interface LayerOption {
label: string
value: string
image: string
active?: boolean
}
/**
* 图层控件
* 目前仅支持天地图图层
*/
class LayerControl implements mapboxgl.IControl {
map: mapboxgl.Map | undefined
container: HTMLElement | undefined
tk: string
layers?: LayerOption[]
constructor(options: Recordable) {
this.tk = options.tk
this.layers = options.layers
}
onAdd(map: mapboxgl.Map) {
this.map = map
this.container = document.createElement('div')
this.container.className = 'mapboxgl-ctrl mapboxgl-ctrl-group mapbox-control'
const layersWrapHtml: string[] = []
if (this.layers) {
layersWrapHtml.push('<div class="mapboxgl-ctrl-layer-wrap">')
this.layers.forEach((layer) => {
layersWrapHtml.push(`
<div class="mapboxgl-ctrl-layer ${layer.active ? 'active' : ''}" data-layer-ids="${layer.value}">
<img src="${layer.image}" alt="${layer.label}" />
<span>${layer.label}</span>
</div>
`)
for (const id of layer.value.split(',')) {
map.addLayer(
{
id: `t_${id}`,
type: 'raster',
source: {
type: 'raster',
tiles: [buildTdtTileUrl(id, this.tk)],
tileSize: 256,
maxzoom: 18,
},
layout: { visibility: layer.active ? 'visible' : 'none' },
},
// 'background',
)
}
})
layersWrapHtml.push('</div>')
}
this.container.innerHTML = `
<button type="button" class="mapboxgl-ctrl-layer-button" title="地图样式选择">
<span class="iconify" data-icon="fluent:layer-20-filled" data-width="24" data-height="24"></span>
${layersWrapHtml.join('')}
</button>
`
this.container.addEventListener('click', (e) => {
const target = e.target as HTMLElement
const parent = target.parentElement as HTMLElement
if (parent.classList.contains('mapboxgl-ctrl-layer')) {
const ids = parent.getAttribute('data-layer-ids') as string
const list = parent.parentElement?.children as HTMLCollection
for (let i = 0; i < list.length; i++) {
const item = list[i] as HTMLElement
if (item.classList.contains('mapboxgl-ctrl-layer')) {
if (item.getAttribute('data-layer-ids') === ids) {
item.classList.toggle('active')
} else {
item.classList.remove('active')
}
}
}
this.layers?.forEach((layer) => {
for (const id of layer.value.split(',')) {
map.setLayoutProperty(`t_${id}`, 'visibility', 'none')
}
})
if (parent.classList.contains('active')) {
for (const id of ids.split(',')) {
map.setLayoutProperty(`t_${id}`, 'visibility', 'visible')
}
}
return
}
this.container?.querySelector('button')?.classList.toggle('-active')
})
return this.container
}
onRemove() {
this.container?.parentNode?.removeChild(this.container)
this.map = undefined
}
}
/**
* 经纬度坐标拾取控件
*/
class GeolocateInfoControl implements mapboxgl.IControl {
map: mapboxgl.Map | undefined
container: HTMLElement | undefined
toText(lngLat: mapboxgl.LngLat) {
return `经度:${lngLat.lng.toFixed(6)}, 纬度:${lngLat.lat.toFixed(6)}`
}
onAdd(map: mapboxgl.Map) {
this.map = map
this.container = document.createElement('div')
this.container.className = 'mapboxgl-ctrl mapboxgl-ctrl-lnglat'
this.container.textContent = this.toText(map.getCenter())
map.on('mousemove', (e) => {
const element = this.container as HTMLElement
element.textContent = this.toText(e.lngLat)
})
return this.container
}
onRemove() {
this.container?.parentNode?.removeChild(this.container)
this.map = undefined
}
}
/**
* 地图复位控件
*/
class ResetControl implements mapboxgl.IControl {
map: mapboxgl.Map | undefined
container: HTMLElement | undefined
options: mapboxgl.FlyToOptions
constructor(options: mapboxgl.FlyToOptions) {
this.options = options
}
onAdd(map: mapboxgl.Map) {
this.map = map
this.container = document.createElement('div')
this.container.className = 'mapboxgl-ctrl mapboxgl-ctrl-group mapbox-control'
this.container.innerHTML = `
<button type="button" class="mapboxgl-ctrl-reset-button mapboxgl-ctrl-reset" title="地图复位">
<span class="mapboxgl-ctrl-icon" aria-hidden="true" title="Reset"></span>
</button>
`
this.container.addEventListener('click', () => {
this.map?.flyTo(this.options)
})
return this.container
}
onRemove() {
this.container?.parentNode?.removeChild(this.container)
this.map = undefined
}
}
/**
* 测量控件
*/
class MeasureControl implements mapboxgl.IControl {
map: mapboxgl.Map | undefined
container: HTMLElement | undefined
onAdd(map: mapboxgl.Map) {
this.map = map
this.container = document.createElement('div')
this.container.className = 'mapboxgl-ctrl mapboxgl-ctrl-group mapbox-control'
this.container.innerHTML = `
<button type="button" class="mapboxgl-ctrl-reset-button" title="面积计算">
<span class="iconify" data-icon="carbon:area-custom" data-width="24" data-height="24"></span>
</button>
`
this.container.addEventListener('click', () => {
this.container?.querySelector('button')?.classList.toggle('-active')
console.log('TODO: 测量面积功能暂未实现, 敬请期待...')
})
return this.container
}
onRemove() {
this.container?.parentNode?.removeChild(this.container)
this.map = undefined
}
}
/**
* 风场控件
*/
export class WindyControl implements mapboxgl.IControl {
map: mapboxgl.Map | undefined
container: HTMLElement | undefined
onOpen: () => Promise<void>
onClose: Function
constructor(options: Recordable) {
this.onOpen = options.onOpen
this.onClose = options.onClose
}
onAdd(map: mapboxgl.Map) {
this.map = map
this.container = document.createElement('div')
this.container.className = 'mapboxgl-ctrl mapboxgl-ctrl-group mapbox-control'
this.container.innerHTML = `
<button type="button" class="mapboxgl-ctrl-reset-button" title="风场">
<span class="iconify" data-icon="ph:wind-light" data-width="24" data-height="24"></span>
</button>
`
this.container.addEventListener('click', () => {
const button = this.container?.querySelector('button')
if (!button?.classList.contains('-active')) {
this.onOpen().then(() => {
button?.classList.add('-active')
})
} else {
this.onClose()
button?.classList.remove('-active')
}
})
return this.container
}
onRemove() {
this.container?.parentNode?.removeChild(this.container)
this.map = undefined
}
}
/**
* 自定义控件
*/
export class CustomControl implements mapboxgl.IControl {
map: mapboxgl.Map | undefined
container: HTMLElement | undefined
onOpen: () => Promise<void>
onClose: Function
constructor(options: Recordable) {
this.onOpen = options.onOpen
this.onClose = options.onClose
}
onAdd(map: mapboxgl.Map) {
this.map = map
this.container = document.createElement('div')
this.container.className = 'mapboxgl-ctrl mapboxgl-ctrl-group mapbox-control'
this.container.innerHTML = `
<button type="button" class="mapboxgl-ctrl-cloud-button">
<span class="mapboxgl-ctrl-icon" aria-hidden="true" title="Reset"></span>
</button>
`
this.container.addEventListener('click', () => {
const button = this.container?.querySelector('button')
if (!button?.classList.contains('-active')) {
this.onOpen().then(() => {
button?.classList.add('-active')
})
} else {
this.onClose()
button?.classList.remove('-active')
}
})
return this.container
}
onRemove() {
this.container?.parentNode?.removeChild(this.container)
this.map = undefined
}
}
export interface MapOptions {
control?: MapControlOptions
style?: mapboxgl.Style | Recordable
}
export interface MapControlOptions {
// 导航控件
navigation?: {
zoom?: boolean
compass?: boolean
}
// 图层控制
layer?:
| boolean
| {
tk: string
layers: LayerOption[]
}
// 重置控件
reset?: boolean | mapboxgl.FlyToOptions
// 全屏控件
fullscreen?: boolean
// 比例尺
scale?: boolean
// 经纬度拾取
info?: boolean
// 定位控件
geolocate?: Recordable
// 面积测算控件
measure?: boolean
// 距离测算控件
ruler?: { show: boolean; callback: any }
// 风场控件
windy?: boolean
// 绘制控件
draw?: boolean
}
/**
* 加载地图控件
* @param map 地图实例
* @param options 控件配置
*/
export function loadMapControl(mapboxgl: any, map: mapboxgl.Map, options?: MapControlOptions) {
if (!options) {
return
}
// 导航控件
if (options.navigation) {
map.addControl(
new mapboxgl.NavigationControl({
showCompass: options.navigation.compass,
showZoom: options.navigation.zoom,
}),
)
}
// 全屏控件
if (options.fullscreen) {
map.addControl(new mapboxgl.FullscreenControl())
}
// 地图复位控件
if (options.reset) {
if (typeof options.reset === 'boolean') {
map.addControl(
new ResetControl({
zoom: map.getZoom(),
pitch: map.getPitch(),
bearing: map.getBearing(),
center: map.getCenter(),
}),
)
} else {
map.addControl(new ResetControl(options.reset))
}
}
// 图层选择控件
if (options.layer) {
if (typeof options.layer === 'boolean') {
map.addControl(
new LayerControl({
tk,
layers: [
{
label: '影像',
value: 'img,cia',
image: './resource/img/layers/img_w.png',
active: false,
},
{
label: '矢量',
value: 'vec,cva',
image: './resource/img/layers/vec_w.png',
},
{
label: '地形',
value: 'ter,cta',
image: './resource/img/layers/ter_w.png',
},
],
}),
)
} else {
map.addControl(new LayerControl(options.layer))
}
}
// 面积测量控件
if (options.measure) {
map.addControl(new MeasureControl())
}
// 经纬度信息控件
if (options.info) {
map.addControl(new GeolocateInfoControl(), 'bottom-left')
}
// 比例尺控件
if (options.scale) {
map.addControl(new mapboxgl.ScaleControl(), 'bottom-left')
}
// 测距控件
const rulers = toRaw(options.ruler)
if (rulers && rulers.show) {
const instance = new RulerControl({
font: ['Microsoft YaHei'],
fontHalo: 2,
units: 'kilometers',
labelFormat: (n) => `${n.toFixed(3)} km`,
})
map.addControl(instance, 'bottom-right')
if (rulers.callback) {
rulers.callback(instance)
}
return instance
}
// 定位
if (options.geolocate) {
const geolocate = new mapboxgl.GeolocateControl({
positionOptions: {
enableHighAccuracy: true,
timeout: 10000,
},
trackUserLocation: true,
showUserHeading: true,
})
// #ifdef APP-PLUS
geolocate.geolocation = options.geolocate
// #endif
map.addControl(geolocate, 'top-right')
}
}
export function toPointGeoJSON(
data?: ({ lon: number; lat: number } & Recordable)[],
): GeoJSON.FeatureCollection<GeoJSON.Geometry, GeoJSON.GeoJsonProperties> {
return {
type: 'FeatureCollection',
features: !data
? []
: data.map((item) => {
return {
type: 'Feature',
properties: {
...item,
},
geometry: {
type: 'Point',
coordinates: [item.lon, item.lat],
},
}
}),
}
}
export function createPopupHtml(entry: Recordable, mapping: Recordable) {
const htmls: string[] = ['<div class="mapboxgl-custom-popup">']
for (const key in entry) {
const lable = mapping[key]
if (!lable) {
continue
}
const value = entry[key]
htmls.push(`
<div class="popup-row">
<span class="popup-title">${lable}:</span>
${value}
</div>
`)
}
htmls.push('</div>')
return htmls.join('')
}
export const getMapInstance = (ref: Ref<any>): mapboxgl.Map => toRaw(ref.value?.map) as mapboxgl.Map
export function getGeoJSONSource(map: mapboxgl.Map, sourceName: string): mapboxgl.GeoJSONSource {
return map.getSource(sourceName) as mapboxgl.GeoJSONSource
}
export function getImageSource(map: mapboxgl.Map, sourceName: string): mapboxgl.ImageSource {
return map.getSource(sourceName) as mapboxgl.ImageSource
}
export const EmptyImage =
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAABlBMVEXMzMz/+v+u+uEzAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAACklEQVQImWNgAAAAAgAB9HFkpgAAAABJRU5ErkJggg=='
export const PopupImage = 'https://oss.kshg.yiring.com/kshg/public/popup.png'
/** 地图地址路径 */
const MapUrl = 'https://hntq.zhijietianqi.com'
/** 地图基础样式配置 */
export const countyLayers: mapboxgl.AnyLayer[] = [
{
id: 'background',
type: 'background',
// layout: { visibility: 'none' },
// paint: { 'background-color': 'hsla(0, 0%, 0%, 0)' },
paint: { 'background-color': '#ffffff' },
},
{
id: 'xian-fill',
type: 'fill',
source: 'compositeConty',
'source-layer': '430000.area',
layout: {},
minzoom: 0,
// paint: { 'line-color': 'hsl(0, 0%, 79%)' },
paint: { 'fill-color': 'rgba(255, 255, 255, 0)' },
},
{
id: 'xian-boundary',
type: 'line',
source: 'compositeConty',
'source-layer': '430000.area',
layout: {},
minzoom: 0,
paint: { 'line-color': 'hsl(0, 0%, 65%)' },
},
{
id: 'shi-boundary',
type: 'line',
source: 'compositeCity',
'source-layer': '430000.city',
layout: {},
minzoom: 0,
paint: { 'line-color': '#666' },
},
{
id: 'secondary-river',
type: 'fill',
source: 'riskCombine',
'source-layer': 'riversecondary',
layout: { visibility: 'none' },
// paint: { 'fill-color': 'hsl(157, 82%, 42%)' },
// paint: { 'fill-color': '#027EFE' },//7DF2FF
paint: { 'fill-color': '#7DF2FF' },
},
{
id: 'hunansheng-mask',
type: 'fill',
source: 'compositeProvinceMask',
'source-layer': '430000.mask',
layout: {
visibility: 'visible',
},
paint: { 'fill-color': '#fff' },
},
// {
// id: 'sheng-boundary',
// type: 'line',
// source: 'compositeProvince',
// 'source-layer': '430000',
// layout: {
// 'line-join': 'round',
// 'line-cap': 'round',
// },
// paint: {
// 'line-color': '#000',
// 'line-width': 8,
// 'line-blur': 70.7,
// 'line-offset': -4,
// },
// },
{
id: 'sheng-boundary-line',
type: 'line',
source: 'compositeProvince',
'source-layer': '430000',
layout: {
'line-join': 'round',
'line-cap': 'round',
},
paint: {
'line-color': '#000',
'line-width': 8,
'line-blur': 70.7,
'line-offset': -4,
},
},
{
id: 'sheng-boundary',
type: 'line',
source: 'compositeProvince',
'source-layer': '430000',
paint: {
'line-width': 1,
'line-color': '#000',
},
},
]
export const provinceLayers: mapboxgl.AnyLayer[] = [
{
id: 'background',
type: 'background',
// layout: { visibility: 'none' },
paint: { 'background-color': '#ffffff' },
},
{
id: 'hunansheng-mask',
type: 'fill',
source: 'composite',
'source-layer': 'hunansheng-mask',
layout: {
visibility: 'visible',
},
paint: { 'fill-color': '#fff' },
},
{
id: 'xian-boundary',
type: 'line',
source: 'composite',
'source-layer': 'xian-boundary',
layout: {},
minzoom: 7.7,
// paint: { 'line-color': 'hsl(0, 0%, 79%)' },
paint: { 'line-color': '#9e9e9e' },
},
{
id: 'shi-boundary',
type: 'line',
source: 'composite',
'source-layer': 'shi-boundary',
layout: {},
maxzoom: 7.7,
paint: { 'line-color': '#9e9e9e' },
},
// 湖南省周边
// {
// id: 'hunanshengzhoubian',
// type: 'line',
// source: 'composite',
// 'source-layer': 'hunanshengzhoubian',
// layout: {
// // visibility: 'none',
// },
// paint: { 'line-color': '#9e9e9e' },
// },
// {
// id: 'china-boundary',
// type: 'line',
// source: 'composite',
// 'source-layer': 'china-1zg0yz',
// layout: {
// visibility: 'none',
// },
// paint: { 'line-color': '#9e9e9e', 'line-width': 2 },
// },
{
id: 'sheng-boundary',
type: 'line',
source: 'composite',
'source-layer': 'sheng-boundary',
layout: {},
paint: { 'line-width': 2 },
},
{
id: 'sheng-boundary copy',
type: 'line',
source: 'composite',
'source-layer': 'sheng-boundary',
layout: { 'line-cap': 'round', 'line-join': 'round' },
paint: {
'line-width': 8,
'line-blur': 92.7,
'line-translate': [0, 0],
'line-offset': -4,
'line-color': 'hsl(0, 0%, 0%)',
},
},
]
export const surfacerainLayers: mapboxgl.AnyLayer[] = [
/** ************************************* 全流域 **************************************/
/** 大流域 */
{
id: 'water-big-fill',
type: 'fill',
source: 'compositeBig',
'source-layer': 'watershed-big',
layout: { visibility: 'none' },
paint: { 'fill-color': '#fff' },
},
{
id: 'water-mediumweb-fill',
type: 'fill',
source: 'compositeMediumweb',
'source-layer': 'watershedmediumweb',
layout: { visibility: 'none' },
paint: { 'fill-color': '#fff' },
},
{
id: 'water-big-name',
type: 'symbol',
source: 'compositeBigLabel',
'source-layer': 'watershed-big-label',
layout: {
'text-size': 13,
'text-field': '{name}',
visibility: 'none',
'text-allow-overlap': true,
},
paint: {
'text-halo-width': 1,
'text-halo-color': '#fff',
'text-color': '#444',
},
},
/**
* 大流域 上中下名称
*/
// {
// id: 'medium-watershed-name',
// type: 'symbol',
// source: 'watershedDashmedium',
// 'source-layer': 'watershed-big-medium',
// layout: {
// 'text-size': 13,
// 'text-field': '{name}',
// 'text-allow-overlap': true,
// },
// paint: {
// 'text-halo-width': 1,
// 'text-halo-color': '#fff',
// 'text-color': '#444',
// },
// },
{
id: 'water-big-line',
type: 'line',
source: 'compositeBig',
'source-layer': 'watershed-big',
paint: { 'line-color': '#666' },
layout: { visibility: 'none' },
},
/** ************************************** 中小河流域 ***************************************/
{
id: 'water-mediumweb-line',
type: 'line',
source: 'compositeMediumweb',
'source-layer': 'watershedmediumweb',
paint: { 'line-color': '#666' },
layout: { visibility: 'none' },
},
{
id: 'water-mediumweb-name',
type: 'symbol',
source: 'compositeMediumwebName',
'source-layer': 'watershedmediumweblabel',
layout: {
'text-size': 12,
'text-field': '{name}',
'text-allow-overlap': false,
'text-ignore-placement': false,
'text-font': ['Microsoft YaHei'],
visibility: 'none',
},
paint: {
'text-halo-width': 1,
'text-halo-color': '#fff',
'text-color': '#444',
},
},
/**
* 二级河流
*/
{
id: 'secondary-river',
type: 'fill',
source: 'riskCombine',
'source-layer': 'riversecondary',
layout: { visibility: 'none' },
// paint: { 'fill-color': 'hsl(157, 82%, 42%)' },
paint: { 'fill-color': '#3DA5FF' },
},
/**
* 三级河流
*/
{
id: 'thirdlevel-river',
type: 'line',
source: 'riskCombine',
'source-layer': 'rivertertiary',
layout: { visibility: 'none' },
paint: { 'line-color': '#69C0FF' },
},
/**
* 大流域上中下线
*/
{
id: 'medium-watershed',
type: 'line',
source: 'watershedDashmedium',
'source-layer': 'watershed-big-medium',
layout: { visibility: 'none' },
paint: { 'line-width': 2, 'line-color': '#1974ff' },
},
{
id: 'water-quan-mask',
type: 'fill',
source: 'compositeAll',
'source-layer': 'watershedquanliuyumask',
// layout: { visibility: 'none' },
paint: { 'fill-color': '#fff' },
},
{
id: 'water-quan-line',
type: 'line',
source: 'compositeAll',
'source-layer': 'watershedquanliuyu',
layout: { visibility: 'visible' },
paint: { 'line-color': '#666' },
},
]
export const mapOpts = {
// center: [111.53897, 27.7573],
// zoom: 6.3,
minzoom: 5,
maxzoom: 18,
/** 湖南区域 */
maxBounds: [
[99.94, 20.89],
[125.03, 33.52],
],
zoom: 5.5, // starting zoom
center: [111.6, 26.168], // starting position [lng, lat]
projection: 'equirectangular',
}
export const mapStyles: mapboxgl.Style = {
version: 8,
name: 'HUNAN_BOUNDARY__environment_v2',
metadata: {
'mapbox:autocomposite': true,
'mapbox:type': 'template',
'mapbox:sdk-support': {
js: 'latest',
android: '7.4.0',
ios: '4.11.0',
},
'mapbox:groups': {},
'mapbox:uiParadigm': 'layers',
},
bearing: 0,
pitch: 0,
sources: {
composite: {
type: 'vector',
tiles: [
`${MapUrl}/proxy/ifzm.2dcp8xnf,ifzm.ck03ktoon0kjs2nnwex2obobl-246jp,ifzm.cjyz8y6hi0pfr2no71j4yzhny-80vkn,ifzm.cjyzh5amz0r4l2up6ibnrpd0j-1r2sr,ifzm.ck096fe9l0ycc2nln9xryn2zk-0rswm,ifzm.cjyz95qf203yf2qo9yn4fy3u7-99efd/{z}/{x}/{y}`,
],
},
/** 新版省级mask */
compositeProvinceMask: {
type: 'vector',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/430000.mask/{z}/{x}/{y}.pbf'],
},
/** 新版省级 */
compositeProvince: {
type: 'vector',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/430000/{z}/{x}/{y}.pbf'],
},
/** 新版市级 */
compositeCity: {
type: 'vector',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/430000.city/{z}/{x}/{y}.pbf'],
},
/** 新版县区 */
compositeConty: {
type: 'vector',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/430000.area/{z}/{x}/{y}.pbf'],
},
/** 新版 洞庭湖 */
riskCombine: {
type: 'vector',
scheme: 'xyz',
minzoom: 0,
maxzoom: 9,
bounds: [87.638275, 8.296956, 136.638275, 44.385598],
tiles: ['https://foxgis.server.yiring.com/api/tilesets/river-secondary/{z}/{x}/{y}.pbf'],
},
/** 新版 全流域及遮罩 */
compositeAll: {
type: 'vector',
// format: 'pbf',
scheme: 'xyz',
maxzoom: 11,
minzoom: 0,
bounds: [87.638275, 8.296956, 136.638275, 44.385598],
tiles: ['https://foxgis.server.yiring.com/api/tilesets/watershed-quan-liu-yu/{z}/{x}/{y}.pbf'],
},
/** 新版 大河流域 */
compositeBig: {
type: 'vector',
scheme: 'xyz',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/watershed-big/{z}/{x}/{y}.pbf'],
maxzoom: 13,
minzoom: 1,
bounds: [107.264454, 23.925618, 114.296651, 30.548506],
},
/** 新版 大河流域名称 */
compositeBigLabel: {
type: 'vector',
scheme: 'xyz',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/watershed-big-label/{z}/{x}/{y}.pbf'],
maxzoom: 0,
minzoom: 0,
bounds: [109.539, 26.6586, 112.632, 29.6013],
},
/** 新版 中小河流域及名称 */
compositeMediumweb: {
type: 'vector',
scheme: 'xyz',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/watershed-mediumweb/{z}/{x}/{y}.pbf'],
maxzoom: 11,
minzoom: 0,
bounds: [107.264454, 23.925618, 114.296644, 30.548506],
},
compositeMediumwebName: {
type: 'vector',
scheme: 'xyz',
tiles: ['https://foxgis.server.yiring.com/api/tilesets/watershed-mediumweb-label/{z}/{x}/{y}.pbf'],
minzoom: 0,
maxzoom: 1,
bounds: [108.3062, 24.5421, 114.074, 30.0494],
},
/** 上中下游边界 */
watershedDashmedium: {
type: 'vector',
scheme: 'xyz',
minzoom: 0,
maxzoom: 12,
bounds: [107.264454, 23.925618, 114.296651, 30.548506],
tiles: ['https://foxgis.server.yiring.com/api/tilesets/watershed-big-medium/{z}/{x}/{y}.pbf'],
},
},
sprite: 'https://hntq.zhijietianqi.com/zj/map/sprite/sprite?',
glyphs: 'https://foxgis.server.yiring.com/api/fonts/{fontstack}/{range}.pbf',
layers: provinceLayers,
}
{ {
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8",
"pageOrientation": "portrait" //横屏配置,全局屏幕旋转设置(仅 APP/微信/QQ小程序),支持 auto / portrait / landscape
},
"pages": [ "pages": [
// pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{ {
"path": "pages/index/index", "path": "pages/home/index",
"style": { "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 文件预览 === // === PDF 文件预览 ===
{ {
"path": "pages/common/viewer/pdf", "path": "pages/common/viewer/pdf",
...@@ -60,11 +136,41 @@ ...@@ -60,11 +136,41 @@
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue" "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
} }
}, },
"globalStyle": { "resizable": true,
"navigationBarTextStyle": "black", "tabBar": {
"navigationBarTitleText": "uni-app", "color": "#7A7E83",
"navigationBarBackgroundColor": "#F8F8F8", "selectedColor": "#1890FF",
"backgroundColor": "#F8F8F8" "borderStyle": "black",
}, "backgroundColor": "#ffffff",
"resizable": true "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> <script lang="ts" setup>
import URI from 'urijs' import URI from 'urijs'
import { getExtranetUrl } from '/@/utils/proxy' import { getExtranetUrl } from '/@/utils/proxy'
const link = ref<string>('') 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'
import { useConcealedExit } from '@/hooks/app/useConcealedExit'
const { exit } = useConcealedExit()
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]" @tap="handUp" />
</view>
<fui-footer isFixed>
<template #text>
<view v-if="version" @tap="checkUpgrade(true)">V{{ version }}</view>
<view class="mt-1">壹润科技 版权所有</view>
<view class="mt-1" @tap="exit">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>BB-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, -1346.000000)">
<g id="BB-O" transform="translate(35.000000, 1346.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="#EC8D15"></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="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>
</g>
</g>
<g id="bingbao" transform="translate(34.508349, 15.152318)" fill="#EC8D15" 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>BX-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, -1572.000000)">
<g id="BX-R" transform="translate(956.000000, 1572.000000)">
<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="M72.4040371,124.337166 C73.7954137,124.337166 74.8886382,124.618172 75.6671466,125.196715 C76.4953469,125.808318 76.9757032,126.767046 77.0916512,128.056371 L75.1702263,128.056371 C75.0045863,127.32906 74.6898701,126.800106 74.2592059,126.48604 C73.8285417,126.155444 73.1659814,126.006675 72.3046531,126.006675 C71.5592727,126.006675 70.9960965,126.105854 70.5985603,126.320742 C70.1016401,126.568689 69.869744,126.981934 69.869744,127.543947 C69.869744,128.039841 70.1347681,128.453086 70.6979443,128.750623 C70.9464045,128.882861 71.6255288,129.130808 72.7187532,129.477934 C74.325462,129.973828 75.3524304,130.370543 75.8162226,130.63502 C76.8431911,131.246623 77.3566753,132.089642 77.3566753,133.180609 C77.3566753,134.238517 76.9425751,135.081536 76.1143748,135.693139 C75.2861744,136.288212 74.1101299,136.602278 72.6028052,136.602278 C71.1451725,136.602278 70.002256,136.321272 69.1906197,135.759258 C68.1967792,135.065007 67.650167,133.97404 67.5673469,132.469828 L69.4887718,132.469828 C69.6212839,133.362437 69.936,134.007099 70.4494842,134.387285 C70.9132764,134.717881 71.6255288,134.899709 72.6028052,134.899709 C73.4641336,134.899709 74.1598219,134.75094 74.6567421,134.469934 C75.1536623,134.172397 75.4186865,133.792212 75.4186865,133.296318 C75.4186865,132.668185 75.0377143,132.172291 74.308898,131.808636 C74.0770019,131.692927 73.3150575,131.42845 72.0065009,131.031735 C70.5488683,130.568901 69.6378479,130.238305 69.2900037,130.039947 C68.3789833,129.494464 67.9317551,128.701033 67.9317551,127.659656 C67.9317551,126.618278 68.3624193,125.791788 69.2568757,125.196715 C70.0850761,124.618172 71.1286085,124.337166 72.4040371,124.337166 Z M77.7431688,124.568583 L79.6811577,124.568583 L85.5282523,133.08143 L85.5945083,133.08143 L85.5945083,124.568583 L87.5490612,124.568583 L87.5490612,136.370861 L85.6607644,136.370861 L79.7474137,127.742305 L79.6811577,127.742305 L79.6811577,136.370861 L77.7431688,136.370861 L77.7431688,124.568583 Z M93.8489054,124.337166 C95.6543822,124.337166 97.0788868,124.915709 98.1224193,126.089325 C99.1162597,127.196821 99.61318,128.667974 99.61318,130.486252 C99.61318,132.30453 99.1162597,133.759152 98.1224193,134.866649 C97.0788868,136.023735 95.6543822,136.602278 93.8489054,136.602278 C92.0268646,136.602278 90.6023599,136.007205 89.5753915,134.850119 C88.581551,133.726093 88.1011948,132.27147 88.1011948,130.486252 C88.1011948,128.684503 88.581551,127.229881 89.5753915,126.105854 C90.6023599,124.915709 92.0268646,124.337166 93.8489054,124.337166 Z M93.8489054,126.039735 C92.6231688,126.039735 91.6790204,126.45298 90.9998961,127.27947 C90.3538998,128.072901 90.0391837,129.130808 90.0391837,130.486252 C90.0391837,131.825166 90.3538998,132.883073 90.9998961,133.676503 C91.6624564,134.486464 92.6231688,134.899709 93.8489054,134.899709 C95.0746419,134.899709 96.0187904,134.502993 96.6813506,133.726093 C97.3273469,132.949192 97.6586271,131.874755 97.6586271,130.486252 C97.6586271,129.097748 97.3273469,128.006781 96.6813506,127.213351 C96.0187904,126.419921 95.0746419,126.039735 93.8489054,126.039735 Z M99.0886531,124.568583 L101.275102,124.568583 L103.494679,133.544265 L103.560935,133.544265 L105.89646,124.568583 L107.900705,124.568583 L110.23623,133.544265 L110.302486,133.544265 L112.522063,124.568583 L114.708512,124.568583 L111.296327,136.370861 L109.24239,136.370861 L106.939993,127.494358 L106.873737,127.494358 L104.554776,136.370861 L102.484275,136.370861 L99.0886531,124.568583 Z M123.100942,124.337166 C124.492319,124.337166 125.585544,124.618172 126.364052,125.196715 C127.192252,125.808318 127.672609,126.767046 127.788557,128.056371 L125.867132,128.056371 C125.701492,127.32906 125.386776,126.800106 124.956111,126.48604 C124.525447,126.155444 123.862887,126.006675 123.001558,126.006675 C122.256178,126.006675 121.693002,126.105854 121.295466,126.320742 C120.798545,126.568689 120.566649,126.981934 120.566649,127.543947 C120.566649,128.039841 120.831673,128.453086 121.39485,128.750623 C121.64331,128.882861 122.322434,129.130808 123.415659,129.477934 C125.022367,129.973828 126.049336,130.370543 126.513128,130.63502 C127.540096,131.246623 128.053581,132.089642 128.053581,133.180609 C128.053581,134.238517 127.639481,135.081536 126.81128,135.693139 C125.98308,136.288212 124.807035,136.602278 123.299711,136.602278 C121.842078,136.602278 120.699161,136.321272 119.887525,135.759258 C118.893685,135.065007 118.347072,133.97404 118.264252,132.469828 L120.185677,132.469828 C120.318189,133.362437 120.632905,134.007099 121.14639,134.387285 C121.610182,134.717881 122.322434,134.899709 123.299711,134.899709 C124.161039,134.899709 124.856727,134.75094 125.353647,134.469934 C125.850568,134.172397 126.115592,133.792212 126.115592,133.296318 C126.115592,132.668185 125.73462,132.172291 125.005803,131.808636 C124.773907,131.692927 124.011963,131.42845 122.703406,131.031735 C121.245774,130.568901 120.334753,130.238305 119.986909,130.039947 C119.075889,129.494464 118.62866,128.701033 118.62866,127.659656 C118.62866,126.618278 119.059325,125.791788 119.953781,125.196715 C120.781981,124.618172 121.825514,124.337166 123.100942,124.337166 Z M127.529054,124.568583 L137.218998,124.568583 L137.218998,126.221563 L133.34302,126.221563 L133.34302,136.370861 L131.405032,136.370861 L131.405032,126.221563 L127.529054,126.221563 L127.529054,124.568583 Z M142.607822,124.337166 C144.413299,124.337166 145.837803,124.915709 146.881336,126.089325 C147.875176,127.196821 148.372096,128.667974 148.372096,130.486252 C148.372096,132.30453 147.875176,133.759152 146.881336,134.866649 C145.837803,136.023735 144.413299,136.602278 142.607822,136.602278 C140.785781,136.602278 139.361276,136.007205 138.334308,134.850119 C137.340468,133.726093 136.860111,132.27147 136.860111,130.486252 C136.860111,128.684503 137.340468,127.229881 138.334308,126.105854 C139.361276,124.915709 140.785781,124.337166 142.607822,124.337166 Z M142.607822,126.039735 C141.382085,126.039735 140.437937,126.45298 139.758813,127.27947 C139.112816,128.072901 138.7981,129.130808 138.7981,130.486252 C138.7981,131.825166 139.112816,132.883073 139.758813,133.676503 C140.421373,134.486464 141.382085,134.899709 142.607822,134.899709 C143.833558,134.899709 144.777707,134.502993 145.440267,133.726093 C146.086263,132.949192 146.417544,131.874755 146.417544,130.486252 C146.417544,129.097748 146.086263,128.006781 145.440267,127.213351 C144.777707,126.419921 143.833558,126.039735 142.607822,126.039735 Z M148.92423,124.568583 L154.191584,124.568583 C155.400757,124.568583 156.361469,124.83306 157.057158,125.378543 C157.785974,125.973616 158.166946,126.833166 158.166946,127.957192 C158.166946,128.568795 158.001306,129.114278 157.670026,129.593642 C157.305618,130.122596 156.792134,130.469722 156.162701,130.63502 L156.162701,130.668079 C157.18967,130.899497 157.76941,131.577219 157.901922,132.734305 L158.10069,134.635232 C158.166946,135.362543 158.415406,135.941086 158.812942,136.370861 L156.709314,136.370861 C156.427725,136.007205 156.262085,135.494781 156.195829,134.833589 L156.046753,133.378967 C155.980497,132.734305 155.781729,132.27147 155.450449,131.990464 C155.102605,131.692927 154.589121,131.560689 153.92656,131.560689 L150.862219,131.560689 L150.862219,136.370861 L148.92423,136.370861 L148.92423,124.568583 Z M150.862219,126.221563 L150.862219,129.907709 L153.92656,129.907709 C154.688505,129.907709 155.268245,129.742411 155.665781,129.428344 C156.030189,129.097748 156.212393,128.634914 156.212393,128.039841 C156.212393,127.395179 156.030189,126.932344 155.665781,126.651338 C155.301373,126.353801 154.721633,126.221563 153.92656,126.221563 L150.862219,126.221563 Z M159.199436,124.568583 L161.468705,124.568583 L165.493759,133.825272 L165.560015,133.825272 L169.568505,124.568583 L171.837774,124.568583 L171.837774,136.370861 L169.899785,136.370861 L169.899785,128.238199 L169.833529,128.238199 L166.355087,136.370861 L164.682122,136.370861 L161.203681,128.238199 L161.137425,128.238199 L161.137425,136.370861 L159.199436,136.370861 L159.199436,124.568583 Z" id="SNOW-STORM" fill="#FFFFFF"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M129.075028,80.7205298 L157.358071,80.7205298 L157.358071,97.7875497 L153.506939,97.7875497 L153.506939,96.3411921 L128.992208,96.3411921 L128.992208,92.8699338 L153.506939,92.8699338 L153.506939,90.1011921 L130.358738,90.1011921 L130.358738,86.7539073 L153.506939,86.7539073 L153.506939,84.1091391 L129.075028,84.1091391 L129.075028,80.7205298 Z M127.874137,60.5541722 L158.641781,60.5541722 L158.641781,63.7774834 L145.183525,63.7774834 L145.183525,66.0503311 L160.960742,66.0503311 L160.960742,75.5962914 L157.19243,75.5962914 L157.19243,69.1496689 L145.183525,69.1496689 L145.183525,78.9849007 L141.373803,78.9849007 L141.373803,69.1496689 L129.364898,69.1496689 L129.364898,75.5962914 L125.596586,75.5962914 L125.596586,66.0503311 L141.373803,66.0503311 L141.373803,63.7774834 L127.874137,63.7774834 L127.874137,60.5541722 Z M130.979889,71.3398675 L139.675993,71.3398675 L139.675993,73.9433113 L130.979889,73.9433113 L130.979889,71.3398675 Z M130.979889,75.8442384 L139.675993,75.8442384 L139.675993,78.4476821 L130.979889,78.4476821 L130.979889,75.8442384 Z M146.881336,71.3398675 L155.66026,71.3398675 L155.66026,73.9433113 L146.881336,73.9433113 L146.881336,71.3398675 Z M146.881336,75.8442384 L155.78449,75.8442384 L155.78449,78.4476821 L146.881336,78.4476821 L146.881336,75.8442384 Z" id="暴-雪" fill="#FFFFFF"></path>
<path d="M55.2133581,48.5184626 L41.1487213,26.5385391 C40.5033544,25.5549126 39.4989852,24.8585965 38.3471956,24.5962778 C37.1716774,24.3069945 35.9304928,24.450745 34.8534323,25.0009156 C32.6545603,26.1581796 31.897171,28.6993048 33.1757744,30.6901226 L47.2322671,52.6700461 L19.1029937,52.6700461 C17.9034865,52.6607826 16.7430142,53.093223 15.8454055,53.8839594 C14.9956422,54.628152 14.5041659,55.6961278 14.4935065,56.8216296 C14.4935065,59.1199722 16.5620749,60.9732131 19.1029937,60.9732131 L47.2404111,60.9732131 L33.1757744,82.9612294 C31.905315,84.9439544 32.6545603,87.4850797 34.8534323,88.6342509 C35.9121484,89.1845582 37.1663198,89.3383206 38.3553395,89.0469814 C39.5041315,88.7827536 40.505285,88.0866434 41.1487213,87.1047201 L55.2133581,65.1247966 L69.2779948,87.1047201 C69.9239838,88.0877473 70.9280822,88.7838757 72.0795206,89.0469814 C73.2603962,89.3383206 74.5227117,89.1845583 75.5732838,88.6423436 C77.7721558,87.4850797 78.5214011,84.9439544 77.2509417,82.9612294 L63.194449,60.9732131 L91.3318664,60.9732131 C92.553462,60.9732131 93.7261937,60.5442971 94.5894545,59.7592998 C95.436195,59.0136423 95.9246184,57.9458683 95.9332096,56.8216296 C95.9332096,54.5313799 93.8646412,52.6700461 91.3237224,52.6700461 L63.186305,52.6700461 L77.2509417,30.6901226 C78.5214011,28.6993048 77.7721558,26.1500868 75.5732838,25.0090084 C74.4949314,24.4541204 73.2504315,24.3074452 72.0713766,24.5962778 C70.9229357,24.8612885 69.922051,25.5572119 69.2779948,26.5385391 L55.2133581,48.5184626 Z" id="Shape" fill="#D12821" fill-rule="nonzero"></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>
</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>BX-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(-41.000000, -1575.000000)">
<g id="BX-O" transform="translate(41.000000, 1575.000000)">
<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="M72.4040371,124.337166 C73.7954137,124.337166 74.8886382,124.618172 75.6671466,125.196715 C76.4953469,125.808318 76.9757032,126.767046 77.0916512,128.056371 L75.1702263,128.056371 C75.0045863,127.32906 74.6898701,126.800106 74.2592059,126.48604 C73.8285417,126.155444 73.1659814,126.006675 72.3046531,126.006675 C71.5592727,126.006675 70.9960965,126.105854 70.5985603,126.320742 C70.1016401,126.568689 69.869744,126.981934 69.869744,127.543947 C69.869744,128.039841 70.1347681,128.453086 70.6979443,128.750623 C70.9464045,128.882861 71.6255288,129.130808 72.7187532,129.477934 C74.325462,129.973828 75.3524304,130.370543 75.8162226,130.63502 C76.8431911,131.246623 77.3566753,132.089642 77.3566753,133.180609 C77.3566753,134.238517 76.9425751,135.081536 76.1143748,135.693139 C75.2861744,136.288212 74.1101299,136.602278 72.6028052,136.602278 C71.1451725,136.602278 70.002256,136.321272 69.1906197,135.759258 C68.1967792,135.065007 67.650167,133.97404 67.5673469,132.469828 L69.4887718,132.469828 C69.6212839,133.362437 69.936,134.007099 70.4494842,134.387285 C70.9132764,134.717881 71.6255288,134.899709 72.6028052,134.899709 C73.4641336,134.899709 74.1598219,134.75094 74.6567421,134.469934 C75.1536623,134.172397 75.4186865,133.792212 75.4186865,133.296318 C75.4186865,132.668185 75.0377143,132.172291 74.308898,131.808636 C74.0770019,131.692927 73.3150575,131.42845 72.0065009,131.031735 C70.5488683,130.568901 69.6378479,130.238305 69.2900037,130.039947 C68.3789833,129.494464 67.9317551,128.701033 67.9317551,127.659656 C67.9317551,126.618278 68.3624193,125.791788 69.2568757,125.196715 C70.0850761,124.618172 71.1286085,124.337166 72.4040371,124.337166 Z M77.7431688,124.568583 L79.6811577,124.568583 L85.5282523,133.08143 L85.5945083,133.08143 L85.5945083,124.568583 L87.5490612,124.568583 L87.5490612,136.370861 L85.6607644,136.370861 L79.7474137,127.742305 L79.6811577,127.742305 L79.6811577,136.370861 L77.7431688,136.370861 L77.7431688,124.568583 Z M93.8489054,124.337166 C95.6543822,124.337166 97.0788868,124.915709 98.1224193,126.089325 C99.1162597,127.196821 99.61318,128.667974 99.61318,130.486252 C99.61318,132.30453 99.1162597,133.759152 98.1224193,134.866649 C97.0788868,136.023735 95.6543822,136.602278 93.8489054,136.602278 C92.0268646,136.602278 90.6023599,136.007205 89.5753915,134.850119 C88.581551,133.726093 88.1011948,132.27147 88.1011948,130.486252 C88.1011948,128.684503 88.581551,127.229881 89.5753915,126.105854 C90.6023599,124.915709 92.0268646,124.337166 93.8489054,124.337166 Z M93.8489054,126.039735 C92.6231688,126.039735 91.6790204,126.45298 90.9998961,127.27947 C90.3538998,128.072901 90.0391837,129.130808 90.0391837,130.486252 C90.0391837,131.825166 90.3538998,132.883073 90.9998961,133.676503 C91.6624564,134.486464 92.6231688,134.899709 93.8489054,134.899709 C95.0746419,134.899709 96.0187904,134.502993 96.6813506,133.726093 C97.3273469,132.949192 97.6586271,131.874755 97.6586271,130.486252 C97.6586271,129.097748 97.3273469,128.006781 96.6813506,127.213351 C96.0187904,126.419921 95.0746419,126.039735 93.8489054,126.039735 Z M99.0886531,124.568583 L101.275102,124.568583 L103.494679,133.544265 L103.560935,133.544265 L105.89646,124.568583 L107.900705,124.568583 L110.23623,133.544265 L110.302486,133.544265 L112.522063,124.568583 L114.708512,124.568583 L111.296327,136.370861 L109.24239,136.370861 L106.939993,127.494358 L106.873737,127.494358 L104.554776,136.370861 L102.484275,136.370861 L99.0886531,124.568583 Z M123.100942,124.337166 C124.492319,124.337166 125.585544,124.618172 126.364052,125.196715 C127.192252,125.808318 127.672609,126.767046 127.788557,128.056371 L125.867132,128.056371 C125.701492,127.32906 125.386776,126.800106 124.956111,126.48604 C124.525447,126.155444 123.862887,126.006675 123.001558,126.006675 C122.256178,126.006675 121.693002,126.105854 121.295466,126.320742 C120.798545,126.568689 120.566649,126.981934 120.566649,127.543947 C120.566649,128.039841 120.831673,128.453086 121.39485,128.750623 C121.64331,128.882861 122.322434,129.130808 123.415659,129.477934 C125.022367,129.973828 126.049336,130.370543 126.513128,130.63502 C127.540096,131.246623 128.053581,132.089642 128.053581,133.180609 C128.053581,134.238517 127.639481,135.081536 126.81128,135.693139 C125.98308,136.288212 124.807035,136.602278 123.299711,136.602278 C121.842078,136.602278 120.699161,136.321272 119.887525,135.759258 C118.893685,135.065007 118.347072,133.97404 118.264252,132.469828 L120.185677,132.469828 C120.318189,133.362437 120.632905,134.007099 121.14639,134.387285 C121.610182,134.717881 122.322434,134.899709 123.299711,134.899709 C124.161039,134.899709 124.856727,134.75094 125.353647,134.469934 C125.850568,134.172397 126.115592,133.792212 126.115592,133.296318 C126.115592,132.668185 125.73462,132.172291 125.005803,131.808636 C124.773907,131.692927 124.011963,131.42845 122.703406,131.031735 C121.245774,130.568901 120.334753,130.238305 119.986909,130.039947 C119.075889,129.494464 118.62866,128.701033 118.62866,127.659656 C118.62866,126.618278 119.059325,125.791788 119.953781,125.196715 C120.781981,124.618172 121.825514,124.337166 123.100942,124.337166 Z M127.529054,124.568583 L137.218998,124.568583 L137.218998,126.221563 L133.34302,126.221563 L133.34302,136.370861 L131.405032,136.370861 L131.405032,126.221563 L127.529054,126.221563 L127.529054,124.568583 Z M142.607822,124.337166 C144.413299,124.337166 145.837803,124.915709 146.881336,126.089325 C147.875176,127.196821 148.372096,128.667974 148.372096,130.486252 C148.372096,132.30453 147.875176,133.759152 146.881336,134.866649 C145.837803,136.023735 144.413299,136.602278 142.607822,136.602278 C140.785781,136.602278 139.361276,136.007205 138.334308,134.850119 C137.340468,133.726093 136.860111,132.27147 136.860111,130.486252 C136.860111,128.684503 137.340468,127.229881 138.334308,126.105854 C139.361276,124.915709 140.785781,124.337166 142.607822,124.337166 Z M142.607822,126.039735 C141.382085,126.039735 140.437937,126.45298 139.758813,127.27947 C139.112816,128.072901 138.7981,129.130808 138.7981,130.486252 C138.7981,131.825166 139.112816,132.883073 139.758813,133.676503 C140.421373,134.486464 141.382085,134.899709 142.607822,134.899709 C143.833558,134.899709 144.777707,134.502993 145.440267,133.726093 C146.086263,132.949192 146.417544,131.874755 146.417544,130.486252 C146.417544,129.097748 146.086263,128.006781 145.440267,127.213351 C144.777707,126.419921 143.833558,126.039735 142.607822,126.039735 Z M148.92423,124.568583 L154.191584,124.568583 C155.400757,124.568583 156.361469,124.83306 157.057158,125.378543 C157.785974,125.973616 158.166946,126.833166 158.166946,127.957192 C158.166946,128.568795 158.001306,129.114278 157.670026,129.593642 C157.305618,130.122596 156.792134,130.469722 156.162701,130.63502 L156.162701,130.668079 C157.18967,130.899497 157.76941,131.577219 157.901922,132.734305 L158.10069,134.635232 C158.166946,135.362543 158.415406,135.941086 158.812942,136.370861 L156.709314,136.370861 C156.427725,136.007205 156.262085,135.494781 156.195829,134.833589 L156.046753,133.378967 C155.980497,132.734305 155.781729,132.27147 155.450449,131.990464 C155.102605,131.692927 154.589121,131.560689 153.92656,131.560689 L150.862219,131.560689 L150.862219,136.370861 L148.92423,136.370861 L148.92423,124.568583 Z M150.862219,126.221563 L150.862219,129.907709 L153.92656,129.907709 C154.688505,129.907709 155.268245,129.742411 155.665781,129.428344 C156.030189,129.097748 156.212393,128.634914 156.212393,128.039841 C156.212393,127.395179 156.030189,126.932344 155.665781,126.651338 C155.301373,126.353801 154.721633,126.221563 153.92656,126.221563 L150.862219,126.221563 Z M159.199436,124.568583 L161.468705,124.568583 L165.493759,133.825272 L165.560015,133.825272 L169.568505,124.568583 L171.837774,124.568583 L171.837774,136.370861 L169.899785,136.370861 L169.899785,128.238199 L169.833529,128.238199 L166.355087,136.370861 L164.682122,136.370861 L161.203681,128.238199 L161.137425,128.238199 L161.137425,136.370861 L159.199436,136.370861 L159.199436,124.568583 Z" id="SNOW-STORM" fill="#FFFFFF"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M129.075028,80.7205298 L157.358071,80.7205298 L157.358071,97.7875497 L153.506939,97.7875497 L153.506939,96.3411921 L128.992208,96.3411921 L128.992208,92.8699338 L153.506939,92.8699338 L153.506939,90.1011921 L130.358738,90.1011921 L130.358738,86.7539073 L153.506939,86.7539073 L153.506939,84.1091391 L129.075028,84.1091391 L129.075028,80.7205298 Z M127.874137,60.5541722 L158.641781,60.5541722 L158.641781,63.7774834 L145.183525,63.7774834 L145.183525,66.0503311 L160.960742,66.0503311 L160.960742,75.5962914 L157.19243,75.5962914 L157.19243,69.1496689 L145.183525,69.1496689 L145.183525,78.9849007 L141.373803,78.9849007 L141.373803,69.1496689 L129.364898,69.1496689 L129.364898,75.5962914 L125.596586,75.5962914 L125.596586,66.0503311 L141.373803,66.0503311 L141.373803,63.7774834 L127.874137,63.7774834 L127.874137,60.5541722 Z M130.979889,71.3398675 L139.675993,71.3398675 L139.675993,73.9433113 L130.979889,73.9433113 L130.979889,71.3398675 Z M130.979889,75.8442384 L139.675993,75.8442384 L139.675993,78.4476821 L130.979889,78.4476821 L130.979889,75.8442384 Z M146.881336,71.3398675 L155.66026,71.3398675 L155.66026,73.9433113 L146.881336,73.9433113 L146.881336,71.3398675 Z M146.881336,75.8442384 L155.78449,75.8442384 L155.78449,78.4476821 L146.881336,78.4476821 L146.881336,75.8442384 Z" id="暴-雪" fill="#FFFFFF"></path>
<path d="M55.2133581,48.5184626 L41.1487213,26.5385391 C40.5033544,25.5549126 39.4989852,24.8585965 38.3471956,24.5962778 C37.1716774,24.3069945 35.9304928,24.450745 34.8534323,25.0009156 C32.6545603,26.1581796 31.897171,28.6993048 33.1757744,30.6901226 L47.2322671,52.6700461 L19.1029937,52.6700461 C17.9034865,52.6607826 16.7430142,53.093223 15.8454055,53.8839594 C14.9956422,54.628152 14.5041659,55.6961278 14.4935065,56.8216296 C14.4935065,59.1199722 16.5620749,60.9732131 19.1029937,60.9732131 L47.2404111,60.9732131 L33.1757744,82.9612294 C31.905315,84.9439544 32.6545603,87.4850797 34.8534323,88.6342509 C35.9121484,89.1845582 37.1663198,89.3383206 38.3553395,89.0469814 C39.5041315,88.7827536 40.505285,88.0866434 41.1487213,87.1047201 L55.2133581,65.1247966 L69.2779948,87.1047201 C69.9239838,88.0877473 70.9280822,88.7838757 72.0795206,89.0469814 C73.2603962,89.3383206 74.5227117,89.1845583 75.5732838,88.6423436 C77.7721558,87.4850797 78.5214011,84.9439544 77.2509417,82.9612294 L63.194449,60.9732131 L91.3318664,60.9732131 C92.553462,60.9732131 93.7261937,60.5442971 94.5894545,59.7592998 C95.436195,59.0136423 95.9246184,57.9458683 95.9332096,56.8216296 C95.9332096,54.5313799 93.8646412,52.6700461 91.3237224,52.6700461 L63.186305,52.6700461 L77.2509417,30.6901226 C78.5214011,28.6993048 77.7721558,26.1500868 75.5732838,25.0090084 C74.4949314,24.4541204 73.2504315,24.3074452 72.0713766,24.5962778 C70.9229357,24.8612885 69.922051,25.5572119 69.2779948,26.5385391 L55.2133581,48.5184626 Z" id="Shape" fill="#EC8D15" fill-rule="nonzero"></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>
</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>BX-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(-360.000000, -1572.000000)">
<g id="BX-Y" transform="translate(360.000000, 1572.000000)">
<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="M72.4040371,124.337166 C73.7954137,124.337166 74.8886382,124.618172 75.6671466,125.196715 C76.4953469,125.808318 76.9757032,126.767046 77.0916512,128.056371 L75.1702263,128.056371 C75.0045863,127.32906 74.6898701,126.800106 74.2592059,126.48604 C73.8285417,126.155444 73.1659814,126.006675 72.3046531,126.006675 C71.5592727,126.006675 70.9960965,126.105854 70.5985603,126.320742 C70.1016401,126.568689 69.869744,126.981934 69.869744,127.543947 C69.869744,128.039841 70.1347681,128.453086 70.6979443,128.750623 C70.9464045,128.882861 71.6255288,129.130808 72.7187532,129.477934 C74.325462,129.973828 75.3524304,130.370543 75.8162226,130.63502 C76.8431911,131.246623 77.3566753,132.089642 77.3566753,133.180609 C77.3566753,134.238517 76.9425751,135.081536 76.1143748,135.693139 C75.2861744,136.288212 74.1101299,136.602278 72.6028052,136.602278 C71.1451725,136.602278 70.002256,136.321272 69.1906197,135.759258 C68.1967792,135.065007 67.650167,133.97404 67.5673469,132.469828 L69.4887718,132.469828 C69.6212839,133.362437 69.936,134.007099 70.4494842,134.387285 C70.9132764,134.717881 71.6255288,134.899709 72.6028052,134.899709 C73.4641336,134.899709 74.1598219,134.75094 74.6567421,134.469934 C75.1536623,134.172397 75.4186865,133.792212 75.4186865,133.296318 C75.4186865,132.668185 75.0377143,132.172291 74.308898,131.808636 C74.0770019,131.692927 73.3150575,131.42845 72.0065009,131.031735 C70.5488683,130.568901 69.6378479,130.238305 69.2900037,130.039947 C68.3789833,129.494464 67.9317551,128.701033 67.9317551,127.659656 C67.9317551,126.618278 68.3624193,125.791788 69.2568757,125.196715 C70.0850761,124.618172 71.1286085,124.337166 72.4040371,124.337166 Z M77.7431688,124.568583 L79.6811577,124.568583 L85.5282523,133.08143 L85.5945083,133.08143 L85.5945083,124.568583 L87.5490612,124.568583 L87.5490612,136.370861 L85.6607644,136.370861 L79.7474137,127.742305 L79.6811577,127.742305 L79.6811577,136.370861 L77.7431688,136.370861 L77.7431688,124.568583 Z M93.8489054,124.337166 C95.6543822,124.337166 97.0788868,124.915709 98.1224193,126.089325 C99.1162597,127.196821 99.61318,128.667974 99.61318,130.486252 C99.61318,132.30453 99.1162597,133.759152 98.1224193,134.866649 C97.0788868,136.023735 95.6543822,136.602278 93.8489054,136.602278 C92.0268646,136.602278 90.6023599,136.007205 89.5753915,134.850119 C88.581551,133.726093 88.1011948,132.27147 88.1011948,130.486252 C88.1011948,128.684503 88.581551,127.229881 89.5753915,126.105854 C90.6023599,124.915709 92.0268646,124.337166 93.8489054,124.337166 Z M93.8489054,126.039735 C92.6231688,126.039735 91.6790204,126.45298 90.9998961,127.27947 C90.3538998,128.072901 90.0391837,129.130808 90.0391837,130.486252 C90.0391837,131.825166 90.3538998,132.883073 90.9998961,133.676503 C91.6624564,134.486464 92.6231688,134.899709 93.8489054,134.899709 C95.0746419,134.899709 96.0187904,134.502993 96.6813506,133.726093 C97.3273469,132.949192 97.6586271,131.874755 97.6586271,130.486252 C97.6586271,129.097748 97.3273469,128.006781 96.6813506,127.213351 C96.0187904,126.419921 95.0746419,126.039735 93.8489054,126.039735 Z M99.0886531,124.568583 L101.275102,124.568583 L103.494679,133.544265 L103.560935,133.544265 L105.89646,124.568583 L107.900705,124.568583 L110.23623,133.544265 L110.302486,133.544265 L112.522063,124.568583 L114.708512,124.568583 L111.296327,136.370861 L109.24239,136.370861 L106.939993,127.494358 L106.873737,127.494358 L104.554776,136.370861 L102.484275,136.370861 L99.0886531,124.568583 Z M123.100942,124.337166 C124.492319,124.337166 125.585544,124.618172 126.364052,125.196715 C127.192252,125.808318 127.672609,126.767046 127.788557,128.056371 L125.867132,128.056371 C125.701492,127.32906 125.386776,126.800106 124.956111,126.48604 C124.525447,126.155444 123.862887,126.006675 123.001558,126.006675 C122.256178,126.006675 121.693002,126.105854 121.295466,126.320742 C120.798545,126.568689 120.566649,126.981934 120.566649,127.543947 C120.566649,128.039841 120.831673,128.453086 121.39485,128.750623 C121.64331,128.882861 122.322434,129.130808 123.415659,129.477934 C125.022367,129.973828 126.049336,130.370543 126.513128,130.63502 C127.540096,131.246623 128.053581,132.089642 128.053581,133.180609 C128.053581,134.238517 127.639481,135.081536 126.81128,135.693139 C125.98308,136.288212 124.807035,136.602278 123.299711,136.602278 C121.842078,136.602278 120.699161,136.321272 119.887525,135.759258 C118.893685,135.065007 118.347072,133.97404 118.264252,132.469828 L120.185677,132.469828 C120.318189,133.362437 120.632905,134.007099 121.14639,134.387285 C121.610182,134.717881 122.322434,134.899709 123.299711,134.899709 C124.161039,134.899709 124.856727,134.75094 125.353647,134.469934 C125.850568,134.172397 126.115592,133.792212 126.115592,133.296318 C126.115592,132.668185 125.73462,132.172291 125.005803,131.808636 C124.773907,131.692927 124.011963,131.42845 122.703406,131.031735 C121.245774,130.568901 120.334753,130.238305 119.986909,130.039947 C119.075889,129.494464 118.62866,128.701033 118.62866,127.659656 C118.62866,126.618278 119.059325,125.791788 119.953781,125.196715 C120.781981,124.618172 121.825514,124.337166 123.100942,124.337166 Z M127.529054,124.568583 L137.218998,124.568583 L137.218998,126.221563 L133.34302,126.221563 L133.34302,136.370861 L131.405032,136.370861 L131.405032,126.221563 L127.529054,126.221563 L127.529054,124.568583 Z M142.607822,124.337166 C144.413299,124.337166 145.837803,124.915709 146.881336,126.089325 C147.875176,127.196821 148.372096,128.667974 148.372096,130.486252 C148.372096,132.30453 147.875176,133.759152 146.881336,134.866649 C145.837803,136.023735 144.413299,136.602278 142.607822,136.602278 C140.785781,136.602278 139.361276,136.007205 138.334308,134.850119 C137.340468,133.726093 136.860111,132.27147 136.860111,130.486252 C136.860111,128.684503 137.340468,127.229881 138.334308,126.105854 C139.361276,124.915709 140.785781,124.337166 142.607822,124.337166 Z M142.607822,126.039735 C141.382085,126.039735 140.437937,126.45298 139.758813,127.27947 C139.112816,128.072901 138.7981,129.130808 138.7981,130.486252 C138.7981,131.825166 139.112816,132.883073 139.758813,133.676503 C140.421373,134.486464 141.382085,134.899709 142.607822,134.899709 C143.833558,134.899709 144.777707,134.502993 145.440267,133.726093 C146.086263,132.949192 146.417544,131.874755 146.417544,130.486252 C146.417544,129.097748 146.086263,128.006781 145.440267,127.213351 C144.777707,126.419921 143.833558,126.039735 142.607822,126.039735 Z M148.92423,124.568583 L154.191584,124.568583 C155.400757,124.568583 156.361469,124.83306 157.057158,125.378543 C157.785974,125.973616 158.166946,126.833166 158.166946,127.957192 C158.166946,128.568795 158.001306,129.114278 157.670026,129.593642 C157.305618,130.122596 156.792134,130.469722 156.162701,130.63502 L156.162701,130.668079 C157.18967,130.899497 157.76941,131.577219 157.901922,132.734305 L158.10069,134.635232 C158.166946,135.362543 158.415406,135.941086 158.812942,136.370861 L156.709314,136.370861 C156.427725,136.007205 156.262085,135.494781 156.195829,134.833589 L156.046753,133.378967 C155.980497,132.734305 155.781729,132.27147 155.450449,131.990464 C155.102605,131.692927 154.589121,131.560689 153.92656,131.560689 L150.862219,131.560689 L150.862219,136.370861 L148.92423,136.370861 L148.92423,124.568583 Z M150.862219,126.221563 L150.862219,129.907709 L153.92656,129.907709 C154.688505,129.907709 155.268245,129.742411 155.665781,129.428344 C156.030189,129.097748 156.212393,128.634914 156.212393,128.039841 C156.212393,127.395179 156.030189,126.932344 155.665781,126.651338 C155.301373,126.353801 154.721633,126.221563 153.92656,126.221563 L150.862219,126.221563 Z M159.199436,124.568583 L161.468705,124.568583 L165.493759,133.825272 L165.560015,133.825272 L169.568505,124.568583 L171.837774,124.568583 L171.837774,136.370861 L169.899785,136.370861 L169.899785,128.238199 L169.833529,128.238199 L166.355087,136.370861 L164.682122,136.370861 L161.203681,128.238199 L161.137425,128.238199 L161.137425,136.370861 L159.199436,136.370861 L159.199436,124.568583 Z" id="SNOW-STORM" fill="#444444"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M129.075028,80.7205298 L157.358071,80.7205298 L157.358071,97.7875497 L153.506939,97.7875497 L153.506939,96.3411921 L128.992208,96.3411921 L128.992208,92.8699338 L153.506939,92.8699338 L153.506939,90.1011921 L130.358738,90.1011921 L130.358738,86.7539073 L153.506939,86.7539073 L153.506939,84.1091391 L129.075028,84.1091391 L129.075028,80.7205298 Z M127.874137,60.5541722 L158.641781,60.5541722 L158.641781,63.7774834 L145.183525,63.7774834 L145.183525,66.0503311 L160.960742,66.0503311 L160.960742,75.5962914 L157.19243,75.5962914 L157.19243,69.1496689 L145.183525,69.1496689 L145.183525,78.9849007 L141.373803,78.9849007 L141.373803,69.1496689 L129.364898,69.1496689 L129.364898,75.5962914 L125.596586,75.5962914 L125.596586,66.0503311 L141.373803,66.0503311 L141.373803,63.7774834 L127.874137,63.7774834 L127.874137,60.5541722 Z M130.979889,71.3398675 L139.675993,71.3398675 L139.675993,73.9433113 L130.979889,73.9433113 L130.979889,71.3398675 Z M130.979889,75.8442384 L139.675993,75.8442384 L139.675993,78.4476821 L130.979889,78.4476821 L130.979889,75.8442384 Z M146.881336,71.3398675 L155.66026,71.3398675 L155.66026,73.9433113 L146.881336,73.9433113 L146.881336,71.3398675 Z M146.881336,75.8442384 L155.78449,75.8442384 L155.78449,78.4476821 L146.881336,78.4476821 L146.881336,75.8442384 Z" id="暴-雪" fill="#444444"></path>
<path d="M55.2133581,48.5184626 L41.1487213,26.5385391 C40.5033544,25.5549126 39.4989852,24.8585965 38.3471956,24.5962778 C37.1716774,24.3069945 35.9304928,24.450745 34.8534323,25.0009156 C32.6545603,26.1581796 31.897171,28.6993048 33.1757744,30.6901226 L47.2322671,52.6700461 L19.1029937,52.6700461 C17.9034865,52.6607826 16.7430142,53.093223 15.8454055,53.8839594 C14.9956422,54.628152 14.5041659,55.6961278 14.4935065,56.8216296 C14.4935065,59.1199722 16.5620749,60.9732131 19.1029937,60.9732131 L47.2404111,60.9732131 L33.1757744,82.9612294 C31.905315,84.9439544 32.6545603,87.4850797 34.8534323,88.6342509 C35.9121484,89.1845582 37.1663198,89.3383206 38.3553395,89.0469814 C39.5041315,88.7827536 40.505285,88.0866434 41.1487213,87.1047201 L55.2133581,65.1247966 L69.2779948,87.1047201 C69.9239838,88.0877473 70.9280822,88.7838757 72.0795206,89.0469814 C73.2603962,89.3383206 74.5227117,89.1845583 75.5732838,88.6423436 C77.7721558,87.4850797 78.5214011,84.9439544 77.2509417,82.9612294 L63.194449,60.9732131 L91.3318664,60.9732131 C92.553462,60.9732131 93.7261937,60.5442971 94.5894545,59.7592998 C95.436195,59.0136423 95.9246184,57.9458683 95.9332096,56.8216296 C95.9332096,54.5313799 93.8646412,52.6700461 91.3237224,52.6700461 L63.186305,52.6700461 L77.2509417,30.6901226 C78.5214011,28.6993048 77.7721558,26.1500868 75.5732838,25.0090084 C74.4949314,24.4541204 73.2504315,24.3074452 72.0713766,24.5962778 C70.9229357,24.8612885 69.922051,25.5572119 69.2779948,26.5385391 L55.2133581,48.5184626 Z" id="Shape" fill="#FFFF00" fill-rule="nonzero"></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>
</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>BX-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, -1572.000000)">
<g id="BX-B" transform="translate(648.000000, 1572.000000)">
<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="M72.4040371,124.337166 C73.7954137,124.337166 74.8886382,124.618172 75.6671466,125.196715 C76.4953469,125.808318 76.9757032,126.767046 77.0916512,128.056371 L75.1702263,128.056371 C75.0045863,127.32906 74.6898701,126.800106 74.2592059,126.48604 C73.8285417,126.155444 73.1659814,126.006675 72.3046531,126.006675 C71.5592727,126.006675 70.9960965,126.105854 70.5985603,126.320742 C70.1016401,126.568689 69.869744,126.981934 69.869744,127.543947 C69.869744,128.039841 70.1347681,128.453086 70.6979443,128.750623 C70.9464045,128.882861 71.6255288,129.130808 72.7187532,129.477934 C74.325462,129.973828 75.3524304,130.370543 75.8162226,130.63502 C76.8431911,131.246623 77.3566753,132.089642 77.3566753,133.180609 C77.3566753,134.238517 76.9425751,135.081536 76.1143748,135.693139 C75.2861744,136.288212 74.1101299,136.602278 72.6028052,136.602278 C71.1451725,136.602278 70.002256,136.321272 69.1906197,135.759258 C68.1967792,135.065007 67.650167,133.97404 67.5673469,132.469828 L69.4887718,132.469828 C69.6212839,133.362437 69.936,134.007099 70.4494842,134.387285 C70.9132764,134.717881 71.6255288,134.899709 72.6028052,134.899709 C73.4641336,134.899709 74.1598219,134.75094 74.6567421,134.469934 C75.1536623,134.172397 75.4186865,133.792212 75.4186865,133.296318 C75.4186865,132.668185 75.0377143,132.172291 74.308898,131.808636 C74.0770019,131.692927 73.3150575,131.42845 72.0065009,131.031735 C70.5488683,130.568901 69.6378479,130.238305 69.2900037,130.039947 C68.3789833,129.494464 67.9317551,128.701033 67.9317551,127.659656 C67.9317551,126.618278 68.3624193,125.791788 69.2568757,125.196715 C70.0850761,124.618172 71.1286085,124.337166 72.4040371,124.337166 Z M77.7431688,124.568583 L79.6811577,124.568583 L85.5282523,133.08143 L85.5945083,133.08143 L85.5945083,124.568583 L87.5490612,124.568583 L87.5490612,136.370861 L85.6607644,136.370861 L79.7474137,127.742305 L79.6811577,127.742305 L79.6811577,136.370861 L77.7431688,136.370861 L77.7431688,124.568583 Z M93.8489054,124.337166 C95.6543822,124.337166 97.0788868,124.915709 98.1224193,126.089325 C99.1162597,127.196821 99.61318,128.667974 99.61318,130.486252 C99.61318,132.30453 99.1162597,133.759152 98.1224193,134.866649 C97.0788868,136.023735 95.6543822,136.602278 93.8489054,136.602278 C92.0268646,136.602278 90.6023599,136.007205 89.5753915,134.850119 C88.581551,133.726093 88.1011948,132.27147 88.1011948,130.486252 C88.1011948,128.684503 88.581551,127.229881 89.5753915,126.105854 C90.6023599,124.915709 92.0268646,124.337166 93.8489054,124.337166 Z M93.8489054,126.039735 C92.6231688,126.039735 91.6790204,126.45298 90.9998961,127.27947 C90.3538998,128.072901 90.0391837,129.130808 90.0391837,130.486252 C90.0391837,131.825166 90.3538998,132.883073 90.9998961,133.676503 C91.6624564,134.486464 92.6231688,134.899709 93.8489054,134.899709 C95.0746419,134.899709 96.0187904,134.502993 96.6813506,133.726093 C97.3273469,132.949192 97.6586271,131.874755 97.6586271,130.486252 C97.6586271,129.097748 97.3273469,128.006781 96.6813506,127.213351 C96.0187904,126.419921 95.0746419,126.039735 93.8489054,126.039735 Z M99.0886531,124.568583 L101.275102,124.568583 L103.494679,133.544265 L103.560935,133.544265 L105.89646,124.568583 L107.900705,124.568583 L110.23623,133.544265 L110.302486,133.544265 L112.522063,124.568583 L114.708512,124.568583 L111.296327,136.370861 L109.24239,136.370861 L106.939993,127.494358 L106.873737,127.494358 L104.554776,136.370861 L102.484275,136.370861 L99.0886531,124.568583 Z M123.100942,124.337166 C124.492319,124.337166 125.585544,124.618172 126.364052,125.196715 C127.192252,125.808318 127.672609,126.767046 127.788557,128.056371 L125.867132,128.056371 C125.701492,127.32906 125.386776,126.800106 124.956111,126.48604 C124.525447,126.155444 123.862887,126.006675 123.001558,126.006675 C122.256178,126.006675 121.693002,126.105854 121.295466,126.320742 C120.798545,126.568689 120.566649,126.981934 120.566649,127.543947 C120.566649,128.039841 120.831673,128.453086 121.39485,128.750623 C121.64331,128.882861 122.322434,129.130808 123.415659,129.477934 C125.022367,129.973828 126.049336,130.370543 126.513128,130.63502 C127.540096,131.246623 128.053581,132.089642 128.053581,133.180609 C128.053581,134.238517 127.639481,135.081536 126.81128,135.693139 C125.98308,136.288212 124.807035,136.602278 123.299711,136.602278 C121.842078,136.602278 120.699161,136.321272 119.887525,135.759258 C118.893685,135.065007 118.347072,133.97404 118.264252,132.469828 L120.185677,132.469828 C120.318189,133.362437 120.632905,134.007099 121.14639,134.387285 C121.610182,134.717881 122.322434,134.899709 123.299711,134.899709 C124.161039,134.899709 124.856727,134.75094 125.353647,134.469934 C125.850568,134.172397 126.115592,133.792212 126.115592,133.296318 C126.115592,132.668185 125.73462,132.172291 125.005803,131.808636 C124.773907,131.692927 124.011963,131.42845 122.703406,131.031735 C121.245774,130.568901 120.334753,130.238305 119.986909,130.039947 C119.075889,129.494464 118.62866,128.701033 118.62866,127.659656 C118.62866,126.618278 119.059325,125.791788 119.953781,125.196715 C120.781981,124.618172 121.825514,124.337166 123.100942,124.337166 Z M127.529054,124.568583 L137.218998,124.568583 L137.218998,126.221563 L133.34302,126.221563 L133.34302,136.370861 L131.405032,136.370861 L131.405032,126.221563 L127.529054,126.221563 L127.529054,124.568583 Z M142.607822,124.337166 C144.413299,124.337166 145.837803,124.915709 146.881336,126.089325 C147.875176,127.196821 148.372096,128.667974 148.372096,130.486252 C148.372096,132.30453 147.875176,133.759152 146.881336,134.866649 C145.837803,136.023735 144.413299,136.602278 142.607822,136.602278 C140.785781,136.602278 139.361276,136.007205 138.334308,134.850119 C137.340468,133.726093 136.860111,132.27147 136.860111,130.486252 C136.860111,128.684503 137.340468,127.229881 138.334308,126.105854 C139.361276,124.915709 140.785781,124.337166 142.607822,124.337166 Z M142.607822,126.039735 C141.382085,126.039735 140.437937,126.45298 139.758813,127.27947 C139.112816,128.072901 138.7981,129.130808 138.7981,130.486252 C138.7981,131.825166 139.112816,132.883073 139.758813,133.676503 C140.421373,134.486464 141.382085,134.899709 142.607822,134.899709 C143.833558,134.899709 144.777707,134.502993 145.440267,133.726093 C146.086263,132.949192 146.417544,131.874755 146.417544,130.486252 C146.417544,129.097748 146.086263,128.006781 145.440267,127.213351 C144.777707,126.419921 143.833558,126.039735 142.607822,126.039735 Z M148.92423,124.568583 L154.191584,124.568583 C155.400757,124.568583 156.361469,124.83306 157.057158,125.378543 C157.785974,125.973616 158.166946,126.833166 158.166946,127.957192 C158.166946,128.568795 158.001306,129.114278 157.670026,129.593642 C157.305618,130.122596 156.792134,130.469722 156.162701,130.63502 L156.162701,130.668079 C157.18967,130.899497 157.76941,131.577219 157.901922,132.734305 L158.10069,134.635232 C158.166946,135.362543 158.415406,135.941086 158.812942,136.370861 L156.709314,136.370861 C156.427725,136.007205 156.262085,135.494781 156.195829,134.833589 L156.046753,133.378967 C155.980497,132.734305 155.781729,132.27147 155.450449,131.990464 C155.102605,131.692927 154.589121,131.560689 153.92656,131.560689 L150.862219,131.560689 L150.862219,136.370861 L148.92423,136.370861 L148.92423,124.568583 Z M150.862219,126.221563 L150.862219,129.907709 L153.92656,129.907709 C154.688505,129.907709 155.268245,129.742411 155.665781,129.428344 C156.030189,129.097748 156.212393,128.634914 156.212393,128.039841 C156.212393,127.395179 156.030189,126.932344 155.665781,126.651338 C155.301373,126.353801 154.721633,126.221563 153.92656,126.221563 L150.862219,126.221563 Z M159.199436,124.568583 L161.468705,124.568583 L165.493759,133.825272 L165.560015,133.825272 L169.568505,124.568583 L171.837774,124.568583 L171.837774,136.370861 L169.899785,136.370861 L169.899785,128.238199 L169.833529,128.238199 L166.355087,136.370861 L164.682122,136.370861 L161.203681,128.238199 L161.137425,128.238199 L161.137425,136.370861 L159.199436,136.370861 L159.199436,124.568583 Z" id="SNOW-STORM" fill="#FFFFFF"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M129.075028,80.7205298 L157.358071,80.7205298 L157.358071,97.7875497 L153.506939,97.7875497 L153.506939,96.3411921 L128.992208,96.3411921 L128.992208,92.8699338 L153.506939,92.8699338 L153.506939,90.1011921 L130.358738,90.1011921 L130.358738,86.7539073 L153.506939,86.7539073 L153.506939,84.1091391 L129.075028,84.1091391 L129.075028,80.7205298 Z M127.874137,60.5541722 L158.641781,60.5541722 L158.641781,63.7774834 L145.183525,63.7774834 L145.183525,66.0503311 L160.960742,66.0503311 L160.960742,75.5962914 L157.19243,75.5962914 L157.19243,69.1496689 L145.183525,69.1496689 L145.183525,78.9849007 L141.373803,78.9849007 L141.373803,69.1496689 L129.364898,69.1496689 L129.364898,75.5962914 L125.596586,75.5962914 L125.596586,66.0503311 L141.373803,66.0503311 L141.373803,63.7774834 L127.874137,63.7774834 L127.874137,60.5541722 Z M130.979889,71.3398675 L139.675993,71.3398675 L139.675993,73.9433113 L130.979889,73.9433113 L130.979889,71.3398675 Z M130.979889,75.8442384 L139.675993,75.8442384 L139.675993,78.4476821 L130.979889,78.4476821 L130.979889,75.8442384 Z M146.881336,71.3398675 L155.66026,71.3398675 L155.66026,73.9433113 L146.881336,73.9433113 L146.881336,71.3398675 Z M146.881336,75.8442384 L155.78449,75.8442384 L155.78449,78.4476821 L146.881336,78.4476821 L146.881336,75.8442384 Z" id="暴-雪" fill="#FFFFFF"></path>
<path d="M55.2133581,48.5184626 L41.1487213,26.5385391 C40.5033544,25.5549126 39.4989852,24.8585965 38.3471956,24.5962778 C37.1716774,24.3069945 35.9304928,24.450745 34.8534323,25.0009156 C32.6545603,26.1581796 31.897171,28.6993048 33.1757744,30.6901226 L47.2322671,52.6700461 L19.1029937,52.6700461 C17.9034865,52.6607826 16.7430142,53.093223 15.8454055,53.8839594 C14.9956422,54.628152 14.5041659,55.6961278 14.4935065,56.8216296 C14.4935065,59.1199722 16.5620749,60.9732131 19.1029937,60.9732131 L47.2404111,60.9732131 L33.1757744,82.9612294 C31.905315,84.9439544 32.6545603,87.4850797 34.8534323,88.6342509 C35.9121484,89.1845582 37.1663198,89.3383206 38.3553395,89.0469814 C39.5041315,88.7827536 40.505285,88.0866434 41.1487213,87.1047201 L55.2133581,65.1247966 L69.2779948,87.1047201 C69.9239838,88.0877473 70.9280822,88.7838757 72.0795206,89.0469814 C73.2603962,89.3383206 74.5227117,89.1845583 75.5732838,88.6423436 C77.7721558,87.4850797 78.5214011,84.9439544 77.2509417,82.9612294 L63.194449,60.9732131 L91.3318664,60.9732131 C92.553462,60.9732131 93.7261937,60.5442971 94.5894545,59.7592998 C95.436195,59.0136423 95.9246184,57.9458683 95.9332096,56.8216296 C95.9332096,54.5313799 93.8646412,52.6700461 91.3237224,52.6700461 L63.186305,52.6700461 L77.2509417,30.6901226 C78.5214011,28.6993048 77.7721558,26.1500868 75.5732838,25.0090084 C74.4949314,24.4541204 73.2504315,24.3074452 72.0713766,24.5962778 C70.9229357,24.8612885 69.922051,25.5572119 69.2779948,26.5385391 L55.2133581,48.5184626 Z" id="Shape" fill="#3265FE" fill-rule="nonzero"></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>
</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>BAOYU-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, -3098.000000)">
<g id="BAOYU-R" transform="translate(956.000000, 3098.000000)">
<g id="leidian-cheng">
<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" fill-rule="nonzero"></path>
<polygon id="Shape" fill="#CBCCCC" fill-rule="nonzero" 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" fill-rule="nonzero"></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" fill-rule="nonzero"></path>
<path d="M32.6858461,137.456 L32.6858461,139.64 C30.3098461,140.528 27.6218461,141.248 24.6218461,141.776 L24.3338461,139.544 C27.5018461,139.016 30.2858461,138.32 32.6858461,137.456 Z M28.6058461,120.344 L30.7898461,121.208 C29.5658461,124.064 28.3178461,126.392 27.0458461,128.216 C28.0058461,128.12 28.9898461,127.976 29.9738461,127.832 C30.5018461,126.896 31.0298461,125.912 31.5818461,124.856 L33.6218461,125.624 C31.4378461,129.656 29.5898461,132.584 28.1018461,134.408 C29.7338461,134.024 31.3658461,133.52 33.0218461,132.896 L33.0218461,134.984 C30.2858461,135.992 27.6698461,136.688 25.2218461,137.024 L24.5978461,134.936 C25.0058461,134.744 25.3418461,134.528 25.6298461,134.264 C26.4698461,133.424 27.5258461,131.984 28.7738461,129.92 C27.5018461,130.112 26.1818461,130.28 24.8378461,130.448 L24.2378461,128.36 C24.6218461,128.192 24.9578461,127.904 25.2458461,127.472 C26.5418461,125.336 27.6458461,122.96 28.6058461,120.344 Z M38.6138461,123.992 L33.8618461,123.992 L33.8618461,121.784 L45.5978461,121.784 L45.5978461,123.992 L40.8938461,123.992 L40.8938461,139.28 L46.2218461,139.28 L46.2218461,141.488 L33.1898461,141.488 L33.1898461,139.28 L38.6138461,139.28 L38.6138461,123.992 Z" id="红" fill="#FFFFFF"></path>
</g>
<path d="M68.6119147,124.126411 L74.5376883,124.126411 C75.8980074,124.126411 76.9788089,124.423947 77.7614583,125.037616 C78.5813766,125.707073 79.0099703,126.674066 79.0099703,127.938596 C79.0099703,128.626649 78.8236252,129.240318 78.4509351,129.779603 C78.0409759,130.374675 77.4633061,130.765192 76.7551948,130.951152 L76.7551948,130.988344 C77.9105343,131.248689 78.5627421,132.011126 78.7118182,133.312848 L78.9354323,135.451391 C79.0099703,136.269616 79.2894879,136.920477 79.7367161,137.403974 L77.3701336,137.403974 C77.0533469,136.994861 76.8670019,136.418384 76.7924638,135.674543 L76.6247532,134.038093 C76.5502152,133.312848 76.3266011,132.792159 75.9539109,132.476026 C75.5625863,132.141298 74.9849165,131.99253 74.2395362,131.99253 L70.7921521,131.99253 L70.7921521,137.403974 L68.6119147,137.403974 L68.6119147,124.126411 Z M70.7921521,125.986013 L70.7921521,130.132927 L74.2395362,130.132927 C75.0967236,130.132927 75.7489314,129.946967 76.1961596,129.593642 C76.6061187,129.221722 76.8110983,128.701033 76.8110983,128.031576 C76.8110983,127.306331 76.6061187,126.785642 76.1961596,126.46951 C75.7862004,126.134781 75.1339926,125.986013 74.2395362,125.986013 L70.7921521,125.986013 Z M83.9543265,124.126411 L86.4327161,124.126411 L91.5199369,137.403974 L89.1906234,137.403974 L87.9793803,134.075285 L82.4076623,134.075285 L81.1964193,137.403974 L78.8671058,137.403974 L83.9543265,124.126411 Z M83.0598701,132.290066 L87.3271725,132.290066 L85.2401076,126.46951 L85.1655696,126.46951 L83.0598701,132.290066 Z M91.3957069,124.126411 L93.5759443,124.126411 L93.5759443,137.403974 L91.3957069,137.403974 L91.3957069,124.126411 Z M94.7561299,124.126411 L96.9363673,124.126411 L103.514349,133.703364 L103.588887,133.703364 L103.588887,124.126411 L105.787759,124.126411 L105.787759,137.403974 L103.663425,137.403974 L97.0109054,127.696848 L96.9363673,127.696848 L96.9363673,137.403974 L94.7561299,137.403974 L94.7561299,124.126411 Z M116.440486,123.866066 C118.005785,123.866066 119.235662,124.182199 120.111484,124.83306 C121.04321,125.521113 121.58361,126.599682 121.714052,128.050172 L119.552449,128.050172 C119.366104,127.231947 119.012048,126.636874 118.527551,126.28355 C118.043054,125.911629 117.297673,125.744265 116.328679,125.744265 C115.490126,125.744265 114.856553,125.855841 114.409325,126.097589 C113.850289,126.37653 113.589406,126.84143 113.589406,127.473695 C113.589406,128.031576 113.887558,128.496477 114.521132,128.831205 C114.800649,128.979974 115.564664,129.258914 116.794542,129.64943 C118.602089,130.207311 119.757429,130.653616 120.279195,130.951152 C121.434534,131.639205 122.012204,132.587603 122.012204,133.81494 C122.012204,135.005086 121.546341,135.953483 120.614616,136.641536 C119.682891,137.310993 118.35984,137.664318 116.6641,137.664318 C115.024263,137.664318 113.738482,137.348185 112.825391,136.715921 C111.707321,135.934887 111.092382,134.70755 110.99921,133.015311 L113.160813,133.015311 C113.309889,134.019497 113.663944,134.744742 114.241614,135.17245 C114.76338,135.544371 115.564664,135.748927 116.6641,135.748927 C117.633095,135.748927 118.415744,135.581563 118.974779,135.26543 C119.533814,134.930702 119.831967,134.502993 119.831967,133.945113 C119.831967,133.238464 119.403373,132.680583 118.583455,132.27147 C118.322571,132.141298 117.465384,131.843762 115.993258,131.397457 C114.353421,130.876768 113.328523,130.504848 112.937199,130.281695 C111.912301,129.668026 111.409169,128.775417 111.409169,127.603868 C111.409169,126.432318 111.893666,125.502517 112.899929,124.83306 C113.831655,124.182199 115.005629,123.866066 116.440486,123.866066 Z M121.422111,124.126411 L132.323299,124.126411 L132.323299,125.986013 L127.962824,125.986013 L127.962824,137.403974 L125.782586,137.403974 L125.782586,125.986013 L121.422111,125.986013 L121.422111,124.126411 Z M138.385725,123.866066 C140.416887,123.866066 142.019455,124.516927 143.193429,125.837245 C144.311499,127.083179 144.870534,128.738225 144.870534,130.783788 C144.870534,132.829351 144.311499,134.465801 143.193429,135.711735 C142.019455,137.013457 140.416887,137.664318 138.385725,137.664318 C136.335929,137.664318 134.733362,136.994861 133.578022,135.693139 C132.459952,134.428609 131.919551,132.792159 131.919551,130.783788 C131.919551,128.756821 132.459952,127.120371 133.578022,125.855841 C134.733362,124.516927 136.335929,123.866066 138.385725,123.866066 Z M138.385725,125.781457 C137.006772,125.781457 135.944605,126.246358 135.18059,127.176159 C134.453844,128.068768 134.099788,129.258914 134.099788,130.783788 C134.099788,132.290066 134.453844,133.480212 135.18059,134.372821 C135.92597,135.284026 137.006772,135.748927 138.385725,135.748927 C139.764679,135.748927 140.826846,135.302623 141.572226,134.428609 C142.298972,133.554596 142.671662,132.345854 142.671662,130.783788 C142.671662,129.221722 142.298972,127.994384 141.572226,127.101775 C140.826846,126.209166 139.764679,125.781457 138.385725,125.781457 Z M145.491685,124.126411 L151.417458,124.126411 C152.777777,124.126411 153.858579,124.423947 154.641228,125.037616 C155.461147,125.707073 155.88974,126.674066 155.88974,127.938596 C155.88974,128.626649 155.703395,129.240318 155.330705,129.779603 C154.920746,130.374675 154.343076,130.765192 153.634965,130.951152 L153.634965,130.988344 C154.790304,131.248689 155.442512,132.011126 155.591588,133.312848 L155.815202,135.451391 C155.88974,136.269616 156.169258,136.920477 156.616486,137.403974 L154.249904,137.403974 C153.933117,136.994861 153.746772,136.418384 153.672234,135.674543 L153.504523,134.038093 C153.429985,133.312848 153.206371,132.792159 152.833681,132.476026 C152.442356,132.141298 151.864686,131.99253 151.119306,131.99253 L147.671922,131.99253 L147.671922,137.403974 L145.491685,137.403974 L145.491685,124.126411 Z M147.671922,125.986013 L147.671922,130.132927 L151.119306,130.132927 C151.976494,130.132927 152.628701,129.946967 153.075929,129.593642 C153.485889,129.221722 153.690868,128.701033 153.690868,128.031576 C153.690868,127.306331 153.485889,126.785642 153.075929,126.46951 C152.66597,126.134781 152.013763,125.986013 151.119306,125.986013 L147.671922,125.986013 Z M157.051291,124.126411 L159.604219,124.126411 L164.132404,134.540185 L164.206942,134.540185 L168.716494,124.126411 L171.269421,124.126411 L171.269421,137.403974 L169.089184,137.403974 L169.089184,128.254728 L169.014646,128.254728 L165.101399,137.403974 L163.219314,137.403974 L159.306067,128.254728 L159.231529,128.254728 L159.231529,137.403974 L157.051291,137.403974 L157.051291,124.126411 Z" id="RAIN-STORM" fill="#FFFFFF"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M124.851206,61.2980132 L161.706122,61.2980132 L161.706122,64.1907285 L144.728015,64.1907285 L144.728015,69.1909934 L159.511391,69.1909934 L159.511391,93.4071523 C159.511391,95.9692715 158.269091,97.2916556 155.86731,97.2916556 L151.022338,97.2916556 L150.276957,94.4402649 L154.914879,94.5642384 C156.03295,94.5642384 156.61269,93.9443709 156.61269,92.7459603 L156.61269,72.0423841 L144.728015,72.0423841 L144.728015,96.9610596 L141.829314,96.9610596 L141.829314,72.0423841 L129.778998,72.0423841 L129.778998,97.5809272 L126.880297,97.5809272 L126.880297,69.1909934 L141.829314,69.1909934 L141.829314,64.1907285 L124.851206,64.1907285 L124.851206,61.2980132 Z M133.34026,75.4723179 C135.824861,76.5880795 138.143822,77.9517881 140.214323,79.5634437 L138.682152,81.8776159 C136.446011,80.1006623 134.16846,78.6956291 131.849499,77.7038411 L133.34026,75.4723179 Z M133.00898,83.778543 C135.534991,84.9356291 137.853952,86.3819868 139.924453,88.0762914 L138.392282,90.3904636 C136.156141,88.5308609 133.87859,87.0431788 131.559629,85.9687417 L133.00898,83.778543 Z M147.916586,75.5136424 C150.442597,76.7533775 152.761558,78.1997351 154.832059,79.8940397 L153.341299,82.2495364 C151.105158,80.3486093 148.786197,78.8196026 146.425826,77.7038411 L147.916586,75.5136424 Z M147.916586,84.1504636 C150.401187,85.3901987 152.720148,86.8778808 154.790649,88.6135099 L153.258479,90.9690066 C151.022338,88.9854305 148.744787,87.4564238 146.425826,86.3406623 L147.916586,84.1504636 Z" id="暴-雨" fill="#FFFFFF"></path>
<g id="baoyu" transform="translate(18.979592, 15.841060)" fill="#D12821" fill-rule="nonzero">
<path d="M63.1735582,50.1964288 L14.1733383,50.1964288 C7.35192266,50.1909052 1.50062451,45.336513 0.2440867,38.640352 C-1.01245111,31.9441911 2.68172167,25.3031404 9.03821419,22.8310627 C9.14842458,19.316292 10.8510282,16.041738 13.6663617,13.9299196 C16.4816951,11.8181012 20.1050168,11.097609 23.5155519,11.9714226 C28.5616859,2.84156497 39.0943778,-1.79491379 49.2463789,0.644742355 C59.39838,3.0843985 66.6663676,11.998609 67.0017004,22.4217022 C73.7958385,24.3525993 78.1298132,30.9845592 77.1646251,37.9732719 C76.1994371,44.9619846 70.2296549,50.1745443 63.1658246,50.1964288 L63.1735582,50.1964288 Z M13.1215659,59.1791894 L6.28504524,73.2519235 C5.67952164,74.6148286 6.26503312,76.2117809 7.60861022,76.8618785 C8.95218731,77.5119761 10.569901,76.9810671 11.2654969,75.6617441 L18.0942839,61.5967337 C18.6743763,60.2410273 18.0874389,58.669212 16.7601524,58.0239363 C15.4328658,57.3786606 13.8321073,57.8869022 13.1215659,59.1791894 Z M28.0629208,59.1791894 L21.2341339,73.2519235 C20.6754924,74.603704 21.2673466,76.1561819 22.5847105,76.7945874 C23.9020744,77.4329929 25.4893812,76.9365546 26.2068518,75.6617441 L33.0433725,61.5967337 C33.4757752,60.7081933 33.4006974,59.6567575 32.8464202,58.8384919 C32.292143,58.0202263 31.3428742,57.5594449 30.3561943,57.6297197 C29.3695144,57.6999945 28.4953235,58.290649 28.0629208,59.1791894 Z M43.0120094,59.1791894 L36.1754888,73.2519235 C35.5699652,74.6148286 36.1554767,76.2117809 37.4990538,76.8618785 C38.8426309,77.5119761 40.4603445,76.9810671 41.1559405,75.6617441 L47.992461,61.5967337 C48.6608977,60.2231693 48.0878606,58.5684896 46.7125468,57.9009032 C45.3372331,57.2333167 43.680446,57.8056249 43.0120094,59.1791894 Z M57.9610979,59.1791894 L51.1245773,73.2519235 C50.5190537,74.6148286 51.1045652,76.2117809 52.4481423,76.8618785 C53.7917194,77.5119761 55.4094331,76.9810671 56.105029,75.6617441 L62.933816,61.5967337 C63.5139084,60.2410273 62.926971,58.669212 61.5996844,58.0239363 C60.2723978,57.3786606 58.6716393,57.8869022 57.9610979,59.1791894 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>BAOYU-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(-61.000000, -3104.000000)">
<g id="BAOYU-O" transform="translate(61.000000, 3104.000000)">
<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="M68.6119147,124.126411 L74.5376883,124.126411 C75.8980074,124.126411 76.9788089,124.423947 77.7614583,125.037616 C78.5813766,125.707073 79.0099703,126.674066 79.0099703,127.938596 C79.0099703,128.626649 78.8236252,129.240318 78.4509351,129.779603 C78.0409759,130.374675 77.4633061,130.765192 76.7551948,130.951152 L76.7551948,130.988344 C77.9105343,131.248689 78.5627421,132.011126 78.7118182,133.312848 L78.9354323,135.451391 C79.0099703,136.269616 79.2894879,136.920477 79.7367161,137.403974 L77.3701336,137.403974 C77.0533469,136.994861 76.8670019,136.418384 76.7924638,135.674543 L76.6247532,134.038093 C76.5502152,133.312848 76.3266011,132.792159 75.9539109,132.476026 C75.5625863,132.141298 74.9849165,131.99253 74.2395362,131.99253 L70.7921521,131.99253 L70.7921521,137.403974 L68.6119147,137.403974 L68.6119147,124.126411 Z M70.7921521,125.986013 L70.7921521,130.132927 L74.2395362,130.132927 C75.0967236,130.132927 75.7489314,129.946967 76.1961596,129.593642 C76.6061187,129.221722 76.8110983,128.701033 76.8110983,128.031576 C76.8110983,127.306331 76.6061187,126.785642 76.1961596,126.46951 C75.7862004,126.134781 75.1339926,125.986013 74.2395362,125.986013 L70.7921521,125.986013 Z M83.9543265,124.126411 L86.4327161,124.126411 L91.5199369,137.403974 L89.1906234,137.403974 L87.9793803,134.075285 L82.4076623,134.075285 L81.1964193,137.403974 L78.8671058,137.403974 L83.9543265,124.126411 Z M83.0598701,132.290066 L87.3271725,132.290066 L85.2401076,126.46951 L85.1655696,126.46951 L83.0598701,132.290066 Z M91.3957069,124.126411 L93.5759443,124.126411 L93.5759443,137.403974 L91.3957069,137.403974 L91.3957069,124.126411 Z M94.7561299,124.126411 L96.9363673,124.126411 L103.514349,133.703364 L103.588887,133.703364 L103.588887,124.126411 L105.787759,124.126411 L105.787759,137.403974 L103.663425,137.403974 L97.0109054,127.696848 L96.9363673,127.696848 L96.9363673,137.403974 L94.7561299,137.403974 L94.7561299,124.126411 Z M116.440486,123.866066 C118.005785,123.866066 119.235662,124.182199 120.111484,124.83306 C121.04321,125.521113 121.58361,126.599682 121.714052,128.050172 L119.552449,128.050172 C119.366104,127.231947 119.012048,126.636874 118.527551,126.28355 C118.043054,125.911629 117.297673,125.744265 116.328679,125.744265 C115.490126,125.744265 114.856553,125.855841 114.409325,126.097589 C113.850289,126.37653 113.589406,126.84143 113.589406,127.473695 C113.589406,128.031576 113.887558,128.496477 114.521132,128.831205 C114.800649,128.979974 115.564664,129.258914 116.794542,129.64943 C118.602089,130.207311 119.757429,130.653616 120.279195,130.951152 C121.434534,131.639205 122.012204,132.587603 122.012204,133.81494 C122.012204,135.005086 121.546341,135.953483 120.614616,136.641536 C119.682891,137.310993 118.35984,137.664318 116.6641,137.664318 C115.024263,137.664318 113.738482,137.348185 112.825391,136.715921 C111.707321,135.934887 111.092382,134.70755 110.99921,133.015311 L113.160813,133.015311 C113.309889,134.019497 113.663944,134.744742 114.241614,135.17245 C114.76338,135.544371 115.564664,135.748927 116.6641,135.748927 C117.633095,135.748927 118.415744,135.581563 118.974779,135.26543 C119.533814,134.930702 119.831967,134.502993 119.831967,133.945113 C119.831967,133.238464 119.403373,132.680583 118.583455,132.27147 C118.322571,132.141298 117.465384,131.843762 115.993258,131.397457 C114.353421,130.876768 113.328523,130.504848 112.937199,130.281695 C111.912301,129.668026 111.409169,128.775417 111.409169,127.603868 C111.409169,126.432318 111.893666,125.502517 112.899929,124.83306 C113.831655,124.182199 115.005629,123.866066 116.440486,123.866066 Z M121.422111,124.126411 L132.323299,124.126411 L132.323299,125.986013 L127.962824,125.986013 L127.962824,137.403974 L125.782586,137.403974 L125.782586,125.986013 L121.422111,125.986013 L121.422111,124.126411 Z M138.385725,123.866066 C140.416887,123.866066 142.019455,124.516927 143.193429,125.837245 C144.311499,127.083179 144.870534,128.738225 144.870534,130.783788 C144.870534,132.829351 144.311499,134.465801 143.193429,135.711735 C142.019455,137.013457 140.416887,137.664318 138.385725,137.664318 C136.335929,137.664318 134.733362,136.994861 133.578022,135.693139 C132.459952,134.428609 131.919551,132.792159 131.919551,130.783788 C131.919551,128.756821 132.459952,127.120371 133.578022,125.855841 C134.733362,124.516927 136.335929,123.866066 138.385725,123.866066 Z M138.385725,125.781457 C137.006772,125.781457 135.944605,126.246358 135.18059,127.176159 C134.453844,128.068768 134.099788,129.258914 134.099788,130.783788 C134.099788,132.290066 134.453844,133.480212 135.18059,134.372821 C135.92597,135.284026 137.006772,135.748927 138.385725,135.748927 C139.764679,135.748927 140.826846,135.302623 141.572226,134.428609 C142.298972,133.554596 142.671662,132.345854 142.671662,130.783788 C142.671662,129.221722 142.298972,127.994384 141.572226,127.101775 C140.826846,126.209166 139.764679,125.781457 138.385725,125.781457 Z M145.491685,124.126411 L151.417458,124.126411 C152.777777,124.126411 153.858579,124.423947 154.641228,125.037616 C155.461147,125.707073 155.88974,126.674066 155.88974,127.938596 C155.88974,128.626649 155.703395,129.240318 155.330705,129.779603 C154.920746,130.374675 154.343076,130.765192 153.634965,130.951152 L153.634965,130.988344 C154.790304,131.248689 155.442512,132.011126 155.591588,133.312848 L155.815202,135.451391 C155.88974,136.269616 156.169258,136.920477 156.616486,137.403974 L154.249904,137.403974 C153.933117,136.994861 153.746772,136.418384 153.672234,135.674543 L153.504523,134.038093 C153.429985,133.312848 153.206371,132.792159 152.833681,132.476026 C152.442356,132.141298 151.864686,131.99253 151.119306,131.99253 L147.671922,131.99253 L147.671922,137.403974 L145.491685,137.403974 L145.491685,124.126411 Z M147.671922,125.986013 L147.671922,130.132927 L151.119306,130.132927 C151.976494,130.132927 152.628701,129.946967 153.075929,129.593642 C153.485889,129.221722 153.690868,128.701033 153.690868,128.031576 C153.690868,127.306331 153.485889,126.785642 153.075929,126.46951 C152.66597,126.134781 152.013763,125.986013 151.119306,125.986013 L147.671922,125.986013 Z M157.051291,124.126411 L159.604219,124.126411 L164.132404,134.540185 L164.206942,134.540185 L168.716494,124.126411 L171.269421,124.126411 L171.269421,137.403974 L169.089184,137.403974 L169.089184,128.254728 L169.014646,128.254728 L165.101399,137.403974 L163.219314,137.403974 L159.306067,128.254728 L159.231529,128.254728 L159.231529,137.403974 L157.051291,137.403974 L157.051291,124.126411 Z" id="RAIN-STORM" fill="#FFFFFF"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M124.851206,61.2980132 L161.706122,61.2980132 L161.706122,64.1907285 L144.728015,64.1907285 L144.728015,69.1909934 L159.511391,69.1909934 L159.511391,93.4071523 C159.511391,95.9692715 158.269091,97.2916556 155.86731,97.2916556 L151.022338,97.2916556 L150.276957,94.4402649 L154.914879,94.5642384 C156.03295,94.5642384 156.61269,93.9443709 156.61269,92.7459603 L156.61269,72.0423841 L144.728015,72.0423841 L144.728015,96.9610596 L141.829314,96.9610596 L141.829314,72.0423841 L129.778998,72.0423841 L129.778998,97.5809272 L126.880297,97.5809272 L126.880297,69.1909934 L141.829314,69.1909934 L141.829314,64.1907285 L124.851206,64.1907285 L124.851206,61.2980132 Z M133.34026,75.4723179 C135.824861,76.5880795 138.143822,77.9517881 140.214323,79.5634437 L138.682152,81.8776159 C136.446011,80.1006623 134.16846,78.6956291 131.849499,77.7038411 L133.34026,75.4723179 Z M133.00898,83.778543 C135.534991,84.9356291 137.853952,86.3819868 139.924453,88.0762914 L138.392282,90.3904636 C136.156141,88.5308609 133.87859,87.0431788 131.559629,85.9687417 L133.00898,83.778543 Z M147.916586,75.5136424 C150.442597,76.7533775 152.761558,78.1997351 154.832059,79.8940397 L153.341299,82.2495364 C151.105158,80.3486093 148.786197,78.8196026 146.425826,77.7038411 L147.916586,75.5136424 Z M147.916586,84.1504636 C150.401187,85.3901987 152.720148,86.8778808 154.790649,88.6135099 L153.258479,90.9690066 C151.022338,88.9854305 148.744787,87.4564238 146.425826,86.3406623 L147.916586,84.1504636 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 id="baoyu" transform="translate(18.979592, 15.841060)" fill="#EC8D15" fill-rule="nonzero">
<path d="M63.1735582,50.1964288 L14.1733383,50.1964288 C7.35192266,50.1909052 1.50062451,45.336513 0.2440867,38.640352 C-1.01245111,31.9441911 2.68172167,25.3031404 9.03821419,22.8310627 C9.14842458,19.316292 10.8510282,16.041738 13.6663617,13.9299196 C16.4816951,11.8181012 20.1050168,11.097609 23.5155519,11.9714226 C28.5616859,2.84156497 39.0943778,-1.79491379 49.2463789,0.644742355 C59.39838,3.0843985 66.6663676,11.998609 67.0017004,22.4217022 C73.7958385,24.3525993 78.1298132,30.9845592 77.1646251,37.9732719 C76.1994371,44.9619846 70.2296549,50.1745443 63.1658246,50.1964288 L63.1735582,50.1964288 Z M13.1215659,59.1791894 L6.28504524,73.2519235 C5.67952164,74.6148286 6.26503312,76.2117809 7.60861022,76.8618785 C8.95218731,77.5119761 10.569901,76.9810671 11.2654969,75.6617441 L18.0942839,61.5967337 C18.6743763,60.2410273 18.0874389,58.669212 16.7601524,58.0239363 C15.4328658,57.3786606 13.8321073,57.8869022 13.1215659,59.1791894 Z M28.0629208,59.1791894 L21.2341339,73.2519235 C20.6754924,74.603704 21.2673466,76.1561819 22.5847105,76.7945874 C23.9020744,77.4329929 25.4893812,76.9365546 26.2068518,75.6617441 L33.0433725,61.5967337 C33.4757752,60.7081933 33.4006974,59.6567575 32.8464202,58.8384919 C32.292143,58.0202263 31.3428742,57.5594449 30.3561943,57.6297197 C29.3695144,57.6999945 28.4953235,58.290649 28.0629208,59.1791894 Z M43.0120094,59.1791894 L36.1754888,73.2519235 C35.5699652,74.6148286 36.1554767,76.2117809 37.4990538,76.8618785 C38.8426309,77.5119761 40.4603445,76.9810671 41.1559405,75.6617441 L47.992461,61.5967337 C48.6608977,60.2231693 48.0878606,58.5684896 46.7125468,57.9009032 C45.3372331,57.2333167 43.680446,57.8056249 43.0120094,59.1791894 Z M57.9610979,59.1791894 L51.1245773,73.2519235 C50.5190537,74.6148286 51.1045652,76.2117809 52.4481423,76.8618785 C53.7917194,77.5119761 55.4094331,76.9810671 56.105029,75.6617441 L62.933816,61.5967337 C63.5139084,60.2410273 62.926971,58.669212 61.5996844,58.0239363 C60.2723978,57.3786606 58.6716393,57.8869022 57.9610979,59.1791894 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>BAOYU-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(-380.000000, -3101.000000)">
<g id="BAOYU-Y" transform="translate(380.000000, 3101.000000)">
<g>
<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="M68.6119147,124.126411 L74.5376883,124.126411 C75.8980074,124.126411 76.9788089,124.423947 77.7614583,125.037616 C78.5813766,125.707073 79.0099703,126.674066 79.0099703,127.938596 C79.0099703,128.626649 78.8236252,129.240318 78.4509351,129.779603 C78.0409759,130.374675 77.4633061,130.765192 76.7551948,130.951152 L76.7551948,130.988344 C77.9105343,131.248689 78.5627421,132.011126 78.7118182,133.312848 L78.9354323,135.451391 C79.0099703,136.269616 79.2894879,136.920477 79.7367161,137.403974 L77.3701336,137.403974 C77.0533469,136.994861 76.8670019,136.418384 76.7924638,135.674543 L76.6247532,134.038093 C76.5502152,133.312848 76.3266011,132.792159 75.9539109,132.476026 C75.5625863,132.141298 74.9849165,131.99253 74.2395362,131.99253 L70.7921521,131.99253 L70.7921521,137.403974 L68.6119147,137.403974 L68.6119147,124.126411 Z M70.7921521,125.986013 L70.7921521,130.132927 L74.2395362,130.132927 C75.0967236,130.132927 75.7489314,129.946967 76.1961596,129.593642 C76.6061187,129.221722 76.8110983,128.701033 76.8110983,128.031576 C76.8110983,127.306331 76.6061187,126.785642 76.1961596,126.46951 C75.7862004,126.134781 75.1339926,125.986013 74.2395362,125.986013 L70.7921521,125.986013 Z M83.9543265,124.126411 L86.4327161,124.126411 L91.5199369,137.403974 L89.1906234,137.403974 L87.9793803,134.075285 L82.4076623,134.075285 L81.1964193,137.403974 L78.8671058,137.403974 L83.9543265,124.126411 Z M83.0598701,132.290066 L87.3271725,132.290066 L85.2401076,126.46951 L85.1655696,126.46951 L83.0598701,132.290066 Z M91.3957069,124.126411 L93.5759443,124.126411 L93.5759443,137.403974 L91.3957069,137.403974 L91.3957069,124.126411 Z M94.7561299,124.126411 L96.9363673,124.126411 L103.514349,133.703364 L103.588887,133.703364 L103.588887,124.126411 L105.787759,124.126411 L105.787759,137.403974 L103.663425,137.403974 L97.0109054,127.696848 L96.9363673,127.696848 L96.9363673,137.403974 L94.7561299,137.403974 L94.7561299,124.126411 Z M116.440486,123.866066 C118.005785,123.866066 119.235662,124.182199 120.111484,124.83306 C121.04321,125.521113 121.58361,126.599682 121.714052,128.050172 L119.552449,128.050172 C119.366104,127.231947 119.012048,126.636874 118.527551,126.28355 C118.043054,125.911629 117.297673,125.744265 116.328679,125.744265 C115.490126,125.744265 114.856553,125.855841 114.409325,126.097589 C113.850289,126.37653 113.589406,126.84143 113.589406,127.473695 C113.589406,128.031576 113.887558,128.496477 114.521132,128.831205 C114.800649,128.979974 115.564664,129.258914 116.794542,129.64943 C118.602089,130.207311 119.757429,130.653616 120.279195,130.951152 C121.434534,131.639205 122.012204,132.587603 122.012204,133.81494 C122.012204,135.005086 121.546341,135.953483 120.614616,136.641536 C119.682891,137.310993 118.35984,137.664318 116.6641,137.664318 C115.024263,137.664318 113.738482,137.348185 112.825391,136.715921 C111.707321,135.934887 111.092382,134.70755 110.99921,133.015311 L113.160813,133.015311 C113.309889,134.019497 113.663944,134.744742 114.241614,135.17245 C114.76338,135.544371 115.564664,135.748927 116.6641,135.748927 C117.633095,135.748927 118.415744,135.581563 118.974779,135.26543 C119.533814,134.930702 119.831967,134.502993 119.831967,133.945113 C119.831967,133.238464 119.403373,132.680583 118.583455,132.27147 C118.322571,132.141298 117.465384,131.843762 115.993258,131.397457 C114.353421,130.876768 113.328523,130.504848 112.937199,130.281695 C111.912301,129.668026 111.409169,128.775417 111.409169,127.603868 C111.409169,126.432318 111.893666,125.502517 112.899929,124.83306 C113.831655,124.182199 115.005629,123.866066 116.440486,123.866066 Z M121.422111,124.126411 L132.323299,124.126411 L132.323299,125.986013 L127.962824,125.986013 L127.962824,137.403974 L125.782586,137.403974 L125.782586,125.986013 L121.422111,125.986013 L121.422111,124.126411 Z M138.385725,123.866066 C140.416887,123.866066 142.019455,124.516927 143.193429,125.837245 C144.311499,127.083179 144.870534,128.738225 144.870534,130.783788 C144.870534,132.829351 144.311499,134.465801 143.193429,135.711735 C142.019455,137.013457 140.416887,137.664318 138.385725,137.664318 C136.335929,137.664318 134.733362,136.994861 133.578022,135.693139 C132.459952,134.428609 131.919551,132.792159 131.919551,130.783788 C131.919551,128.756821 132.459952,127.120371 133.578022,125.855841 C134.733362,124.516927 136.335929,123.866066 138.385725,123.866066 Z M138.385725,125.781457 C137.006772,125.781457 135.944605,126.246358 135.18059,127.176159 C134.453844,128.068768 134.099788,129.258914 134.099788,130.783788 C134.099788,132.290066 134.453844,133.480212 135.18059,134.372821 C135.92597,135.284026 137.006772,135.748927 138.385725,135.748927 C139.764679,135.748927 140.826846,135.302623 141.572226,134.428609 C142.298972,133.554596 142.671662,132.345854 142.671662,130.783788 C142.671662,129.221722 142.298972,127.994384 141.572226,127.101775 C140.826846,126.209166 139.764679,125.781457 138.385725,125.781457 Z M145.491685,124.126411 L151.417458,124.126411 C152.777777,124.126411 153.858579,124.423947 154.641228,125.037616 C155.461147,125.707073 155.88974,126.674066 155.88974,127.938596 C155.88974,128.626649 155.703395,129.240318 155.330705,129.779603 C154.920746,130.374675 154.343076,130.765192 153.634965,130.951152 L153.634965,130.988344 C154.790304,131.248689 155.442512,132.011126 155.591588,133.312848 L155.815202,135.451391 C155.88974,136.269616 156.169258,136.920477 156.616486,137.403974 L154.249904,137.403974 C153.933117,136.994861 153.746772,136.418384 153.672234,135.674543 L153.504523,134.038093 C153.429985,133.312848 153.206371,132.792159 152.833681,132.476026 C152.442356,132.141298 151.864686,131.99253 151.119306,131.99253 L147.671922,131.99253 L147.671922,137.403974 L145.491685,137.403974 L145.491685,124.126411 Z M147.671922,125.986013 L147.671922,130.132927 L151.119306,130.132927 C151.976494,130.132927 152.628701,129.946967 153.075929,129.593642 C153.485889,129.221722 153.690868,128.701033 153.690868,128.031576 C153.690868,127.306331 153.485889,126.785642 153.075929,126.46951 C152.66597,126.134781 152.013763,125.986013 151.119306,125.986013 L147.671922,125.986013 Z M157.051291,124.126411 L159.604219,124.126411 L164.132404,134.540185 L164.206942,134.540185 L168.716494,124.126411 L171.269421,124.126411 L171.269421,137.403974 L169.089184,137.403974 L169.089184,128.254728 L169.014646,128.254728 L165.101399,137.403974 L163.219314,137.403974 L159.306067,128.254728 L159.231529,128.254728 L159.231529,137.403974 L157.051291,137.403974 L157.051291,124.126411 Z" id="RAIN-STORM" fill="#444444"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M124.851206,61.2980132 L161.706122,61.2980132 L161.706122,64.1907285 L144.728015,64.1907285 L144.728015,69.1909934 L159.511391,69.1909934 L159.511391,93.4071523 C159.511391,95.9692715 158.269091,97.2916556 155.86731,97.2916556 L151.022338,97.2916556 L150.276957,94.4402649 L154.914879,94.5642384 C156.03295,94.5642384 156.61269,93.9443709 156.61269,92.7459603 L156.61269,72.0423841 L144.728015,72.0423841 L144.728015,96.9610596 L141.829314,96.9610596 L141.829314,72.0423841 L129.778998,72.0423841 L129.778998,97.5809272 L126.880297,97.5809272 L126.880297,69.1909934 L141.829314,69.1909934 L141.829314,64.1907285 L124.851206,64.1907285 L124.851206,61.2980132 Z M133.34026,75.4723179 C135.824861,76.5880795 138.143822,77.9517881 140.214323,79.5634437 L138.682152,81.8776159 C136.446011,80.1006623 134.16846,78.6956291 131.849499,77.7038411 L133.34026,75.4723179 Z M133.00898,83.778543 C135.534991,84.9356291 137.853952,86.3819868 139.924453,88.0762914 L138.392282,90.3904636 C136.156141,88.5308609 133.87859,87.0431788 131.559629,85.9687417 L133.00898,83.778543 Z M147.916586,75.5136424 C150.442597,76.7533775 152.761558,78.1997351 154.832059,79.8940397 L153.341299,82.2495364 C151.105158,80.3486093 148.786197,78.8196026 146.425826,77.7038411 L147.916586,75.5136424 Z M147.916586,84.1504636 C150.401187,85.3901987 152.720148,86.8778808 154.790649,88.6135099 L153.258479,90.9690066 C151.022338,88.9854305 148.744787,87.4564238 146.425826,86.3406623 L147.916586,84.1504636 Z" id="暴-雨" fill="#444444"></path>
<g id="baoyu" transform="translate(18.979592, 15.841060)" fill="#FFFF00" fill-rule="nonzero">
<path d="M63.1735582,50.1964288 L14.1733383,50.1964288 C7.35192266,50.1909052 1.50062451,45.336513 0.2440867,38.640352 C-1.01245111,31.9441911 2.68172167,25.3031404 9.03821419,22.8310627 C9.14842458,19.316292 10.8510282,16.041738 13.6663617,13.9299196 C16.4816951,11.8181012 20.1050168,11.097609 23.5155519,11.9714226 C28.5616859,2.84156497 39.0943778,-1.79491379 49.2463789,0.644742355 C59.39838,3.0843985 66.6663676,11.998609 67.0017004,22.4217022 C73.7958385,24.3525993 78.1298132,30.9845592 77.1646251,37.9732719 C76.1994371,44.9619846 70.2296549,50.1745443 63.1658246,50.1964288 L63.1735582,50.1964288 Z M13.1215659,59.1791894 L6.28504524,73.2519235 C5.67952164,74.6148286 6.26503312,76.2117809 7.60861022,76.8618785 C8.95218731,77.5119761 10.569901,76.9810671 11.2654969,75.6617441 L18.0942839,61.5967337 C18.6743763,60.2410273 18.0874389,58.669212 16.7601524,58.0239363 C15.4328658,57.3786606 13.8321073,57.8869022 13.1215659,59.1791894 Z M28.0629208,59.1791894 L21.2341339,73.2519235 C20.6754924,74.603704 21.2673466,76.1561819 22.5847105,76.7945874 C23.9020744,77.4329929 25.4893812,76.9365546 26.2068518,75.6617441 L33.0433725,61.5967337 C33.4757752,60.7081933 33.4006974,59.6567575 32.8464202,58.8384919 C32.292143,58.0202263 31.3428742,57.5594449 30.3561943,57.6297197 C29.3695144,57.6999945 28.4953235,58.290649 28.0629208,59.1791894 Z M43.0120094,59.1791894 L36.1754888,73.2519235 C35.5699652,74.6148286 36.1554767,76.2117809 37.4990538,76.8618785 C38.8426309,77.5119761 40.4603445,76.9810671 41.1559405,75.6617441 L47.992461,61.5967337 C48.6608977,60.2231693 48.0878606,58.5684896 46.7125468,57.9009032 C45.3372331,57.2333167 43.680446,57.8056249 43.0120094,59.1791894 Z M57.9610979,59.1791894 L51.1245773,73.2519235 C50.5190537,74.6148286 51.1045652,76.2117809 52.4481423,76.8618785 C53.7917194,77.5119761 55.4094331,76.9810671 56.105029,75.6617441 L62.933816,61.5967337 C63.5139084,60.2410273 62.926971,58.669212 61.5996844,58.0239363 C60.2723978,57.3786606 58.6716393,57.8869022 57.9610979,59.1791894 Z" id="Shape"></path>
</g>
</g>
<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>
</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>BAOYU-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, -3098.000000)">
<g id="BAOYU-B" transform="translate(648.000000, 3098.000000)">
<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="M68.6119147,124.126411 L74.5376883,124.126411 C75.8980074,124.126411 76.9788089,124.423947 77.7614583,125.037616 C78.5813766,125.707073 79.0099703,126.674066 79.0099703,127.938596 C79.0099703,128.626649 78.8236252,129.240318 78.4509351,129.779603 C78.0409759,130.374675 77.4633061,130.765192 76.7551948,130.951152 L76.7551948,130.988344 C77.9105343,131.248689 78.5627421,132.011126 78.7118182,133.312848 L78.9354323,135.451391 C79.0099703,136.269616 79.2894879,136.920477 79.7367161,137.403974 L77.3701336,137.403974 C77.0533469,136.994861 76.8670019,136.418384 76.7924638,135.674543 L76.6247532,134.038093 C76.5502152,133.312848 76.3266011,132.792159 75.9539109,132.476026 C75.5625863,132.141298 74.9849165,131.99253 74.2395362,131.99253 L70.7921521,131.99253 L70.7921521,137.403974 L68.6119147,137.403974 L68.6119147,124.126411 Z M70.7921521,125.986013 L70.7921521,130.132927 L74.2395362,130.132927 C75.0967236,130.132927 75.7489314,129.946967 76.1961596,129.593642 C76.6061187,129.221722 76.8110983,128.701033 76.8110983,128.031576 C76.8110983,127.306331 76.6061187,126.785642 76.1961596,126.46951 C75.7862004,126.134781 75.1339926,125.986013 74.2395362,125.986013 L70.7921521,125.986013 Z M83.9543265,124.126411 L86.4327161,124.126411 L91.5199369,137.403974 L89.1906234,137.403974 L87.9793803,134.075285 L82.4076623,134.075285 L81.1964193,137.403974 L78.8671058,137.403974 L83.9543265,124.126411 Z M83.0598701,132.290066 L87.3271725,132.290066 L85.2401076,126.46951 L85.1655696,126.46951 L83.0598701,132.290066 Z M91.3957069,124.126411 L93.5759443,124.126411 L93.5759443,137.403974 L91.3957069,137.403974 L91.3957069,124.126411 Z M94.7561299,124.126411 L96.9363673,124.126411 L103.514349,133.703364 L103.588887,133.703364 L103.588887,124.126411 L105.787759,124.126411 L105.787759,137.403974 L103.663425,137.403974 L97.0109054,127.696848 L96.9363673,127.696848 L96.9363673,137.403974 L94.7561299,137.403974 L94.7561299,124.126411 Z M116.440486,123.866066 C118.005785,123.866066 119.235662,124.182199 120.111484,124.83306 C121.04321,125.521113 121.58361,126.599682 121.714052,128.050172 L119.552449,128.050172 C119.366104,127.231947 119.012048,126.636874 118.527551,126.28355 C118.043054,125.911629 117.297673,125.744265 116.328679,125.744265 C115.490126,125.744265 114.856553,125.855841 114.409325,126.097589 C113.850289,126.37653 113.589406,126.84143 113.589406,127.473695 C113.589406,128.031576 113.887558,128.496477 114.521132,128.831205 C114.800649,128.979974 115.564664,129.258914 116.794542,129.64943 C118.602089,130.207311 119.757429,130.653616 120.279195,130.951152 C121.434534,131.639205 122.012204,132.587603 122.012204,133.81494 C122.012204,135.005086 121.546341,135.953483 120.614616,136.641536 C119.682891,137.310993 118.35984,137.664318 116.6641,137.664318 C115.024263,137.664318 113.738482,137.348185 112.825391,136.715921 C111.707321,135.934887 111.092382,134.70755 110.99921,133.015311 L113.160813,133.015311 C113.309889,134.019497 113.663944,134.744742 114.241614,135.17245 C114.76338,135.544371 115.564664,135.748927 116.6641,135.748927 C117.633095,135.748927 118.415744,135.581563 118.974779,135.26543 C119.533814,134.930702 119.831967,134.502993 119.831967,133.945113 C119.831967,133.238464 119.403373,132.680583 118.583455,132.27147 C118.322571,132.141298 117.465384,131.843762 115.993258,131.397457 C114.353421,130.876768 113.328523,130.504848 112.937199,130.281695 C111.912301,129.668026 111.409169,128.775417 111.409169,127.603868 C111.409169,126.432318 111.893666,125.502517 112.899929,124.83306 C113.831655,124.182199 115.005629,123.866066 116.440486,123.866066 Z M121.422111,124.126411 L132.323299,124.126411 L132.323299,125.986013 L127.962824,125.986013 L127.962824,137.403974 L125.782586,137.403974 L125.782586,125.986013 L121.422111,125.986013 L121.422111,124.126411 Z M138.385725,123.866066 C140.416887,123.866066 142.019455,124.516927 143.193429,125.837245 C144.311499,127.083179 144.870534,128.738225 144.870534,130.783788 C144.870534,132.829351 144.311499,134.465801 143.193429,135.711735 C142.019455,137.013457 140.416887,137.664318 138.385725,137.664318 C136.335929,137.664318 134.733362,136.994861 133.578022,135.693139 C132.459952,134.428609 131.919551,132.792159 131.919551,130.783788 C131.919551,128.756821 132.459952,127.120371 133.578022,125.855841 C134.733362,124.516927 136.335929,123.866066 138.385725,123.866066 Z M138.385725,125.781457 C137.006772,125.781457 135.944605,126.246358 135.18059,127.176159 C134.453844,128.068768 134.099788,129.258914 134.099788,130.783788 C134.099788,132.290066 134.453844,133.480212 135.18059,134.372821 C135.92597,135.284026 137.006772,135.748927 138.385725,135.748927 C139.764679,135.748927 140.826846,135.302623 141.572226,134.428609 C142.298972,133.554596 142.671662,132.345854 142.671662,130.783788 C142.671662,129.221722 142.298972,127.994384 141.572226,127.101775 C140.826846,126.209166 139.764679,125.781457 138.385725,125.781457 Z M145.491685,124.126411 L151.417458,124.126411 C152.777777,124.126411 153.858579,124.423947 154.641228,125.037616 C155.461147,125.707073 155.88974,126.674066 155.88974,127.938596 C155.88974,128.626649 155.703395,129.240318 155.330705,129.779603 C154.920746,130.374675 154.343076,130.765192 153.634965,130.951152 L153.634965,130.988344 C154.790304,131.248689 155.442512,132.011126 155.591588,133.312848 L155.815202,135.451391 C155.88974,136.269616 156.169258,136.920477 156.616486,137.403974 L154.249904,137.403974 C153.933117,136.994861 153.746772,136.418384 153.672234,135.674543 L153.504523,134.038093 C153.429985,133.312848 153.206371,132.792159 152.833681,132.476026 C152.442356,132.141298 151.864686,131.99253 151.119306,131.99253 L147.671922,131.99253 L147.671922,137.403974 L145.491685,137.403974 L145.491685,124.126411 Z M147.671922,125.986013 L147.671922,130.132927 L151.119306,130.132927 C151.976494,130.132927 152.628701,129.946967 153.075929,129.593642 C153.485889,129.221722 153.690868,128.701033 153.690868,128.031576 C153.690868,127.306331 153.485889,126.785642 153.075929,126.46951 C152.66597,126.134781 152.013763,125.986013 151.119306,125.986013 L147.671922,125.986013 Z M157.051291,124.126411 L159.604219,124.126411 L164.132404,134.540185 L164.206942,134.540185 L168.716494,124.126411 L171.269421,124.126411 L171.269421,137.403974 L169.089184,137.403974 L169.089184,128.254728 L169.014646,128.254728 L165.101399,137.403974 L163.219314,137.403974 L159.306067,128.254728 L159.231529,128.254728 L159.231529,137.403974 L157.051291,137.403974 L157.051291,124.126411 Z" id="RAIN-STORM" fill="#FFFFFF"></path>
<path d="M135.617811,29.7123179 L129.033618,29.7123179 L129.033618,17.7282119 L157.647941,17.7282119 L157.647941,29.7123179 L151.022338,29.7123179 L151.022338,31.5719205 L159.842672,31.5719205 L159.842672,34.5472848 L151.022338,34.5472848 L151.022338,36.4482119 L161.871763,36.4482119 L161.871763,39.7128477 L152.637328,39.7128477 C154.873469,41.6137748 158.144861,43.1427815 162.451503,44.2998675 L160.836512,47.6884768 C157.689351,46.5727152 155.080519,45.2916556 152.968609,43.845298 C151.643488,44.8370861 150.152727,45.7049007 148.496327,46.4900662 L146.550056,43.9692715 C147.999406,43.3080795 149.283117,42.5642384 150.359777,41.7790728 C149.614397,41.1178808 148.993247,40.4153642 148.496327,39.7128477 L138.640742,39.7128477 C137.978182,40.4566887 137.274212,41.2005298 136.487421,41.9443709 C137.646902,42.6468874 138.723562,43.349404 139.634583,44.093245 L137.439852,46.2834437 C136.528831,45.4982781 135.369351,44.6717881 133.96141,43.845298 C131.725269,45.2503311 129.116438,46.5313907 126.134917,47.6471523 L124.105826,44.3411921 C128.536698,43.101457 131.890909,41.5311258 134.20987,39.7128477 L124.685566,39.7128477 L124.685566,36.4482119 L135.617811,36.4482119 L135.617811,34.5472848 L126.714657,34.5472848 L126.714657,31.5719205 L135.617811,31.5719205 L135.617811,29.7123179 Z M139.386122,36.4482119 L147.254026,36.4482119 L147.254026,34.5472848 L139.386122,34.5472848 L139.386122,36.4482119 Z M139.386122,31.5719205 L147.254026,31.5719205 L147.254026,29.7123179 L139.386122,29.7123179 L139.386122,31.5719205 Z M153.838219,26.8609272 L153.838219,25.042649 L132.84334,25.042649 L132.84334,26.8609272 L153.838219,26.8609272 Z M132.84334,22.4392053 L153.838219,22.4392053 L153.838219,20.6209272 L132.84334,20.6209272 L132.84334,22.4392053 Z M148.165046,46.9859603 C152.720148,48.2670199 156.86115,49.7960265 160.670872,51.6143046 L158.600371,54.7962914 C154.625009,52.5647682 150.566827,50.8291391 146.384416,49.589404 L148.165046,46.9859603 Z M141.622263,54.7549669 L137.067161,54.7549669 L136.321781,51.4076821 C137.729722,51.5729801 139.137662,51.6556291 140.462783,51.6556291 C141.249573,51.6556291 141.663673,51.2837086 141.663673,50.5398675 L141.663673,40.8286093 L145.473395,40.8286093 L145.473395,51.4076821 C145.473395,53.6392053 144.189685,54.7549669 141.622263,54.7549669 Z M139.344712,46.3660927 L140.172913,49.2174834 C136.860111,51.1184106 132.719109,52.8127152 127.832727,54.3003974 L126.383377,50.9117881 C131.393989,49.672053 135.700631,48.1843709 139.344712,46.3660927 Z M124.851206,61.2980132 L161.706122,61.2980132 L161.706122,64.1907285 L144.728015,64.1907285 L144.728015,69.1909934 L159.511391,69.1909934 L159.511391,93.4071523 C159.511391,95.9692715 158.269091,97.2916556 155.86731,97.2916556 L151.022338,97.2916556 L150.276957,94.4402649 L154.914879,94.5642384 C156.03295,94.5642384 156.61269,93.9443709 156.61269,92.7459603 L156.61269,72.0423841 L144.728015,72.0423841 L144.728015,96.9610596 L141.829314,96.9610596 L141.829314,72.0423841 L129.778998,72.0423841 L129.778998,97.5809272 L126.880297,97.5809272 L126.880297,69.1909934 L141.829314,69.1909934 L141.829314,64.1907285 L124.851206,64.1907285 L124.851206,61.2980132 Z M133.34026,75.4723179 C135.824861,76.5880795 138.143822,77.9517881 140.214323,79.5634437 L138.682152,81.8776159 C136.446011,80.1006623 134.16846,78.6956291 131.849499,77.7038411 L133.34026,75.4723179 Z M133.00898,83.778543 C135.534991,84.9356291 137.853952,86.3819868 139.924453,88.0762914 L138.392282,90.3904636 C136.156141,88.5308609 133.87859,87.0431788 131.559629,85.9687417 L133.00898,83.778543 Z M147.916586,75.5136424 C150.442597,76.7533775 152.761558,78.1997351 154.832059,79.8940397 L153.341299,82.2495364 C151.105158,80.3486093 148.786197,78.8196026 146.425826,77.7038411 L147.916586,75.5136424 Z M147.916586,84.1504636 C150.401187,85.3901987 152.720148,86.8778808 154.790649,88.6135099 L153.258479,90.9690066 C151.022338,88.9854305 148.744787,87.4564238 146.425826,86.3406623 L147.916586,84.1504636 Z" id="暴-雨" fill="#FFFFFF"></path>
<g id="baoyu" transform="translate(18.979592, 15.841060)" fill="#3265FE" fill-rule="nonzero">
<path d="M63.1735582,50.1964288 L14.1733383,50.1964288 C7.35192266,50.1909052 1.50062451,45.336513 0.2440867,38.640352 C-1.01245111,31.9441911 2.68172167,25.3031404 9.03821419,22.8310627 C9.14842458,19.316292 10.8510282,16.041738 13.6663617,13.9299196 C16.4816951,11.8181012 20.1050168,11.097609 23.5155519,11.9714226 C28.5616859,2.84156497 39.0943778,-1.79491379 49.2463789,0.644742355 C59.39838,3.0843985 66.6663676,11.998609 67.0017004,22.4217022 C73.7958385,24.3525993 78.1298132,30.9845592 77.1646251,37.9732719 C76.1994371,44.9619846 70.2296549,50.1745443 63.1658246,50.1964288 L63.1735582,50.1964288 Z M13.1215659,59.1791894 L6.28504524,73.2519235 C5.67952164,74.6148286 6.26503312,76.2117809 7.60861022,76.8618785 C8.95218731,77.5119761 10.569901,76.9810671 11.2654969,75.6617441 L18.0942839,61.5967337 C18.6743763,60.2410273 18.0874389,58.669212 16.7601524,58.0239363 C15.4328658,57.3786606 13.8321073,57.8869022 13.1215659,59.1791894 Z M28.0629208,59.1791894 L21.2341339,73.2519235 C20.6754924,74.603704 21.2673466,76.1561819 22.5847105,76.7945874 C23.9020744,77.4329929 25.4893812,76.9365546 26.2068518,75.6617441 L33.0433725,61.5967337 C33.4757752,60.7081933 33.4006974,59.6567575 32.8464202,58.8384919 C32.292143,58.0202263 31.3428742,57.5594449 30.3561943,57.6297197 C29.3695144,57.6999945 28.4953235,58.290649 28.0629208,59.1791894 Z M43.0120094,59.1791894 L36.1754888,73.2519235 C35.5699652,74.6148286 36.1554767,76.2117809 37.4990538,76.8618785 C38.8426309,77.5119761 40.4603445,76.9810671 41.1559405,75.6617441 L47.992461,61.5967337 C48.6608977,60.2231693 48.0878606,58.5684896 46.7125468,57.9009032 C45.3372331,57.2333167 43.680446,57.8056249 43.0120094,59.1791894 Z M57.9610979,59.1791894 L51.1245773,73.2519235 C50.5190537,74.6148286 51.1045652,76.2117809 52.4481423,76.8618785 C53.7917194,77.5119761 55.4094331,76.9810671 56.105029,75.6617441 L62.933816,61.5967337 C63.5139084,60.2410273 62.926971,58.669212 61.5996844,58.0239363 C60.2723978,57.3786606 58.6716393,57.8869022 57.9610979,59.1791894 Z" id="Shape"></path>
</g>
<path d="M36.6298462,128.584 C35.9098462,129.688 35.0698462,130.624 34.1338462,131.368 L32.4298462,129.784 C34.0858462,128.392 35.2858462,126.712 36.0298462,124.768 L38.2138462,125.32 C38.0698462,125.704 37.9018462,126.088 37.7578462,126.472 L44.1418462,126.472 L44.1418462,128.584 L36.6298462,128.584 Z M24.9178462,125.872 L27.1738462,125.872 L27.1738462,131.848 L24.9178462,131.848 L24.9178462,125.872 Z M29.5018462,125.128 L31.7338462,125.128 L31.7338462,132.616 L29.5018462,132.616 L29.5018462,125.128 Z M38.7658462,129.04 C40.2058462,129.664 41.5018462,130.408 42.7018462,131.272 L41.2858462,132.88 C40.0618462,131.92 38.7418462,131.08 37.3498462,130.384 L38.7658462,129.04 Z M23.7418462,120.808 L29.0458462,120.808 L29.0458462,119.344 L31.3498462,119.344 L31.3498462,120.808 L37.1578462,120.808 L37.1578462,119.344 L39.4618462,119.344 L39.4618462,120.808 L44.7658462,120.808 L44.7658462,122.944 L39.4618462,122.944 L39.4618462,124.48 L37.1578462,124.48 L37.1578462,122.944 L31.3498462,122.944 L31.3498462,124.456 L29.0458462,124.456 L29.0458462,122.944 L23.7418462,122.944 L23.7418462,120.808 Z M42.6538462,133.336 L42.6538462,138.856 L45.1498462,138.856 L45.1498462,140.896 L23.3578462,140.896 L23.3578462,138.856 L25.8538462,138.856 L25.8538462,133.336 L42.6538462,133.336 Z M28.0378462,138.856 L30.6778462,138.856 L30.6778462,135.4 L28.0378462,135.4 L28.0378462,138.856 Z M32.8378462,138.856 L35.5738462,138.856 L35.5738462,135.4 L32.8378462,135.4 L32.8378462,138.856 Z M37.7578462,138.856 L40.4698462,138.856 L40.4698462,135.4 L37.7578462,135.4 L37.7578462,138.856 Z" id="蓝" fill="#FFFFFF"></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>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
<?xml version="1.0" encoding="UTF-8"?>
<svg width="186px" height="157px" viewBox="0 0 186 157" 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>DW-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(-648.000000, -365.000000)">
<g id="DW-R" transform="translate(648.000000, 365.000000)">
<g id="Group-2">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.870708,142.445864 C185.870708,150.037476 180.321404,156.185031 173.451821,156.185031 L12.6045508,156.185031 C5.75559683,156.185031 0.185664414,150.037476 0.185664414,142.445864 L0.185664414,13.924831 C0.185664414,6.33321945 5.73496745,0.185664414 12.6045508,0.185664414 L173.451821,0.185664414 C180.300775,0.185664414 185.870708,6.33321945 185.870708,13.924831 L185.870708,142.445864 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.29301048 9.48951448 105.416128 9.48951448 105.416128 104.6941 8.29301048 104.6941"></polygon>
<path d="M67.4993291,52.9349873 C69.0465325,58.5255491 65.7458318,64.3017753 60.1758994,65.8489787 C54.5853376,67.3961822 48.8091114,64.1161109 47.261908,58.5255491 C45.7147045,52.9349873 49.0154052,47.1587611 54.605967,45.6115576 C60.1758994,44.0643542 65.9521256,47.3444255 67.4993291,52.9349873 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.708089,10.9129417 L175.49413,10.9129417 L175.49413,105.168576 L111.708089,105.168576 L111.708089,10.9129417 Z M8.29301048,110.986061 L56.8545694,110.986061 L56.8545694,148.57279 L8.29301048,148.57279 L8.29301048,110.986061 Z M64.0954815,110.986061 L175.49413,110.986061 L175.49413,148.57279 L64.0954815,148.57279 L64.0954815,110.986061 Z" id="Shape" fill="#D12821"></path>
</g>
<path d="M70.3138285,123.397714 L72.655565,123.397714 L72.655565,129.362137 L79.9009379,129.362137 L79.9009379,123.397714 L82.2426745,123.397714 L82.2426745,137.688312 L79.9009379,137.688312 L79.9009379,131.363622 L72.655565,131.363622 L72.655565,137.688312 L70.3138285,137.688312 L70.3138285,123.397714 Z M83.510281,123.397714 L93.8179248,123.397714 L93.8179248,125.399199 L85.8520176,125.399199 L85.8520176,129.362137 L93.3375686,129.362137 L93.3375686,131.363622 L85.8520176,131.363622 L85.8520176,135.686827 L94.1581771,135.686827 L94.1581771,137.688312 L83.510281,137.688312 L83.510281,123.397714 Z M98.8883514,123.397714 L101.550325,123.397714 L107.014377,137.688312 L104.512522,137.688312 L103.211557,134.105655 L97.2271195,134.105655 L95.9261548,137.688312 L93.4242995,137.688312 L98.8883514,123.397714 Z M97.927639,132.18423 L102.511038,132.18423 L100.269376,125.919584 L100.189316,125.919584 L97.927639,132.18423 Z M105.57998,123.397714 L108.121865,123.397714 L112.044774,135.046353 L112.104819,135.046353 L116.027728,123.397714 L118.569613,123.397714 L113.485843,137.688312 L110.66375,137.688312 L105.57998,123.397714 Z M117.23529,123.397714 L120.057383,123.397714 L124.060351,129.822479 L128.043305,123.397714 L130.865398,123.397714 L125.221212,132.004096 L125.221212,137.688312 L122.879475,137.688312 L122.879475,132.004096 L117.23529,123.397714 Z M135.962511,123.397714 L145.709739,123.397714 L145.709739,125.399199 L138.304247,125.399199 L138.304247,129.362137 L145.289427,129.362137 L145.289427,131.363622 L138.304247,131.363622 L138.304247,137.688312 L135.962511,137.688312 L135.962511,123.397714 Z M152.421382,123.117506 C154.603,123.117506 156.324277,123.818026 157.585212,125.23908 C158.786102,126.580074 159.386548,128.361395 159.386548,130.563028 C159.386548,132.76466 158.786102,134.525967 157.585212,135.866961 C156.324277,137.268 154.603,137.968519 152.421382,137.968519 C150.21975,137.968519 148.498473,137.247985 147.257553,135.846946 C146.056663,134.485937 145.476232,132.724631 145.476232,130.563028 C145.476232,128.38141 146.056663,126.620104 147.257553,125.259095 C148.498473,123.818026 150.21975,123.117506 152.421382,123.117506 Z M152.421382,125.179035 C150.940284,125.179035 149.799438,125.679406 148.97883,126.680148 C148.198251,127.640861 147.817969,128.921811 147.817969,130.563028 C147.817969,132.18423 148.198251,133.46518 148.97883,134.425892 C149.779423,135.40662 150.940284,135.906991 152.421382,135.906991 C153.902481,135.906991 155.043327,135.426635 155.84392,134.485937 C156.624499,133.545239 157.024796,132.244275 157.024796,130.563028 C157.024796,128.881781 156.624499,127.560801 155.84392,126.600089 C155.043327,125.639377 153.902481,125.179035 152.421382,125.179035 Z M166.25831,123.117506 C168.099675,123.117506 169.540744,123.517803 170.601531,124.338412 C171.622288,125.139006 172.262763,126.319881 172.522956,127.921069 L170.161204,127.921069 C169.961056,127.000386 169.520729,126.319881 168.880254,125.85954 C168.219764,125.399199 167.339111,125.179035 166.25831,125.179035 C164.917315,125.179035 163.856529,125.619362 163.07595,126.540045 C162.215312,127.500757 161.795,128.841751 161.795,130.603058 C161.795,132.284304 162.175282,133.585269 162.935846,134.485937 C163.756455,135.446649 165.037405,135.927006 166.778696,135.927006 C167.4592,135.927006 168.099675,135.846946 168.700121,135.686827 C169.260536,135.526709 169.760907,135.306545 170.241264,135.026338 L170.241264,132.084156 L166.458458,132.084156 L166.458458,130.082672 L172.583,130.082672 L172.583,136.127154 C171.822436,136.727599 170.961798,137.167926 169.981071,137.488163 C168.940299,137.808401 167.799453,137.968519 166.518503,137.968519 C164.236811,137.968519 162.475505,137.247985 161.21457,135.806917 C160.033694,134.465922 159.453264,132.724631 159.453264,130.603058 C159.453264,128.461469 160.033694,126.700163 161.21457,125.319139 C162.45549,123.838041 164.136737,123.117506 166.25831,123.117506 Z" id="HEAVY-FOG" fill="#FFFFFF"></path>
<path d="M124.975436,27.6756957 L140.835473,27.6756957 C141.083933,25.4809647 141.249573,23.1620037 141.290983,20.7602226 L141.290983,17.157551 L145.266345,17.157551 L145.266345,19.8492022 C145.266345,22.5822635 145.100705,25.1910946 144.769425,27.6756957 L161.581892,27.6756957 L161.581892,31.4854174 L145.763265,31.4854174 C148.661967,40.3471614 154.252319,47.1798145 162.451503,52.0247866 L160.008312,55.2133581 C152.057588,50.3269759 146.467236,43.4943228 143.320074,34.7153989 C140.587013,44.1982931 134.99666,51.1551763 126.590427,55.5860482 L124.064416,52.2732468 C132.594879,48.1322449 137.978182,41.1753618 140.172913,31.4854174 L124.975436,31.4854174 L124.975436,27.6756957 Z M157.15102,88.1895362 C157.15102,92.3719481 156.6541,95.0221892 155.74308,96.1816698 C154.790649,97.2997403 153.092839,97.8794805 150.649647,97.8794805 C148.910427,97.8794805 147.502486,97.7966605 146.384416,97.7138404 L145.556215,94.6080891 C147.336846,94.7737291 148.993247,94.8979592 150.484007,94.8979592 C152.057588,94.8565492 152.927199,94.483859 153.175659,93.7384787 C153.382709,92.9516883 153.506939,92.1234879 153.506939,91.2538776 L143.113024,91.2538776 C142.367644,92.4133581 141.456623,93.4486085 140.379963,94.3182189 C138.143822,96.0574397 134.16846,97.4239703 128.536698,98.4178108 L127.087347,95.1050093 C131.808089,94.3596289 135.245121,93.3243785 137.315622,91.9992579 C137.688312,91.7507978 138.019592,91.5023377 138.309462,91.2538776 L129.240668,91.2538776 L129.240668,88.1895362 L140.545603,88.1895362 C140.794063,87.5269759 141.001113,86.8644156 141.166753,86.2018553 L144.852245,86.5745455 C144.769425,87.1542857 144.645195,87.692616 144.479555,88.1895362 L157.15102,88.1895362 Z M127.791317,60.8175139 L158.558961,60.8175139 L158.558961,63.7162152 L145.142115,63.7162152 L145.142115,65.2483859 L160.629462,65.2483859 L160.629462,72.5365492 L156.98538,72.5365492 L156.98538,68.0228571 L145.142115,68.0228571 L145.142115,74.8141002 L141.415213,74.8141002 L141.415213,68.0228571 L129.571948,68.0228571 L129.571948,72.6607792 L125.927866,72.6607792 L125.927866,65.2483859 L141.415213,65.2483859 L141.415213,63.7162152 L127.791317,63.7162152 L127.791317,60.8175139 Z M131.352579,69.2651577 L139.758813,69.2651577 L139.758813,71.2942486 L131.352579,71.2942486 L131.352579,69.2651577 Z M131.311169,72.5365492 L139.717403,72.5365492 L139.717403,74.5656401 L131.311169,74.5656401 L131.311169,72.5365492 Z M146.798516,69.2651577 L155.16334,69.2651577 L155.16334,71.2942486 L146.798516,71.2942486 L146.798516,69.2651577 Z M146.798516,72.5365492 L155.24616,72.5365492 L155.24616,74.5656401 L146.798516,74.5656401 L146.798516,72.5365492 Z M161.126382,87.2785158 C154.542189,86.8230056 148.579147,85.9119852 143.278664,84.5868646 C138.226642,86.0776252 132.346419,87.1542857 125.555176,87.816846 L124.064416,84.7939147 C129.199258,84.3798145 133.79577,83.8000742 137.853952,82.9718738 C136.031911,82.3093135 134.37551,81.6467532 132.801929,80.9427829 C131.642449,81.6881633 130.482968,82.3507236 129.240668,82.9718738 L126.921707,80.1145826 C130.234508,78.789462 133.05039,76.9260111 135.410761,74.6070501 L138.930612,75.3524304 L138.061002,76.3462709 L155.99154,76.3462709 L155.99154,78.7066419 C153.921039,80.1974026 151.477848,81.5639332 148.661967,82.7234137 C152.927199,83.4687941 157.565121,83.9243043 162.617143,84.1727644 L161.126382,87.2785158 Z M143.278664,81.6467532 C145.928905,80.8599629 148.289276,79.9903525 150.359777,79.0379221 L135.286531,79.0379221 L135.203711,79.1207421 C137.688312,80.1145826 140.379963,80.9427829 143.278664,81.6467532 Z" id="大-雾" fill="#FFFFFF"></path>
<path d="M28.7854842,136.434968 L28.7854842,138.695955 C26.3257291,139.615258 23.5429759,140.360638 20.4372245,140.90725 L20.1390724,138.596571 C23.4187458,138.049959 26.3008831,137.329425 28.7854842,136.434968 Z M24.5616623,118.719763 L26.8226494,119.614219 C25.5555028,122.570894 24.2635102,124.980957 22.9466716,126.869254 C23.9405121,126.76987 24.9591985,126.620794 25.977885,126.471718 C26.5244972,125.502724 27.0711095,124.484037 27.6425677,123.390813 L29.7544787,124.185885 C27.4934917,128.360015 25.5803488,131.391228 24.0398961,133.279525 C25.7294249,132.881989 27.4189536,132.360223 29.1333284,131.714226 L29.1333284,133.875829 C26.3008831,134.919362 23.5926679,135.639896 21.0583748,135.98774 L20.4123785,133.826137 C20.8347607,133.627369 21.1826048,133.403755 21.480757,133.130449 C22.3503673,132.260839 23.4435918,130.770078 24.7355844,128.633321 C23.4187458,128.832089 22.0522152,129.006011 20.6608386,129.179933 L20.0396883,127.01833 C20.4372245,126.844408 20.7850686,126.546256 21.0832208,126.099028 C22.4249054,123.887733 23.5678219,121.427978 24.5616623,118.719763 Z M34.922449,122.496356 L30.0029388,122.496356 L30.0029388,120.210523 L42.1526382,120.210523 L42.1526382,122.496356 L37.28282,122.496356 L37.28282,138.323265 L42.7986345,138.323265 L42.7986345,140.609098 L29.3072505,140.609098 L29.3072505,138.323265 L34.922449,138.323265 L34.922449,122.496356 Z" id="红" fill="#FFFFFF"></path>
<g id="dawu" transform="translate(13.458256, 22.430427)" fill="#D12821" fill-rule="nonzero">
<path d="M6.80976316,3.09623214e-15 L72.9045226,3.09623214e-15 C76.9102657,3.09623214e-15 79.7142857,3.71845061 79.7142857,7.90170769 C79.7142857,12.549771 76.5096913,15.8034153 72.9045226,15.8034153 L6.80976316,15.8034153 C3.20459446,16.2682216 9.38846013e-08,12.5497709 0,7.90170769 C0,3.71845072 3.20459437,1.08938983e-07 6.80976316,3.09623214e-15 Z M6.80976316,26.0291546 L72.9045226,26.0291546 C76.9102657,26.0291546 79.7142857,29.7476052 79.7142857,33.9308622 C79.7142857,38.5789255 76.5096913,41.8325698 72.9045226,41.8325698 L6.80976316,41.8325698 C3.20459446,42.2973761 9.38846013e-08,38.5789254 0,34.3956685 C0,29.7476052 3.20459437,26.0291546 6.80976316,26.0291546 Z M6.80976316,52.5231154 L72.9045226,52.5231154 C76.9102657,52.5231154 79.7142857,56.2415661 79.7142857,60.424823 C79.7142857,65.0728864 76.5096913,68.3265306 72.9045226,68.3265306 L6.80976316,68.3265306 C3.20459446,68.3265306 9.38846013e-08,65.0728863 0,60.424823 C-9.38846013e-08,55.7767598 3.20459437,52.5231154 6.80976316,52.5231154 Z" id="Shape"></path>
</g>
</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>DW-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, -365.000000)">
<g id="DW-O" transform="translate(35.000000, 365.000000)">
<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="#EC8D15"></path>
</g>
<path d="M70.3138285,123.142887 L72.655565,123.142887 L72.655565,129.094993 L79.9009379,129.094993 L79.9009379,123.142887 L82.2426745,123.142887 L82.2426745,137.403974 L79.9009379,137.403974 L79.9009379,131.092344 L72.655565,131.092344 L72.655565,137.403974 L70.3138285,137.403974 L70.3138285,123.142887 Z M83.510281,123.142887 L93.8179248,123.142887 L93.8179248,125.140238 L85.8520176,125.140238 L85.8520176,129.094993 L93.3375686,129.094993 L93.3375686,131.092344 L85.8520176,131.092344 L85.8520176,135.406623 L94.1581771,135.406623 L94.1581771,137.403974 L83.510281,137.403974 L83.510281,123.142887 Z M98.8883514,123.142887 L101.550325,123.142887 L107.014377,137.403974 L104.512522,137.403974 L103.211557,133.828715 L97.2271195,133.828715 L95.9261548,137.403974 L93.4242995,137.403974 L98.8883514,123.142887 Z M97.927639,131.911258 L102.511038,131.911258 L100.269376,125.65955 L100.189316,125.65955 L97.927639,131.911258 Z M105.57998,123.142887 L108.121865,123.142887 L112.044774,134.76747 L112.104819,134.76747 L116.027728,123.142887 L118.569613,123.142887 L113.485843,137.403974 L110.66375,137.403974 L105.57998,123.142887 Z M117.23529,123.142887 L120.057383,123.142887 L124.060351,129.554384 L128.043305,123.142887 L130.865398,123.142887 L125.221212,131.731497 L125.221212,137.403974 L122.879475,137.403974 L122.879475,131.731497 L117.23529,123.142887 Z M135.962511,123.142887 L145.709739,123.142887 L145.709739,125.140238 L138.304247,125.140238 L138.304247,129.094993 L145.289427,129.094993 L145.289427,131.092344 L138.304247,131.092344 L138.304247,137.403974 L135.962511,137.403974 L135.962511,123.142887 Z M152.421382,122.863258 C154.603,122.863258 156.324277,123.562331 157.585212,124.98045 C158.786102,126.318675 159.386548,128.096318 159.386548,130.293404 C159.386548,132.49049 158.786102,134.248159 157.585212,135.586384 C156.324277,136.98453 154.603,137.683603 152.421382,137.683603 C150.21975,137.683603 148.498473,136.964556 147.257553,135.566411 C146.056663,134.208212 145.476232,132.450543 145.476232,130.293404 C145.476232,128.116291 146.056663,126.358623 147.257553,125.000424 C148.498473,123.562331 150.21975,122.863258 152.421382,122.863258 Z M152.421382,124.92053 C150.940284,124.92053 149.799438,125.419868 148.97883,126.418543 C148.198251,127.377272 147.817969,128.655576 147.817969,130.293404 C147.817969,131.911258 148.198251,133.189563 148.97883,134.148291 C149.779423,135.126993 150.940284,135.626331 152.421382,135.626331 C153.902481,135.626331 155.043327,135.146967 155.84392,134.208212 C156.624499,133.269457 157.024796,131.971179 157.024796,130.293404 C157.024796,128.615629 156.624499,127.297377 155.84392,126.338649 C155.043327,125.379921 153.902481,124.92053 152.421382,124.92053 Z M166.25831,122.863258 C168.099675,122.863258 169.540744,123.262728 170.601531,124.081642 C171.622288,124.880583 172.262763,126.05902 172.522956,127.656901 L170.161204,127.656901 C169.961056,126.738119 169.520729,126.05902 168.880254,125.599629 C168.219764,125.140238 167.339111,124.92053 166.25831,124.92053 C164.917315,124.92053 163.856529,125.359947 163.07595,126.278728 C162.215312,127.237457 161.795,128.575682 161.795,130.333351 C161.795,132.011126 162.175282,133.309404 162.935846,134.208212 C163.756455,135.16694 165.037405,135.646305 166.778696,135.646305 C167.4592,135.646305 168.099675,135.566411 168.700121,135.406623 C169.260536,135.246834 169.760907,135.027126 170.241264,134.747497 L170.241264,131.811391 L166.458458,131.811391 L166.458458,129.81404 L172.583,129.81404 L172.583,135.84604 C171.822436,136.445245 170.961798,136.884662 169.981071,137.204238 C168.940299,137.523815 167.799453,137.683603 166.518503,137.683603 C164.236811,137.683603 162.475505,136.964556 161.21457,135.526464 C160.033694,134.188238 159.453264,132.450543 159.453264,130.333351 C159.453264,128.196185 160.033694,126.438517 161.21457,125.060344 C162.45549,123.582305 164.136737,122.863258 166.25831,122.863258 Z" id="HEAVY-FOG" fill="#FFFFFF"></path>
<path d="M124.975436,27.618543 L140.835473,27.618543 C141.083933,25.4283444 141.249573,23.1141722 141.290983,20.717351 L141.290983,17.1221192 L145.266345,17.1221192 L145.266345,19.8082119 C145.266345,22.5356291 145.100705,25.1390728 144.769425,27.618543 L161.581892,27.618543 L161.581892,31.4203974 L145.763265,31.4203974 C148.661967,40.2638411 154.252319,47.0823841 162.451503,51.917351 L160.008312,55.0993377 C152.057588,50.2230464 146.467236,43.4045033 143.320074,34.6437086 C140.587013,44.1070199 134.99666,51.0495364 126.590427,55.4712583 L124.064416,52.165298 C132.594879,48.0328477 137.978182,41.0903311 140.172913,31.4203974 L124.975436,31.4203974 L124.975436,27.618543 Z M157.15102,88.0074172 C157.15102,92.1811921 156.6541,94.8259603 155.74308,95.9830464 C154.790649,97.0988079 153.092839,97.677351 150.649647,97.677351 C148.910427,97.677351 147.502486,97.594702 146.384416,97.512053 L145.556215,94.4127152 C147.336846,94.5780132 148.993247,94.7019868 150.484007,94.7019868 C152.057588,94.6606623 152.927199,94.2887417 153.175659,93.5449007 C153.382709,92.7597351 153.506939,91.933245 153.506939,91.0654305 L143.113024,91.0654305 C142.367644,92.2225166 141.456623,93.2556291 140.379963,94.1234437 C138.143822,95.8590728 134.16846,97.2227815 128.536698,98.2145695 L127.087347,94.9086093 C131.808089,94.1647682 135.245121,93.1316556 137.315622,91.8092715 C137.688312,91.5613245 138.019592,91.3133775 138.309462,91.0654305 L129.240668,91.0654305 L129.240668,88.0074172 L140.545603,88.0074172 C140.794063,87.3462252 141.001113,86.6850331 141.166753,86.0238411 L144.852245,86.3957616 C144.769425,86.9743046 144.645195,87.5115232 144.479555,88.0074172 L157.15102,88.0074172 Z M127.791317,60.6919205 L158.558961,60.6919205 L158.558961,63.5846358 L145.142115,63.5846358 L145.142115,65.1136424 L160.629462,65.1136424 L160.629462,72.386755 L156.98538,72.386755 L156.98538,67.8823841 L145.142115,67.8823841 L145.142115,74.6596026 L141.415213,74.6596026 L141.415213,67.8823841 L129.571948,67.8823841 L129.571948,72.5107285 L125.927866,72.5107285 L125.927866,65.1136424 L141.415213,65.1136424 L141.415213,63.5846358 L127.791317,63.5846358 L127.791317,60.6919205 Z M131.352579,69.1221192 L139.758813,69.1221192 L139.758813,71.1470199 L131.352579,71.1470199 L131.352579,69.1221192 Z M131.311169,72.386755 L139.717403,72.386755 L139.717403,74.4116556 L131.311169,74.4116556 L131.311169,72.386755 Z M146.798516,69.1221192 L155.16334,69.1221192 L155.16334,71.1470199 L146.798516,71.1470199 L146.798516,69.1221192 Z M146.798516,72.386755 L155.24616,72.386755 L155.24616,74.4116556 L146.798516,74.4116556 L146.798516,72.386755 Z M161.126382,87.0982781 C154.542189,86.6437086 148.579147,85.7345695 143.278664,84.4121854 C138.226642,85.8998675 132.346419,86.9743046 125.555176,87.6354967 L124.064416,84.6188079 C129.199258,84.2055629 133.79577,83.6270199 137.853952,82.8005298 C136.031911,82.1393377 134.37551,81.4781457 132.801929,80.7756291 C131.642449,81.5194702 130.482968,82.1806623 129.240668,82.8005298 L126.921707,79.9491391 C130.234508,78.626755 133.05039,76.7671523 135.410761,74.4529801 L138.930612,75.1968212 L138.061002,76.1886093 L155.99154,76.1886093 L155.99154,78.544106 C153.921039,80.0317881 151.477848,81.3954967 148.661967,82.5525828 C152.927199,83.2964238 157.565121,83.7509934 162.617143,83.9989404 L161.126382,87.0982781 Z M143.278664,81.4781457 C145.928905,80.6929801 148.289276,79.8251656 150.359777,78.874702 L135.286531,78.874702 L135.203711,78.957351 C137.688312,79.9491391 140.379963,80.7756291 143.278664,81.4781457 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 id="dawu" transform="translate(13.458256, 22.384106)" fill="#EC8D15" fill-rule="nonzero">
<path d="M6.80976316,3.08983816e-15 L72.9045226,3.08983816e-15 C76.9102657,3.08983816e-15 79.7142857,3.71077169 79.7142857,7.88538999 C79.7142857,12.5238547 76.5096913,15.7707799 72.9045226,15.7707799 L6.80976316,15.7707799 C3.20459446,16.2346264 9.38846013e-08,12.5238546 0,7.88538999 C0,3.7107718 3.20459437,1.08714015e-07 6.80976316,3.08983816e-15 Z M6.80976316,25.9754022 L72.9045226,25.9754022 C76.9102657,25.9754022 79.7142857,29.6861738 79.7142857,33.860792 C79.7142857,38.4992567 76.5096913,41.7461819 72.9045226,41.7461819 L6.80976316,41.7461819 C3.20459446,42.2100284 9.38846013e-08,38.4992566 0,34.3246385 C0,29.6861738 3.20459437,25.9754022 6.80976316,25.9754022 Z M6.80976316,52.4146507 L72.9045226,52.4146507 C76.9102657,52.4146507 79.7142857,56.1254224 79.7142857,60.3000406 C79.7142857,64.9385053 76.5096913,68.1854305 72.9045226,68.1854305 L6.80976316,68.1854305 C3.20459446,68.1854305 9.38846013e-08,64.9385052 0,60.3000406 C-9.38846013e-08,55.661576 3.20459437,52.4146507 6.80976316,52.4146507 Z" id="Shape"></path>
</g>
</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>DW-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, -362.000000)">
<g id="DW-Y" transform="translate(354.000000, 362.000000)">
<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="#FFFF00"></path>
</g>
<path d="M70.3138285,123.142887 L72.655565,123.142887 L72.655565,129.094993 L79.9009379,129.094993 L79.9009379,123.142887 L82.2426745,123.142887 L82.2426745,137.403974 L79.9009379,137.403974 L79.9009379,131.092344 L72.655565,131.092344 L72.655565,137.403974 L70.3138285,137.403974 L70.3138285,123.142887 Z M83.510281,123.142887 L93.8179248,123.142887 L93.8179248,125.140238 L85.8520176,125.140238 L85.8520176,129.094993 L93.3375686,129.094993 L93.3375686,131.092344 L85.8520176,131.092344 L85.8520176,135.406623 L94.1581771,135.406623 L94.1581771,137.403974 L83.510281,137.403974 L83.510281,123.142887 Z M98.8883514,123.142887 L101.550325,123.142887 L107.014377,137.403974 L104.512522,137.403974 L103.211557,133.828715 L97.2271195,133.828715 L95.9261548,137.403974 L93.4242995,137.403974 L98.8883514,123.142887 Z M97.927639,131.911258 L102.511038,131.911258 L100.269376,125.65955 L100.189316,125.65955 L97.927639,131.911258 Z M105.57998,123.142887 L108.121865,123.142887 L112.044774,134.76747 L112.104819,134.76747 L116.027728,123.142887 L118.569613,123.142887 L113.485843,137.403974 L110.66375,137.403974 L105.57998,123.142887 Z M117.23529,123.142887 L120.057383,123.142887 L124.060351,129.554384 L128.043305,123.142887 L130.865398,123.142887 L125.221212,131.731497 L125.221212,137.403974 L122.879475,137.403974 L122.879475,131.731497 L117.23529,123.142887 Z M135.962511,123.142887 L145.709739,123.142887 L145.709739,125.140238 L138.304247,125.140238 L138.304247,129.094993 L145.289427,129.094993 L145.289427,131.092344 L138.304247,131.092344 L138.304247,137.403974 L135.962511,137.403974 L135.962511,123.142887 Z M152.421382,122.863258 C154.603,122.863258 156.324277,123.562331 157.585212,124.98045 C158.786102,126.318675 159.386548,128.096318 159.386548,130.293404 C159.386548,132.49049 158.786102,134.248159 157.585212,135.586384 C156.324277,136.98453 154.603,137.683603 152.421382,137.683603 C150.21975,137.683603 148.498473,136.964556 147.257553,135.566411 C146.056663,134.208212 145.476232,132.450543 145.476232,130.293404 C145.476232,128.116291 146.056663,126.358623 147.257553,125.000424 C148.498473,123.562331 150.21975,122.863258 152.421382,122.863258 Z M152.421382,124.92053 C150.940284,124.92053 149.799438,125.419868 148.97883,126.418543 C148.198251,127.377272 147.817969,128.655576 147.817969,130.293404 C147.817969,131.911258 148.198251,133.189563 148.97883,134.148291 C149.779423,135.126993 150.940284,135.626331 152.421382,135.626331 C153.902481,135.626331 155.043327,135.146967 155.84392,134.208212 C156.624499,133.269457 157.024796,131.971179 157.024796,130.293404 C157.024796,128.615629 156.624499,127.297377 155.84392,126.338649 C155.043327,125.379921 153.902481,124.92053 152.421382,124.92053 Z M166.25831,122.863258 C168.099675,122.863258 169.540744,123.262728 170.601531,124.081642 C171.622288,124.880583 172.262763,126.05902 172.522956,127.656901 L170.161204,127.656901 C169.961056,126.738119 169.520729,126.05902 168.880254,125.599629 C168.219764,125.140238 167.339111,124.92053 166.25831,124.92053 C164.917315,124.92053 163.856529,125.359947 163.07595,126.278728 C162.215312,127.237457 161.795,128.575682 161.795,130.333351 C161.795,132.011126 162.175282,133.309404 162.935846,134.208212 C163.756455,135.16694 165.037405,135.646305 166.778696,135.646305 C167.4592,135.646305 168.099675,135.566411 168.700121,135.406623 C169.260536,135.246834 169.760907,135.027126 170.241264,134.747497 L170.241264,131.811391 L166.458458,131.811391 L166.458458,129.81404 L172.583,129.81404 L172.583,135.84604 C171.822436,136.445245 170.961798,136.884662 169.981071,137.204238 C168.940299,137.523815 167.799453,137.683603 166.518503,137.683603 C164.236811,137.683603 162.475505,136.964556 161.21457,135.526464 C160.033694,134.188238 159.453264,132.450543 159.453264,130.333351 C159.453264,128.196185 160.033694,126.438517 161.21457,125.060344 C162.45549,123.582305 164.136737,122.863258 166.25831,122.863258 Z" id="HEAVY-FOG" fill="#444444"></path>
<path d="M124.975436,27.618543 L140.835473,27.618543 C141.083933,25.4283444 141.249573,23.1141722 141.290983,20.717351 L141.290983,17.1221192 L145.266345,17.1221192 L145.266345,19.8082119 C145.266345,22.5356291 145.100705,25.1390728 144.769425,27.618543 L161.581892,27.618543 L161.581892,31.4203974 L145.763265,31.4203974 C148.661967,40.2638411 154.252319,47.0823841 162.451503,51.917351 L160.008312,55.0993377 C152.057588,50.2230464 146.467236,43.4045033 143.320074,34.6437086 C140.587013,44.1070199 134.99666,51.0495364 126.590427,55.4712583 L124.064416,52.165298 C132.594879,48.0328477 137.978182,41.0903311 140.172913,31.4203974 L124.975436,31.4203974 L124.975436,27.618543 Z M157.15102,88.0074172 C157.15102,92.1811921 156.6541,94.8259603 155.74308,95.9830464 C154.790649,97.0988079 153.092839,97.677351 150.649647,97.677351 C148.910427,97.677351 147.502486,97.594702 146.384416,97.512053 L145.556215,94.4127152 C147.336846,94.5780132 148.993247,94.7019868 150.484007,94.7019868 C152.057588,94.6606623 152.927199,94.2887417 153.175659,93.5449007 C153.382709,92.7597351 153.506939,91.933245 153.506939,91.0654305 L143.113024,91.0654305 C142.367644,92.2225166 141.456623,93.2556291 140.379963,94.1234437 C138.143822,95.8590728 134.16846,97.2227815 128.536698,98.2145695 L127.087347,94.9086093 C131.808089,94.1647682 135.245121,93.1316556 137.315622,91.8092715 C137.688312,91.5613245 138.019592,91.3133775 138.309462,91.0654305 L129.240668,91.0654305 L129.240668,88.0074172 L140.545603,88.0074172 C140.794063,87.3462252 141.001113,86.6850331 141.166753,86.0238411 L144.852245,86.3957616 C144.769425,86.9743046 144.645195,87.5115232 144.479555,88.0074172 L157.15102,88.0074172 Z M127.791317,60.6919205 L158.558961,60.6919205 L158.558961,63.5846358 L145.142115,63.5846358 L145.142115,65.1136424 L160.629462,65.1136424 L160.629462,72.386755 L156.98538,72.386755 L156.98538,67.8823841 L145.142115,67.8823841 L145.142115,74.6596026 L141.415213,74.6596026 L141.415213,67.8823841 L129.571948,67.8823841 L129.571948,72.5107285 L125.927866,72.5107285 L125.927866,65.1136424 L141.415213,65.1136424 L141.415213,63.5846358 L127.791317,63.5846358 L127.791317,60.6919205 Z M131.352579,69.1221192 L139.758813,69.1221192 L139.758813,71.1470199 L131.352579,71.1470199 L131.352579,69.1221192 Z M131.311169,72.386755 L139.717403,72.386755 L139.717403,74.4116556 L131.311169,74.4116556 L131.311169,72.386755 Z M146.798516,69.1221192 L155.16334,69.1221192 L155.16334,71.1470199 L146.798516,71.1470199 L146.798516,69.1221192 Z M146.798516,72.386755 L155.24616,72.386755 L155.24616,74.4116556 L146.798516,74.4116556 L146.798516,72.386755 Z M161.126382,87.0982781 C154.542189,86.6437086 148.579147,85.7345695 143.278664,84.4121854 C138.226642,85.8998675 132.346419,86.9743046 125.555176,87.6354967 L124.064416,84.6188079 C129.199258,84.2055629 133.79577,83.6270199 137.853952,82.8005298 C136.031911,82.1393377 134.37551,81.4781457 132.801929,80.7756291 C131.642449,81.5194702 130.482968,82.1806623 129.240668,82.8005298 L126.921707,79.9491391 C130.234508,78.626755 133.05039,76.7671523 135.410761,74.4529801 L138.930612,75.1968212 L138.061002,76.1886093 L155.99154,76.1886093 L155.99154,78.544106 C153.921039,80.0317881 151.477848,81.3954967 148.661967,82.5525828 C152.927199,83.2964238 157.565121,83.7509934 162.617143,83.9989404 L161.126382,87.0982781 Z M143.278664,81.4781457 C145.928905,80.6929801 148.289276,79.8251656 150.359777,78.874702 L135.286531,78.874702 L135.203711,78.957351 C137.688312,79.9491391 140.379963,80.7756291 143.278664,81.4781457 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 id="dawu" transform="translate(13.458256, 22.384106)" fill="#FFFF00" fill-rule="nonzero">
<path d="M6.80976316,3.08983816e-15 L72.9045226,3.08983816e-15 C76.9102657,3.08983816e-15 79.7142857,3.71077169 79.7142857,7.88538999 C79.7142857,12.5238547 76.5096913,15.7707799 72.9045226,15.7707799 L6.80976316,15.7707799 C3.20459446,16.2346264 9.38846013e-08,12.5238546 0,7.88538999 C0,3.7107718 3.20459437,1.08714015e-07 6.80976316,3.08983816e-15 Z M6.80976316,25.9754022 L72.9045226,25.9754022 C76.9102657,25.9754022 79.7142857,29.6861738 79.7142857,33.860792 C79.7142857,38.4992567 76.5096913,41.7461819 72.9045226,41.7461819 L6.80976316,41.7461819 C3.20459446,42.2100284 9.38846013e-08,38.4992566 0,34.3246385 C0,29.6861738 3.20459437,25.9754022 6.80976316,25.9754022 Z M6.80976316,52.4146507 L72.9045226,52.4146507 C76.9102657,52.4146507 79.7142857,56.1254224 79.7142857,60.3000406 C79.7142857,64.9385053 76.5096913,68.1854305 72.9045226,68.1854305 L6.80976316,68.1854305 C3.20459446,68.1854305 9.38846013e-08,64.9385052 0,60.3000406 C-9.38846013e-08,55.661576 3.20459437,52.4146507 6.80976316,52.4146507 Z" id="Shape"></path>
</g>
</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 53 (72520) - https://sketchapp.com -->
<title>Group 7 Copy 2</title>
<desc>Created with Sketch.</desc>
<g id="图标" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.14" transform="translate(-1366.000000, -361.000000)">
<g id="Group-7-Copy-2" transform="translate(1366.000000, 361.000000)">
<g id="DW-Y">
<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="#3265FE"></path>
</g>
<path d="M70.3138285,123.142887 L72.655565,123.142887 L72.655565,129.094993 L79.9009379,129.094993 L79.9009379,123.142887 L82.2426745,123.142887 L82.2426745,137.403974 L79.9009379,137.403974 L79.9009379,131.092344 L72.655565,131.092344 L72.655565,137.403974 L70.3138285,137.403974 L70.3138285,123.142887 Z M83.510281,123.142887 L93.8179248,123.142887 L93.8179248,125.140238 L85.8520176,125.140238 L85.8520176,129.094993 L93.3375686,129.094993 L93.3375686,131.092344 L85.8520176,131.092344 L85.8520176,135.406623 L94.1581771,135.406623 L94.1581771,137.403974 L83.510281,137.403974 L83.510281,123.142887 Z M98.8883514,123.142887 L101.550325,123.142887 L107.014377,137.403974 L104.512522,137.403974 L103.211557,133.828715 L97.2271195,133.828715 L95.9261548,137.403974 L93.4242995,137.403974 L98.8883514,123.142887 Z M97.927639,131.911258 L102.511038,131.911258 L100.269376,125.65955 L100.189316,125.65955 L97.927639,131.911258 Z M105.57998,123.142887 L108.121865,123.142887 L112.044774,134.76747 L112.104819,134.76747 L116.027728,123.142887 L118.569613,123.142887 L113.485843,137.403974 L110.66375,137.403974 L105.57998,123.142887 Z M117.23529,123.142887 L120.057383,123.142887 L124.060351,129.554384 L128.043305,123.142887 L130.865398,123.142887 L125.221212,131.731497 L125.221212,137.403974 L122.879475,137.403974 L122.879475,131.731497 L117.23529,123.142887 Z M135.962511,123.142887 L145.709739,123.142887 L145.709739,125.140238 L138.304247,125.140238 L138.304247,129.094993 L145.289427,129.094993 L145.289427,131.092344 L138.304247,131.092344 L138.304247,137.403974 L135.962511,137.403974 L135.962511,123.142887 Z M152.421382,122.863258 C154.603,122.863258 156.324277,123.562331 157.585212,124.98045 C158.786102,126.318675 159.386548,128.096318 159.386548,130.293404 C159.386548,132.49049 158.786102,134.248159 157.585212,135.586384 C156.324277,136.98453 154.603,137.683603 152.421382,137.683603 C150.21975,137.683603 148.498473,136.964556 147.257553,135.566411 C146.056663,134.208212 145.476232,132.450543 145.476232,130.293404 C145.476232,128.116291 146.056663,126.358623 147.257553,125.000424 C148.498473,123.562331 150.21975,122.863258 152.421382,122.863258 Z M152.421382,124.92053 C150.940284,124.92053 149.799438,125.419868 148.97883,126.418543 C148.198251,127.377272 147.817969,128.655576 147.817969,130.293404 C147.817969,131.911258 148.198251,133.189563 148.97883,134.148291 C149.779423,135.126993 150.940284,135.626331 152.421382,135.626331 C153.902481,135.626331 155.043327,135.146967 155.84392,134.208212 C156.624499,133.269457 157.024796,131.971179 157.024796,130.293404 C157.024796,128.615629 156.624499,127.297377 155.84392,126.338649 C155.043327,125.379921 153.902481,124.92053 152.421382,124.92053 Z M166.25831,122.863258 C168.099675,122.863258 169.540744,123.262728 170.601531,124.081642 C171.622288,124.880583 172.262763,126.05902 172.522956,127.656901 L170.161204,127.656901 C169.961056,126.738119 169.520729,126.05902 168.880254,125.599629 C168.219764,125.140238 167.339111,124.92053 166.25831,124.92053 C164.917315,124.92053 163.856529,125.359947 163.07595,126.278728 C162.215312,127.237457 161.795,128.575682 161.795,130.333351 C161.795,132.011126 162.175282,133.309404 162.935846,134.208212 C163.756455,135.16694 165.037405,135.646305 166.778696,135.646305 C167.4592,135.646305 168.099675,135.566411 168.700121,135.406623 C169.260536,135.246834 169.760907,135.027126 170.241264,134.747497 L170.241264,131.811391 L166.458458,131.811391 L166.458458,129.81404 L172.583,129.81404 L172.583,135.84604 C171.822436,136.445245 170.961798,136.884662 169.981071,137.204238 C168.940299,137.523815 167.799453,137.683603 166.518503,137.683603 C164.236811,137.683603 162.475505,136.964556 161.21457,135.526464 C160.033694,134.188238 159.453264,132.450543 159.453264,130.333351 C159.453264,128.196185 160.033694,126.438517 161.21457,125.060344 C162.45549,123.582305 164.136737,122.863258 166.25831,122.863258 Z" id="HEAVY-FOG" fill="#FFFFFF"></path>
<path d="M124.975436,27.618543 L140.835473,27.618543 C141.083933,25.4283444 141.249573,23.1141722 141.290983,20.717351 L141.290983,17.1221192 L145.266345,17.1221192 L145.266345,19.8082119 C145.266345,22.5356291 145.100705,25.1390728 144.769425,27.618543 L161.581892,27.618543 L161.581892,31.4203974 L145.763265,31.4203974 C148.661967,40.2638411 154.252319,47.0823841 162.451503,51.917351 L160.008312,55.0993377 C152.057588,50.2230464 146.467236,43.4045033 143.320074,34.6437086 C140.587013,44.1070199 134.99666,51.0495364 126.590427,55.4712583 L124.064416,52.165298 C132.594879,48.0328477 137.978182,41.0903311 140.172913,31.4203974 L124.975436,31.4203974 L124.975436,27.618543 Z M157.15102,88.0074172 C157.15102,92.1811921 156.6541,94.8259603 155.74308,95.9830464 C154.790649,97.0988079 153.092839,97.677351 150.649647,97.677351 C148.910427,97.677351 147.502486,97.594702 146.384416,97.512053 L145.556215,94.4127152 C147.336846,94.5780132 148.993247,94.7019868 150.484007,94.7019868 C152.057588,94.6606623 152.927199,94.2887417 153.175659,93.5449007 C153.382709,92.7597351 153.506939,91.933245 153.506939,91.0654305 L143.113024,91.0654305 C142.367644,92.2225166 141.456623,93.2556291 140.379963,94.1234437 C138.143822,95.8590728 134.16846,97.2227815 128.536698,98.2145695 L127.087347,94.9086093 C131.808089,94.1647682 135.245121,93.1316556 137.315622,91.8092715 C137.688312,91.5613245 138.019592,91.3133775 138.309462,91.0654305 L129.240668,91.0654305 L129.240668,88.0074172 L140.545603,88.0074172 C140.794063,87.3462252 141.001113,86.6850331 141.166753,86.0238411 L144.852245,86.3957616 C144.769425,86.9743046 144.645195,87.5115232 144.479555,88.0074172 L157.15102,88.0074172 Z M127.791317,60.6919205 L158.558961,60.6919205 L158.558961,63.5846358 L145.142115,63.5846358 L145.142115,65.1136424 L160.629462,65.1136424 L160.629462,72.386755 L156.98538,72.386755 L156.98538,67.8823841 L145.142115,67.8823841 L145.142115,74.6596026 L141.415213,74.6596026 L141.415213,67.8823841 L129.571948,67.8823841 L129.571948,72.5107285 L125.927866,72.5107285 L125.927866,65.1136424 L141.415213,65.1136424 L141.415213,63.5846358 L127.791317,63.5846358 L127.791317,60.6919205 Z M131.352579,69.1221192 L139.758813,69.1221192 L139.758813,71.1470199 L131.352579,71.1470199 L131.352579,69.1221192 Z M131.311169,72.386755 L139.717403,72.386755 L139.717403,74.4116556 L131.311169,74.4116556 L131.311169,72.386755 Z M146.798516,69.1221192 L155.16334,69.1221192 L155.16334,71.1470199 L146.798516,71.1470199 L146.798516,69.1221192 Z M146.798516,72.386755 L155.24616,72.386755 L155.24616,74.4116556 L146.798516,74.4116556 L146.798516,72.386755 Z M161.126382,87.0982781 C154.542189,86.6437086 148.579147,85.7345695 143.278664,84.4121854 C138.226642,85.8998675 132.346419,86.9743046 125.555176,87.6354967 L124.064416,84.6188079 C129.199258,84.2055629 133.79577,83.6270199 137.853952,82.8005298 C136.031911,82.1393377 134.37551,81.4781457 132.801929,80.7756291 C131.642449,81.5194702 130.482968,82.1806623 129.240668,82.8005298 L126.921707,79.9491391 C130.234508,78.626755 133.05039,76.7671523 135.410761,74.4529801 L138.930612,75.1968212 L138.061002,76.1886093 L155.99154,76.1886093 L155.99154,78.544106 C153.921039,80.0317881 151.477848,81.3954967 148.661967,82.5525828 C152.927199,83.2964238 157.565121,83.7509934 162.617143,83.9989404 L161.126382,87.0982781 Z M143.278664,81.4781457 C145.928905,80.6929801 148.289276,79.8251656 150.359777,78.874702 L135.286531,78.874702 L135.203711,78.957351 C137.688312,79.9491391 140.379963,80.7756291 143.278664,81.4781457 Z" id="大-雾" fill="#FFFFFF"></path>
<g id="dawu" transform="translate(13.458256, 22.384106)">
<path d="M20.2815881,106.161854 C19.5362078,107.302411 18.6665974,108.269404 17.697603,109.03804 L15.9335362,107.401589 C17.6479109,105.963497 18.8902115,104.227868 19.6604378,102.219497 L21.9214249,102.789775 C21.7723488,103.18649 21.5984267,103.583205 21.4493506,103.979921 L28.0583896,103.979921 L28.0583896,106.161854 L20.2815881,106.161854 Z M8.15673469,103.360053 L10.4922597,103.360053 L10.4922597,109.533934 L8.15673469,109.533934 L8.15673469,103.360053 Z M12.9023228,102.591417 L15.2130019,102.591417 L15.2130019,110.327364 L12.9023228,110.327364 L12.9023228,102.591417 Z M22.4928831,106.632954 C23.9836438,107.277616 25.3253284,108.046252 26.5676289,108.938861 L25.1017143,110.600106 C23.8345677,109.608318 22.4680371,108.740503 21.0269685,108.021457 L22.4928831,106.632954 Z M6.93928015,98.1283709 L12.4302486,98.1283709 L12.4302486,96.615894 L14.8154657,96.615894 L14.8154657,98.1283709 L20.8282004,98.1283709 L20.8282004,96.615894 L23.2134174,96.615894 L23.2134174,98.1283709 L28.7043859,98.1283709 L28.7043859,100.335099 L23.2134174,100.335099 L23.2134174,101.92196 L20.8282004,101.92196 L20.8282004,100.335099 L14.8154657,100.335099 L14.8154657,101.897166 L12.4302486,101.897166 L12.4302486,100.335099 L6.93928015,100.335099 L6.93928015,98.1283709 Z M26.5179369,111.071205 L26.5179369,116.773987 L29.1019221,116.773987 L29.1019221,118.881536 L6.54174397,118.881536 L6.54174397,116.773987 L9.12572913,116.773987 L9.12572913,111.071205 L26.5179369,111.071205 Z M11.3867161,116.773987 L14.1197774,116.773987 L14.1197774,113.20355 L11.3867161,113.20355 L11.3867161,116.773987 Z M16.3559184,116.773987 L19.1883636,116.773987 L19.1883636,113.20355 L16.3559184,113.20355 L16.3559184,116.773987 Z M21.4493506,116.773987 L24.2569499,116.773987 L24.2569499,113.20355 L21.4493506,113.20355 L21.4493506,116.773987 Z" id="蓝" fill="#FFFFFF"></path>
<path d="M6.80976316,3.08983816e-15 L72.9045226,3.08983816e-15 C76.9102657,3.08983816e-15 79.7142857,3.71077169 79.7142857,7.88538999 C79.7142857,12.5238547 76.5096913,15.7707799 72.9045226,15.7707799 L6.80976316,15.7707799 C3.20459446,16.2346264 9.38846013e-08,12.5238546 0,7.88538999 C0,3.7107718 3.20459437,1.08714015e-07 6.80976316,3.08983816e-15 Z M6.80976316,25.9754022 L72.9045226,25.9754022 C76.9102657,25.9754022 79.7142857,29.6861738 79.7142857,33.860792 C79.7142857,38.4992567 76.5096913,41.7461819 72.9045226,41.7461819 L6.80976316,41.7461819 C3.20459446,42.2100284 9.38846013e-08,38.4992566 0,34.3246385 C0,29.6861738 3.20459437,25.9754022 6.80976316,25.9754022 Z M6.80976316,52.4146507 L72.9045226,52.4146507 C76.9102657,52.4146507 79.7142857,56.1254224 79.7142857,60.3000406 C79.7142857,64.9385053 76.5096913,68.1854305 72.9045226,68.1854305 L6.80976316,68.1854305 C3.20459446,68.1854305 9.38846013e-08,64.9385052 0,60.3000406 C-9.38846013e-08,55.661576 3.20459437,52.4146507 6.80976316,52.4146507 Z" id="Shape" fill="#3265FE" fill-rule="nonzero"></path>
</g>
</g>
</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>DWYXBD-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(-54.000000, -2810.000000)">
<g id="DWYXBD-O" transform="translate(54.000000, 2810.000000)">
<g>
<g id="Group-8-Copy-3">
<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="M78.638891,123.142887 L88.3861192,123.142887 L88.3861192,125.140238 L80.9806275,125.140238 L80.9806275,129.094993 L87.9658075,129.094993 L87.9658075,131.092344 L80.9806275,131.092344 L80.9806275,137.403974 L78.638891,137.403974 L78.638891,123.142887 Z M88.7530579,123.142887 L95.1177777,123.142887 C96.5788612,123.142887 97.7397221,123.462464 98.5803454,124.121589 C99.4609985,124.840636 99.9213399,125.879258 99.9213399,127.237457 C99.9213399,127.976477 99.7211914,128.635603 99.3208946,129.214834 C98.8805681,129.853987 98.260108,130.27343 97.4995439,130.473166 L97.4995439,130.513113 C98.7404642,130.792742 99.4409836,131.611656 99.6011024,133.009801 L99.8412805,135.306755 C99.9213399,136.185589 100.221562,136.884662 100.701919,137.403974 L98.1600337,137.403974 C97.8197814,136.964556 97.619633,136.345377 97.5395736,135.546437 L97.35944,133.788768 C97.2793807,133.009801 97.0392026,132.450543 96.6389057,132.110993 C96.218594,131.75147 95.5981339,131.591682 94.7975402,131.591682 L91.0947944,131.591682 L91.0947944,137.403974 L88.7530579,137.403974 L88.7530579,123.142887 Z M91.0947944,125.140238 L91.0947944,129.594331 L94.7975402,129.594331 C95.718223,129.594331 96.4187425,129.394596 96.8990987,129.015099 C97.3394252,128.615629 97.5595885,128.056371 97.5595885,127.337325 C97.5595885,126.558358 97.3394252,125.999099 96.8990987,125.65955 C96.4587721,125.300026 95.7582527,125.140238 94.7975402,125.140238 L91.0947944,125.140238 Z M101.168932,123.142887 L111.476575,123.142887 L111.476575,125.140238 L103.510668,125.140238 L103.510668,129.094993 L110.996219,129.094993 L110.996219,131.092344 L103.510668,131.092344 L103.510668,135.406623 L111.816828,135.406623 L111.816828,137.403974 L101.168932,137.403974 L101.168932,123.142887 Z M112.483989,123.142887 L122.791633,123.142887 L122.791633,125.140238 L114.825726,125.140238 L114.825726,129.094993 L122.311277,129.094993 L122.311277,131.092344 L114.825726,131.092344 L114.825726,135.406623 L123.131885,135.406623 L123.131885,137.403974 L112.483989,137.403974 L112.483989,123.142887 Z M123.498824,123.142887 L134.206764,123.142887 L134.206764,125.000424 L125.960649,135.406623 L134.687121,135.406623 L134.687121,137.403974 L122.898378,137.403974 L122.898378,135.566411 L131.164508,125.140238 L123.498824,125.140238 L123.498824,123.142887 Z M135.054059,123.142887 L137.395796,123.142887 L137.395796,137.403974 L135.054059,137.403974 L135.054059,123.142887 Z M138.663402,123.142887 L141.005139,123.142887 L148.070378,133.429245 L148.150438,133.429245 L148.150438,123.142887 L150.512189,123.142887 L150.512189,137.403974 L148.230497,137.403974 L141.085198,126.977801 L141.005139,126.977801 L141.005139,137.403974 L138.663402,137.403974 L138.663402,123.142887 Z M157.984397,122.863258 C159.825762,122.863258 161.266831,123.262728 162.327617,124.081642 C163.348374,124.880583 163.988849,126.05902 164.249042,127.656901 L161.887291,127.656901 C161.687143,126.738119 161.246816,126.05902 160.606341,125.599629 C159.945851,125.140238 159.065198,124.92053 157.984397,124.92053 C156.643402,124.92053 155.582616,125.359947 154.802037,126.278728 C153.941399,127.237457 153.521087,128.575682 153.521087,130.333351 C153.521087,132.011126 153.901369,133.309404 154.661933,134.208212 C155.482541,135.16694 156.763491,135.646305 158.504783,135.646305 C159.185287,135.646305 159.825762,135.566411 160.426207,135.406623 C160.986623,135.246834 161.486994,135.027126 161.96735,134.747497 L161.96735,131.811391 L158.184545,131.811391 L158.184545,129.81404 L164.309087,129.81404 L164.309087,135.84604 C163.548523,136.445245 162.687885,136.884662 161.707157,137.204238 C160.666386,137.523815 159.52554,137.683603 158.24459,137.683603 C155.962898,137.683603 154.201591,136.964556 152.940656,135.526464 C151.759781,134.188238 151.17935,132.450543 151.17935,130.333351 C151.17935,128.196185 151.759781,126.438517 152.940656,125.060344 C154.181577,123.582305 155.862823,122.863258 157.984397,122.863258 Z" id="FREEZING" 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>
<path d="M127.41786,28.4037086 L127.41786,37.3298013 C128.108027,37.026755 128.770588,36.7237086 129.433148,36.3931126 L129.874855,38.6521854 C128.328881,39.2582781 126.534447,39.9194702 124.491552,40.5806623 L123.828992,38.3491391 C124.519159,38.1011921 124.878046,37.6603974 124.878046,36.9992053 L124.878046,19.2572185 C130.675448,18.3756291 135.23055,17.4113907 138.598565,16.309404 L140.034113,18.4031788 C138.681385,18.8715232 137.080198,19.3123179 135.258157,19.7531126 C135.285764,22.1223841 135.368584,24.1610596 135.479011,25.8966887 L141.083166,25.8966887 L141.083166,28.4037086 L135.699864,28.4037086 C135.810291,29.450596 135.920717,30.3597351 136.086357,31.1035762 C136.528064,33.5003974 136.997378,35.2360265 137.549511,36.3380132 C138.101645,37.4124503 138.488139,37.9634437 138.764205,37.9634437 C139.012665,37.9634437 139.261126,36.5308609 139.509586,33.7207947 L141.662907,34.9054305 C141.110773,38.9827815 140.282573,41.0490066 139.205912,41.0490066 C138.294892,41.0490066 137.328658,40.3051656 136.334818,38.8450331 C135.31337,37.3849007 134.457563,35.1258278 133.795003,32.0953642 C133.546543,30.9933775 133.353296,29.7811921 133.187656,28.4037086 L127.41786,28.4037086 Z M132.745949,20.304106 C131.117155,20.634702 129.350328,20.9377483 127.41786,21.2407947 L127.41786,25.8966887 L132.966803,25.8966887 C132.856376,24.1886093 132.773556,22.3152318 132.745949,20.304106 Z M131.862536,35.0431788 C133.353296,36.9165563 134.512777,38.5695364 135.340977,40.0021192 L133.380903,41.3796026 C132.525096,39.8368212 131.420829,38.1562914 130.068101,36.3104636 L131.862536,35.0431788 Z M122.117378,15.8961589 L124.491552,16.9981457 C123.828992,19.0368212 122.973185,20.965298 121.924131,22.8386755 L121.924131,41.4622517 L119.384317,41.4622517 L119.384317,26.6680795 C118.583723,27.6874172 117.727916,28.6792053 116.789289,29.6709934 L115.961088,26.9160265 C118.749363,23.7753642 120.792257,20.0837086 122.117378,15.8961589 Z M152.671837,16.9154967 L166.088683,16.9154967 L166.088683,27.8802649 L152.671837,27.8802649 L152.671837,16.9154967 Z M163.576475,25.5660927 L163.576475,23.5549669 L155.211651,23.5549669 L155.211651,25.5660927 L163.576475,25.5660927 Z M155.211651,21.295894 L163.576475,21.295894 L163.576475,19.2572185 L155.211651,19.2572185 L155.211651,21.295894 Z M167.35859,29.7811921 L167.35859,38.4317881 L168.794137,38.4317881 L168.794137,40.8837086 L149.855955,40.8837086 L149.855955,38.4317881 L151.56757,38.4317881 L151.56757,29.7811921 L167.35859,29.7811921 Z M154.107384,38.4317881 L156.122672,38.4317881 L156.122672,32.1780132 L154.107384,32.1780132 L154.107384,38.4317881 Z M158.469239,38.4317881 L160.429314,38.4317881 L160.429314,32.1780132 L158.469239,32.1780132 L158.469239,38.4317881 Z M162.775881,38.4317881 L164.846382,38.4317881 L164.846382,32.1780132 L162.775881,32.1780132 L162.775881,38.4317881 Z M146.460334,16.226755 C148.227161,17.4113907 149.690315,18.5960265 150.905009,19.7806623 L149.027755,21.6264901 C147.978701,20.5245033 146.515547,19.3123179 144.610686,18.0450331 L146.460334,16.226755 Z M145.57692,22.8111258 C147.343748,24.1335099 148.862115,25.4834437 150.076809,26.8058278 L148.199555,28.6792053 C147.150501,27.4119205 145.632134,26.0619868 143.699666,24.629404 L145.57692,22.8111258 Z M147.785455,30.6076821 L150.076809,31.4892715 C149.027755,34.8503311 147.813061,38.0460927 146.487941,41.021457 L144.058553,39.9470199 C145.4941,36.9165563 146.736401,33.8034437 147.785455,30.6076821 Z M116.513222,46.9033113 L141.248806,46.9033113 L141.248806,49.4103311 L130.150921,49.4103311 L130.150921,52.1928477 L139.896079,52.1928477 L139.896079,68.309404 C139.896079,70.2654305 138.985059,71.2572185 137.163018,71.2572185 L134.015857,71.2572185 L133.32569,68.7501987 L136.334818,68.887947 C136.997378,68.887947 137.356265,68.5022517 137.356265,67.7308609 L137.356265,54.6723179 L130.150921,54.6723179 L130.150921,70.9817219 L127.611107,70.9817219 L127.611107,54.6723179 L120.295337,54.6723179 L120.295337,71.4500662 L117.755523,71.4500662 L117.755523,52.1928477 L127.611107,52.1928477 L127.611107,49.4103311 L116.513222,49.4103311 L116.513222,46.9033113 Z M122.448658,56.490596 C124.077452,57.1517881 125.568213,58.0058278 126.948547,58.9976159 L125.623426,61.0362914 C124.187879,59.9343046 122.697118,59.0527152 121.178751,58.4190728 L122.448658,56.490596 Z M122.255411,61.9729801 C123.884205,62.7168212 125.374966,63.6259603 126.727693,64.6728477 L125.402573,66.7115232 C123.967025,65.5268874 122.476265,64.5901987 120.957897,63.901457 L122.255411,61.9729801 Z M132.166209,56.490596 C133.82261,57.2619868 135.31337,58.1711258 136.666098,59.2180132 L135.340977,61.2842384 C133.877823,60.072053 132.387062,59.1078146 130.868695,58.4190728 L132.166209,56.490596 Z M132.166209,62.2760265 C133.82261,63.0474172 135.31337,63.984106 136.666098,65.0860927 L135.340977,67.1247682 C133.877823,65.8574834 132.387062,64.893245 130.868695,64.1769536 L132.166209,62.2760265 Z M146.681187,60.1271523 L165.536549,60.1271523 L165.536549,71.5051656 L162.969128,71.5051656 L162.969128,70.5409272 L146.625974,70.5409272 L146.625974,68.226755 L162.969128,68.226755 L162.969128,66.3809272 L147.536994,66.3809272 L147.536994,64.149404 L162.969128,64.149404 L162.969128,62.3862252 L146.681187,62.3862252 L146.681187,60.1271523 Z M145.880594,46.6829139 L166.392356,46.6829139 L166.392356,48.8317881 L157.420186,48.8317881 L157.420186,50.3470199 L167.93833,50.3470199 L167.93833,56.7109934 L165.426122,56.7109934 L165.426122,52.413245 L157.420186,52.413245 L157.420186,58.9700662 L154.880371,58.9700662 L154.880371,52.413245 L146.874434,52.413245 L146.874434,56.7109934 L144.362226,56.7109934 L144.362226,50.3470199 L154.880371,50.3470199 L154.880371,48.8317881 L145.880594,48.8317881 L145.880594,46.6829139 Z M147.951095,53.8733775 L153.748497,53.8733775 L153.748497,55.6090066 L147.951095,55.6090066 L147.951095,53.8733775 Z M147.951095,56.8762914 L153.748497,56.8762914 L153.748497,58.6119205 L147.951095,58.6119205 L147.951095,56.8762914 Z M158.552059,53.8733775 L164.404675,53.8733775 L164.404675,55.6090066 L158.552059,55.6090066 L158.552059,53.8733775 Z M158.552059,56.8762914 L164.487495,56.8762914 L164.487495,58.6119205 L158.552059,58.6119205 L158.552059,56.8762914 Z M118.224836,76.9186755 C119.881237,79.122649 121.178751,81.0511258 122.062165,82.704106 L119.991664,84.1917881 C118.997823,82.4286093 117.672703,80.4450331 115.988695,78.2961589 L118.224836,76.9186755 Z M119.93645,88.2691391 L122.310625,89.2058278 C121.151144,93.2556291 119.881237,97.0574834 118.500903,100.583841 L116.043908,99.509404 C117.534669,95.845298 118.832183,92.098543 119.93645,88.2691391 Z M130.344168,101.217483 L127.41786,101.217483 L126.83812,98.6553642 C127.74914,98.7655629 128.604947,98.8206623 129.433148,98.8206623 C130.150921,98.8206623 130.537415,98.4900662 130.537415,97.8839735 L130.537415,75.9544371 L133.160049,75.9544371 L133.160049,81.6296689 C133.546543,82.9796026 134.015857,84.3019868 134.540383,85.5692715 C136.251998,84.1642384 137.742758,82.2633113 139.040272,79.8940397 L141.05556,81.5470199 C139.454372,84.2744371 137.632331,86.3682119 135.589437,87.8007947 C137.163018,90.9965563 139.205912,93.9443709 141.71812,96.6442384 L139.978899,98.8206623 C137.107805,95.349404 134.81645,91.6301987 133.160049,87.607947 L133.160049,98.5176159 C133.160049,100.308344 132.221422,101.217483 130.344168,101.217483 Z M127.197007,84.6876821 L122.779938,84.6876821 L122.779938,82.1806623 L129.598788,82.1806623 L129.598788,84.5499338 C128.853408,90.9965563 126.617267,95.7350993 122.917972,98.7655629 L121.151144,96.7268874 C124.436339,94.0821192 126.451626,90.0598675 127.197007,84.6876821 Z M150.711763,78.9849007 L155.598145,78.9849007 C155.929425,77.9380132 156.260705,76.8635762 156.591985,75.7615894 L159.159406,76.3401325 C158.88334,77.2768212 158.579666,78.1584106 158.303599,78.9849007 L168.242004,78.9849007 L168.242004,81.4919205 L157.392579,81.4919205 C156.453952,83.8060927 155.432505,85.8723179 154.328237,87.6630464 L158.690093,87.6630464 L158.690093,83.6407947 L161.257514,83.6407947 L161.257514,87.6630464 L167.303377,87.6630464 L167.303377,90.0598675 L161.257514,90.0598675 L161.257514,98.4900662 C161.257514,100.335894 160.401707,101.272583 158.717699,101.272583 L155.708571,101.272583 L155.156438,98.7655629 C156.095065,98.8757616 156.978479,98.9584106 157.834286,98.9584106 C158.386419,98.9584106 158.690093,98.6002649 158.690093,97.8839735 L158.690093,90.0598675 L151.926456,90.0598675 L151.319109,87.6630464 C152.533803,86.0651656 153.638071,83.9989404 154.659518,81.4919205 L150.711763,81.4919205 L150.711763,78.9849007 Z M164.266642,91.767947 C166.143896,93.8341722 167.717477,95.9003974 169.042597,97.9390728 L167.220557,99.757351 C166.116289,97.8013245 164.542709,95.68 162.555028,93.4209272 L164.266642,91.767947 Z M154.797551,91.8781457 L156.619592,93.4760265 C155.128831,95.8728477 153.279184,97.9390728 151.125863,99.7022517 L149.552282,97.6360265 C151.622783,95.9830464 153.362004,94.0821192 154.797551,91.8781457 Z M145.714954,76.6707285 C147.481781,79.122649 148.806902,81.2715232 149.745529,83.117351 L147.675028,84.5499338 C146.681187,82.621457 145.300853,80.4450331 143.589239,78.0206623 L145.714954,76.6707285 Z M147.895881,88.1313907 L150.270056,89.0956291 C148.972542,93.1454305 147.509388,96.9472848 145.9082,100.528742 L143.478813,99.4543046 C145.190427,95.762649 146.653581,91.9883444 147.895881,88.1313907 Z" id="低温-雨雪-冰冻" fill="#FFFFFF"></path>
<g id="daolujiebing" transform="translate(18.289425, 15.152318)" fill="#EC8D15" fill-rule="nonzero">
<path d="M65.868211,13.3582774 C65.5226074,10.8782576 63.9894517,8.42794332 60.1320298,7.39564743 L33.8204973,0.354340852 C29.9674832,-0.676775717 27.4130181,0.679703952 25.8736994,2.65522921 L17.7217224,13.0076292 C15.6710084,12.7059974 11.5861805,13.8738851 10.5144721,17.8685331 L9.31725417,33.4946612 L12.1627554,34.2561539 L11.1687236,37.9612753 C9.59857717,43.8137902 17.2500133,45.788722 18.8019645,40.0040289 L19.7959963,36.2989075 L54.2844082,45.5284537 L53.2903765,49.2335735 C51.7384252,55.0182666 59.3534693,57.1288436 60.9236158,51.2763287 L61.9176476,47.5712073 L64.7630817,48.3326816 L71.5491421,34.2022011 C72.6222522,30.2079276 69.6679617,27.1562807 67.743859,26.3941991 L65.868211,13.3582774 Z M21.3437364,27.0436847 C18.9415086,26.4139517 17.4785723,24.1256905 18.079112,21.9329889 C18.6802111,19.7382438 21.1165778,18.4722981 23.5188056,19.102031 C25.9211668,19.7317999 27.3825247,22.0195184 26.7814256,24.2142635 C26.1809701,26.4069216 23.7460976,27.6734536 21.3437364,27.0436847 Z M22.7755102,12.938716 L29.1460048,4.73862761 C29.9875824,3.54852421 30.971695,2.78720087 32.6755749,3.22379927 L59.8231943,10.4393268 C61.5111033,10.9042948 61.981207,12.0520667 62.1100109,13.5000856 L63.4953618,23.7615894 L22.7755102,12.938716 Z M57.9205247,36.6857472 C55.5187301,36.0560367 54.057602,33.7682616 54.6580335,31.575638 C55.2590241,29.3809725 57.6934071,28.1146654 60.0952017,28.7443775 C62.500018,29.3748811 63.9613129,31.6625708 63.3603223,33.8572363 C62.7599077,36.0497999 60.3252735,37.3162344 57.9205247,36.6857472 Z M11.7371825,48.7708929 L18.4471387,56.1186242 L0,62.2443645 L25.2645593,80.2384106 L36.2337662,74.6156747 L12.3513869,62.2206847 L28.6972962,57.0213036 L14.761905,48.2119205 L11.7371825,48.7708929 Z M52.8721216,55.2478238 L58.8329834,61.7264687 L42.445269,67.1276582 L67.5540874,82.9933775 L77.2987013,78.0356959 L53.4177582,67.1067804 L67.938821,62.52238 L55.5591669,54.7549669 L52.8721216,55.2478238 Z" id="Shape"></path>
</g>
<g id="xue" transform="translate(89.031540, 27.549669)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy-3" transform="translate(58.319109, 24.105960)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy" transform="translate(92.137291, 39.947020)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy-2" transform="translate(90.066790, 53.033113)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy" transform="translate(21.740260, 26.172185)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy-2" transform="translate(18.634508, 39.947020)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
</g>
<g id="xue" transform="translate(30.367347, 15.152318)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" 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>DWYXBD-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(-373.000000, -2807.000000)">
<g id="DWYXBD-Y" transform="translate(373.000000, 2807.000000)">
<g id="Group-8-Copy-3">
<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="M78.638891,123.142887 L88.3861192,123.142887 L88.3861192,125.140238 L80.9806275,125.140238 L80.9806275,129.094993 L87.9658075,129.094993 L87.9658075,131.092344 L80.9806275,131.092344 L80.9806275,137.403974 L78.638891,137.403974 L78.638891,123.142887 Z M88.7530579,123.142887 L95.1177777,123.142887 C96.5788612,123.142887 97.7397221,123.462464 98.5803454,124.121589 C99.4609985,124.840636 99.9213399,125.879258 99.9213399,127.237457 C99.9213399,127.976477 99.7211914,128.635603 99.3208946,129.214834 C98.8805681,129.853987 98.260108,130.27343 97.4995439,130.473166 L97.4995439,130.513113 C98.7404642,130.792742 99.4409836,131.611656 99.6011024,133.009801 L99.8412805,135.306755 C99.9213399,136.185589 100.221562,136.884662 100.701919,137.403974 L98.1600337,137.403974 C97.8197814,136.964556 97.619633,136.345377 97.5395736,135.546437 L97.35944,133.788768 C97.2793807,133.009801 97.0392026,132.450543 96.6389057,132.110993 C96.218594,131.75147 95.5981339,131.591682 94.7975402,131.591682 L91.0947944,131.591682 L91.0947944,137.403974 L88.7530579,137.403974 L88.7530579,123.142887 Z M91.0947944,125.140238 L91.0947944,129.594331 L94.7975402,129.594331 C95.718223,129.594331 96.4187425,129.394596 96.8990987,129.015099 C97.3394252,128.615629 97.5595885,128.056371 97.5595885,127.337325 C97.5595885,126.558358 97.3394252,125.999099 96.8990987,125.65955 C96.4587721,125.300026 95.7582527,125.140238 94.7975402,125.140238 L91.0947944,125.140238 Z M101.168932,123.142887 L111.476575,123.142887 L111.476575,125.140238 L103.510668,125.140238 L103.510668,129.094993 L110.996219,129.094993 L110.996219,131.092344 L103.510668,131.092344 L103.510668,135.406623 L111.816828,135.406623 L111.816828,137.403974 L101.168932,137.403974 L101.168932,123.142887 Z M112.483989,123.142887 L122.791633,123.142887 L122.791633,125.140238 L114.825726,125.140238 L114.825726,129.094993 L122.311277,129.094993 L122.311277,131.092344 L114.825726,131.092344 L114.825726,135.406623 L123.131885,135.406623 L123.131885,137.403974 L112.483989,137.403974 L112.483989,123.142887 Z M123.498824,123.142887 L134.206764,123.142887 L134.206764,125.000424 L125.960649,135.406623 L134.687121,135.406623 L134.687121,137.403974 L122.898378,137.403974 L122.898378,135.566411 L131.164508,125.140238 L123.498824,125.140238 L123.498824,123.142887 Z M135.054059,123.142887 L137.395796,123.142887 L137.395796,137.403974 L135.054059,137.403974 L135.054059,123.142887 Z M138.663402,123.142887 L141.005139,123.142887 L148.070378,133.429245 L148.150438,133.429245 L148.150438,123.142887 L150.512189,123.142887 L150.512189,137.403974 L148.230497,137.403974 L141.085198,126.977801 L141.005139,126.977801 L141.005139,137.403974 L138.663402,137.403974 L138.663402,123.142887 Z M157.984397,122.863258 C159.825762,122.863258 161.266831,123.262728 162.327617,124.081642 C163.348374,124.880583 163.988849,126.05902 164.249042,127.656901 L161.887291,127.656901 C161.687143,126.738119 161.246816,126.05902 160.606341,125.599629 C159.945851,125.140238 159.065198,124.92053 157.984397,124.92053 C156.643402,124.92053 155.582616,125.359947 154.802037,126.278728 C153.941399,127.237457 153.521087,128.575682 153.521087,130.333351 C153.521087,132.011126 153.901369,133.309404 154.661933,134.208212 C155.482541,135.16694 156.763491,135.646305 158.504783,135.646305 C159.185287,135.646305 159.825762,135.566411 160.426207,135.406623 C160.986623,135.246834 161.486994,135.027126 161.96735,134.747497 L161.96735,131.811391 L158.184545,131.811391 L158.184545,129.81404 L164.309087,129.81404 L164.309087,135.84604 C163.548523,136.445245 162.687885,136.884662 161.707157,137.204238 C160.666386,137.523815 159.52554,137.683603 158.24459,137.683603 C155.962898,137.683603 154.201591,136.964556 152.940656,135.526464 C151.759781,134.188238 151.17935,132.450543 151.17935,130.333351 C151.17935,128.196185 151.759781,126.438517 152.940656,125.060344 C154.181577,123.582305 155.862823,122.863258 157.984397,122.863258 Z" id="FREEZING" 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>
<path d="M127.41786,28.4037086 L127.41786,37.3298013 C128.108027,37.026755 128.770588,36.7237086 129.433148,36.3931126 L129.874855,38.6521854 C128.328881,39.2582781 126.534447,39.9194702 124.491552,40.5806623 L123.828992,38.3491391 C124.519159,38.1011921 124.878046,37.6603974 124.878046,36.9992053 L124.878046,19.2572185 C130.675448,18.3756291 135.23055,17.4113907 138.598565,16.309404 L140.034113,18.4031788 C138.681385,18.8715232 137.080198,19.3123179 135.258157,19.7531126 C135.285764,22.1223841 135.368584,24.1610596 135.479011,25.8966887 L141.083166,25.8966887 L141.083166,28.4037086 L135.699864,28.4037086 C135.810291,29.450596 135.920717,30.3597351 136.086357,31.1035762 C136.528064,33.5003974 136.997378,35.2360265 137.549511,36.3380132 C138.101645,37.4124503 138.488139,37.9634437 138.764205,37.9634437 C139.012665,37.9634437 139.261126,36.5308609 139.509586,33.7207947 L141.662907,34.9054305 C141.110773,38.9827815 140.282573,41.0490066 139.205912,41.0490066 C138.294892,41.0490066 137.328658,40.3051656 136.334818,38.8450331 C135.31337,37.3849007 134.457563,35.1258278 133.795003,32.0953642 C133.546543,30.9933775 133.353296,29.7811921 133.187656,28.4037086 L127.41786,28.4037086 Z M132.745949,20.304106 C131.117155,20.634702 129.350328,20.9377483 127.41786,21.2407947 L127.41786,25.8966887 L132.966803,25.8966887 C132.856376,24.1886093 132.773556,22.3152318 132.745949,20.304106 Z M131.862536,35.0431788 C133.353296,36.9165563 134.512777,38.5695364 135.340977,40.0021192 L133.380903,41.3796026 C132.525096,39.8368212 131.420829,38.1562914 130.068101,36.3104636 L131.862536,35.0431788 Z M122.117378,15.8961589 L124.491552,16.9981457 C123.828992,19.0368212 122.973185,20.965298 121.924131,22.8386755 L121.924131,41.4622517 L119.384317,41.4622517 L119.384317,26.6680795 C118.583723,27.6874172 117.727916,28.6792053 116.789289,29.6709934 L115.961088,26.9160265 C118.749363,23.7753642 120.792257,20.0837086 122.117378,15.8961589 Z M152.671837,16.9154967 L166.088683,16.9154967 L166.088683,27.8802649 L152.671837,27.8802649 L152.671837,16.9154967 Z M163.576475,25.5660927 L163.576475,23.5549669 L155.211651,23.5549669 L155.211651,25.5660927 L163.576475,25.5660927 Z M155.211651,21.295894 L163.576475,21.295894 L163.576475,19.2572185 L155.211651,19.2572185 L155.211651,21.295894 Z M167.35859,29.7811921 L167.35859,38.4317881 L168.794137,38.4317881 L168.794137,40.8837086 L149.855955,40.8837086 L149.855955,38.4317881 L151.56757,38.4317881 L151.56757,29.7811921 L167.35859,29.7811921 Z M154.107384,38.4317881 L156.122672,38.4317881 L156.122672,32.1780132 L154.107384,32.1780132 L154.107384,38.4317881 Z M158.469239,38.4317881 L160.429314,38.4317881 L160.429314,32.1780132 L158.469239,32.1780132 L158.469239,38.4317881 Z M162.775881,38.4317881 L164.846382,38.4317881 L164.846382,32.1780132 L162.775881,32.1780132 L162.775881,38.4317881 Z M146.460334,16.226755 C148.227161,17.4113907 149.690315,18.5960265 150.905009,19.7806623 L149.027755,21.6264901 C147.978701,20.5245033 146.515547,19.3123179 144.610686,18.0450331 L146.460334,16.226755 Z M145.57692,22.8111258 C147.343748,24.1335099 148.862115,25.4834437 150.076809,26.8058278 L148.199555,28.6792053 C147.150501,27.4119205 145.632134,26.0619868 143.699666,24.629404 L145.57692,22.8111258 Z M147.785455,30.6076821 L150.076809,31.4892715 C149.027755,34.8503311 147.813061,38.0460927 146.487941,41.021457 L144.058553,39.9470199 C145.4941,36.9165563 146.736401,33.8034437 147.785455,30.6076821 Z M116.513222,46.9033113 L141.248806,46.9033113 L141.248806,49.4103311 L130.150921,49.4103311 L130.150921,52.1928477 L139.896079,52.1928477 L139.896079,68.309404 C139.896079,70.2654305 138.985059,71.2572185 137.163018,71.2572185 L134.015857,71.2572185 L133.32569,68.7501987 L136.334818,68.887947 C136.997378,68.887947 137.356265,68.5022517 137.356265,67.7308609 L137.356265,54.6723179 L130.150921,54.6723179 L130.150921,70.9817219 L127.611107,70.9817219 L127.611107,54.6723179 L120.295337,54.6723179 L120.295337,71.4500662 L117.755523,71.4500662 L117.755523,52.1928477 L127.611107,52.1928477 L127.611107,49.4103311 L116.513222,49.4103311 L116.513222,46.9033113 Z M122.448658,56.490596 C124.077452,57.1517881 125.568213,58.0058278 126.948547,58.9976159 L125.623426,61.0362914 C124.187879,59.9343046 122.697118,59.0527152 121.178751,58.4190728 L122.448658,56.490596 Z M122.255411,61.9729801 C123.884205,62.7168212 125.374966,63.6259603 126.727693,64.6728477 L125.402573,66.7115232 C123.967025,65.5268874 122.476265,64.5901987 120.957897,63.901457 L122.255411,61.9729801 Z M132.166209,56.490596 C133.82261,57.2619868 135.31337,58.1711258 136.666098,59.2180132 L135.340977,61.2842384 C133.877823,60.072053 132.387062,59.1078146 130.868695,58.4190728 L132.166209,56.490596 Z M132.166209,62.2760265 C133.82261,63.0474172 135.31337,63.984106 136.666098,65.0860927 L135.340977,67.1247682 C133.877823,65.8574834 132.387062,64.893245 130.868695,64.1769536 L132.166209,62.2760265 Z M146.681187,60.1271523 L165.536549,60.1271523 L165.536549,71.5051656 L162.969128,71.5051656 L162.969128,70.5409272 L146.625974,70.5409272 L146.625974,68.226755 L162.969128,68.226755 L162.969128,66.3809272 L147.536994,66.3809272 L147.536994,64.149404 L162.969128,64.149404 L162.969128,62.3862252 L146.681187,62.3862252 L146.681187,60.1271523 Z M145.880594,46.6829139 L166.392356,46.6829139 L166.392356,48.8317881 L157.420186,48.8317881 L157.420186,50.3470199 L167.93833,50.3470199 L167.93833,56.7109934 L165.426122,56.7109934 L165.426122,52.413245 L157.420186,52.413245 L157.420186,58.9700662 L154.880371,58.9700662 L154.880371,52.413245 L146.874434,52.413245 L146.874434,56.7109934 L144.362226,56.7109934 L144.362226,50.3470199 L154.880371,50.3470199 L154.880371,48.8317881 L145.880594,48.8317881 L145.880594,46.6829139 Z M147.951095,53.8733775 L153.748497,53.8733775 L153.748497,55.6090066 L147.951095,55.6090066 L147.951095,53.8733775 Z M147.951095,56.8762914 L153.748497,56.8762914 L153.748497,58.6119205 L147.951095,58.6119205 L147.951095,56.8762914 Z M158.552059,53.8733775 L164.404675,53.8733775 L164.404675,55.6090066 L158.552059,55.6090066 L158.552059,53.8733775 Z M158.552059,56.8762914 L164.487495,56.8762914 L164.487495,58.6119205 L158.552059,58.6119205 L158.552059,56.8762914 Z M118.224836,76.9186755 C119.881237,79.122649 121.178751,81.0511258 122.062165,82.704106 L119.991664,84.1917881 C118.997823,82.4286093 117.672703,80.4450331 115.988695,78.2961589 L118.224836,76.9186755 Z M119.93645,88.2691391 L122.310625,89.2058278 C121.151144,93.2556291 119.881237,97.0574834 118.500903,100.583841 L116.043908,99.509404 C117.534669,95.845298 118.832183,92.098543 119.93645,88.2691391 Z M130.344168,101.217483 L127.41786,101.217483 L126.83812,98.6553642 C127.74914,98.7655629 128.604947,98.8206623 129.433148,98.8206623 C130.150921,98.8206623 130.537415,98.4900662 130.537415,97.8839735 L130.537415,75.9544371 L133.160049,75.9544371 L133.160049,81.6296689 C133.546543,82.9796026 134.015857,84.3019868 134.540383,85.5692715 C136.251998,84.1642384 137.742758,82.2633113 139.040272,79.8940397 L141.05556,81.5470199 C139.454372,84.2744371 137.632331,86.3682119 135.589437,87.8007947 C137.163018,90.9965563 139.205912,93.9443709 141.71812,96.6442384 L139.978899,98.8206623 C137.107805,95.349404 134.81645,91.6301987 133.160049,87.607947 L133.160049,98.5176159 C133.160049,100.308344 132.221422,101.217483 130.344168,101.217483 Z M127.197007,84.6876821 L122.779938,84.6876821 L122.779938,82.1806623 L129.598788,82.1806623 L129.598788,84.5499338 C128.853408,90.9965563 126.617267,95.7350993 122.917972,98.7655629 L121.151144,96.7268874 C124.436339,94.0821192 126.451626,90.0598675 127.197007,84.6876821 Z M150.711763,78.9849007 L155.598145,78.9849007 C155.929425,77.9380132 156.260705,76.8635762 156.591985,75.7615894 L159.159406,76.3401325 C158.88334,77.2768212 158.579666,78.1584106 158.303599,78.9849007 L168.242004,78.9849007 L168.242004,81.4919205 L157.392579,81.4919205 C156.453952,83.8060927 155.432505,85.8723179 154.328237,87.6630464 L158.690093,87.6630464 L158.690093,83.6407947 L161.257514,83.6407947 L161.257514,87.6630464 L167.303377,87.6630464 L167.303377,90.0598675 L161.257514,90.0598675 L161.257514,98.4900662 C161.257514,100.335894 160.401707,101.272583 158.717699,101.272583 L155.708571,101.272583 L155.156438,98.7655629 C156.095065,98.8757616 156.978479,98.9584106 157.834286,98.9584106 C158.386419,98.9584106 158.690093,98.6002649 158.690093,97.8839735 L158.690093,90.0598675 L151.926456,90.0598675 L151.319109,87.6630464 C152.533803,86.0651656 153.638071,83.9989404 154.659518,81.4919205 L150.711763,81.4919205 L150.711763,78.9849007 Z M164.266642,91.767947 C166.143896,93.8341722 167.717477,95.9003974 169.042597,97.9390728 L167.220557,99.757351 C166.116289,97.8013245 164.542709,95.68 162.555028,93.4209272 L164.266642,91.767947 Z M154.797551,91.8781457 L156.619592,93.4760265 C155.128831,95.8728477 153.279184,97.9390728 151.125863,99.7022517 L149.552282,97.6360265 C151.622783,95.9830464 153.362004,94.0821192 154.797551,91.8781457 Z M145.714954,76.6707285 C147.481781,79.122649 148.806902,81.2715232 149.745529,83.117351 L147.675028,84.5499338 C146.681187,82.621457 145.300853,80.4450331 143.589239,78.0206623 L145.714954,76.6707285 Z M147.895881,88.1313907 L150.270056,89.0956291 C148.972542,93.1454305 147.509388,96.9472848 145.9082,100.528742 L143.478813,99.4543046 C145.190427,95.762649 146.653581,91.9883444 147.895881,88.1313907 Z" id="低温-雨雪-冰冻" fill="#444444"></path>
<g id="daolujiebing" transform="translate(18.289425, 15.152318)" fill="#FFFF00" fill-rule="nonzero">
<path d="M65.868211,13.3582774 C65.5226074,10.8782576 63.9894517,8.42794332 60.1320298,7.39564743 L33.8204973,0.354340852 C29.9674832,-0.676775717 27.4130181,0.679703952 25.8736994,2.65522921 L17.7217224,13.0076292 C15.6710084,12.7059974 11.5861805,13.8738851 10.5144721,17.8685331 L9.31725417,33.4946612 L12.1627554,34.2561539 L11.1687236,37.9612753 C9.59857717,43.8137902 17.2500133,45.788722 18.8019645,40.0040289 L19.7959963,36.2989075 L54.2844082,45.5284537 L53.2903765,49.2335735 C51.7384252,55.0182666 59.3534693,57.1288436 60.9236158,51.2763287 L61.9176476,47.5712073 L64.7630817,48.3326816 L71.5491421,34.2022011 C72.6222522,30.2079276 69.6679617,27.1562807 67.743859,26.3941991 L65.868211,13.3582774 Z M21.3437364,27.0436847 C18.9415086,26.4139517 17.4785723,24.1256905 18.079112,21.9329889 C18.6802111,19.7382438 21.1165778,18.4722981 23.5188056,19.102031 C25.9211668,19.7317999 27.3825247,22.0195184 26.7814256,24.2142635 C26.1809701,26.4069216 23.7460976,27.6734536 21.3437364,27.0436847 Z M22.7755102,12.938716 L29.1460048,4.73862761 C29.9875824,3.54852421 30.971695,2.78720087 32.6755749,3.22379927 L59.8231943,10.4393268 C61.5111033,10.9042948 61.981207,12.0520667 62.1100109,13.5000856 L63.4953618,23.7615894 L22.7755102,12.938716 Z M57.9205247,36.6857472 C55.5187301,36.0560367 54.057602,33.7682616 54.6580335,31.575638 C55.2590241,29.3809725 57.6934071,28.1146654 60.0952017,28.7443775 C62.500018,29.3748811 63.9613129,31.6625708 63.3603223,33.8572363 C62.7599077,36.0497999 60.3252735,37.3162344 57.9205247,36.6857472 Z M11.7371825,48.7708929 L18.4471387,56.1186242 L0,62.2443645 L25.2645593,80.2384106 L36.2337662,74.6156747 L12.3513869,62.2206847 L28.6972962,57.0213036 L14.761905,48.2119205 L11.7371825,48.7708929 Z M52.8721216,55.2478238 L58.8329834,61.7264687 L42.445269,67.1276582 L67.5540874,82.9933775 L77.2987013,78.0356959 L53.4177582,67.1067804 L67.938821,62.52238 L55.5591669,54.7549669 L52.8721216,55.2478238 Z" id="Shape"></path>
</g>
<g id="xue" transform="translate(89.031540, 27.549669)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy-3" transform="translate(58.319109, 24.105960)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy" transform="translate(92.137291, 39.947020)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy-2" transform="translate(90.066790, 53.033113)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue" transform="translate(30.367347, 15.152318)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy" transform="translate(21.740260, 26.172185)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" id="Shape"></path>
</g>
<g id="xue-copy-2" transform="translate(18.634508, 39.947020)" fill="#48AFFF" fill-rule="nonzero">
<path d="M3.27683781,1.0483042e-06 C3.19414742,1.0483042e-06 3.11491765,0.0318201137 3.05645154,0.0882266415 C2.99816756,0.14481396 2.96538283,0.221468987 2.96538283,0.301378242 L2.96538283,1.08022223 L2.6162254,0.742687012 C2.55723717,0.68572329 2.4781373,0.653928052 2.39583913,0.654099831 C2.31333087,0.654099831 2.23391896,0.685918896 2.17545285,0.742687012 C2.11727838,0.798455715 2.08442369,0.875289551 2.08442369,0.95556742 C2.08442369,1.03584529 2.11727838,1.11267912 2.17545285,1.16844783 L2.96538283,1.93264782 L2.96538283,3.09386299 L1.92610673,2.5133458 L1.63705465,1.46946344 C1.60963209,1.36190838 1.52550005,1.27763696 1.41739693,1.24944182 C1.30863994,1.22004238 1.19233564,1.25019412 1.11195248,1.3286279 C1.0328108,1.40583086 1.00340851,1.52027152 1.0356369,1.62566613 L1.16331523,2.0872234 L0.465911066,1.69762062 C0.318015485,1.62349666 0.135878068,1.67484106 0.052459128,1.81459185 C-0.0309598118,1.95416185 0.0142102706,2.13278252 0.154456083,2.2195618 L0.851678111,2.60934537 L0.37466022,2.73300584 C0.208550898,2.7760339 0.110014552,2.9412761 0.154456083,3.10199855 C0.199079753,3.26290179 0.369924647,3.3581782 0.536033969,3.31515014 L1.61483388,3.03546777 L2.65392784,3.61580417 L1.61483388,4.19650215 L0.536033969,3.91718136 C0.373020981,3.88192728 0.210007993,3.97720369 0.166841425,4.13340639 C0.123674857,4.28942829 0.215289978,4.4508739 0.37466022,4.49932567 L0.851860249,4.62280534 L0.154456083,5.01240813 C0.0336626108,5.07910986 -0.0257152955,5.21899599 0.010567524,5.35138967 C0.0469950045,5.4830049 0.169937766,5.57448472 0.310729984,5.5748463 C0.363549835,5.5748463 0.416916099,5.56182941 0.466093204,5.5345301 L1.16331523,5.14492731 L1.03581904,5.60648458 C1.0030343,5.71170445 1.03181201,5.82596383 1.11140607,5.90442676 C1.19190346,5.98318311 1.30856501,6.01342438 1.41757907,5.98379363 C1.52599163,5.95529088 1.61012783,5.87039091 1.63705465,5.7623257 L1.92628887,4.71880491 L2.96556497,4.13792614 L2.96556497,5.3506665 L2.17581713,6.11450492 C2.08750659,6.1997404 2.06096258,6.33004291 2.1089727,6.44263905 C2.15856033,6.55612722 2.2713974,6.62946891 2.39602126,6.62921449 C2.47871165,6.62921449 2.55812356,6.59757622 2.61640754,6.54080811 L2.96556497,6.20273051 L2.96556497,6.93041089 C2.96556497,7.09673784 3.10490009,7.23178809 3.27701995,7.23178808 C3.44895767,7.23178808 3.58847493,7.09691862 3.58847493,6.93041089 L3.58847493,6.20273051 L3.93745022,6.54080811 C3.99573419,6.59757622 4.07514611,6.62939528 4.15783649,6.62939528 C4.24052688,6.62939528 4.31993879,6.59757622 4.37822277,6.54080811 C4.43642832,6.48494511 4.46929475,6.40802209 4.46929475,6.32765651 C4.46929475,6.24729094 4.43642832,6.17036791 4.37822277,6.11450492 L3.58847493,5.3506665 L3.58847493,4.13792614 L4.67401393,4.74447711 L4.96306601,5.7878171 C4.98801884,5.89592961 5.07234846,5.98216652 5.18235946,6.01235848 C5.29217695,6.04260379 5.40989954,6.01202768 5.4907181,5.93226844 C5.57049429,5.85272077 5.59890773,5.73755744 5.5646659,5.6317952 L5.43698757,5.1707803 L6.0879467,5.53416852 C6.23584228,5.60829248 6.4179797,5.55694808 6.50139863,5.41719728 C6.58463543,5.27762728 6.53964749,5.09900661 6.39940168,5.01222734 L5.74844255,4.64865833 L6.22509617,4.52499786 C6.33163251,4.49810603 6.41563493,4.41686118 6.44548245,4.31184627 C6.47408801,4.20747672 6.44316564,4.09592648 6.36479557,4.02077412 C6.28513009,3.94435455 6.17106013,3.91474576 6.06390456,3.94267277 L4.98546891,4.22217435 L3.89974778,3.61580417 L4.98528678,3.00925319 L6.06354028,3.28893557 C6.22983174,3.33178284 6.40049451,3.23650643 6.44548245,3.07578397 C6.48992398,2.91488073 6.39120549,2.74981932 6.22509617,2.70679126 L5.74826042,2.5831308 L6.39903741,2.2195618 C6.49557437,2.16728848 6.55590617,2.06711003 6.55658627,1.95795844 C6.55622834,1.84900975 6.49641377,1.74881065 6.40031236,1.69617429 C6.30307539,1.64231459 6.18455562,1.64279449 6.08776456,1.69743983 L5.43680543,2.06118962 L5.56448376,1.59945156 C5.60036484,1.44198333 5.50164635,1.28487668 5.34045474,1.24329495 C5.1796274,1.20171322 5.0131538,1.28993881 4.96288388,1.44379123 L4.67383179,2.48713122 L3.58829279,3.0936822 L3.58829279,1.93264782 L4.37804063,1.16844783 C4.43630623,1.11264267 4.46920184,1.03571647 4.46916749,0.955348215 C4.46913314,0.87497996 4.43617177,0.798081494 4.37785849,0.742325431 C4.2549741,0.624516355 4.06015247,0.624516355 3.93726808,0.742325431 L3.58829279,1.08022223 L3.58829279,0.301378242 C3.58829279,0.221468994 3.55550806,0.144813967 3.49704195,0.0882266415 C3.43796326,0.0314442747 3.35889141,-0.000209970472 3.27665567,1.0483042e-06" 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>GH-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(-373.000000, -840.000000)">
<g id="GH-R" transform="translate(373.000000, 840.000000)">
<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="M77.0110171,123.142887 L82.2348909,123.142887 C84.5566126,123.142887 86.2979039,123.78204 87.4987945,125.060344 C88.6396405,126.258755 89.2200709,127.99645 89.2200709,130.27343 C89.2200709,132.530437 88.6396405,134.268132 87.4987945,135.486517 C86.2979039,136.764821 84.5566126,137.403974 82.2348909,137.403974 L77.0110171,137.403974 L77.0110171,123.142887 Z M79.3527536,125.140238 L79.3527536,135.406623 L81.7945644,135.406623 C83.5758854,135.406623 84.8768501,134.987179 85.6974587,134.168265 C86.4980524,133.329377 86.8983492,132.031099 86.8983492,130.27343 C86.8983492,128.475815 86.4980524,127.157563 85.6974587,126.358623 C84.8768501,125.539709 83.5758854,125.140238 81.7945644,125.140238 L79.3527536,125.140238 Z M89.8872322,123.142887 L96.2519521,123.142887 C97.7130355,123.142887 98.8738964,123.462464 99.7145198,124.121589 C100.595173,124.840636 101.055514,125.879258 101.055514,127.237457 C101.055514,127.976477 100.855366,128.635603 100.455069,129.214834 C100.014742,129.853987 99.3942823,130.27343 98.6337183,130.473166 L98.6337183,130.513113 C99.8746385,130.792742 100.575158,131.611656 100.735277,133.009801 L100.975455,135.306755 C101.055514,136.185589 101.355737,136.884662 101.836093,137.403974 L99.2942081,137.403974 C98.9539558,136.964556 98.7538073,136.345377 98.673748,135.546437 L98.4936144,133.788768 C98.413555,133.009801 98.1733769,132.450543 97.7730801,132.110993 C97.3527684,131.75147 96.7323083,131.591682 95.9317146,131.591682 L92.2289687,131.591682 L92.2289687,137.403974 L89.8872322,137.403974 L89.8872322,123.142887 Z M92.2289687,125.140238 L92.2289687,129.594331 L95.9317146,129.594331 C96.8523973,129.594331 97.5529168,129.394596 98.033273,129.015099 C98.4735995,128.615629 98.6937628,128.056371 98.6937628,127.337325 C98.6937628,126.558358 98.4735995,125.999099 98.033273,125.65955 C97.5929465,125.300026 96.892427,125.140238 95.9317146,125.140238 L92.2289687,125.140238 Z M108.647811,122.863258 C110.829429,122.863258 112.550705,123.562331 113.81164,124.98045 C115.012531,126.318675 115.612976,128.096318 115.612976,130.293404 C115.612976,132.49049 115.012531,134.248159 113.81164,135.586384 C112.550705,136.98453 110.829429,137.683603 108.647811,137.683603 C106.446178,137.683603 104.724902,136.964556 103.483982,135.566411 C102.283091,134.208212 101.702661,132.450543 101.702661,130.293404 C101.702661,128.116291 102.283091,126.358623 103.483982,125.000424 C104.724902,123.562331 106.446178,122.863258 108.647811,122.863258 Z M108.647811,124.92053 C107.166713,124.92053 106.025867,125.419868 105.205258,126.418543 C104.424679,127.377272 104.044397,128.655576 104.044397,130.293404 C104.044397,131.911258 104.424679,133.189563 105.205258,134.148291 C106.005852,135.126993 107.166713,135.626331 108.647811,135.626331 C110.128909,135.626331 111.269755,135.146967 112.070349,134.208212 C112.850928,133.269457 113.251225,131.971179 113.251225,130.293404 C113.251225,128.615629 112.850928,127.297377 112.070349,126.338649 C111.269755,125.379921 110.128909,124.92053 108.647811,124.92053 Z M116.280137,123.142887 L118.621874,123.142887 L118.621874,132.031099 C118.621874,133.269457 118.902082,134.168265 119.482512,134.76747 C120.042928,135.346702 120.96361,135.646305 122.224546,135.646305 C123.465466,135.646305 124.386148,135.346702 124.966579,134.76747 C125.526994,134.168265 125.827217,133.269457 125.827217,132.031099 L125.827217,123.142887 L128.168954,123.142887 L128.168954,131.991152 C128.168954,133.848689 127.648568,135.266808 126.607796,136.24551 C125.567024,137.204238 124.105941,137.683603 122.224546,137.683603 C120.323135,137.683603 118.862052,137.204238 117.86131,136.265483 C116.800523,135.266808 116.280137,133.848689 116.280137,131.991152 L116.280137,123.142887 Z M135.641161,122.863258 C137.482527,122.863258 138.923595,123.262728 139.984382,124.081642 C141.005139,124.880583 141.645614,126.05902 141.905807,127.656901 L139.544056,127.656901 C139.343907,126.738119 138.903581,126.05902 138.263106,125.599629 C137.602616,125.140238 136.721963,124.92053 135.641161,124.92053 C134.300167,124.92053 133.23938,125.359947 132.458801,126.278728 C131.598163,127.237457 131.177852,128.575682 131.177852,130.333351 C131.177852,132.011126 131.558134,133.309404 132.318698,134.208212 C133.139306,135.16694 134.420256,135.646305 136.161547,135.646305 C136.842052,135.646305 137.482527,135.566411 138.082972,135.406623 C138.643388,135.246834 139.143759,135.027126 139.624115,134.747497 L139.624115,131.811391 L135.84131,131.811391 L135.84131,129.81404 L141.965852,129.81404 L141.965852,135.84604 C141.205288,136.445245 140.344649,136.884662 139.363922,137.204238 C138.32315,137.523815 137.182304,137.683603 135.901354,137.683603 C133.619662,137.683603 131.858356,136.964556 130.597421,135.526464 C129.416545,134.188238 128.836115,132.450543 128.836115,130.333351 C128.836115,128.196185 129.416545,126.438517 130.597421,125.060344 C131.838341,123.582305 133.519588,122.863258 135.641161,122.863258 Z M143.03331,123.142887 L145.375046,123.142887 L145.375046,129.094993 L152.620419,129.094993 L152.620419,123.142887 L154.962156,123.142887 L154.962156,137.403974 L152.620419,137.403974 L152.620419,131.092344 L145.375046,131.092344 L145.375046,137.403974 L143.03331,137.403974 L143.03331,123.142887 Z M155.128946,123.142887 L166.837629,123.142887 L166.837629,125.140238 L162.154156,125.140238 L162.154156,137.403974 L159.812419,137.403974 L159.812419,125.140238 L155.128946,125.140238 L155.128946,123.142887 Z" id="DROUGHT" fill="#FFFFFF"></path>
<path d="M127.915547,20.9928477 L158.766011,20.9928477 L158.766011,24.712053 L145.349165,24.712053 L145.349165,35.3737748 L161.830353,35.3737748 L161.830353,39.1756291 L145.349165,39.1756291 L145.349165,56.9038411 L141.373803,56.9038411 L141.373803,39.1756291 L124.768386,39.1756291 L124.768386,35.3737748 L141.373803,35.3737748 L141.373803,24.712053 L127.915547,24.712053 L127.915547,20.9928477 Z M127.791317,80.1006623 L158.931651,80.1006623 L158.931651,83.613245 L145.431985,83.613245 L145.431985,87.2084768 L161.416252,87.2084768 L161.416252,90.8450331 L145.431985,90.8450331 L145.431985,99.7298013 L141.539443,99.7298013 L141.539443,90.8450331 L125.182486,90.8450331 L125.182486,87.2084768 L141.539443,87.2084768 L141.539443,83.613245 L127.791317,83.613245 L127.791317,80.1006623 Z M129.737588,62.6203974 L156.90256,62.6203974 L156.90256,77.8278146 L129.737588,77.8278146 L129.737588,62.6203974 Z M153.010019,74.5631788 L153.010019,71.7944371 L133.58872,71.7944371 L133.58872,74.5631788 L153.010019,74.5631788 Z M133.58872,68.6537748 L153.010019,68.6537748 L153.010019,65.8850331 L133.58872,65.8850331 L133.58872,68.6537748 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 id="ganhan" transform="translate(13.458256, 25.827815)" fill="#D12821" fill-rule="nonzero">
<path d="M21.2476135,54.9477146 L4.21073109,54.9477146 C1.83240259,55.0002968 -0.0471907376,56.568761 0.00131327194,58.4603473 C-0.0568701923,60.3572544 1.82549313,61.9341899 4.21073109,61.986755 L82.4054308,61.986755 C84.7872098,61.9341775 86.6681855,60.3614822 86.6148487,58.4672348 C86.6681855,56.5729874 84.7872099,55.000292 82.4054308,54.9477146 L71.1456712,54.9477146 C71.1028667,54.8729308 71.056642,54.7994149 71.0070896,54.7273141 L58.6213541,37.3914387 L70.9377988,21.3710787 C71.7462099,20.3115711 71.7628175,18.9856479 70.9811056,17.9135461 L58.9591468,1.54192284 C58.4560101,0.818712345 57.598013,0.29396968 56.5898739,0.0928986016 C55.5817348,-0.108172477 54.5138712,0.0324616017 53.6410757,0.481245504 C51.8085382,1.46949768 51.2552699,3.41918086 52.3765181,4.93746779 L63.1339192,19.5596622 L50.8088131,35.5731347 C50.0119942,36.6215712 49.988813,37.9303639 50.7481837,38.9962297 L62.1465249,54.9477146 L50.6962155,54.9477146 C50.6536176,54.8728525 50.607389,54.7993305 50.5576339,54.7273141 L38.1545756,37.3983262 L50.4970044,21.3710787 C51.3054155,20.3115711 51.3220231,18.9856479 50.5403112,17.9135461 L38.5096911,1.54192284 C38.0065544,0.818712345 37.1485574,0.29396968 36.1404183,0.0928986016 C35.1322792,-0.108172477 34.0644155,0.0324616017 33.19162,0.481245504 C31.3560331,1.46734877 30.7988541,3.41745583 31.9184011,4.93746779 L42.6844635,19.5596622 L30.3593574,35.5731347 C29.5598364,36.62032 29.5333434,37.9291245 30.2900666,38.9962297 L41.6970692,54.9477146 L30.2467598,54.9477146 C30.2041619,54.8728525 30.1579333,54.7993305 30.1081781,54.7273141 L17.7224426,37.3707761 L30.0388873,21.3710787 C30.8472984,20.3115711 30.8639061,18.9856479 30.0821941,17.9135461 L18.0602354,1.54192284 C17.5572093,0.816717246 16.6975978,0.290510891 15.6872833,0.0893335808 C14.6769688,-0.11184373 13.6069499,0.0301279555 12.733503,0.481245504 C10.9009654,1.46949766 10.3476971,3.41918085 11.4689453,4.93746779 L22.2609919,19.5114496 L9.90990167,35.5731347 C9.1103806,36.62032 9.08388758,37.9291245 9.84061086,38.9962297 L21.2476135,54.9477146 Z" id="Shape"></path>
</g>
</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>GH-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, -840.000000)">
<g id="GH-O" transform="translate(35.000000, 840.000000)">
<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="#EC8D15"></path>
</g>
<path d="M77.0110171,123.142887 L82.2348909,123.142887 C84.5566126,123.142887 86.2979039,123.78204 87.4987945,125.060344 C88.6396405,126.258755 89.2200709,127.99645 89.2200709,130.27343 C89.2200709,132.530437 88.6396405,134.268132 87.4987945,135.486517 C86.2979039,136.764821 84.5566126,137.403974 82.2348909,137.403974 L77.0110171,137.403974 L77.0110171,123.142887 Z M79.3527536,125.140238 L79.3527536,135.406623 L81.7945644,135.406623 C83.5758854,135.406623 84.8768501,134.987179 85.6974587,134.168265 C86.4980524,133.329377 86.8983492,132.031099 86.8983492,130.27343 C86.8983492,128.475815 86.4980524,127.157563 85.6974587,126.358623 C84.8768501,125.539709 83.5758854,125.140238 81.7945644,125.140238 L79.3527536,125.140238 Z M89.8872322,123.142887 L96.2519521,123.142887 C97.7130355,123.142887 98.8738964,123.462464 99.7145198,124.121589 C100.595173,124.840636 101.055514,125.879258 101.055514,127.237457 C101.055514,127.976477 100.855366,128.635603 100.455069,129.214834 C100.014742,129.853987 99.3942823,130.27343 98.6337183,130.473166 L98.6337183,130.513113 C99.8746385,130.792742 100.575158,131.611656 100.735277,133.009801 L100.975455,135.306755 C101.055514,136.185589 101.355737,136.884662 101.836093,137.403974 L99.2942081,137.403974 C98.9539558,136.964556 98.7538073,136.345377 98.673748,135.546437 L98.4936144,133.788768 C98.413555,133.009801 98.1733769,132.450543 97.7730801,132.110993 C97.3527684,131.75147 96.7323083,131.591682 95.9317146,131.591682 L92.2289687,131.591682 L92.2289687,137.403974 L89.8872322,137.403974 L89.8872322,123.142887 Z M92.2289687,125.140238 L92.2289687,129.594331 L95.9317146,129.594331 C96.8523973,129.594331 97.5529168,129.394596 98.033273,129.015099 C98.4735995,128.615629 98.6937628,128.056371 98.6937628,127.337325 C98.6937628,126.558358 98.4735995,125.999099 98.033273,125.65955 C97.5929465,125.300026 96.892427,125.140238 95.9317146,125.140238 L92.2289687,125.140238 Z M108.647811,122.863258 C110.829429,122.863258 112.550705,123.562331 113.81164,124.98045 C115.012531,126.318675 115.612976,128.096318 115.612976,130.293404 C115.612976,132.49049 115.012531,134.248159 113.81164,135.586384 C112.550705,136.98453 110.829429,137.683603 108.647811,137.683603 C106.446178,137.683603 104.724902,136.964556 103.483982,135.566411 C102.283091,134.208212 101.702661,132.450543 101.702661,130.293404 C101.702661,128.116291 102.283091,126.358623 103.483982,125.000424 C104.724902,123.562331 106.446178,122.863258 108.647811,122.863258 Z M108.647811,124.92053 C107.166713,124.92053 106.025867,125.419868 105.205258,126.418543 C104.424679,127.377272 104.044397,128.655576 104.044397,130.293404 C104.044397,131.911258 104.424679,133.189563 105.205258,134.148291 C106.005852,135.126993 107.166713,135.626331 108.647811,135.626331 C110.128909,135.626331 111.269755,135.146967 112.070349,134.208212 C112.850928,133.269457 113.251225,131.971179 113.251225,130.293404 C113.251225,128.615629 112.850928,127.297377 112.070349,126.338649 C111.269755,125.379921 110.128909,124.92053 108.647811,124.92053 Z M116.280137,123.142887 L118.621874,123.142887 L118.621874,132.031099 C118.621874,133.269457 118.902082,134.168265 119.482512,134.76747 C120.042928,135.346702 120.96361,135.646305 122.224546,135.646305 C123.465466,135.646305 124.386148,135.346702 124.966579,134.76747 C125.526994,134.168265 125.827217,133.269457 125.827217,132.031099 L125.827217,123.142887 L128.168954,123.142887 L128.168954,131.991152 C128.168954,133.848689 127.648568,135.266808 126.607796,136.24551 C125.567024,137.204238 124.105941,137.683603 122.224546,137.683603 C120.323135,137.683603 118.862052,137.204238 117.86131,136.265483 C116.800523,135.266808 116.280137,133.848689 116.280137,131.991152 L116.280137,123.142887 Z M135.641161,122.863258 C137.482527,122.863258 138.923595,123.262728 139.984382,124.081642 C141.005139,124.880583 141.645614,126.05902 141.905807,127.656901 L139.544056,127.656901 C139.343907,126.738119 138.903581,126.05902 138.263106,125.599629 C137.602616,125.140238 136.721963,124.92053 135.641161,124.92053 C134.300167,124.92053 133.23938,125.359947 132.458801,126.278728 C131.598163,127.237457 131.177852,128.575682 131.177852,130.333351 C131.177852,132.011126 131.558134,133.309404 132.318698,134.208212 C133.139306,135.16694 134.420256,135.646305 136.161547,135.646305 C136.842052,135.646305 137.482527,135.566411 138.082972,135.406623 C138.643388,135.246834 139.143759,135.027126 139.624115,134.747497 L139.624115,131.811391 L135.84131,131.811391 L135.84131,129.81404 L141.965852,129.81404 L141.965852,135.84604 C141.205288,136.445245 140.344649,136.884662 139.363922,137.204238 C138.32315,137.523815 137.182304,137.683603 135.901354,137.683603 C133.619662,137.683603 131.858356,136.964556 130.597421,135.526464 C129.416545,134.188238 128.836115,132.450543 128.836115,130.333351 C128.836115,128.196185 129.416545,126.438517 130.597421,125.060344 C131.838341,123.582305 133.519588,122.863258 135.641161,122.863258 Z M143.03331,123.142887 L145.375046,123.142887 L145.375046,129.094993 L152.620419,129.094993 L152.620419,123.142887 L154.962156,123.142887 L154.962156,137.403974 L152.620419,137.403974 L152.620419,131.092344 L145.375046,131.092344 L145.375046,137.403974 L143.03331,137.403974 L143.03331,123.142887 Z M155.128946,123.142887 L166.837629,123.142887 L166.837629,125.140238 L162.154156,125.140238 L162.154156,137.403974 L159.812419,137.403974 L159.812419,125.140238 L155.128946,125.140238 L155.128946,123.142887 Z" id="DROUGHT" fill="#FFFFFF"></path>
<path d="M127.915547,20.9928477 L158.766011,20.9928477 L158.766011,24.712053 L145.349165,24.712053 L145.349165,35.3737748 L161.830353,35.3737748 L161.830353,39.1756291 L145.349165,39.1756291 L145.349165,56.9038411 L141.373803,56.9038411 L141.373803,39.1756291 L124.768386,39.1756291 L124.768386,35.3737748 L141.373803,35.3737748 L141.373803,24.712053 L127.915547,24.712053 L127.915547,20.9928477 Z M127.791317,80.1006623 L158.931651,80.1006623 L158.931651,83.613245 L145.431985,83.613245 L145.431985,87.2084768 L161.416252,87.2084768 L161.416252,90.8450331 L145.431985,90.8450331 L145.431985,99.7298013 L141.539443,99.7298013 L141.539443,90.8450331 L125.182486,90.8450331 L125.182486,87.2084768 L141.539443,87.2084768 L141.539443,83.613245 L127.791317,83.613245 L127.791317,80.1006623 Z M129.737588,62.6203974 L156.90256,62.6203974 L156.90256,77.8278146 L129.737588,77.8278146 L129.737588,62.6203974 Z M153.010019,74.5631788 L153.010019,71.7944371 L133.58872,71.7944371 L133.58872,74.5631788 L153.010019,74.5631788 Z M133.58872,68.6537748 L153.010019,68.6537748 L153.010019,65.8850331 L133.58872,65.8850331 L133.58872,68.6537748 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>
<g id="ganhan" transform="translate(13.458256, 25.827815)" fill="#EC8D15" fill-rule="nonzero">
<path d="M21.2476135,54.9477146 L4.21073109,54.9477146 C1.83240259,55.0002968 -0.0471907376,56.568761 0.00131327194,58.4603473 C-0.0568701923,60.3572544 1.82549313,61.9341899 4.21073109,61.986755 L82.4054308,61.986755 C84.7872098,61.9341775 86.6681855,60.3614822 86.6148487,58.4672348 C86.6681855,56.5729874 84.7872099,55.000292 82.4054308,54.9477146 L71.1456712,54.9477146 C71.1028667,54.8729308 71.056642,54.7994149 71.0070896,54.7273141 L58.6213541,37.3914387 L70.9377988,21.3710787 C71.7462099,20.3115711 71.7628175,18.9856479 70.9811056,17.9135461 L58.9591468,1.54192284 C58.4560101,0.818712345 57.598013,0.29396968 56.5898739,0.0928986016 C55.5817348,-0.108172477 54.5138712,0.0324616017 53.6410757,0.481245504 C51.8085382,1.46949768 51.2552699,3.41918086 52.3765181,4.93746779 L63.1339192,19.5596622 L50.8088131,35.5731347 C50.0119942,36.6215712 49.988813,37.9303639 50.7481837,38.9962297 L62.1465249,54.9477146 L50.6962155,54.9477146 C50.6536176,54.8728525 50.607389,54.7993305 50.5576339,54.7273141 L38.1545756,37.3983262 L50.4970044,21.3710787 C51.3054155,20.3115711 51.3220231,18.9856479 50.5403112,17.9135461 L38.5096911,1.54192284 C38.0065544,0.818712345 37.1485574,0.29396968 36.1404183,0.0928986016 C35.1322792,-0.108172477 34.0644155,0.0324616017 33.19162,0.481245504 C31.3560331,1.46734877 30.7988541,3.41745583 31.9184011,4.93746779 L42.6844635,19.5596622 L30.3593574,35.5731347 C29.5598364,36.62032 29.5333434,37.9291245 30.2900666,38.9962297 L41.6970692,54.9477146 L30.2467598,54.9477146 C30.2041619,54.8728525 30.1579333,54.7993305 30.1081781,54.7273141 L17.7224426,37.3707761 L30.0388873,21.3710787 C30.8472984,20.3115711 30.8639061,18.9856479 30.0821941,17.9135461 L18.0602354,1.54192284 C17.5572093,0.816717246 16.6975978,0.290510891 15.6872833,0.0893335808 C14.6769688,-0.11184373 13.6069499,0.0301279555 12.733503,0.481245504 C10.9009654,1.46949766 10.3476971,3.41918085 11.4689453,4.93746779 L22.2609919,19.5114496 L9.90990167,35.5731347 C9.1103806,36.62032 9.08388758,37.9291245 9.84061086,38.9962297 L21.2476135,54.9477146 Z" id="Shape"></path>
</g>
</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>GW-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(-648.000000, -2515.000000)">
<g id="GW-R" transform="translate(648.000000, 2515.000000)">
<g id="Group-Copy-3">
<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="M70.7945678,124.618172 L72.8940557,124.618172 L72.8940557,129.954543 L79.3899073,129.954543 L79.3899073,124.618172 L81.4893952,124.618172 L81.4893952,137.403974 L79.3899073,137.403974 L79.3899073,131.745272 L72.8940557,131.745272 L72.8940557,137.403974 L70.7945678,137.403974 L70.7945678,124.618172 Z M83.6220112,124.618172 L92.863347,124.618172 L92.863347,126.408901 L85.7214991,126.408901 L85.7214991,129.954543 L92.4326828,129.954543 L92.4326828,131.745272 L85.7214991,131.745272 L85.7214991,135.613245 L93.1684008,135.613245 L93.1684008,137.403974 L83.6220112,137.403974 L83.6220112,124.618172 Z M98.4053878,124.618172 L100.791985,124.618172 L105.69079,137.403974 L103.447748,137.403974 L102.281366,134.19857 L96.9160074,134.19857 L95.7496252,137.403974 L93.5065826,137.403974 L98.4053878,124.618172 Z M97.5440594,132.47947 L101.653314,132.47947 L99.6435473,126.87449 L99.57177,126.87449 L97.5440594,132.47947 Z M105.580364,124.618172 L116.077803,124.618172 L116.077803,126.408901 L111.878827,126.408901 L111.878827,137.403974 L109.77934,137.403974 L109.77934,126.408901 L105.580364,126.408901 L105.580364,124.618172 Z M121.652972,124.618172 L124.021625,124.618172 L126.426167,134.341828 L126.497944,134.341828 L129.028096,124.618172 L131.199362,124.618172 L133.729514,134.341828 L133.801291,134.341828 L136.205833,124.618172 L138.574486,124.618172 L134.877952,137.403974 L132.652853,137.403974 L130.15859,127.787762 L130.086813,127.787762 L127.574605,137.403974 L125.331562,137.403974 L121.652972,124.618172 Z M143.183421,124.618172 L145.570019,124.618172 L150.468824,137.403974 L148.225781,137.403974 L147.059399,134.19857 L141.694041,134.19857 L140.527659,137.403974 L138.284616,137.403974 L143.183421,124.618172 Z M142.322093,132.47947 L146.431347,132.47947 L144.421581,126.87449 L144.349803,126.87449 L142.322093,132.47947 Z M150.178954,124.618172 L152.457885,124.618172 L155.974976,135.040212 L156.028809,135.040212 L159.5459,124.618172 L161.824831,124.618172 L157.266968,137.403974 L154.736816,137.403974 L150.178954,124.618172 Z M162.791065,124.618172 L172.032401,124.618172 L172.032401,126.408901 L164.890553,126.408901 L164.890553,129.954543 L171.601737,129.954543 L171.601737,131.745272 L164.890553,131.745272 L164.890553,135.613245 L172.337455,135.613245 L172.337455,137.403974 L162.791065,137.403974 L162.791065,124.618172 Z" id="HEAT-WAVE" fill="#FFFFFF"></path>
<path d="M143.057811,17.8659603 C143.430501,18.8990728 143.803191,20.0148344 144.175881,21.2545695 L160.284378,21.2545695 L160.284378,24.8911258 L123.470872,24.8911258 L123.470872,21.2545695 L139.910649,21.2545695 C139.537959,20.304106 139.123859,19.4362914 138.668349,18.6098013 L143.057811,17.8659603 Z M153.575955,56.1324503 L150.138924,56.1324503 L149.227904,52.6198675 L152.416475,52.7851656 C153.948646,52.7851656 154.735436,52.2066225 154.735436,51.1321854 L154.735436,40.6770861 L129.061224,40.6770861 L129.061224,56.2564238 L125.334323,56.2564238 L125.334323,37.2884768 L158.462338,37.2884768 L158.462338,51.9586755 C158.462338,54.7274172 156.805937,56.1324503 153.575955,56.1324503 Z M129.972245,26.8333775 L153.865826,26.8333775 L153.865826,35.4288742 L129.972245,35.4288742 L129.972245,26.8333775 Z M150.097514,32.4535099 L150.097514,29.8087417 L133.740557,29.8087417 L133.740557,32.4535099 L150.097514,32.4535099 Z M133.492096,42.6606623 L150.345974,42.6606623 L150.345974,51.3388079 L133.492096,51.3388079 L133.492096,42.6606623 Z M146.867532,48.4460927 L146.867532,45.5533775 L137.011948,45.5533775 L137.011948,48.4460927 L146.867532,48.4460927 Z M136.680668,62.2209272 L156.805937,62.2209272 L156.805937,78.6680795 L136.680668,78.6680795 L136.680668,62.2209272 Z M153.037625,75.1968212 L153.037625,72.1801325 L140.49039,72.1801325 L140.49039,75.1968212 L153.037625,75.1968212 Z M140.49039,68.7915232 L153.037625,68.7915232 L153.037625,65.7335099 L140.49039,65.7335099 L140.49039,68.7915232 Z M158.710798,81.5194702 L158.710798,94.4953642 L160.864119,94.4953642 L160.864119,98.173245 L132.456846,98.173245 L132.456846,94.4953642 L135.024267,94.4953642 L135.024267,81.5194702 L158.710798,81.5194702 Z M138.833989,94.4953642 L141.85692,94.4953642 L141.85692,85.114702 L138.833989,85.114702 L138.833989,94.4953642 Z M145.376772,94.4953642 L148.316883,94.4953642 L148.316883,85.114702 L145.376772,85.114702 L145.376772,94.4953642 Z M151.836735,94.4953642 L154.942486,94.4953642 L154.942486,85.114702 L151.836735,85.114702 L151.836735,94.4953642 Z M127.363414,61.1878146 C130.013655,62.9647682 132.208386,64.7417219 134.030427,66.5186755 L131.214545,69.2874172 C129.640965,67.6344371 127.446234,65.8161589 124.588942,63.9152318 L127.363414,61.1878146 Z M126.038293,71.0643709 C128.688534,73.047947 130.966085,75.0728477 132.788126,77.0564238 L129.972245,79.8664901 C128.398664,77.9655629 126.121113,75.9406623 123.222412,73.7917881 L126.038293,71.0643709 Z M129.351095,82.7592053 L132.788126,84.0815894 C131.214545,89.1231788 129.392505,93.9168212 127.404824,98.3798675 L123.760742,96.7682119 C125.914063,92.2225166 127.777514,87.5528477 129.351095,82.7592053 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="hanchao" transform="translate(20.716052, 16.185430)" fill="#D12821" fill-rule="nonzero">
<path d="M30.9206243,49.9337748 C29.4490305,49.9337748 28.7132337,51.0529801 28.7132337,52.1721854 C28.3453352,53.2913907 29.4490305,54.410596 30.9206243,54.410596 C32.392218,54.410596 33.1280148,53.2913907 33.1280148,52.1721854 C33.1280148,50.6799117 32.0243195,49.9337748 30.9206243,49.9337748 Z" id="Shape"></path>
<path d="M7.44086268,43.8638361 L7.44086268,79.5496689 L63.9914193,79.5496689 L63.9914193,43.8638361 L71.432282,43.8638361 L71.432282,40.5182893 L35.716141,-3.62376795e-12 L9.09494702e-13,40.5182893 L9.09494702e-13,43.8638361 L7.44086268,43.8638361 Z M28.6473214,56.8388934 C25.6709763,56.8388934 23.4387175,54.6085288 23.4387175,51.6347094 C23.4387175,48.6608899 25.6709763,46.4305254 28.6473214,46.4305254 C31.6236665,46.4305254 33.8559253,48.66089 33.8559254,51.6347094 C33.4838822,54.6085287 31.2516234,56.8388933 28.6473214,56.8388934 Z M42.4129174,52.3781643 C40.9247449,52.3781643 38.6924861,52.0064368 38.6924861,60.1844402 C38.6924861,68.3624436 40.5527017,69.1058984 42.7849606,68.3624435 C44.2731332,67.990716 45.0172194,66.5038064 45.3892625,63.9017144 L50.5978664,63.9017144 C50.5978664,67.2472612 49.1096939,74.6818097 42.0408743,74.6818098 C34.9720547,74.6818099 32.3677528,65.0168967 33.111839,58.6975305 C33.8559253,52.3781642 36.0881841,45.6870706 42.7849606,46.058798 C49.481737,46.8022528 50.5978664,53.1216191 50.5978664,57.5823482 L45.0172194,57.5823482 C45.3892626,54.2368014 44.2731332,52.7498916 42.4129174,52.3781643 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>GW-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(-54.000000, -2515.000000)">
<g id="GW-O" transform="translate(54.000000, 2515.000000)">
<g id="Group-8-Copy-2">
<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="M68.7986053,123.142887 L71.1403419,123.142887 L71.1403419,129.094993 L78.3857148,129.094993 L78.3857148,123.142887 L80.7274514,123.142887 L80.7274514,137.403974 L78.3857148,137.403974 L78.3857148,131.092344 L71.1403419,131.092344 L71.1403419,137.403974 L68.7986053,137.403974 L68.7986053,123.142887 Z M81.9950579,123.142887 L92.3027017,123.142887 L92.3027017,125.140238 L84.3367945,125.140238 L84.3367945,129.094993 L91.8223455,129.094993 L91.8223455,131.092344 L84.3367945,131.092344 L84.3367945,135.406623 L92.642954,135.406623 L92.642954,137.403974 L81.9950579,137.403974 L81.9950579,123.142887 Z M97.3731283,123.142887 L100.035102,123.142887 L105.499154,137.403974 L102.997299,137.403974 L101.696334,133.828715 L95.7118964,133.828715 L94.4109316,137.403974 L91.9090764,137.403974 L97.3731283,123.142887 Z M96.4124159,131.911258 L100.995815,131.911258 L98.7541524,125.65955 L98.6740931,125.65955 L96.4124159,131.911258 Z M104.264906,123.142887 L115.973588,123.142887 L115.973588,125.140238 L111.290115,125.140238 L111.290115,137.403974 L108.948379,137.403974 L108.948379,125.140238 L104.264906,125.140238 L104.264906,123.142887 Z M119.969885,123.142887 L122.611844,123.142887 L125.293833,133.988503 L125.373892,133.988503 L128.195985,123.142887 L130.617781,123.142887 L133.439874,133.988503 L133.519933,133.988503 L136.201922,123.142887 L138.843881,123.142887 L134.720824,137.403974 L132.238983,137.403974 L129.45692,126.678199 L129.376861,126.678199 L126.574783,137.403974 L124.072928,137.403974 L119.969885,123.142887 Z M142.873536,123.142887 L145.53551,123.142887 L150.999562,137.403974 L148.497707,137.403974 L147.196742,133.828715 L141.212304,133.828715 L139.911339,137.403974 L137.409484,137.403974 L142.873536,123.142887 Z M141.912824,131.911258 L146.496222,131.911258 L144.25456,125.65955 L144.174501,125.65955 L141.912824,131.911258 Z M149.565165,123.142887 L152.10705,123.142887 L156.029959,134.76747 L156.090003,134.76747 L160.012913,123.142887 L162.554797,123.142887 L157.471028,137.403974 L154.648935,137.403974 L149.565165,123.142887 Z M162.521439,123.142887 L172.829083,123.142887 L172.829083,125.140238 L164.863176,125.140238 L164.863176,129.094993 L172.348727,129.094993 L172.348727,131.092344 L164.863176,131.092344 L164.863176,135.406623 L173.169335,135.406623 L173.169335,137.403974 L162.521439,137.403974 L162.521439,123.142887 Z" id="HEAT-WAVE" 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>
<path d="M143.402894,19.2434437 C143.775584,20.2765563 144.148275,21.3923179 144.520965,22.632053 L160.629462,22.632053 L160.629462,26.2686093 L123.815955,26.2686093 L123.815955,22.632053 L140.255733,22.632053 C139.883043,21.6815894 139.468942,20.8137748 139.013432,19.9872848 L143.402894,19.2434437 Z M153.921039,57.5099338 L150.484007,57.5099338 L149.572987,53.997351 L152.761558,54.162649 C154.293729,54.162649 155.080519,53.584106 155.080519,52.5096689 L155.080519,42.0545695 L129.406308,42.0545695 L129.406308,57.6339073 L125.679406,57.6339073 L125.679406,38.6659603 L158.807421,38.6659603 L158.807421,53.3361589 C158.807421,56.1049007 157.15102,57.5099338 153.921039,57.5099338 Z M130.317328,28.2108609 L154.210909,28.2108609 L154.210909,36.8063576 L130.317328,36.8063576 L130.317328,28.2108609 Z M150.442597,33.8309934 L150.442597,31.1862252 L134.08564,31.1862252 L134.08564,33.8309934 L150.442597,33.8309934 Z M133.83718,44.0381457 L150.691058,44.0381457 L150.691058,52.7162914 L133.83718,52.7162914 L133.83718,44.0381457 Z M147.212616,49.8235762 L147.212616,46.9308609 L137.357032,46.9308609 L137.357032,49.8235762 L147.212616,49.8235762 Z M137.025751,63.5984106 L157.15102,63.5984106 L157.15102,80.0455629 L137.025751,80.0455629 L137.025751,63.5984106 Z M153.382709,76.5743046 L153.382709,73.5576159 L140.835473,73.5576159 L140.835473,76.5743046 L153.382709,76.5743046 Z M140.835473,70.1690066 L153.382709,70.1690066 L153.382709,67.1109934 L140.835473,67.1109934 L140.835473,70.1690066 Z M159.055881,82.8969536 L159.055881,95.8728477 L161.209202,95.8728477 L161.209202,99.5507285 L132.801929,99.5507285 L132.801929,95.8728477 L135.369351,95.8728477 L135.369351,82.8969536 L159.055881,82.8969536 Z M139.179072,95.8728477 L142.202004,95.8728477 L142.202004,86.4921854 L139.179072,86.4921854 L139.179072,95.8728477 Z M145.721855,95.8728477 L148.661967,95.8728477 L148.661967,86.4921854 L145.721855,86.4921854 L145.721855,95.8728477 Z M152.181818,95.8728477 L155.28757,95.8728477 L155.28757,86.4921854 L152.181818,86.4921854 L152.181818,95.8728477 Z M127.708497,62.565298 C130.358738,64.3422517 132.553469,66.1192053 134.37551,67.8961589 L131.559629,70.6649007 C129.986048,69.0119205 127.791317,67.1936424 124.934026,65.2927152 L127.708497,62.565298 Z M126.383377,72.4418543 C129.033618,74.4254305 131.311169,76.4503311 133.13321,78.4339073 L130.317328,81.2439735 C128.743748,79.3430464 126.466197,77.3181457 123.567495,75.1692715 L126.383377,72.4418543 Z M129.696178,84.1366887 L133.13321,85.4590728 C131.559629,90.5006623 129.737588,95.2943046 127.749907,99.757351 L124.105826,98.1456954 C126.259147,93.6 128.122597,88.9303311 129.696178,84.1366887 Z" id="高-温" fill="#FFFFFF"></path>
<g id="hanchao" transform="translate(21.740260, 17.218543)" fill="#EC8D15" fill-rule="nonzero">
<path d="M28.8501233,49.9337748 C27.3785296,49.9337748 26.6427327,51.0529801 26.6427327,52.1721854 C26.2748343,53.2913907 27.3785296,54.410596 28.8501233,54.410596 C30.3217171,54.410596 31.0575139,53.2913907 31.0575139,52.1721854 C31.0575139,50.6799117 29.9538186,49.9337748 28.8501233,49.9337748 Z" id="Shape"></path>
<path d="M7.44086268,43.8638361 L7.44086268,79.5496689 L63.9914193,79.5496689 L63.9914193,43.8638361 L71.432282,43.8638361 L71.432282,40.5182893 L35.716141,-3.63797881e-12 L9.09494702e-13,40.5182893 L9.09494702e-13,43.8638361 L7.44086268,43.8638361 Z M28.6473214,56.8388934 C25.6709763,56.8388934 23.4387175,54.6085288 23.4387175,51.6347094 C23.4387175,48.6608899 25.6709763,46.4305254 28.6473214,46.4305254 C31.6236665,46.4305254 33.8559253,48.66089 33.8559254,51.6347094 C33.4838822,54.6085287 31.2516234,56.8388933 28.6473214,56.8388934 Z M42.4129174,52.3781643 C40.9247449,52.3781643 38.6924861,52.0064368 38.6924861,60.1844402 C38.6924861,68.3624436 40.5527017,69.1058984 42.7849606,68.3624435 C44.2731332,67.990716 45.0172194,66.5038064 45.3892625,63.9017144 L50.5978664,63.9017144 C50.5978664,67.2472612 49.1096939,74.6818097 42.0408743,74.6818098 C34.9720547,74.6818099 32.3677528,65.0168967 33.111839,58.6975305 C33.8559253,52.3781642 36.0881841,45.6870706 42.7849606,46.058798 C49.481737,46.8022528 50.5978664,53.1216191 50.5978664,57.5823482 L45.0172194,57.5823482 C45.3892626,54.2368014 44.2731332,52.7498916 42.4129174,52.3781643 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>GW-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(-373.000000, -2512.000000)">
<g id="GW-Y" transform="translate(373.000000, 2512.000000)">
<g id="Group-8-Copy-2">
<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="M68.7986053,123.142887 L71.1403419,123.142887 L71.1403419,129.094993 L78.3857148,129.094993 L78.3857148,123.142887 L80.7274514,123.142887 L80.7274514,137.403974 L78.3857148,137.403974 L78.3857148,131.092344 L71.1403419,131.092344 L71.1403419,137.403974 L68.7986053,137.403974 L68.7986053,123.142887 Z M81.9950579,123.142887 L92.3027017,123.142887 L92.3027017,125.140238 L84.3367945,125.140238 L84.3367945,129.094993 L91.8223455,129.094993 L91.8223455,131.092344 L84.3367945,131.092344 L84.3367945,135.406623 L92.642954,135.406623 L92.642954,137.403974 L81.9950579,137.403974 L81.9950579,123.142887 Z M97.3731283,123.142887 L100.035102,123.142887 L105.499154,137.403974 L102.997299,137.403974 L101.696334,133.828715 L95.7118964,133.828715 L94.4109316,137.403974 L91.9090764,137.403974 L97.3731283,123.142887 Z M96.4124159,131.911258 L100.995815,131.911258 L98.7541524,125.65955 L98.6740931,125.65955 L96.4124159,131.911258 Z M104.264906,123.142887 L115.973588,123.142887 L115.973588,125.140238 L111.290115,125.140238 L111.290115,137.403974 L108.948379,137.403974 L108.948379,125.140238 L104.264906,125.140238 L104.264906,123.142887 Z M119.969885,123.142887 L122.611844,123.142887 L125.293833,133.988503 L125.373892,133.988503 L128.195985,123.142887 L130.617781,123.142887 L133.439874,133.988503 L133.519933,133.988503 L136.201922,123.142887 L138.843881,123.142887 L134.720824,137.403974 L132.238983,137.403974 L129.45692,126.678199 L129.376861,126.678199 L126.574783,137.403974 L124.072928,137.403974 L119.969885,123.142887 Z M142.873536,123.142887 L145.53551,123.142887 L150.999562,137.403974 L148.497707,137.403974 L147.196742,133.828715 L141.212304,133.828715 L139.911339,137.403974 L137.409484,137.403974 L142.873536,123.142887 Z M141.912824,131.911258 L146.496222,131.911258 L144.25456,125.65955 L144.174501,125.65955 L141.912824,131.911258 Z M149.565165,123.142887 L152.10705,123.142887 L156.029959,134.76747 L156.090003,134.76747 L160.012913,123.142887 L162.554797,123.142887 L157.471028,137.403974 L154.648935,137.403974 L149.565165,123.142887 Z M162.521439,123.142887 L172.829083,123.142887 L172.829083,125.140238 L164.863176,125.140238 L164.863176,129.094993 L172.348727,129.094993 L172.348727,131.092344 L164.863176,131.092344 L164.863176,135.406623 L173.169335,135.406623 L173.169335,137.403974 L162.521439,137.403974 L162.521439,123.142887 Z" id="HEAT-WAVE" 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>
<path d="M143.402894,19.2434437 C143.775584,20.2765563 144.148275,21.3923179 144.520965,22.632053 L160.629462,22.632053 L160.629462,26.2686093 L123.815955,26.2686093 L123.815955,22.632053 L140.255733,22.632053 C139.883043,21.6815894 139.468942,20.8137748 139.013432,19.9872848 L143.402894,19.2434437 Z M153.921039,57.5099338 L150.484007,57.5099338 L149.572987,53.997351 L152.761558,54.162649 C154.293729,54.162649 155.080519,53.584106 155.080519,52.5096689 L155.080519,42.0545695 L129.406308,42.0545695 L129.406308,57.6339073 L125.679406,57.6339073 L125.679406,38.6659603 L158.807421,38.6659603 L158.807421,53.3361589 C158.807421,56.1049007 157.15102,57.5099338 153.921039,57.5099338 Z M130.317328,28.2108609 L154.210909,28.2108609 L154.210909,36.8063576 L130.317328,36.8063576 L130.317328,28.2108609 Z M150.442597,33.8309934 L150.442597,31.1862252 L134.08564,31.1862252 L134.08564,33.8309934 L150.442597,33.8309934 Z M133.83718,44.0381457 L150.691058,44.0381457 L150.691058,52.7162914 L133.83718,52.7162914 L133.83718,44.0381457 Z M147.212616,49.8235762 L147.212616,46.9308609 L137.357032,46.9308609 L137.357032,49.8235762 L147.212616,49.8235762 Z M137.025751,63.5984106 L157.15102,63.5984106 L157.15102,80.0455629 L137.025751,80.0455629 L137.025751,63.5984106 Z M153.382709,76.5743046 L153.382709,73.5576159 L140.835473,73.5576159 L140.835473,76.5743046 L153.382709,76.5743046 Z M140.835473,70.1690066 L153.382709,70.1690066 L153.382709,67.1109934 L140.835473,67.1109934 L140.835473,70.1690066 Z M159.055881,82.8969536 L159.055881,95.8728477 L161.209202,95.8728477 L161.209202,99.5507285 L132.801929,99.5507285 L132.801929,95.8728477 L135.369351,95.8728477 L135.369351,82.8969536 L159.055881,82.8969536 Z M139.179072,95.8728477 L142.202004,95.8728477 L142.202004,86.4921854 L139.179072,86.4921854 L139.179072,95.8728477 Z M145.721855,95.8728477 L148.661967,95.8728477 L148.661967,86.4921854 L145.721855,86.4921854 L145.721855,95.8728477 Z M152.181818,95.8728477 L155.28757,95.8728477 L155.28757,86.4921854 L152.181818,86.4921854 L152.181818,95.8728477 Z M127.708497,62.565298 C130.358738,64.3422517 132.553469,66.1192053 134.37551,67.8961589 L131.559629,70.6649007 C129.986048,69.0119205 127.791317,67.1936424 124.934026,65.2927152 L127.708497,62.565298 Z M126.383377,72.4418543 C129.033618,74.4254305 131.311169,76.4503311 133.13321,78.4339073 L130.317328,81.2439735 C128.743748,79.3430464 126.466197,77.3181457 123.567495,75.1692715 L126.383377,72.4418543 Z M129.696178,84.1366887 L133.13321,85.4590728 C131.559629,90.5006623 129.737588,95.2943046 127.749907,99.757351 L124.105826,98.1456954 C126.259147,93.6 128.122597,88.9303311 129.696178,84.1366887 Z" id="高-温" fill="#444444"></path>
<g id="hanchao" transform="translate(21.740260, 17.218543)" fill="#FFFF00" fill-rule="nonzero">
<path d="M28.8501233,49.9337748 C27.3785296,49.9337748 26.6427327,51.0529801 26.6427327,52.1721854 C26.2748343,53.2913907 27.3785296,54.410596 28.8501233,54.410596 C30.3217171,54.410596 31.0575139,53.2913907 31.0575139,52.1721854 C31.0575139,50.6799117 29.9538186,49.9337748 28.8501233,49.9337748 Z" id="Shape"></path>
<path d="M7.44086268,43.8638361 L7.44086268,79.5496689 L63.9914193,79.5496689 L63.9914193,43.8638361 L71.432282,43.8638361 L71.432282,40.5182893 L35.716141,-3.63797881e-12 L9.09494702e-13,40.5182893 L9.09494702e-13,43.8638361 L7.44086268,43.8638361 Z M28.6473214,56.8388934 C25.6709763,56.8388934 23.4387175,54.6085288 23.4387175,51.6347094 C23.4387175,48.6608899 25.6709763,46.4305254 28.6473214,46.4305254 C31.6236665,46.4305254 33.8559253,48.66089 33.8559254,51.6347094 C33.4838822,54.6085287 31.2516234,56.8388933 28.6473214,56.8388934 Z M42.4129174,52.3781643 C40.9247449,52.3781643 38.6924861,52.0064368 38.6924861,60.1844402 C38.6924861,68.3624436 40.5527017,69.1058984 42.7849606,68.3624435 C44.2731332,67.990716 45.0172194,66.5038064 45.3892625,63.9017144 L50.5978664,63.9017144 C50.5978664,67.2472612 49.1096939,74.6818097 42.0408743,74.6818098 C34.9720547,74.6818099 32.3677528,65.0168967 33.111839,58.6975305 C33.8559253,52.3781642 36.0881841,45.6870706 42.7849606,46.058798 C49.481737,46.8022528 50.5978664,53.1216191 50.5978664,57.5823482 L45.0172194,57.5823482 C45.3892626,54.2368014 44.2731332,52.7498916 42.4129174,52.3781643 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>HC-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, -2273.000000)">
<g id="HC-R" transform="translate(956.000000, 2273.000000)">
<g id="Group-8-Copy-2" transform="translate(0.172222, 0.000000)">
<g id="Group-7-Copy">
<g id="leidian-cheng" fill-rule="nonzero">
<path d="M185.526502,142.151701 C185.526502,149.727635 179.987476,155.862495 173.130614,155.862495 L12.581209,155.862495 C5.74493831,155.862495 0.185320591,149.727635 0.185320591,142.151701 L0.185320591,13.8960751 C0.185320591,6.3201408 5.72434714,0.185281001 12.581209,0.185281001 L173.130614,0.185281001 C179.966885,0.185281001 185.526502,6.3201408 185.526502,13.8960751 L185.526502,142.151701 Z" id="Shape" fill="#636464"></path>
<polygon id="Shape" fill="#CBCCCC" points="8.27765305 9.46991782 105.220913 9.46991782 105.220913 104.477898 8.27765305 104.477898"></polygon>
<path d="M67.3743303,52.825672 C68.9186686,58.4046888 65.6240803,64.1689866 60.0644626,65.7129949 C54.4842537,67.2570033 48.7187242,63.9837056 47.1743859,58.4046888 C45.6300477,52.825672 48.924636,47.0613742 54.5048448,45.5173659 C60.0644626,43.9733575 65.8299921,47.2466552 67.3743303,52.825672 Z" id="Shape" fill="#CBCCCC"></path>
<path d="M111.501222,10.8904055 L175.169141,10.8904055 L175.169141,104.951394 L111.501222,104.951394 L111.501222,10.8904055 Z M8.27765305,110.756865 L56.7492831,110.756865 L56.7492831,148.265974 L8.27765305,148.265974 L8.27765305,110.756865 Z M63.9767862,110.756865 L175.169141,110.756865 L175.169141,148.265974 L63.9767862,148.265974 L63.9767862,110.756865 Z" id="Shape" fill="#D12821"></path>
</g>
<path d="M73.0515005,122.863258 C74.7296338,122.863258 76.1280783,123.302675 77.2068783,124.18151 C78.2457227,125.020397 78.8650339,126.178861 79.0847894,127.616954 L76.8073227,127.616954 C76.5675894,126.678199 76.1280783,125.999099 75.4688116,125.559682 C74.8295227,125.120265 74.0104339,124.92053 73.011545,124.92053 C71.5132116,124.92053 70.3944561,125.419868 69.6353005,126.45849 C68.9360783,127.377272 68.5964561,128.655576 68.5964561,130.293404 C68.5964561,131.971179 68.9360783,133.269457 69.6153227,134.168265 C70.3545005,135.126993 71.5132116,135.626331 73.0714783,135.626331 C74.090345,135.626331 74.9294116,135.366675 75.5687005,134.887311 C76.247945,134.348026 76.7274116,133.529113 77.0071005,132.450543 L79.2845672,132.450543 C78.9649227,134.128318 78.225745,135.426596 77.0470561,136.365351 C75.9482783,137.244185 74.629745,137.683603 73.0914561,137.683603 C70.7141005,137.683603 68.9360783,136.924609 67.7773672,135.44657 C66.7585005,134.168265 66.2590561,132.450543 66.2590561,130.293404 C66.2590561,128.176212 66.7784783,126.438517 67.8373005,125.120265 C69.0359672,123.602278 70.7740338,122.863258 73.0515005,122.863258 Z M86.2834486,122.863258 C88.4610263,122.863258 90.1791152,123.562331 91.4377152,124.98045 C92.6363819,126.318675 93.2357152,128.096318 93.2357152,130.293404 C93.2357152,132.49049 92.6363819,134.248159 91.4377152,135.586384 C90.1791152,136.98453 88.4610263,137.683603 86.2834486,137.683603 C84.085893,137.683603 82.3678041,136.964556 81.1291819,135.566411 C79.9305152,134.208212 79.3511597,132.450543 79.3511597,130.293404 C79.3511597,128.116291 79.9305152,126.358623 81.1291819,125.000424 C82.3678041,123.562331 84.085893,122.863258 86.2834486,122.863258 Z M86.2834486,124.92053 C84.805093,124.92053 83.6663597,125.419868 82.8472708,126.418543 C82.0681374,127.377272 81.6885597,128.655576 81.6885597,130.293404 C81.6885597,131.911258 82.0681374,133.189563 82.8472708,134.148291 C83.6463819,135.126993 84.805093,135.626331 86.2834486,135.626331 C87.7618041,135.626331 88.9005374,135.146967 89.6996486,134.208212 C90.4787819,133.269457 90.8783374,131.971179 90.8783374,130.293404 C90.8783374,128.615629 90.4787819,127.297377 89.6996486,126.338649 C88.9005374,125.379921 87.7618041,124.92053 86.2834486,124.92053 Z M93.901641,123.142887 L96.2190633,123.142887 L96.2190633,135.406623 L103.930485,135.406623 L103.930485,137.403974 L93.901641,137.403974 L93.901641,123.142887 Z M104.196856,123.142887 L109.411056,123.142887 C111.728478,123.142887 113.466545,123.78204 114.665211,125.060344 C115.803945,126.258755 116.3833,127.99645 116.3833,130.27343 C116.3833,132.530437 115.803945,134.268132 114.665211,135.486517 C113.466545,136.764821 111.728478,137.403974 109.411056,137.403974 L104.196856,137.403974 L104.196856,123.142887 Z M106.534256,125.140238 L106.534256,135.406623 L108.971545,135.406623 C110.749567,135.406623 112.048122,134.987179 112.867211,134.168265 C113.666322,133.329377 114.065878,132.031099 114.065878,130.27343 C114.065878,128.475815 113.666322,127.157563 112.867211,126.358623 C112.048122,125.539709 110.749567,125.140238 108.971545,125.140238 L106.534256,125.140238 Z M120.871641,123.142887 L123.508707,123.142887 L126.18573,133.988503 L126.265641,133.988503 L129.082507,123.142887 L131.499818,123.142887 L134.316685,133.988503 L134.396596,133.988503 L137.073618,123.142887 L139.710685,123.142887 L135.595263,137.403974 L133.118018,137.403974 L130.341107,126.678199 L130.261196,126.678199 L127.464307,137.403974 L124.967085,137.403974 L120.871641,123.142887 Z M143.732878,123.142887 L146.389922,123.142887 L151.843855,137.403974 L149.346633,137.403974 L148.048078,133.828715 L142.074722,133.828715 L140.776166,137.403974 L138.278944,137.403974 L143.732878,123.142887 Z M142.773944,131.911258 L147.348855,131.911258 L145.111344,125.65955 L145.031433,125.65955 L142.773944,131.911258 Z M150.412115,123.142887 L152.949292,123.142887 L156.864937,134.76747 L156.92487,134.76747 L160.840515,123.142887 L163.377692,123.142887 L158.303337,137.403974 L155.48647,137.403974 L150.412115,123.142887 Z M163.344396,123.142887 L173.632951,123.142887 L173.632951,125.140238 L165.681796,125.140238 L165.681796,129.094993 L173.153485,129.094993 L173.153485,131.092344 L165.681796,131.092344 L165.681796,135.406623 L173.972574,135.406623 L173.972574,137.403974 L163.344396,137.403974 L163.344396,123.142887 Z" id="COLD-WAVE" fill="#FFFFFF"></path>
</g>
</g>
<path d="M137.839778,43.6249007 C141.725111,44.5340397 145.486444,45.8150993 149.041111,47.4680795 L147.759778,50.6500662 C144.122444,48.8731126 140.278444,47.509404 136.310444,46.5589404 L137.839778,43.6249007 Z M133.251778,49.3690066 C139.782444,50.5260927 146.023778,52.2203974 152.017111,54.410596 L150.653111,57.7578808 C144.577111,55.4850331 138.253111,53.7080795 131.639778,52.4683444 L133.251778,49.3690066 Z M129.449111,28.2521854 L135.194444,28.2521854 L135.194444,25.6487417 L128.498444,25.6487417 L128.498444,30.6903311 L124.695778,30.6903311 L124.695778,22.4254305 L139.906444,22.4254305 C139.410444,21.5162914 138.873111,20.6898013 138.294444,19.9459603 L142.510444,19.2847682 C143.006444,20.1939073 143.502444,21.2683444 143.998444,22.4254305 L159.167778,22.4254305 L159.167778,30.6903311 L155.365111,30.6903311 L155.365111,25.6487417 L148.586444,25.6487417 L148.586444,28.2521854 L154.455778,28.2521854 L154.455778,31.4341722 L148.586444,31.4341722 L148.586444,33.6656954 L153.835778,33.6656954 L153.835778,36.8063576 L148.586444,36.8063576 L148.586444,38.9552318 L159.663778,38.9552318 L159.663778,42.3438411 L150.157111,42.3438411 C152.554444,44.9059603 156.067778,46.9308609 160.614444,48.418543 L158.961111,51.8898013 C153.091778,49.4103311 148.834444,46.2283444 146.189111,42.3438411 L137.137111,42.3438411 C134.615778,46.2696689 130.689111,49.5343046 125.398444,52.0964238 L123.373111,48.7491391 C127.713111,47.0548344 130.978444,44.9059603 133.169111,42.3438411 L124.282444,42.3438411 L124.282444,38.9552318 L135.194444,38.9552318 L135.194444,36.8063576 L130.275778,36.8063576 L130.275778,33.6656954 L135.194444,33.6656954 L135.194444,31.4341722 L129.449111,31.4341722 L129.449111,28.2521854 Z M144.783778,25.6487417 L139.038444,25.6487417 L139.038444,28.2521854 L144.783778,28.2521854 L144.783778,25.6487417 Z M139.038444,38.9552318 L144.783778,38.9552318 L144.783778,36.8063576 L139.038444,36.8063576 L139.038444,38.9552318 Z M144.783778,33.6656954 L144.783778,31.4341722 L139.038444,31.4341722 L139.038444,33.6656954 L144.783778,33.6656954 Z M131.887778,65.9539073 L137.591778,65.9539073 L137.591778,62.4413245 L141.105111,62.4413245 L141.105111,65.9539073 L146.437111,65.9539073 L146.437111,69.3425166 L141.105111,69.3425166 L141.105111,72.1112583 L145.734444,72.1112583 L145.734444,87.442649 L141.394444,87.442649 L141.394444,90.6246358 L146.147778,90.6246358 L146.147778,94.013245 L141.394444,94.013245 L141.394444,100.211921 L137.839778,100.211921 L137.839778,94.013245 L131.846444,94.013245 L131.846444,90.6246358 L137.839778,90.6246358 L137.839778,87.442649 L132.714444,87.442649 L132.714444,72.1112583 L137.591778,72.1112583 L137.591778,69.3425166 L131.887778,69.3425166 L131.887778,68.805298 L129.366444,71.3260927 C128.043778,69.4251656 126.142444,67.4415894 123.662444,65.2927152 L126.390444,62.6892715 C128.539778,64.6315232 130.399778,66.5324503 131.887778,68.3507285 L131.887778,65.9539073 Z M142.345111,84.3846358 L142.345111,81.202649 L136.103778,81.202649 L136.103778,84.3846358 L142.345111,84.3846358 Z M136.103778,78.3512583 L142.345111,78.3512583 L142.345111,75.1692715 L136.103778,75.1692715 L136.103778,78.3512583 Z M151.769111,76.9462252 L151.769111,83.5994702 L156.315778,83.5994702 L156.315778,76.9462252 L151.769111,76.9462252 Z M156.315778,73.5162914 L156.315778,67.2762914 L151.769111,67.2762914 L151.769111,73.5162914 L156.315778,73.5162914 Z M151.645111,87.029404 C151.314444,92.4842384 150.115778,97.0299338 148.090444,100.625166 L144.990444,97.8150993 C147.057111,94.3025166 148.131778,89.8394702 148.214444,84.4259603 L148.214444,63.6397351 L159.953111,63.6397351 L159.953111,96.1621192 C159.953111,98.7655629 158.713111,100.087947 156.233111,100.087947 L153.339778,100.087947 L152.389111,96.5753642 C153.339778,96.6580132 154.249111,96.7406623 155.075778,96.7406623 C155.902444,96.7406623 156.315778,96.1207947 156.315778,94.8810596 L156.315778,87.029404 L151.645111,87.029404 Z M125.481111,72.6071523 C127.713111,74.5907285 129.573111,76.6156291 131.102444,78.5992053 L128.415778,81.285298 C127.093111,79.3843709 125.191778,77.3594702 122.794444,75.1692715 L125.481111,72.6071523 Z M127.754444,83.6821192 L131.143778,85.0045033 C129.821111,90.2527152 128.374444,95.2116556 126.803778,99.84 L123.249111,98.2696689 C124.985111,93.517351 126.473111,88.6410596 127.754444,83.6821192 Z" id="寒-潮" fill="#FFFFFF"></path>
<g id="hanchao" transform="translate(21.872222, 17.218543)" fill-rule="nonzero">
<path d="M28.7966972,12.0529801 C27.3278286,12.0529801 26.5933943,13.1721854 26.5933943,14.2913907 C26.2261772,15.410596 27.3278286,16.5298013 28.7966972,16.5298013 C30.2655658,16.5298013 31,15.410596 31,14.2913907 C31,12.799117 29.8983486,12.0529801 28.7966972,12.0529801 Z" id="Shape" fill="#EC8D15"></path>
<path d="M63.8729167,35.6858328 L63.8729167,0 L7.4270833,0 L7.4270833,35.6858328 L0,35.6858328 L0,39.0313796 L35.65,79.5496689 L71.3,39.0313796 L71.3,35.6858328 L63.8729167,35.6858328 Z M28.5942708,18.9580987 C25.6234375,18.9580987 23.3953125,16.7277341 23.3953125,13.7539147 C23.3953125,10.7800952 25.6234375,8.54973074 28.5942708,8.54973074 C31.5651041,8.54973074 33.7932291,10.7800953 33.7932292,13.7539147 C33.421875,16.727734 31.19375,18.9580986 28.5942708,18.9580987 Z M42.334375,14.4973696 C40.8489583,14.4973696 38.6208333,14.1256421 38.6208333,22.3036455 C38.6208333,30.4816489 40.4776041,31.2251037 42.7057292,30.4816488 C44.1911459,30.1099213 44.9338542,28.6230117 45.3052083,26.0209197 L50.5041667,26.0209197 C50.5041667,29.3664665 49.01875,36.801015 41.9630208,36.8010151 C34.9072916,36.8010152 32.3078125,27.136102 33.0505208,20.8167358 C33.7932291,14.4973695 36.0213541,7.80627592 42.7057292,8.17800329 C49.3901042,8.92145811 50.5041667,15.2408244 50.5041667,19.7015535 L44.9338542,19.7015535 C45.3052084,16.3560067 44.1911459,14.8690969 42.334375,14.4973696 Z" id="Shape" fill="#D12821"></path>
</g>
<path d="M26.8377333,135.808848 L26.8377333,138.065166 C24.3825333,138.98257 21.6049333,139.726411 18.5049333,140.271894 L18.2073333,137.965987 C21.4809333,137.420503 24.3577333,136.701457 26.8377333,135.808848 Z M22.6217333,118.130225 L24.8785333,119.022834 C23.6137333,121.973404 22.3241333,124.37849 21.0097333,126.262887 C22.0017333,126.163709 23.0185333,126.01494 24.0353333,125.866172 C24.5809333,124.899179 25.1265333,123.882596 25.6969333,122.791629 L27.8049333,123.58506 C25.5481333,127.75057 23.6385333,130.775523 22.1009333,132.659921 C23.7873333,132.263205 25.4737333,131.742517 27.1849333,131.097854 L27.1849333,133.254993 C24.3577333,134.296371 21.6545333,135.015417 19.1249333,135.362543 L18.4801333,133.205404 C18.9017333,133.007046 19.2489333,132.783894 19.5465333,132.511152 C20.4145333,131.643338 21.5057333,130.155656 22.7953333,128.023311 C21.4809333,128.221669 20.1169333,128.395232 18.7281333,128.568795 L18.1081333,126.411656 C18.5049333,126.238093 18.8521333,125.940556 19.1497333,125.494252 C20.4889333,123.287523 21.6297333,120.832848 22.6217333,118.130225 Z M32.9633333,121.89902 L28.0529333,121.89902 L28.0529333,119.617907 L40.1801333,119.617907 L40.1801333,121.89902 L35.3193333,121.89902 L35.3193333,137.693245 L40.8249333,137.693245 L40.8249333,139.974358 L27.3585333,139.974358 L27.3585333,137.693245 L32.9633333,137.693245 L32.9633333,121.89902 Z" id="红" fill="#FFFFFF"></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>HC-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(-44.000000, -2279.000000)">
<g id="HC-O" transform="translate(44.000000, 2279.000000)">
<g id="Group-8-Copy-2">
<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="M73.1870321,122.863258 C74.8682788,122.863258 76.2693178,123.302675 77.3501193,124.18151 C78.3908911,125.020397 79.0113512,126.178861 79.2315144,127.616954 L76.9498224,127.616954 C76.7096443,126.678199 76.2693178,125.999099 75.608828,125.559682 C74.968353,125.120265 74.1477445,124.92053 73.1470024,124.92053 C71.6458892,124.92053 70.525058,125.419868 69.764494,126.45849 C69.0639745,127.377272 68.7237222,128.655576 68.7237222,130.293404 C68.7237222,131.971179 69.0639745,133.269457 69.7444792,134.168265 C70.4850283,135.126993 71.6458892,135.626331 73.2070469,135.626331 C74.2278039,135.626331 75.0684272,135.366675 75.7089022,134.887311 C76.3894068,134.348026 76.869763,133.529113 77.1499708,132.450543 L79.4316629,132.450543 C79.1114254,134.128318 78.3708762,135.426596 77.1900005,136.365351 C76.0891842,137.244185 74.7682046,137.683603 73.2270617,137.683603 C70.8452955,137.683603 69.0639745,136.924609 67.9031137,135.44657 C66.8823567,134.168265 66.3819857,132.450543 66.3819857,130.293404 C66.3819857,128.176212 66.9023716,126.438517 67.9631582,125.120265 C69.1640488,123.602278 70.90534,122.863258 73.1870321,122.863258 Z M86.4435292,122.863258 C88.625147,122.863258 90.3464234,123.562331 91.6073585,124.98045 C92.808249,126.318675 93.4086943,128.096318 93.4086943,130.293404 C93.4086943,132.49049 92.808249,134.248159 91.6073585,135.586384 C90.3464234,136.98453 88.625147,137.683603 86.4435292,137.683603 C84.2418965,137.683603 82.5206201,136.964556 81.2796998,135.566411 C80.0788093,134.208212 79.4983789,132.450543 79.4983789,130.293404 C79.4983789,128.116291 80.0788093,126.358623 81.2796998,125.000424 C82.5206201,123.562331 84.2418965,122.863258 86.4435292,122.863258 Z M86.4435292,124.92053 C84.9624308,124.92053 83.8215848,125.419868 83.0009763,126.418543 C82.2203974,127.377272 81.8401154,128.655576 81.8401154,130.293404 C81.8401154,131.911258 82.2203974,133.189563 83.0009763,134.148291 C83.80157,135.126993 84.9624308,135.626331 86.4435292,135.626331 C87.9246275,135.626331 89.0654735,135.146967 89.8660672,134.208212 C90.646646,133.269457 91.0469429,131.971179 91.0469429,130.293404 C91.0469429,128.615629 90.646646,127.297377 89.8660672,126.338649 C89.0654735,125.379921 87.9246275,124.92053 86.4435292,124.92053 Z M94.0758556,123.142887 L96.3975773,123.142887 L96.3975773,135.406623 L104.123306,135.406623 L104.123306,137.403974 L94.0758556,137.403974 L94.0758556,123.142887 Z M104.390171,123.142887 L109.614045,123.142887 C111.935766,123.142887 113.677058,123.78204 114.877948,125.060344 C116.018794,126.258755 116.599225,127.99645 116.599225,130.27343 C116.599225,132.530437 116.018794,134.268132 114.877948,135.486517 C113.677058,136.764821 111.935766,137.403974 109.614045,137.403974 L104.390171,137.403974 L104.390171,123.142887 Z M106.731907,125.140238 L106.731907,135.406623 L109.173718,135.406623 C110.955039,135.406623 112.256004,134.987179 113.076612,134.168265 C113.877206,133.329377 114.277503,132.031099 114.277503,130.27343 C114.277503,128.475815 113.877206,127.157563 113.076612,126.358623 C112.256004,125.539709 110.955039,125.140238 109.173718,125.140238 L106.731907,125.140238 Z M121.095892,123.142887 L123.737852,123.142887 L126.41984,133.988503 L126.4999,133.988503 L129.321993,123.142887 L131.743788,123.142887 L134.565881,133.988503 L134.645941,133.988503 L137.327929,123.142887 L139.969889,123.142887 L135.846831,137.403974 L133.364991,137.403974 L130.582928,126.678199 L130.502868,126.678199 L127.70079,137.403974 L125.198935,137.403974 L121.095892,123.142887 Z M143.999543,123.142887 L146.661517,123.142887 L152.125569,137.403974 L149.623714,137.403974 L148.322749,133.828715 L142.338312,133.828715 L141.037347,137.403974 L138.535491,137.403974 L143.999543,123.142887 Z M143.038831,131.911258 L147.62223,131.911258 L145.380568,125.65955 L145.300508,125.65955 L143.038831,131.911258 Z M150.691172,123.142887 L153.233057,123.142887 L157.155966,134.76747 L157.216011,134.76747 L161.13892,123.142887 L163.680805,123.142887 L158.597035,137.403974 L155.774942,137.403974 L150.691172,123.142887 Z M163.647447,123.142887 L173.955091,123.142887 L173.955091,125.140238 L165.989183,125.140238 L165.989183,129.094993 L173.474734,129.094993 L173.474734,131.092344 L165.989183,131.092344 L165.989183,135.406623 L174.295343,135.406623 L174.295343,137.403974 L163.647447,137.403974 L163.647447,123.142887 Z" id="COLD-WAVE" 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>
<path d="M138.143822,43.6249007 C142.036364,44.5340397 145.804675,45.8150993 149.365937,47.4680795 L148.082226,50.6500662 C144.438145,48.8731126 140.587013,47.509404 136.611651,46.5589404 L138.143822,43.6249007 Z M133.54731,49.3690066 C140.090093,50.5260927 146.343006,52.2203974 152.347458,54.410596 L150.980928,57.7578808 C144.893655,55.4850331 138.557922,53.7080795 131.932319,52.4683444 L133.54731,49.3690066 Z M129.737588,28.2521854 L135.493581,28.2521854 L135.493581,25.6487417 L128.785158,25.6487417 L128.785158,30.6903311 L124.975436,30.6903311 L124.975436,22.4254305 L140.214323,22.4254305 C139.717403,21.5162914 139.179072,20.6898013 138.599332,19.9459603 L142.823154,19.2847682 C143.320074,20.1939073 143.816994,21.2683444 144.313915,22.4254305 L159.511391,22.4254305 L159.511391,30.6903311 L155.70167,30.6903311 L155.70167,25.6487417 L148.910427,25.6487417 L148.910427,28.2521854 L154.790649,28.2521854 L154.790649,31.4341722 L148.910427,31.4341722 L148.910427,33.6656954 L154.169499,33.6656954 L154.169499,36.8063576 L148.910427,36.8063576 L148.910427,38.9552318 L160.008312,38.9552318 L160.008312,42.3438411 L150.484007,42.3438411 C152.885788,44.9059603 156.40564,46.9308609 160.960742,48.418543 L159.304341,51.8898013 C153.424119,49.4103311 149.158887,46.2283444 146.508646,42.3438411 L137.439852,42.3438411 C134.91384,46.2696689 130.979889,49.5343046 125.679406,52.0964238 L123.650315,48.7491391 C127.998367,47.0548344 131.269759,44.9059603 133.46449,42.3438411 L124.561336,42.3438411 L124.561336,38.9552318 L135.493581,38.9552318 L135.493581,36.8063576 L130.565788,36.8063576 L130.565788,33.6656954 L135.493581,33.6656954 L135.493581,31.4341722 L129.737588,31.4341722 L129.737588,28.2521854 Z M145.100705,25.6487417 L139.344712,25.6487417 L139.344712,28.2521854 L145.100705,28.2521854 L145.100705,25.6487417 Z M139.344712,38.9552318 L145.100705,38.9552318 L145.100705,36.8063576 L139.344712,36.8063576 L139.344712,38.9552318 Z M145.100705,33.6656954 L145.100705,31.4341722 L139.344712,31.4341722 L139.344712,33.6656954 L145.100705,33.6656954 Z M132.180779,65.9539073 L137.895362,65.9539073 L137.895362,62.4413245 L141.415213,62.4413245 L141.415213,65.9539073 L146.757106,65.9539073 L146.757106,69.3425166 L141.415213,69.3425166 L141.415213,72.1112583 L146.053135,72.1112583 L146.053135,87.442649 L141.705083,87.442649 L141.705083,90.6246358 L146.467236,90.6246358 L146.467236,94.013245 L141.705083,94.013245 L141.705083,100.211921 L138.143822,100.211921 L138.143822,94.013245 L132.139369,94.013245 L132.139369,90.6246358 L138.143822,90.6246358 L138.143822,87.442649 L133.00898,87.442649 L133.00898,72.1112583 L137.895362,72.1112583 L137.895362,69.3425166 L132.180779,69.3425166 L132.180779,68.805298 L129.654768,71.3260927 C128.329647,69.4251656 126.424787,67.4415894 123.940186,65.2927152 L126.673247,62.6892715 C128.826568,64.6315232 130.690019,66.5324503 132.180779,68.3507285 L132.180779,65.9539073 Z M142.657514,84.3846358 L142.657514,81.202649 L136.404601,81.202649 L136.404601,84.3846358 L142.657514,84.3846358 Z M136.404601,78.3512583 L142.657514,78.3512583 L142.657514,75.1692715 L136.404601,75.1692715 L136.404601,78.3512583 Z M152.098998,76.9462252 L152.098998,83.5994702 L156.6541,83.5994702 L156.6541,76.9462252 L152.098998,76.9462252 Z M156.6541,73.5162914 L156.6541,67.2762914 L152.098998,67.2762914 L152.098998,73.5162914 L156.6541,73.5162914 Z M151.974768,87.029404 C151.643488,92.4842384 150.442597,97.0299338 148.413506,100.625166 L145.307755,97.8150993 C147.378256,94.3025166 148.454917,89.8394702 148.537737,84.4259603 L148.537737,63.6397351 L160.298182,63.6397351 L160.298182,96.1621192 C160.298182,98.7655629 159.055881,100.087947 156.57128,100.087947 L153.672579,100.087947 L152.720148,96.5753642 C153.672579,96.6580132 154.583599,96.7406623 155.4118,96.7406623 C156.24,96.7406623 156.6541,96.1207947 156.6541,94.8810596 L156.6541,87.029404 L151.974768,87.029404 Z M125.762226,72.6071523 C127.998367,74.5907285 129.861818,76.6156291 131.393989,78.5992053 L128.702338,81.285298 C127.377217,79.3843709 125.472356,77.3594702 123.070575,75.1692715 L125.762226,72.6071523 Z M128.039777,83.6821192 L131.435399,85.0045033 C130.110278,90.2527152 128.660928,95.2116556 127.087347,99.84 L123.526085,98.2696689 C125.265306,93.517351 126.756067,88.6410596 128.039777,83.6821192 Z" id="寒-潮" fill="#FFFFFF"></path>
<g id="hanchao" transform="translate(21.740260, 17.218543)" fill="#EC8D15" fill-rule="nonzero">
<path d="M28.8501233,12.0529801 C27.3785296,12.0529801 26.6427327,13.1721854 26.6427327,14.2913907 C26.2748343,15.410596 27.3785296,16.5298013 28.8501233,16.5298013 C30.3217171,16.5298013 31.0575139,15.410596 31.0575139,14.2913907 C31.0575139,12.799117 29.9538186,12.0529801 28.8501233,12.0529801 Z" id="Shape"></path>
<path d="M63.9914193,35.6858328 L63.9914193,0 L7.44086268,0 L7.44086268,35.6858328 L0,35.6858328 L0,39.0313796 L35.716141,79.5496689 L71.432282,39.0313796 L71.432282,35.6858328 L63.9914193,35.6858328 Z M28.6473214,18.9580987 C25.6709763,18.9580987 23.4387175,16.7277341 23.4387175,13.7539147 C23.4387175,10.7800952 25.6709763,8.54973074 28.6473214,8.54973074 C31.6236665,8.54973074 33.8559253,10.7800953 33.8559254,13.7539147 C33.4838822,16.727734 31.2516234,18.9580986 28.6473214,18.9580987 Z M42.4129174,14.4973696 C40.9247449,14.4973696 38.6924861,14.1256421 38.6924861,22.3036455 C38.6924861,30.4816489 40.5527017,31.2251037 42.7849606,30.4816488 C44.2731332,30.1099213 45.0172194,28.6230117 45.3892625,26.0209197 L50.5978664,26.0209197 C50.5978664,29.3664665 49.1096939,36.801015 42.0408743,36.8010151 C34.9720547,36.8010152 32.3677528,27.136102 33.111839,20.8167358 C33.8559253,14.4973695 36.0881841,7.80627592 42.7849606,8.17800329 C49.481737,8.92145811 50.5978664,15.2408244 50.5978664,19.7015535 L45.0172194,19.7015535 C45.3892626,16.3560067 44.2731332,14.8690969 42.4129174,14.4973696 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>HC-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(-363.000000, -2276.000000)">
<g id="HC-Y" transform="translate(363.000000, 2276.000000)">
<g id="Group-8-Copy-2">
<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="M73.1870321,122.863258 C74.8682788,122.863258 76.2693178,123.302675 77.3501193,124.18151 C78.3908911,125.020397 79.0113512,126.178861 79.2315144,127.616954 L76.9498224,127.616954 C76.7096443,126.678199 76.2693178,125.999099 75.608828,125.559682 C74.968353,125.120265 74.1477445,124.92053 73.1470024,124.92053 C71.6458892,124.92053 70.525058,125.419868 69.764494,126.45849 C69.0639745,127.377272 68.7237222,128.655576 68.7237222,130.293404 C68.7237222,131.971179 69.0639745,133.269457 69.7444792,134.168265 C70.4850283,135.126993 71.6458892,135.626331 73.2070469,135.626331 C74.2278039,135.626331 75.0684272,135.366675 75.7089022,134.887311 C76.3894068,134.348026 76.869763,133.529113 77.1499708,132.450543 L79.4316629,132.450543 C79.1114254,134.128318 78.3708762,135.426596 77.1900005,136.365351 C76.0891842,137.244185 74.7682046,137.683603 73.2270617,137.683603 C70.8452955,137.683603 69.0639745,136.924609 67.9031137,135.44657 C66.8823567,134.168265 66.3819857,132.450543 66.3819857,130.293404 C66.3819857,128.176212 66.9023716,126.438517 67.9631582,125.120265 C69.1640488,123.602278 70.90534,122.863258 73.1870321,122.863258 Z M86.4435292,122.863258 C88.625147,122.863258 90.3464234,123.562331 91.6073585,124.98045 C92.808249,126.318675 93.4086943,128.096318 93.4086943,130.293404 C93.4086943,132.49049 92.808249,134.248159 91.6073585,135.586384 C90.3464234,136.98453 88.625147,137.683603 86.4435292,137.683603 C84.2418965,137.683603 82.5206201,136.964556 81.2796998,135.566411 C80.0788093,134.208212 79.4983789,132.450543 79.4983789,130.293404 C79.4983789,128.116291 80.0788093,126.358623 81.2796998,125.000424 C82.5206201,123.562331 84.2418965,122.863258 86.4435292,122.863258 Z M86.4435292,124.92053 C84.9624308,124.92053 83.8215848,125.419868 83.0009763,126.418543 C82.2203974,127.377272 81.8401154,128.655576 81.8401154,130.293404 C81.8401154,131.911258 82.2203974,133.189563 83.0009763,134.148291 C83.80157,135.126993 84.9624308,135.626331 86.4435292,135.626331 C87.9246275,135.626331 89.0654735,135.146967 89.8660672,134.208212 C90.646646,133.269457 91.0469429,131.971179 91.0469429,130.293404 C91.0469429,128.615629 90.646646,127.297377 89.8660672,126.338649 C89.0654735,125.379921 87.9246275,124.92053 86.4435292,124.92053 Z M94.0758556,123.142887 L96.3975773,123.142887 L96.3975773,135.406623 L104.123306,135.406623 L104.123306,137.403974 L94.0758556,137.403974 L94.0758556,123.142887 Z M104.390171,123.142887 L109.614045,123.142887 C111.935766,123.142887 113.677058,123.78204 114.877948,125.060344 C116.018794,126.258755 116.599225,127.99645 116.599225,130.27343 C116.599225,132.530437 116.018794,134.268132 114.877948,135.486517 C113.677058,136.764821 111.935766,137.403974 109.614045,137.403974 L104.390171,137.403974 L104.390171,123.142887 Z M106.731907,125.140238 L106.731907,135.406623 L109.173718,135.406623 C110.955039,135.406623 112.256004,134.987179 113.076612,134.168265 C113.877206,133.329377 114.277503,132.031099 114.277503,130.27343 C114.277503,128.475815 113.877206,127.157563 113.076612,126.358623 C112.256004,125.539709 110.955039,125.140238 109.173718,125.140238 L106.731907,125.140238 Z M121.095892,123.142887 L123.737852,123.142887 L126.41984,133.988503 L126.4999,133.988503 L129.321993,123.142887 L131.743788,123.142887 L134.565881,133.988503 L134.645941,133.988503 L137.327929,123.142887 L139.969889,123.142887 L135.846831,137.403974 L133.364991,137.403974 L130.582928,126.678199 L130.502868,126.678199 L127.70079,137.403974 L125.198935,137.403974 L121.095892,123.142887 Z M143.999543,123.142887 L146.661517,123.142887 L152.125569,137.403974 L149.623714,137.403974 L148.322749,133.828715 L142.338312,133.828715 L141.037347,137.403974 L138.535491,137.403974 L143.999543,123.142887 Z M143.038831,131.911258 L147.62223,131.911258 L145.380568,125.65955 L145.300508,125.65955 L143.038831,131.911258 Z M150.691172,123.142887 L153.233057,123.142887 L157.155966,134.76747 L157.216011,134.76747 L161.13892,123.142887 L163.680805,123.142887 L158.597035,137.403974 L155.774942,137.403974 L150.691172,123.142887 Z M163.647447,123.142887 L173.955091,123.142887 L173.955091,125.140238 L165.989183,125.140238 L165.989183,129.094993 L173.474734,129.094993 L173.474734,131.092344 L165.989183,131.092344 L165.989183,135.406623 L174.295343,135.406623 L174.295343,137.403974 L163.647447,137.403974 L163.647447,123.142887 Z" id="COLD-WAVE" 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>
<path d="M138.143822,43.6249007 C142.036364,44.5340397 145.804675,45.8150993 149.365937,47.4680795 L148.082226,50.6500662 C144.438145,48.8731126 140.587013,47.509404 136.611651,46.5589404 L138.143822,43.6249007 Z M133.54731,49.3690066 C140.090093,50.5260927 146.343006,52.2203974 152.347458,54.410596 L150.980928,57.7578808 C144.893655,55.4850331 138.557922,53.7080795 131.932319,52.4683444 L133.54731,49.3690066 Z M129.737588,28.2521854 L135.493581,28.2521854 L135.493581,25.6487417 L128.785158,25.6487417 L128.785158,30.6903311 L124.975436,30.6903311 L124.975436,22.4254305 L140.214323,22.4254305 C139.717403,21.5162914 139.179072,20.6898013 138.599332,19.9459603 L142.823154,19.2847682 C143.320074,20.1939073 143.816994,21.2683444 144.313915,22.4254305 L159.511391,22.4254305 L159.511391,30.6903311 L155.70167,30.6903311 L155.70167,25.6487417 L148.910427,25.6487417 L148.910427,28.2521854 L154.790649,28.2521854 L154.790649,31.4341722 L148.910427,31.4341722 L148.910427,33.6656954 L154.169499,33.6656954 L154.169499,36.8063576 L148.910427,36.8063576 L148.910427,38.9552318 L160.008312,38.9552318 L160.008312,42.3438411 L150.484007,42.3438411 C152.885788,44.9059603 156.40564,46.9308609 160.960742,48.418543 L159.304341,51.8898013 C153.424119,49.4103311 149.158887,46.2283444 146.508646,42.3438411 L137.439852,42.3438411 C134.91384,46.2696689 130.979889,49.5343046 125.679406,52.0964238 L123.650315,48.7491391 C127.998367,47.0548344 131.269759,44.9059603 133.46449,42.3438411 L124.561336,42.3438411 L124.561336,38.9552318 L135.493581,38.9552318 L135.493581,36.8063576 L130.565788,36.8063576 L130.565788,33.6656954 L135.493581,33.6656954 L135.493581,31.4341722 L129.737588,31.4341722 L129.737588,28.2521854 Z M145.100705,25.6487417 L139.344712,25.6487417 L139.344712,28.2521854 L145.100705,28.2521854 L145.100705,25.6487417 Z M139.344712,38.9552318 L145.100705,38.9552318 L145.100705,36.8063576 L139.344712,36.8063576 L139.344712,38.9552318 Z M145.100705,33.6656954 L145.100705,31.4341722 L139.344712,31.4341722 L139.344712,33.6656954 L145.100705,33.6656954 Z M132.180779,65.9539073 L137.895362,65.9539073 L137.895362,62.4413245 L141.415213,62.4413245 L141.415213,65.9539073 L146.757106,65.9539073 L146.757106,69.3425166 L141.415213,69.3425166 L141.415213,72.1112583 L146.053135,72.1112583 L146.053135,87.442649 L141.705083,87.442649 L141.705083,90.6246358 L146.467236,90.6246358 L146.467236,94.013245 L141.705083,94.013245 L141.705083,100.211921 L138.143822,100.211921 L138.143822,94.013245 L132.139369,94.013245 L132.139369,90.6246358 L138.143822,90.6246358 L138.143822,87.442649 L133.00898,87.442649 L133.00898,72.1112583 L137.895362,72.1112583 L137.895362,69.3425166 L132.180779,69.3425166 L132.180779,68.805298 L129.654768,71.3260927 C128.329647,69.4251656 126.424787,67.4415894 123.940186,65.2927152 L126.673247,62.6892715 C128.826568,64.6315232 130.690019,66.5324503 132.180779,68.3507285 L132.180779,65.9539073 Z M142.657514,84.3846358 L142.657514,81.202649 L136.404601,81.202649 L136.404601,84.3846358 L142.657514,84.3846358 Z M136.404601,78.3512583 L142.657514,78.3512583 L142.657514,75.1692715 L136.404601,75.1692715 L136.404601,78.3512583 Z M152.098998,76.9462252 L152.098998,83.5994702 L156.6541,83.5994702 L156.6541,76.9462252 L152.098998,76.9462252 Z M156.6541,73.5162914 L156.6541,67.2762914 L152.098998,67.2762914 L152.098998,73.5162914 L156.6541,73.5162914 Z M151.974768,87.029404 C151.643488,92.4842384 150.442597,97.0299338 148.413506,100.625166 L145.307755,97.8150993 C147.378256,94.3025166 148.454917,89.8394702 148.537737,84.4259603 L148.537737,63.6397351 L160.298182,63.6397351 L160.298182,96.1621192 C160.298182,98.7655629 159.055881,100.087947 156.57128,100.087947 L153.672579,100.087947 L152.720148,96.5753642 C153.672579,96.6580132 154.583599,96.7406623 155.4118,96.7406623 C156.24,96.7406623 156.6541,96.1207947 156.6541,94.8810596 L156.6541,87.029404 L151.974768,87.029404 Z M125.762226,72.6071523 C127.998367,74.5907285 129.861818,76.6156291 131.393989,78.5992053 L128.702338,81.285298 C127.377217,79.3843709 125.472356,77.3594702 123.070575,75.1692715 L125.762226,72.6071523 Z M128.039777,83.6821192 L131.435399,85.0045033 C130.110278,90.2527152 128.660928,95.2116556 127.087347,99.84 L123.526085,98.2696689 C125.265306,93.517351 126.756067,88.6410596 128.039777,83.6821192 Z" id="寒-潮" fill="#444444"></path>
<g id="hanchao" transform="translate(21.740260, 17.218543)" fill="#FFFF00" fill-rule="nonzero">
<path d="M28.8501233,12.0529801 C27.3785296,12.0529801 26.6427327,13.1721854 26.6427327,14.2913907 C26.2748343,15.410596 27.3785296,16.5298013 28.8501233,16.5298013 C30.3217171,16.5298013 31.0575139,15.410596 31.0575139,14.2913907 C31.0575139,12.799117 29.9538186,12.0529801 28.8501233,12.0529801 Z" id="Shape"></path>
<path d="M63.9914193,35.6858328 L63.9914193,0 L7.44086268,0 L7.44086268,35.6858328 L0,35.6858328 L0,39.0313796 L35.716141,79.5496689 L71.432282,39.0313796 L71.432282,35.6858328 L63.9914193,35.6858328 Z M28.6473214,18.9580987 C25.6709763,18.9580987 23.4387175,16.7277341 23.4387175,13.7539147 C23.4387175,10.7800952 25.6709763,8.54973074 28.6473214,8.54973074 C31.6236665,8.54973074 33.8559253,10.7800953 33.8559254,13.7539147 C33.4838822,16.727734 31.2516234,18.9580986 28.6473214,18.9580987 Z M42.4129174,14.4973696 C40.9247449,14.4973696 38.6924861,14.1256421 38.6924861,22.3036455 C38.6924861,30.4816489 40.5527017,31.2251037 42.7849606,30.4816488 C44.2731332,30.1099213 45.0172194,28.6230117 45.3892625,26.0209197 L50.5978664,26.0209197 C50.5978664,29.3664665 49.1096939,36.801015 42.0408743,36.8010151 C34.9720547,36.8010152 32.3677528,27.136102 33.111839,20.8167358 C33.8559253,14.4973695 36.0881841,7.80627592 42.7849606,8.17800329 C49.481737,8.92145811 50.5978664,15.2408244 50.5978664,19.7015535 L45.0172194,19.7015535 C45.3892626,16.3560067 44.2731332,14.8690969 42.4129174,14.4973696 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>HC-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, -2271.000000)">
<g id="HC-B" transform="translate(648.000000, 2271.000000)">
<g id="Group-8-Copy-2">
<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="M73.1870321,122.863258 C74.8682788,122.863258 76.2693178,123.302675 77.3501193,124.18151 C78.3908911,125.020397 79.0113512,126.178861 79.2315144,127.616954 L76.9498224,127.616954 C76.7096443,126.678199 76.2693178,125.999099 75.608828,125.559682 C74.968353,125.120265 74.1477445,124.92053 73.1470024,124.92053 C71.6458892,124.92053 70.525058,125.419868 69.764494,126.45849 C69.0639745,127.377272 68.7237222,128.655576 68.7237222,130.293404 C68.7237222,131.971179 69.0639745,133.269457 69.7444792,134.168265 C70.4850283,135.126993 71.6458892,135.626331 73.2070469,135.626331 C74.2278039,135.626331 75.0684272,135.366675 75.7089022,134.887311 C76.3894068,134.348026 76.869763,133.529113 77.1499708,132.450543 L79.4316629,132.450543 C79.1114254,134.128318 78.3708762,135.426596 77.1900005,136.365351 C76.0891842,137.244185 74.7682046,137.683603 73.2270617,137.683603 C70.8452955,137.683603 69.0639745,136.924609 67.9031137,135.44657 C66.8823567,134.168265 66.3819857,132.450543 66.3819857,130.293404 C66.3819857,128.176212 66.9023716,126.438517 67.9631582,125.120265 C69.1640488,123.602278 70.90534,122.863258 73.1870321,122.863258 Z M86.4435292,122.863258 C88.625147,122.863258 90.3464234,123.562331 91.6073585,124.98045 C92.808249,126.318675 93.4086943,128.096318 93.4086943,130.293404 C93.4086943,132.49049 92.808249,134.248159 91.6073585,135.586384 C90.3464234,136.98453 88.625147,137.683603 86.4435292,137.683603 C84.2418965,137.683603 82.5206201,136.964556 81.2796998,135.566411 C80.0788093,134.208212 79.4983789,132.450543 79.4983789,130.293404 C79.4983789,128.116291 80.0788093,126.358623 81.2796998,125.000424 C82.5206201,123.562331 84.2418965,122.863258 86.4435292,122.863258 Z M86.4435292,124.92053 C84.9624308,124.92053 83.8215848,125.419868 83.0009763,126.418543 C82.2203974,127.377272 81.8401154,128.655576 81.8401154,130.293404 C81.8401154,131.911258 82.2203974,133.189563 83.0009763,134.148291 C83.80157,135.126993 84.9624308,135.626331 86.4435292,135.626331 C87.9246275,135.626331 89.0654735,135.146967 89.8660672,134.208212 C90.646646,133.269457 91.0469429,131.971179 91.0469429,130.293404 C91.0469429,128.615629 90.646646,127.297377 89.8660672,126.338649 C89.0654735,125.379921 87.9246275,124.92053 86.4435292,124.92053 Z M94.0758556,123.142887 L96.3975773,123.142887 L96.3975773,135.406623 L104.123306,135.406623 L104.123306,137.403974 L94.0758556,137.403974 L94.0758556,123.142887 Z M104.390171,123.142887 L109.614045,123.142887 C111.935766,123.142887 113.677058,123.78204 114.877948,125.060344 C116.018794,126.258755 116.599225,127.99645 116.599225,130.27343 C116.599225,132.530437 116.018794,134.268132 114.877948,135.486517 C113.677058,136.764821 111.935766,137.403974 109.614045,137.403974 L104.390171,137.403974 L104.390171,123.142887 Z M106.731907,125.140238 L106.731907,135.406623 L109.173718,135.406623 C110.955039,135.406623 112.256004,134.987179 113.076612,134.168265 C113.877206,133.329377 114.277503,132.031099 114.277503,130.27343 C114.277503,128.475815 113.877206,127.157563 113.076612,126.358623 C112.256004,125.539709 110.955039,125.140238 109.173718,125.140238 L106.731907,125.140238 Z M121.095892,123.142887 L123.737852,123.142887 L126.41984,133.988503 L126.4999,133.988503 L129.321993,123.142887 L131.743788,123.142887 L134.565881,133.988503 L134.645941,133.988503 L137.327929,123.142887 L139.969889,123.142887 L135.846831,137.403974 L133.364991,137.403974 L130.582928,126.678199 L130.502868,126.678199 L127.70079,137.403974 L125.198935,137.403974 L121.095892,123.142887 Z M143.999543,123.142887 L146.661517,123.142887 L152.125569,137.403974 L149.623714,137.403974 L148.322749,133.828715 L142.338312,133.828715 L141.037347,137.403974 L138.535491,137.403974 L143.999543,123.142887 Z M143.038831,131.911258 L147.62223,131.911258 L145.380568,125.65955 L145.300508,125.65955 L143.038831,131.911258 Z M150.691172,123.142887 L153.233057,123.142887 L157.155966,134.76747 L157.216011,134.76747 L161.13892,123.142887 L163.680805,123.142887 L158.597035,137.403974 L155.774942,137.403974 L150.691172,123.142887 Z M163.647447,123.142887 L173.955091,123.142887 L173.955091,125.140238 L165.989183,125.140238 L165.989183,129.094993 L173.474734,129.094993 L173.474734,131.092344 L165.989183,131.092344 L165.989183,135.406623 L174.295343,135.406623 L174.295343,137.403974 L163.647447,137.403974 L163.647447,123.142887 Z" id="COLD-WAVE" 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>
<path d="M138.143822,43.6249007 C142.036364,44.5340397 145.804675,45.8150993 149.365937,47.4680795 L148.082226,50.6500662 C144.438145,48.8731126 140.587013,47.509404 136.611651,46.5589404 L138.143822,43.6249007 Z M133.54731,49.3690066 C140.090093,50.5260927 146.343006,52.2203974 152.347458,54.410596 L150.980928,57.7578808 C144.893655,55.4850331 138.557922,53.7080795 131.932319,52.4683444 L133.54731,49.3690066 Z M129.737588,28.2521854 L135.493581,28.2521854 L135.493581,25.6487417 L128.785158,25.6487417 L128.785158,30.6903311 L124.975436,30.6903311 L124.975436,22.4254305 L140.214323,22.4254305 C139.717403,21.5162914 139.179072,20.6898013 138.599332,19.9459603 L142.823154,19.2847682 C143.320074,20.1939073 143.816994,21.2683444 144.313915,22.4254305 L159.511391,22.4254305 L159.511391,30.6903311 L155.70167,30.6903311 L155.70167,25.6487417 L148.910427,25.6487417 L148.910427,28.2521854 L154.790649,28.2521854 L154.790649,31.4341722 L148.910427,31.4341722 L148.910427,33.6656954 L154.169499,33.6656954 L154.169499,36.8063576 L148.910427,36.8063576 L148.910427,38.9552318 L160.008312,38.9552318 L160.008312,42.3438411 L150.484007,42.3438411 C152.885788,44.9059603 156.40564,46.9308609 160.960742,48.418543 L159.304341,51.8898013 C153.424119,49.4103311 149.158887,46.2283444 146.508646,42.3438411 L137.439852,42.3438411 C134.91384,46.2696689 130.979889,49.5343046 125.679406,52.0964238 L123.650315,48.7491391 C127.998367,47.0548344 131.269759,44.9059603 133.46449,42.3438411 L124.561336,42.3438411 L124.561336,38.9552318 L135.493581,38.9552318 L135.493581,36.8063576 L130.565788,36.8063576 L130.565788,33.6656954 L135.493581,33.6656954 L135.493581,31.4341722 L129.737588,31.4341722 L129.737588,28.2521854 Z M145.100705,25.6487417 L139.344712,25.6487417 L139.344712,28.2521854 L145.100705,28.2521854 L145.100705,25.6487417 Z M139.344712,38.9552318 L145.100705,38.9552318 L145.100705,36.8063576 L139.344712,36.8063576 L139.344712,38.9552318 Z M145.100705,33.6656954 L145.100705,31.4341722 L139.344712,31.4341722 L139.344712,33.6656954 L145.100705,33.6656954 Z M132.180779,65.9539073 L137.895362,65.9539073 L137.895362,62.4413245 L141.415213,62.4413245 L141.415213,65.9539073 L146.757106,65.9539073 L146.757106,69.3425166 L141.415213,69.3425166 L141.415213,72.1112583 L146.053135,72.1112583 L146.053135,87.442649 L141.705083,87.442649 L141.705083,90.6246358 L146.467236,90.6246358 L146.467236,94.013245 L141.705083,94.013245 L141.705083,100.211921 L138.143822,100.211921 L138.143822,94.013245 L132.139369,94.013245 L132.139369,90.6246358 L138.143822,90.6246358 L138.143822,87.442649 L133.00898,87.442649 L133.00898,72.1112583 L137.895362,72.1112583 L137.895362,69.3425166 L132.180779,69.3425166 L132.180779,68.805298 L129.654768,71.3260927 C128.329647,69.4251656 126.424787,67.4415894 123.940186,65.2927152 L126.673247,62.6892715 C128.826568,64.6315232 130.690019,66.5324503 132.180779,68.3507285 L132.180779,65.9539073 Z M142.657514,84.3846358 L142.657514,81.202649 L136.404601,81.202649 L136.404601,84.3846358 L142.657514,84.3846358 Z M136.404601,78.3512583 L142.657514,78.3512583 L142.657514,75.1692715 L136.404601,75.1692715 L136.404601,78.3512583 Z M152.098998,76.9462252 L152.098998,83.5994702 L156.6541,83.5994702 L156.6541,76.9462252 L152.098998,76.9462252 Z M156.6541,73.5162914 L156.6541,67.2762914 L152.098998,67.2762914 L152.098998,73.5162914 L156.6541,73.5162914 Z M151.974768,87.029404 C151.643488,92.4842384 150.442597,97.0299338 148.413506,100.625166 L145.307755,97.8150993 C147.378256,94.3025166 148.454917,89.8394702 148.537737,84.4259603 L148.537737,63.6397351 L160.298182,63.6397351 L160.298182,96.1621192 C160.298182,98.7655629 159.055881,100.087947 156.57128,100.087947 L153.672579,100.087947 L152.720148,96.5753642 C153.672579,96.6580132 154.583599,96.7406623 155.4118,96.7406623 C156.24,96.7406623 156.6541,96.1207947 156.6541,94.8810596 L156.6541,87.029404 L151.974768,87.029404 Z M125.762226,72.6071523 C127.998367,74.5907285 129.861818,76.6156291 131.393989,78.5992053 L128.702338,81.285298 C127.377217,79.3843709 125.472356,77.3594702 123.070575,75.1692715 L125.762226,72.6071523 Z M128.039777,83.6821192 L131.435399,85.0045033 C130.110278,90.2527152 128.660928,95.2116556 127.087347,99.84 L123.526085,98.2696689 C125.265306,93.517351 126.756067,88.6410596 128.039777,83.6821192 Z" id="寒-潮" fill="#FFFFFF"></path>
<g id="hanchao" transform="translate(21.740260, 17.218543)" fill-rule="nonzero">
<path d="M28.8501233,12.0529801 C27.3785296,12.0529801 26.6427327,13.1721854 26.6427327,14.2913907 C26.2748343,15.410596 27.3785296,16.5298013 28.8501233,16.5298013 C30.3217171,16.5298013 31.0575139,15.410596 31.0575139,14.2913907 C31.0575139,12.799117 29.9538186,12.0529801 28.8501233,12.0529801 Z" id="Shape" fill="#EC8D15"></path>
<path d="M63.9914193,35.6858328 L63.9914193,0 L7.44086268,0 L7.44086268,35.6858328 L0,35.6858328 L0,39.0313796 L35.716141,79.5496689 L71.432282,39.0313796 L71.432282,35.6858328 L63.9914193,35.6858328 Z M28.6473214,18.9580987 C25.6709763,18.9580987 23.4387175,16.7277341 23.4387175,13.7539147 C23.4387175,10.7800952 25.6709763,8.54973074 28.6473214,8.54973074 C31.6236665,8.54973074 33.8559253,10.7800953 33.8559254,13.7539147 C33.4838822,16.727734 31.2516234,18.9580986 28.6473214,18.9580987 Z M42.4129174,14.4973696 C40.9247449,14.4973696 38.6924861,14.1256421 38.6924861,22.3036455 C38.6924861,30.4816489 40.5527017,31.2251037 42.7849606,30.4816488 C44.2731332,30.1099213 45.0172194,28.6230117 45.3892625,26.0209197 L50.5978664,26.0209197 C50.5978664,29.3664665 49.1096939,36.801015 42.0408743,36.8010151 C34.9720547,36.8010152 32.3677528,27.136102 33.111839,20.8167358 C33.8559253,14.4973695 36.0881841,7.80627592 42.7849606,8.17800329 C49.481737,8.92145811 50.5978664,15.2408244 50.5978664,19.7015535 L45.0172194,19.7015535 C45.3892626,16.3560067 44.2731332,14.8690969 42.4129174,14.4973696 Z" id="Shape" fill="#3265FE"></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>DLJB-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(-648.000000, -2025.000000)">
<g id="DLJB-R" transform="translate(648.000000, 2025.000000)">
<g id="Group-8-Copy">
<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="M70.256008,123.142887 L76.6207278,123.142887 C78.0818113,123.142887 79.2426722,123.462464 80.0832956,124.121589 C80.9639486,124.840636 81.42429,125.879258 81.42429,127.237457 C81.42429,127.976477 81.2241416,128.635603 80.8238447,129.214834 C80.3835182,129.853987 79.7630581,130.27343 79.0024941,130.473166 L79.0024941,130.513113 C80.2434143,130.792742 80.9439338,131.611656 81.1040525,133.009801 L81.3442306,135.306755 C81.42429,136.185589 81.7245126,136.884662 82.2048688,137.403974 L79.6629839,137.403974 C79.3227316,136.964556 79.1225831,136.345377 79.0425238,135.546437 L78.8623902,133.788768 C78.7823308,133.009801 78.5421527,132.450543 78.1418559,132.110993 C77.7215442,131.75147 77.1010841,131.591682 76.3004904,131.591682 L72.5977445,131.591682 L72.5977445,137.403974 L70.256008,137.403974 L70.256008,123.142887 Z M72.5977445,125.140238 L72.5977445,129.594331 L76.3004904,129.594331 C77.2211731,129.594331 77.9216926,129.394596 78.4020488,129.015099 C78.8423753,128.615629 79.0625386,128.056371 79.0625386,127.337325 C79.0625386,126.558358 78.8423753,125.999099 78.4020488,125.65955 C77.9617223,125.300026 77.2612028,125.140238 76.3004904,125.140238 L72.5977445,125.140238 Z M89.0165867,122.863258 C91.1982045,122.863258 92.919481,123.562331 94.180416,124.98045 C95.3813066,126.318675 95.9817519,128.096318 95.9817519,130.293404 C95.9817519,132.49049 95.3813066,134.248159 94.180416,135.586384 C92.919481,136.98453 91.1982045,137.683603 89.0165867,137.683603 C86.8149541,137.683603 85.0936776,136.964556 83.8527574,135.566411 C82.6518669,134.208212 82.0714365,132.450543 82.0714365,130.293404 C82.0714365,128.116291 82.6518669,126.358623 83.8527574,125.000424 C85.0936776,123.562331 86.8149541,122.863258 89.0165867,122.863258 Z M89.0165867,124.92053 C87.5354884,124.92053 86.3946424,125.419868 85.5740339,126.418543 C84.793455,127.377272 84.413173,128.655576 84.413173,130.293404 C84.413173,131.911258 84.793455,133.189563 85.5740339,134.148291 C86.3746275,135.126993 87.5354884,135.626331 89.0165867,135.626331 C90.4976851,135.626331 91.6385311,135.146967 92.4391248,134.208212 C93.2197036,133.269457 93.6200005,131.971179 93.6200005,130.293404 C93.6200005,128.615629 93.2197036,127.297377 92.4391248,126.338649 C91.6385311,125.379921 90.4976851,124.92053 89.0165867,124.92053 Z M100.711926,123.142887 L103.3739,123.142887 L108.837952,137.403974 L106.336097,137.403974 L105.035132,133.828715 L99.0506942,133.828715 L97.7497295,137.403974 L95.2478742,137.403974 L100.711926,123.142887 Z M99.7512137,131.911258 L104.334613,131.911258 L102.09295,125.65955 L102.012891,125.65955 L99.7512137,131.911258 Z M108.70452,123.142887 L113.928394,123.142887 C116.250115,123.142887 117.991407,123.78204 119.192297,125.060344 C120.333143,126.258755 120.913574,127.99645 120.913574,130.27343 C120.913574,132.530437 120.333143,134.268132 119.192297,135.486517 C117.991407,136.764821 116.250115,137.403974 113.928394,137.403974 L108.70452,137.403974 L108.70452,123.142887 Z M111.046256,125.140238 L111.046256,135.406623 L113.488067,135.406623 C115.269388,135.406623 116.570353,134.987179 117.390961,134.168265 C118.191555,133.329377 118.591852,132.031099 118.591852,130.27343 C118.591852,128.475815 118.191555,127.157563 117.390961,126.358623 C116.570353,125.539709 115.269388,125.140238 113.488067,125.140238 L111.046256,125.140238 Z M126.711206,123.142887 L129.052942,123.142887 L129.052942,137.403974 L126.711206,137.403974 L126.711206,123.142887 Z M136.52515,122.863258 C138.206397,122.863258 139.607436,123.302675 140.688237,124.18151 C141.729009,125.020397 142.349469,126.178861 142.569633,127.616954 L140.287941,127.616954 C140.047762,126.678199 139.607436,125.999099 138.946946,125.559682 C138.306471,125.120265 137.485863,124.92053 136.48512,124.92053 C134.984007,124.92053 133.863176,125.419868 133.102612,126.45849 C132.402093,127.377272 132.06184,128.655576 132.06184,130.293404 C132.06184,131.971179 132.402093,133.269457 133.082597,134.168265 C133.823146,135.126993 134.984007,135.626331 136.545165,135.626331 C137.565922,135.626331 138.406545,135.366675 139.04702,134.887311 C139.727525,134.348026 140.207881,133.529113 140.488089,132.450543 L142.769781,132.450543 C142.449543,134.128318 141.708994,135.426596 140.528119,136.365351 C139.427302,137.244185 138.106323,137.683603 136.56518,137.683603 C134.183414,137.683603 132.402093,136.924609 131.241232,135.44657 C130.220475,134.168265 129.720104,132.450543 129.720104,130.293404 C129.720104,128.176212 130.24049,126.438517 131.301276,125.120265 C132.502167,123.602278 134.243458,122.863258 136.52515,122.863258 Z M143.436942,123.142887 L145.778679,123.142887 L145.778679,137.403974 L143.436942,137.403974 L143.436942,123.142887 Z M147.046285,123.142887 L149.388022,123.142887 L156.453261,133.429245 L156.533321,133.429245 L156.533321,123.142887 L158.895072,123.142887 L158.895072,137.403974 L156.61338,137.403974 L149.468081,126.977801 L149.388022,126.977801 L149.388022,137.403974 L147.046285,137.403974 L147.046285,123.142887 Z M166.36728,122.863258 C168.208645,122.863258 169.649714,123.262728 170.7105,124.081642 C171.731257,124.880583 172.371732,126.05902 172.631925,127.656901 L170.270174,127.656901 C170.070026,126.738119 169.629699,126.05902 168.989224,125.599629 C168.328734,125.140238 167.448081,124.92053 166.36728,124.92053 C165.026285,124.92053 163.965499,125.359947 163.18492,126.278728 C162.324282,127.237457 161.90397,128.575682 161.90397,130.333351 C161.90397,132.011126 162.284252,133.309404 163.044816,134.208212 C163.865424,135.16694 165.146374,135.646305 166.887666,135.646305 C167.56817,135.646305 168.208645,135.566411 168.80909,135.406623 C169.369506,135.246834 169.869877,135.027126 170.350233,134.747497 L170.350233,131.811391 L166.567428,131.811391 L166.567428,129.81404 L172.69197,129.81404 L172.69197,135.84604 C171.931406,136.445245 171.070768,136.884662 170.09004,137.204238 C169.049269,137.523815 167.908423,137.683603 166.627473,137.683603 C164.345781,137.683603 162.584474,136.964556 161.323539,135.526464 C160.142664,134.188238 159.562233,132.450543 159.562233,130.333351 C159.562233,128.196185 160.142664,126.438517 161.323539,125.060344 C162.56446,123.582305 164.245706,122.863258 166.36728,122.863258 Z" id="ROAD-ICING" fill="#FFFFFF"></path>
<path d="M123.187904,31.4996026 L127.722301,31.4996026 C127.287495,30.6937748 126.790575,29.9189404 126.23154,29.2370861 L128.995659,28.2143046 C129.647866,29.144106 130.269017,30.2598675 130.828052,31.4996026 L134.244378,31.4996026 C134.989759,30.4458278 135.610909,29.3300662 136.169944,28.1833113 L139.027236,29.1750993 C138.530315,30.0119205 138.033395,30.786755 137.505417,31.4996026 L142.164045,31.4996026 L142.164045,34.2580132 L133.685343,34.2580132 C133.498998,34.9088742 133.312653,35.5287417 133.064193,36.1486093 L140.176364,36.1486093 L140.176364,51.5523179 L125.020297,51.5523179 L125.020297,36.1486093 L129.927384,36.1486093 C130.175844,35.5287417 130.362189,34.8778808 130.517477,34.2580132 L123.187904,34.2580132 L123.187904,31.4996026 Z M137.381187,48.9488742 L137.381187,46.9962914 L127.784416,46.9962914 L127.784416,48.9488742 L137.381187,48.9488742 Z M127.784416,44.6717881 L137.381187,44.6717881 L137.381187,42.9361589 L127.784416,42.9361589 L127.784416,44.6717881 Z M127.784416,40.5806623 L137.381187,40.5806623 L137.381187,38.752053 L127.784416,38.752053 L127.784416,40.5806623 Z M117.069573,28.6172185 C119.181484,30.2598675 120.951763,31.9025166 122.380408,33.5141722 L120.299555,35.5597351 C119.057254,34.0100662 117.318033,32.3364238 115.050835,30.5388079 L117.069573,28.6172185 Z M134.896586,56.3872848 C133.219481,56.3872848 131.387087,56.3562914 129.399406,56.325298 C127.411725,56.2943046 125.765677,56.1083444 124.492319,55.7984106 C123.250019,55.4264901 122.163006,54.682649 121.262338,53.6288742 C120.827532,53.1019868 120.454842,52.8540397 120.082152,52.8540397 C119.429944,52.8540397 118.280816,54.2487417 116.603711,57.0381457 L114.429685,55.0235762 C116.044675,52.5131126 117.473321,50.9324503 118.777737,50.2815894 L118.777737,41.541457 L114.460742,41.541457 L114.460742,38.8140397 L121.541855,38.8140397 L121.541855,50.5605298 C121.666085,50.6845033 121.821373,50.8084768 121.97666,50.9944371 C122.690983,51.8312583 123.436364,52.4511258 124.181744,52.8540397 C125.113469,53.287947 126.48,53.5668874 128.281336,53.6288742 C130.020557,53.6598675 132.070353,53.6908609 134.492839,53.6908609 C135.983599,53.6908609 137.536475,53.6598675 139.120408,53.6288742 C140.673284,53.5978808 141.884527,53.535894 142.72308,53.4739073 L142.008757,56.3872848 L134.896586,56.3872848 Z M146.132505,29.2990728 L156.195139,29.2990728 L156.195139,35.7766887 C158.835028,33.7311258 160.636364,31.2206623 161.568089,28.245298 L164.394323,28.8031788 C164.17692,29.4540397 163.92846,30.1049007 163.68,30.7247682 L171.009573,30.7247682 L171.009573,32.8633113 C170.04679,35.3117881 168.649202,37.4813245 166.785751,39.4029139 C168.711317,40.890596 171.040631,42.0683444 173.711577,42.9361589 L172.065529,45.3536424 C169.146122,44.3618543 166.692579,43.0291391 164.642783,41.2935099 C162.592987,42.9051656 160.139443,44.2998675 157.344267,45.4776159 L155.542931,43.1221192 C158.275993,42.037351 160.636364,40.7666225 162.624045,39.3099338 C161.692319,38.2561589 160.915881,37.1713907 160.232616,35.9936424 C159.487236,36.7684768 158.67974,37.4813245 157.841187,38.1631788 L156.195139,36.0246358 L156.195139,39.7128477 L153.213618,39.7128477 L153.213618,44.0209272 L156.101967,44.0209272 L156.101967,46.8103311 L153.213618,46.8103311 L153.213618,51.645298 C154.455918,51.2423841 155.667161,50.8394702 156.785232,50.4365563 L156.785232,53.4119205 C153.524193,54.5896689 149.766234,55.7054305 145.480297,56.7282119 L144.672801,53.8768212 L146.132505,53.5668874 L146.132505,42.6882119 L148.741336,42.6882119 L148.741336,52.9160265 C149.331429,52.7610596 149.921521,52.6060927 150.480557,52.4511258 L150.480557,39.7128477 L146.132505,39.7128477 L146.132505,29.2990728 Z M161.940779,33.824106 C162.717217,35.1878146 163.648942,36.4275497 164.704898,37.5433113 C166.009314,36.2415894 167.065269,34.8468874 167.872764,33.3282119 L162.313469,33.3282119 C162.189239,33.5141722 162.065009,33.6691391 161.940779,33.824106 Z M153.399963,36.9854305 L153.399963,32.0264901 L148.958738,32.0264901 L148.958738,36.9854305 L153.399963,36.9854305 Z M170.916401,45.0127152 L170.916401,56.8211921 L168.090167,56.8211921 L168.090167,55.6434437 L161.288571,55.6434437 L161.288571,56.8211921 L158.493395,56.8211921 L158.493395,45.0127152 L170.916401,45.0127152 Z M161.288571,52.9780132 L168.090167,52.9780132 L168.090167,47.6781457 L161.288571,47.6781457 L161.288571,52.9780132 Z M125.482709,80.2418543 L125.482709,83.0312583 C122.314842,84.1470199 118.743228,85.0768212 114.705751,85.7896689 L114.333061,82.9382781 C118.587941,82.2564238 122.314842,81.3576159 125.482709,80.2418543 Z M119.271206,58.1125828 L122.035325,59.1663576 C120.544564,62.9165563 119.053803,65.9539073 117.500928,68.309404 C118.681113,68.1854305 119.892356,68.0304636 121.134657,67.8445033 C121.693692,66.7907285 122.252727,65.7059603 122.873878,64.5592053 L125.451651,65.4890066 C122.811763,70.3239735 120.606679,73.8882119 118.805343,76.1197351 C120.886197,75.6858278 122.998108,75.0969536 125.110019,74.3531126 L125.110019,76.9875497 C121.631577,78.165298 118.370538,78.9401325 115.264787,79.3430464 L114.488349,76.7086093 C115.016327,76.4916556 115.451132,76.2127152 115.823822,75.8717881 C116.817662,74.8180132 118.09102,73.0513907 119.612839,70.5099338 C118.059963,70.7268874 116.413915,70.9438411 114.736809,71.1917881 L114.022486,68.4953642 C114.457291,68.309404 114.861039,67.9374834 115.233729,67.410596 C116.786605,64.6211921 118.153135,61.5218543 119.271206,58.1125828 Z M125.016846,61.8627815 L132.191132,61.8627815 L132.191132,58.3605298 L135.141596,58.3605298 L135.141596,61.8627815 L142.284824,61.8627815 L142.284824,64.7141722 L135.141596,64.7141722 L135.141596,68.6193377 L141.384156,68.6193377 L141.384156,71.4707285 L126.041744,71.4707285 L126.041744,68.6193377 L132.191132,68.6193377 L132.191132,64.7141722 L125.016846,64.7141722 L125.016846,61.8627815 Z M140.731948,73.8882119 L140.731948,86.781457 L137.874657,86.781457 L137.874657,85.5417219 L129.675473,85.5417219 L129.675473,86.781457 L126.787124,86.781457 L126.787124,73.8882119 L140.731948,73.8882119 Z M129.675473,82.7523179 L137.874657,82.7523179 L137.874657,76.6776159 L129.675473,76.6776159 L129.675473,82.7523179 Z M146.905492,59.4143046 C148.768942,61.8937748 150.228646,64.0633113 151.222486,65.9229139 L148.893173,67.5965563 C147.775102,65.6129801 146.284341,63.381457 144.389833,60.9639735 L146.905492,59.4143046 Z M148.831058,72.1835762 L151.502004,73.237351 C150.197588,77.7933775 148.768942,82.0704636 147.216067,86.0376159 L144.451948,84.8288742 C146.129054,80.706755 147.588757,76.4916556 148.831058,72.1835762 Z M160.53974,86.7504636 L157.247644,86.7504636 L156.595436,83.8680795 C157.620334,83.992053 158.583117,84.0540397 159.514842,84.0540397 C160.322338,84.0540397 160.757143,83.6821192 160.757143,83.0002649 L160.757143,58.3295364 L163.707607,58.3295364 L163.707607,64.7141722 C164.142412,66.2328477 164.67039,67.7205298 165.260482,69.1462252 C167.186048,67.5655629 168.863154,65.4270199 170.322857,62.7615894 L172.590056,64.6211921 C170.78872,67.6895364 168.738924,70.0450331 166.440668,71.6566887 C168.210946,75.2519205 170.509202,78.5682119 173.335436,81.6055629 L171.378813,84.0540397 C168.148831,80.1488742 165.571058,75.9647682 163.707607,71.4397351 L163.707607,83.7131126 C163.707607,85.7276821 162.651651,86.7504636 160.53974,86.7504636 Z M156.999184,68.1544371 L152.029981,68.1544371 L152.029981,65.3340397 L159.701187,65.3340397 L159.701187,67.9994702 C158.862635,75.2519205 156.346976,80.5827815 152.185269,83.992053 L150.197588,81.698543 C153.893432,78.7231788 156.160631,74.1981457 156.999184,68.1544371 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 id="daolujiebing" transform="translate(20.359926, 17.562914)" fill="#D12821" fill-rule="nonzero">
<path d="M65.868211,13.3582774 C65.5226074,10.8782576 63.9894517,8.42794332 60.1320298,7.39564743 L33.8204973,0.354340852 C29.9674832,-0.676775717 27.4130181,0.679703952 25.8736994,2.65522921 L17.7217224,13.0076292 C15.6710084,12.7059974 11.5861805,13.8738851 10.5144721,17.8685331 L9.31725417,33.4946612 L12.1627554,34.2561539 L11.1687236,37.9612753 C9.59857717,43.8137902 17.2500133,45.788722 18.8019645,40.0040289 L19.7959963,36.2989075 L54.2844082,45.5284537 L53.2903765,49.2335735 C51.7384252,55.0182666 59.3534693,57.1288436 60.9236158,51.2763287 L61.9176476,47.5712073 L64.7630817,48.3326816 L71.5491421,34.2022011 C72.6222522,30.2079276 69.6679617,27.1562807 67.743859,26.3941991 L65.868211,13.3582774 Z M21.3437364,27.0436847 C18.9415086,26.4139517 17.4785723,24.1256905 18.079112,21.9329889 C18.6802111,19.7382438 21.1165778,18.4722981 23.5188056,19.102031 C25.9211668,19.7317999 27.3825247,22.0195184 26.7814256,24.2142635 C26.1809701,26.4069216 23.7460976,27.6734536 21.3437364,27.0436847 Z M22.7755102,12.938716 L29.1460048,4.73862761 C29.9875824,3.54852421 30.971695,2.78720087 32.6755749,3.22379927 L59.8231943,10.4393268 C61.5111033,10.9042948 61.981207,12.0520667 62.1100109,13.5000856 L63.4953618,23.7615894 L22.7755102,12.938716 Z M57.9205247,36.6857472 C55.5187301,36.0560367 54.057602,33.7682616 54.6580335,31.575638 C55.2590241,29.3809725 57.6934071,28.1146654 60.0952017,28.7443775 C62.500018,29.3748811 63.9613129,31.6625708 63.3603223,33.8572363 C62.7599077,36.0497999 60.3252735,37.3162344 57.9205247,36.6857472 Z M11.7371825,48.7708929 L18.4471387,56.1186242 L0,62.2443645 L25.2645593,80.2384106 L36.2337662,74.6156747 L12.3513869,62.2206847 L28.6972962,57.0213036 L14.761905,48.2119205 L11.7371825,48.7708929 Z M52.8721216,55.2478238 L58.8329834,61.7264687 L42.445269,67.1276582 L67.5540874,82.9933775 L77.2987013,78.0356959 L53.4177582,67.1067804 L67.938821,62.52238 L55.5591669,54.7549669 L52.8721216,55.2478238 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>DLJB-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, -2025.000000)">
<g id="DLJB-O" transform="translate(35.000000, 2025.000000)">
<g id="Group-8-Copy">
<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="M70.256008,123.142887 L76.6207278,123.142887 C78.0818113,123.142887 79.2426722,123.462464 80.0832956,124.121589 C80.9639486,124.840636 81.42429,125.879258 81.42429,127.237457 C81.42429,127.976477 81.2241416,128.635603 80.8238447,129.214834 C80.3835182,129.853987 79.7630581,130.27343 79.0024941,130.473166 L79.0024941,130.513113 C80.2434143,130.792742 80.9439338,131.611656 81.1040525,133.009801 L81.3442306,135.306755 C81.42429,136.185589 81.7245126,136.884662 82.2048688,137.403974 L79.6629839,137.403974 C79.3227316,136.964556 79.1225831,136.345377 79.0425238,135.546437 L78.8623902,133.788768 C78.7823308,133.009801 78.5421527,132.450543 78.1418559,132.110993 C77.7215442,131.75147 77.1010841,131.591682 76.3004904,131.591682 L72.5977445,131.591682 L72.5977445,137.403974 L70.256008,137.403974 L70.256008,123.142887 Z M72.5977445,125.140238 L72.5977445,129.594331 L76.3004904,129.594331 C77.2211731,129.594331 77.9216926,129.394596 78.4020488,129.015099 C78.8423753,128.615629 79.0625386,128.056371 79.0625386,127.337325 C79.0625386,126.558358 78.8423753,125.999099 78.4020488,125.65955 C77.9617223,125.300026 77.2612028,125.140238 76.3004904,125.140238 L72.5977445,125.140238 Z M89.0165867,122.863258 C91.1982045,122.863258 92.919481,123.562331 94.180416,124.98045 C95.3813066,126.318675 95.9817519,128.096318 95.9817519,130.293404 C95.9817519,132.49049 95.3813066,134.248159 94.180416,135.586384 C92.919481,136.98453 91.1982045,137.683603 89.0165867,137.683603 C86.8149541,137.683603 85.0936776,136.964556 83.8527574,135.566411 C82.6518669,134.208212 82.0714365,132.450543 82.0714365,130.293404 C82.0714365,128.116291 82.6518669,126.358623 83.8527574,125.000424 C85.0936776,123.562331 86.8149541,122.863258 89.0165867,122.863258 Z M89.0165867,124.92053 C87.5354884,124.92053 86.3946424,125.419868 85.5740339,126.418543 C84.793455,127.377272 84.413173,128.655576 84.413173,130.293404 C84.413173,131.911258 84.793455,133.189563 85.5740339,134.148291 C86.3746275,135.126993 87.5354884,135.626331 89.0165867,135.626331 C90.4976851,135.626331 91.6385311,135.146967 92.4391248,134.208212 C93.2197036,133.269457 93.6200005,131.971179 93.6200005,130.293404 C93.6200005,128.615629 93.2197036,127.297377 92.4391248,126.338649 C91.6385311,125.379921 90.4976851,124.92053 89.0165867,124.92053 Z M100.711926,123.142887 L103.3739,123.142887 L108.837952,137.403974 L106.336097,137.403974 L105.035132,133.828715 L99.0506942,133.828715 L97.7497295,137.403974 L95.2478742,137.403974 L100.711926,123.142887 Z M99.7512137,131.911258 L104.334613,131.911258 L102.09295,125.65955 L102.012891,125.65955 L99.7512137,131.911258 Z M108.70452,123.142887 L113.928394,123.142887 C116.250115,123.142887 117.991407,123.78204 119.192297,125.060344 C120.333143,126.258755 120.913574,127.99645 120.913574,130.27343 C120.913574,132.530437 120.333143,134.268132 119.192297,135.486517 C117.991407,136.764821 116.250115,137.403974 113.928394,137.403974 L108.70452,137.403974 L108.70452,123.142887 Z M111.046256,125.140238 L111.046256,135.406623 L113.488067,135.406623 C115.269388,135.406623 116.570353,134.987179 117.390961,134.168265 C118.191555,133.329377 118.591852,132.031099 118.591852,130.27343 C118.591852,128.475815 118.191555,127.157563 117.390961,126.358623 C116.570353,125.539709 115.269388,125.140238 113.488067,125.140238 L111.046256,125.140238 Z M126.711206,123.142887 L129.052942,123.142887 L129.052942,137.403974 L126.711206,137.403974 L126.711206,123.142887 Z M136.52515,122.863258 C138.206397,122.863258 139.607436,123.302675 140.688237,124.18151 C141.729009,125.020397 142.349469,126.178861 142.569633,127.616954 L140.287941,127.616954 C140.047762,126.678199 139.607436,125.999099 138.946946,125.559682 C138.306471,125.120265 137.485863,124.92053 136.48512,124.92053 C134.984007,124.92053 133.863176,125.419868 133.102612,126.45849 C132.402093,127.377272 132.06184,128.655576 132.06184,130.293404 C132.06184,131.971179 132.402093,133.269457 133.082597,134.168265 C133.823146,135.126993 134.984007,135.626331 136.545165,135.626331 C137.565922,135.626331 138.406545,135.366675 139.04702,134.887311 C139.727525,134.348026 140.207881,133.529113 140.488089,132.450543 L142.769781,132.450543 C142.449543,134.128318 141.708994,135.426596 140.528119,136.365351 C139.427302,137.244185 138.106323,137.683603 136.56518,137.683603 C134.183414,137.683603 132.402093,136.924609 131.241232,135.44657 C130.220475,134.168265 129.720104,132.450543 129.720104,130.293404 C129.720104,128.176212 130.24049,126.438517 131.301276,125.120265 C132.502167,123.602278 134.243458,122.863258 136.52515,122.863258 Z M143.436942,123.142887 L145.778679,123.142887 L145.778679,137.403974 L143.436942,137.403974 L143.436942,123.142887 Z M147.046285,123.142887 L149.388022,123.142887 L156.453261,133.429245 L156.533321,133.429245 L156.533321,123.142887 L158.895072,123.142887 L158.895072,137.403974 L156.61338,137.403974 L149.468081,126.977801 L149.388022,126.977801 L149.388022,137.403974 L147.046285,137.403974 L147.046285,123.142887 Z M166.36728,122.863258 C168.208645,122.863258 169.649714,123.262728 170.7105,124.081642 C171.731257,124.880583 172.371732,126.05902 172.631925,127.656901 L170.270174,127.656901 C170.070026,126.738119 169.629699,126.05902 168.989224,125.599629 C168.328734,125.140238 167.448081,124.92053 166.36728,124.92053 C165.026285,124.92053 163.965499,125.359947 163.18492,126.278728 C162.324282,127.237457 161.90397,128.575682 161.90397,130.333351 C161.90397,132.011126 162.284252,133.309404 163.044816,134.208212 C163.865424,135.16694 165.146374,135.646305 166.887666,135.646305 C167.56817,135.646305 168.208645,135.566411 168.80909,135.406623 C169.369506,135.246834 169.869877,135.027126 170.350233,134.747497 L170.350233,131.811391 L166.567428,131.811391 L166.567428,129.81404 L172.69197,129.81404 L172.69197,135.84604 C171.931406,136.445245 171.070768,136.884662 170.09004,137.204238 C169.049269,137.523815 167.908423,137.683603 166.627473,137.683603 C164.345781,137.683603 162.584474,136.964556 161.323539,135.526464 C160.142664,134.188238 159.562233,132.450543 159.562233,130.333351 C159.562233,128.196185 160.142664,126.438517 161.323539,125.060344 C162.56446,123.582305 164.245706,122.863258 166.36728,122.863258 Z" id="ROAD-ICING" fill="#FFFFFF"></path>
<path d="M123.187904,31.4996026 L127.722301,31.4996026 C127.287495,30.6937748 126.790575,29.9189404 126.23154,29.2370861 L128.995659,28.2143046 C129.647866,29.144106 130.269017,30.2598675 130.828052,31.4996026 L134.244378,31.4996026 C134.989759,30.4458278 135.610909,29.3300662 136.169944,28.1833113 L139.027236,29.1750993 C138.530315,30.0119205 138.033395,30.786755 137.505417,31.4996026 L142.164045,31.4996026 L142.164045,34.2580132 L133.685343,34.2580132 C133.498998,34.9088742 133.312653,35.5287417 133.064193,36.1486093 L140.176364,36.1486093 L140.176364,51.5523179 L125.020297,51.5523179 L125.020297,36.1486093 L129.927384,36.1486093 C130.175844,35.5287417 130.362189,34.8778808 130.517477,34.2580132 L123.187904,34.2580132 L123.187904,31.4996026 Z M137.381187,48.9488742 L137.381187,46.9962914 L127.784416,46.9962914 L127.784416,48.9488742 L137.381187,48.9488742 Z M127.784416,44.6717881 L137.381187,44.6717881 L137.381187,42.9361589 L127.784416,42.9361589 L127.784416,44.6717881 Z M127.784416,40.5806623 L137.381187,40.5806623 L137.381187,38.752053 L127.784416,38.752053 L127.784416,40.5806623 Z M117.069573,28.6172185 C119.181484,30.2598675 120.951763,31.9025166 122.380408,33.5141722 L120.299555,35.5597351 C119.057254,34.0100662 117.318033,32.3364238 115.050835,30.5388079 L117.069573,28.6172185 Z M134.896586,56.3872848 C133.219481,56.3872848 131.387087,56.3562914 129.399406,56.325298 C127.411725,56.2943046 125.765677,56.1083444 124.492319,55.7984106 C123.250019,55.4264901 122.163006,54.682649 121.262338,53.6288742 C120.827532,53.1019868 120.454842,52.8540397 120.082152,52.8540397 C119.429944,52.8540397 118.280816,54.2487417 116.603711,57.0381457 L114.429685,55.0235762 C116.044675,52.5131126 117.473321,50.9324503 118.777737,50.2815894 L118.777737,41.541457 L114.460742,41.541457 L114.460742,38.8140397 L121.541855,38.8140397 L121.541855,50.5605298 C121.666085,50.6845033 121.821373,50.8084768 121.97666,50.9944371 C122.690983,51.8312583 123.436364,52.4511258 124.181744,52.8540397 C125.113469,53.287947 126.48,53.5668874 128.281336,53.6288742 C130.020557,53.6598675 132.070353,53.6908609 134.492839,53.6908609 C135.983599,53.6908609 137.536475,53.6598675 139.120408,53.6288742 C140.673284,53.5978808 141.884527,53.535894 142.72308,53.4739073 L142.008757,56.3872848 L134.896586,56.3872848 Z M146.132505,29.2990728 L156.195139,29.2990728 L156.195139,35.7766887 C158.835028,33.7311258 160.636364,31.2206623 161.568089,28.245298 L164.394323,28.8031788 C164.17692,29.4540397 163.92846,30.1049007 163.68,30.7247682 L171.009573,30.7247682 L171.009573,32.8633113 C170.04679,35.3117881 168.649202,37.4813245 166.785751,39.4029139 C168.711317,40.890596 171.040631,42.0683444 173.711577,42.9361589 L172.065529,45.3536424 C169.146122,44.3618543 166.692579,43.0291391 164.642783,41.2935099 C162.592987,42.9051656 160.139443,44.2998675 157.344267,45.4776159 L155.542931,43.1221192 C158.275993,42.037351 160.636364,40.7666225 162.624045,39.3099338 C161.692319,38.2561589 160.915881,37.1713907 160.232616,35.9936424 C159.487236,36.7684768 158.67974,37.4813245 157.841187,38.1631788 L156.195139,36.0246358 L156.195139,39.7128477 L153.213618,39.7128477 L153.213618,44.0209272 L156.101967,44.0209272 L156.101967,46.8103311 L153.213618,46.8103311 L153.213618,51.645298 C154.455918,51.2423841 155.667161,50.8394702 156.785232,50.4365563 L156.785232,53.4119205 C153.524193,54.5896689 149.766234,55.7054305 145.480297,56.7282119 L144.672801,53.8768212 L146.132505,53.5668874 L146.132505,42.6882119 L148.741336,42.6882119 L148.741336,52.9160265 C149.331429,52.7610596 149.921521,52.6060927 150.480557,52.4511258 L150.480557,39.7128477 L146.132505,39.7128477 L146.132505,29.2990728 Z M161.940779,33.824106 C162.717217,35.1878146 163.648942,36.4275497 164.704898,37.5433113 C166.009314,36.2415894 167.065269,34.8468874 167.872764,33.3282119 L162.313469,33.3282119 C162.189239,33.5141722 162.065009,33.6691391 161.940779,33.824106 Z M153.399963,36.9854305 L153.399963,32.0264901 L148.958738,32.0264901 L148.958738,36.9854305 L153.399963,36.9854305 Z M170.916401,45.0127152 L170.916401,56.8211921 L168.090167,56.8211921 L168.090167,55.6434437 L161.288571,55.6434437 L161.288571,56.8211921 L158.493395,56.8211921 L158.493395,45.0127152 L170.916401,45.0127152 Z M161.288571,52.9780132 L168.090167,52.9780132 L168.090167,47.6781457 L161.288571,47.6781457 L161.288571,52.9780132 Z M125.482709,80.2418543 L125.482709,83.0312583 C122.314842,84.1470199 118.743228,85.0768212 114.705751,85.7896689 L114.333061,82.9382781 C118.587941,82.2564238 122.314842,81.3576159 125.482709,80.2418543 Z M119.271206,58.1125828 L122.035325,59.1663576 C120.544564,62.9165563 119.053803,65.9539073 117.500928,68.309404 C118.681113,68.1854305 119.892356,68.0304636 121.134657,67.8445033 C121.693692,66.7907285 122.252727,65.7059603 122.873878,64.5592053 L125.451651,65.4890066 C122.811763,70.3239735 120.606679,73.8882119 118.805343,76.1197351 C120.886197,75.6858278 122.998108,75.0969536 125.110019,74.3531126 L125.110019,76.9875497 C121.631577,78.165298 118.370538,78.9401325 115.264787,79.3430464 L114.488349,76.7086093 C115.016327,76.4916556 115.451132,76.2127152 115.823822,75.8717881 C116.817662,74.8180132 118.09102,73.0513907 119.612839,70.5099338 C118.059963,70.7268874 116.413915,70.9438411 114.736809,71.1917881 L114.022486,68.4953642 C114.457291,68.309404 114.861039,67.9374834 115.233729,67.410596 C116.786605,64.6211921 118.153135,61.5218543 119.271206,58.1125828 Z M125.016846,61.8627815 L132.191132,61.8627815 L132.191132,58.3605298 L135.141596,58.3605298 L135.141596,61.8627815 L142.284824,61.8627815 L142.284824,64.7141722 L135.141596,64.7141722 L135.141596,68.6193377 L141.384156,68.6193377 L141.384156,71.4707285 L126.041744,71.4707285 L126.041744,68.6193377 L132.191132,68.6193377 L132.191132,64.7141722 L125.016846,64.7141722 L125.016846,61.8627815 Z M140.731948,73.8882119 L140.731948,86.781457 L137.874657,86.781457 L137.874657,85.5417219 L129.675473,85.5417219 L129.675473,86.781457 L126.787124,86.781457 L126.787124,73.8882119 L140.731948,73.8882119 Z M129.675473,82.7523179 L137.874657,82.7523179 L137.874657,76.6776159 L129.675473,76.6776159 L129.675473,82.7523179 Z M146.905492,59.4143046 C148.768942,61.8937748 150.228646,64.0633113 151.222486,65.9229139 L148.893173,67.5965563 C147.775102,65.6129801 146.284341,63.381457 144.389833,60.9639735 L146.905492,59.4143046 Z M148.831058,72.1835762 L151.502004,73.237351 C150.197588,77.7933775 148.768942,82.0704636 147.216067,86.0376159 L144.451948,84.8288742 C146.129054,80.706755 147.588757,76.4916556 148.831058,72.1835762 Z M160.53974,86.7504636 L157.247644,86.7504636 L156.595436,83.8680795 C157.620334,83.992053 158.583117,84.0540397 159.514842,84.0540397 C160.322338,84.0540397 160.757143,83.6821192 160.757143,83.0002649 L160.757143,58.3295364 L163.707607,58.3295364 L163.707607,64.7141722 C164.142412,66.2328477 164.67039,67.7205298 165.260482,69.1462252 C167.186048,67.5655629 168.863154,65.4270199 170.322857,62.7615894 L172.590056,64.6211921 C170.78872,67.6895364 168.738924,70.0450331 166.440668,71.6566887 C168.210946,75.2519205 170.509202,78.5682119 173.335436,81.6055629 L171.378813,84.0540397 C168.148831,80.1488742 165.571058,75.9647682 163.707607,71.4397351 L163.707607,83.7131126 C163.707607,85.7276821 162.651651,86.7504636 160.53974,86.7504636 Z M156.999184,68.1544371 L152.029981,68.1544371 L152.029981,65.3340397 L159.701187,65.3340397 L159.701187,67.9994702 C158.862635,75.2519205 156.346976,80.5827815 152.185269,83.992053 L150.197588,81.698543 C153.893432,78.7231788 156.160631,74.1981457 156.999184,68.1544371 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>
<g id="daolujiebing" transform="translate(20.359926, 17.562914)" fill="#EC8D15" fill-rule="nonzero">
<path d="M65.868211,13.3582774 C65.5226074,10.8782576 63.9894517,8.42794332 60.1320298,7.39564743 L33.8204973,0.354340852 C29.9674832,-0.676775717 27.4130181,0.679703952 25.8736994,2.65522921 L17.7217224,13.0076292 C15.6710084,12.7059974 11.5861805,13.8738851 10.5144721,17.8685331 L9.31725417,33.4946612 L12.1627554,34.2561539 L11.1687236,37.9612753 C9.59857717,43.8137902 17.2500133,45.788722 18.8019645,40.0040289 L19.7959963,36.2989075 L54.2844082,45.5284537 L53.2903765,49.2335735 C51.7384252,55.0182666 59.3534693,57.1288436 60.9236158,51.2763287 L61.9176476,47.5712073 L64.7630817,48.3326816 L71.5491421,34.2022011 C72.6222522,30.2079276 69.6679617,27.1562807 67.743859,26.3941991 L65.868211,13.3582774 Z M21.3437364,27.0436847 C18.9415086,26.4139517 17.4785723,24.1256905 18.079112,21.9329889 C18.6802111,19.7382438 21.1165778,18.4722981 23.5188056,19.102031 C25.9211668,19.7317999 27.3825247,22.0195184 26.7814256,24.2142635 C26.1809701,26.4069216 23.7460976,27.6734536 21.3437364,27.0436847 Z M22.7755102,12.938716 L29.1460048,4.73862761 C29.9875824,3.54852421 30.971695,2.78720087 32.6755749,3.22379927 L59.8231943,10.4393268 C61.5111033,10.9042948 61.981207,12.0520667 62.1100109,13.5000856 L63.4953618,23.7615894 L22.7755102,12.938716 Z M57.9205247,36.6857472 C55.5187301,36.0560367 54.057602,33.7682616 54.6580335,31.575638 C55.2590241,29.3809725 57.6934071,28.1146654 60.0952017,28.7443775 C62.500018,29.3748811 63.9613129,31.6625708 63.3603223,33.8572363 C62.7599077,36.0497999 60.3252735,37.3162344 57.9205247,36.6857472 Z M11.7371825,48.7708929 L18.4471387,56.1186242 L0,62.2443645 L25.2645593,80.2384106 L36.2337662,74.6156747 L12.3513869,62.2206847 L28.6972962,57.0213036 L14.761905,48.2119205 L11.7371825,48.7708929 Z M52.8721216,55.2478238 L58.8329834,61.7264687 L42.445269,67.1276582 L67.5540874,82.9933775 L77.2987013,78.0356959 L53.4177582,67.1067804 L67.938821,62.52238 L55.5591669,54.7549669 L52.8721216,55.2478238 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>DLJB-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, -2022.000000)">
<g id="DLJB-Y" transform="translate(354.000000, 2022.000000)">
<g id="Group-8-Copy">
<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="M70.256008,123.142887 L76.6207278,123.142887 C78.0818113,123.142887 79.2426722,123.462464 80.0832956,124.121589 C80.9639486,124.840636 81.42429,125.879258 81.42429,127.237457 C81.42429,127.976477 81.2241416,128.635603 80.8238447,129.214834 C80.3835182,129.853987 79.7630581,130.27343 79.0024941,130.473166 L79.0024941,130.513113 C80.2434143,130.792742 80.9439338,131.611656 81.1040525,133.009801 L81.3442306,135.306755 C81.42429,136.185589 81.7245126,136.884662 82.2048688,137.403974 L79.6629839,137.403974 C79.3227316,136.964556 79.1225831,136.345377 79.0425238,135.546437 L78.8623902,133.788768 C78.7823308,133.009801 78.5421527,132.450543 78.1418559,132.110993 C77.7215442,131.75147 77.1010841,131.591682 76.3004904,131.591682 L72.5977445,131.591682 L72.5977445,137.403974 L70.256008,137.403974 L70.256008,123.142887 Z M72.5977445,125.140238 L72.5977445,129.594331 L76.3004904,129.594331 C77.2211731,129.594331 77.9216926,129.394596 78.4020488,129.015099 C78.8423753,128.615629 79.0625386,128.056371 79.0625386,127.337325 C79.0625386,126.558358 78.8423753,125.999099 78.4020488,125.65955 C77.9617223,125.300026 77.2612028,125.140238 76.3004904,125.140238 L72.5977445,125.140238 Z M89.0165867,122.863258 C91.1982045,122.863258 92.919481,123.562331 94.180416,124.98045 C95.3813066,126.318675 95.9817519,128.096318 95.9817519,130.293404 C95.9817519,132.49049 95.3813066,134.248159 94.180416,135.586384 C92.919481,136.98453 91.1982045,137.683603 89.0165867,137.683603 C86.8149541,137.683603 85.0936776,136.964556 83.8527574,135.566411 C82.6518669,134.208212 82.0714365,132.450543 82.0714365,130.293404 C82.0714365,128.116291 82.6518669,126.358623 83.8527574,125.000424 C85.0936776,123.562331 86.8149541,122.863258 89.0165867,122.863258 Z M89.0165867,124.92053 C87.5354884,124.92053 86.3946424,125.419868 85.5740339,126.418543 C84.793455,127.377272 84.413173,128.655576 84.413173,130.293404 C84.413173,131.911258 84.793455,133.189563 85.5740339,134.148291 C86.3746275,135.126993 87.5354884,135.626331 89.0165867,135.626331 C90.4976851,135.626331 91.6385311,135.146967 92.4391248,134.208212 C93.2197036,133.269457 93.6200005,131.971179 93.6200005,130.293404 C93.6200005,128.615629 93.2197036,127.297377 92.4391248,126.338649 C91.6385311,125.379921 90.4976851,124.92053 89.0165867,124.92053 Z M100.711926,123.142887 L103.3739,123.142887 L108.837952,137.403974 L106.336097,137.403974 L105.035132,133.828715 L99.0506942,133.828715 L97.7497295,137.403974 L95.2478742,137.403974 L100.711926,123.142887 Z M99.7512137,131.911258 L104.334613,131.911258 L102.09295,125.65955 L102.012891,125.65955 L99.7512137,131.911258 Z M108.70452,123.142887 L113.928394,123.142887 C116.250115,123.142887 117.991407,123.78204 119.192297,125.060344 C120.333143,126.258755 120.913574,127.99645 120.913574,130.27343 C120.913574,132.530437 120.333143,134.268132 119.192297,135.486517 C117.991407,136.764821 116.250115,137.403974 113.928394,137.403974 L108.70452,137.403974 L108.70452,123.142887 Z M111.046256,125.140238 L111.046256,135.406623 L113.488067,135.406623 C115.269388,135.406623 116.570353,134.987179 117.390961,134.168265 C118.191555,133.329377 118.591852,132.031099 118.591852,130.27343 C118.591852,128.475815 118.191555,127.157563 117.390961,126.358623 C116.570353,125.539709 115.269388,125.140238 113.488067,125.140238 L111.046256,125.140238 Z M126.711206,123.142887 L129.052942,123.142887 L129.052942,137.403974 L126.711206,137.403974 L126.711206,123.142887 Z M136.52515,122.863258 C138.206397,122.863258 139.607436,123.302675 140.688237,124.18151 C141.729009,125.020397 142.349469,126.178861 142.569633,127.616954 L140.287941,127.616954 C140.047762,126.678199 139.607436,125.999099 138.946946,125.559682 C138.306471,125.120265 137.485863,124.92053 136.48512,124.92053 C134.984007,124.92053 133.863176,125.419868 133.102612,126.45849 C132.402093,127.377272 132.06184,128.655576 132.06184,130.293404 C132.06184,131.971179 132.402093,133.269457 133.082597,134.168265 C133.823146,135.126993 134.984007,135.626331 136.545165,135.626331 C137.565922,135.626331 138.406545,135.366675 139.04702,134.887311 C139.727525,134.348026 140.207881,133.529113 140.488089,132.450543 L142.769781,132.450543 C142.449543,134.128318 141.708994,135.426596 140.528119,136.365351 C139.427302,137.244185 138.106323,137.683603 136.56518,137.683603 C134.183414,137.683603 132.402093,136.924609 131.241232,135.44657 C130.220475,134.168265 129.720104,132.450543 129.720104,130.293404 C129.720104,128.176212 130.24049,126.438517 131.301276,125.120265 C132.502167,123.602278 134.243458,122.863258 136.52515,122.863258 Z M143.436942,123.142887 L145.778679,123.142887 L145.778679,137.403974 L143.436942,137.403974 L143.436942,123.142887 Z M147.046285,123.142887 L149.388022,123.142887 L156.453261,133.429245 L156.533321,133.429245 L156.533321,123.142887 L158.895072,123.142887 L158.895072,137.403974 L156.61338,137.403974 L149.468081,126.977801 L149.388022,126.977801 L149.388022,137.403974 L147.046285,137.403974 L147.046285,123.142887 Z M166.36728,122.863258 C168.208645,122.863258 169.649714,123.262728 170.7105,124.081642 C171.731257,124.880583 172.371732,126.05902 172.631925,127.656901 L170.270174,127.656901 C170.070026,126.738119 169.629699,126.05902 168.989224,125.599629 C168.328734,125.140238 167.448081,124.92053 166.36728,124.92053 C165.026285,124.92053 163.965499,125.359947 163.18492,126.278728 C162.324282,127.237457 161.90397,128.575682 161.90397,130.333351 C161.90397,132.011126 162.284252,133.309404 163.044816,134.208212 C163.865424,135.16694 165.146374,135.646305 166.887666,135.646305 C167.56817,135.646305 168.208645,135.566411 168.80909,135.406623 C169.369506,135.246834 169.869877,135.027126 170.350233,134.747497 L170.350233,131.811391 L166.567428,131.811391 L166.567428,129.81404 L172.69197,129.81404 L172.69197,135.84604 C171.931406,136.445245 171.070768,136.884662 170.09004,137.204238 C169.049269,137.523815 167.908423,137.683603 166.627473,137.683603 C164.345781,137.683603 162.584474,136.964556 161.323539,135.526464 C160.142664,134.188238 159.562233,132.450543 159.562233,130.333351 C159.562233,128.196185 160.142664,126.438517 161.323539,125.060344 C162.56446,123.582305 164.245706,122.863258 166.36728,122.863258 Z" id="ROAD-ICING" fill="#444444"></path>
<path d="M123.187904,31.4996026 L127.722301,31.4996026 C127.287495,30.6937748 126.790575,29.9189404 126.23154,29.2370861 L128.995659,28.2143046 C129.647866,29.144106 130.269017,30.2598675 130.828052,31.4996026 L134.244378,31.4996026 C134.989759,30.4458278 135.610909,29.3300662 136.169944,28.1833113 L139.027236,29.1750993 C138.530315,30.0119205 138.033395,30.786755 137.505417,31.4996026 L142.164045,31.4996026 L142.164045,34.2580132 L133.685343,34.2580132 C133.498998,34.9088742 133.312653,35.5287417 133.064193,36.1486093 L140.176364,36.1486093 L140.176364,51.5523179 L125.020297,51.5523179 L125.020297,36.1486093 L129.927384,36.1486093 C130.175844,35.5287417 130.362189,34.8778808 130.517477,34.2580132 L123.187904,34.2580132 L123.187904,31.4996026 Z M137.381187,48.9488742 L137.381187,46.9962914 L127.784416,46.9962914 L127.784416,48.9488742 L137.381187,48.9488742 Z M127.784416,44.6717881 L137.381187,44.6717881 L137.381187,42.9361589 L127.784416,42.9361589 L127.784416,44.6717881 Z M127.784416,40.5806623 L137.381187,40.5806623 L137.381187,38.752053 L127.784416,38.752053 L127.784416,40.5806623 Z M117.069573,28.6172185 C119.181484,30.2598675 120.951763,31.9025166 122.380408,33.5141722 L120.299555,35.5597351 C119.057254,34.0100662 117.318033,32.3364238 115.050835,30.5388079 L117.069573,28.6172185 Z M134.896586,56.3872848 C133.219481,56.3872848 131.387087,56.3562914 129.399406,56.325298 C127.411725,56.2943046 125.765677,56.1083444 124.492319,55.7984106 C123.250019,55.4264901 122.163006,54.682649 121.262338,53.6288742 C120.827532,53.1019868 120.454842,52.8540397 120.082152,52.8540397 C119.429944,52.8540397 118.280816,54.2487417 116.603711,57.0381457 L114.429685,55.0235762 C116.044675,52.5131126 117.473321,50.9324503 118.777737,50.2815894 L118.777737,41.541457 L114.460742,41.541457 L114.460742,38.8140397 L121.541855,38.8140397 L121.541855,50.5605298 C121.666085,50.6845033 121.821373,50.8084768 121.97666,50.9944371 C122.690983,51.8312583 123.436364,52.4511258 124.181744,52.8540397 C125.113469,53.287947 126.48,53.5668874 128.281336,53.6288742 C130.020557,53.6598675 132.070353,53.6908609 134.492839,53.6908609 C135.983599,53.6908609 137.536475,53.6598675 139.120408,53.6288742 C140.673284,53.5978808 141.884527,53.535894 142.72308,53.4739073 L142.008757,56.3872848 L134.896586,56.3872848 Z M146.132505,29.2990728 L156.195139,29.2990728 L156.195139,35.7766887 C158.835028,33.7311258 160.636364,31.2206623 161.568089,28.245298 L164.394323,28.8031788 C164.17692,29.4540397 163.92846,30.1049007 163.68,30.7247682 L171.009573,30.7247682 L171.009573,32.8633113 C170.04679,35.3117881 168.649202,37.4813245 166.785751,39.4029139 C168.711317,40.890596 171.040631,42.0683444 173.711577,42.9361589 L172.065529,45.3536424 C169.146122,44.3618543 166.692579,43.0291391 164.642783,41.2935099 C162.592987,42.9051656 160.139443,44.2998675 157.344267,45.4776159 L155.542931,43.1221192 C158.275993,42.037351 160.636364,40.7666225 162.624045,39.3099338 C161.692319,38.2561589 160.915881,37.1713907 160.232616,35.9936424 C159.487236,36.7684768 158.67974,37.4813245 157.841187,38.1631788 L156.195139,36.0246358 L156.195139,39.7128477 L153.213618,39.7128477 L153.213618,44.0209272 L156.101967,44.0209272 L156.101967,46.8103311 L153.213618,46.8103311 L153.213618,51.645298 C154.455918,51.2423841 155.667161,50.8394702 156.785232,50.4365563 L156.785232,53.4119205 C153.524193,54.5896689 149.766234,55.7054305 145.480297,56.7282119 L144.672801,53.8768212 L146.132505,53.5668874 L146.132505,42.6882119 L148.741336,42.6882119 L148.741336,52.9160265 C149.331429,52.7610596 149.921521,52.6060927 150.480557,52.4511258 L150.480557,39.7128477 L146.132505,39.7128477 L146.132505,29.2990728 Z M161.940779,33.824106 C162.717217,35.1878146 163.648942,36.4275497 164.704898,37.5433113 C166.009314,36.2415894 167.065269,34.8468874 167.872764,33.3282119 L162.313469,33.3282119 C162.189239,33.5141722 162.065009,33.6691391 161.940779,33.824106 Z M153.399963,36.9854305 L153.399963,32.0264901 L148.958738,32.0264901 L148.958738,36.9854305 L153.399963,36.9854305 Z M170.916401,45.0127152 L170.916401,56.8211921 L168.090167,56.8211921 L168.090167,55.6434437 L161.288571,55.6434437 L161.288571,56.8211921 L158.493395,56.8211921 L158.493395,45.0127152 L170.916401,45.0127152 Z M161.288571,52.9780132 L168.090167,52.9780132 L168.090167,47.6781457 L161.288571,47.6781457 L161.288571,52.9780132 Z M125.482709,80.2418543 L125.482709,83.0312583 C122.314842,84.1470199 118.743228,85.0768212 114.705751,85.7896689 L114.333061,82.9382781 C118.587941,82.2564238 122.314842,81.3576159 125.482709,80.2418543 Z M119.271206,58.1125828 L122.035325,59.1663576 C120.544564,62.9165563 119.053803,65.9539073 117.500928,68.309404 C118.681113,68.1854305 119.892356,68.0304636 121.134657,67.8445033 C121.693692,66.7907285 122.252727,65.7059603 122.873878,64.5592053 L125.451651,65.4890066 C122.811763,70.3239735 120.606679,73.8882119 118.805343,76.1197351 C120.886197,75.6858278 122.998108,75.0969536 125.110019,74.3531126 L125.110019,76.9875497 C121.631577,78.165298 118.370538,78.9401325 115.264787,79.3430464 L114.488349,76.7086093 C115.016327,76.4916556 115.451132,76.2127152 115.823822,75.8717881 C116.817662,74.8180132 118.09102,73.0513907 119.612839,70.5099338 C118.059963,70.7268874 116.413915,70.9438411 114.736809,71.1917881 L114.022486,68.4953642 C114.457291,68.309404 114.861039,67.9374834 115.233729,67.410596 C116.786605,64.6211921 118.153135,61.5218543 119.271206,58.1125828 Z M125.016846,61.8627815 L132.191132,61.8627815 L132.191132,58.3605298 L135.141596,58.3605298 L135.141596,61.8627815 L142.284824,61.8627815 L142.284824,64.7141722 L135.141596,64.7141722 L135.141596,68.6193377 L141.384156,68.6193377 L141.384156,71.4707285 L126.041744,71.4707285 L126.041744,68.6193377 L132.191132,68.6193377 L132.191132,64.7141722 L125.016846,64.7141722 L125.016846,61.8627815 Z M140.731948,73.8882119 L140.731948,86.781457 L137.874657,86.781457 L137.874657,85.5417219 L129.675473,85.5417219 L129.675473,86.781457 L126.787124,86.781457 L126.787124,73.8882119 L140.731948,73.8882119 Z M129.675473,82.7523179 L137.874657,82.7523179 L137.874657,76.6776159 L129.675473,76.6776159 L129.675473,82.7523179 Z M146.905492,59.4143046 C148.768942,61.8937748 150.228646,64.0633113 151.222486,65.9229139 L148.893173,67.5965563 C147.775102,65.6129801 146.284341,63.381457 144.389833,60.9639735 L146.905492,59.4143046 Z M148.831058,72.1835762 L151.502004,73.237351 C150.197588,77.7933775 148.768942,82.0704636 147.216067,86.0376159 L144.451948,84.8288742 C146.129054,80.706755 147.588757,76.4916556 148.831058,72.1835762 Z M160.53974,86.7504636 L157.247644,86.7504636 L156.595436,83.8680795 C157.620334,83.992053 158.583117,84.0540397 159.514842,84.0540397 C160.322338,84.0540397 160.757143,83.6821192 160.757143,83.0002649 L160.757143,58.3295364 L163.707607,58.3295364 L163.707607,64.7141722 C164.142412,66.2328477 164.67039,67.7205298 165.260482,69.1462252 C167.186048,67.5655629 168.863154,65.4270199 170.322857,62.7615894 L172.590056,64.6211921 C170.78872,67.6895364 168.738924,70.0450331 166.440668,71.6566887 C168.210946,75.2519205 170.509202,78.5682119 173.335436,81.6055629 L171.378813,84.0540397 C168.148831,80.1488742 165.571058,75.9647682 163.707607,71.4397351 L163.707607,83.7131126 C163.707607,85.7276821 162.651651,86.7504636 160.53974,86.7504636 Z M156.999184,68.1544371 L152.029981,68.1544371 L152.029981,65.3340397 L159.701187,65.3340397 L159.701187,67.9994702 C158.862635,75.2519205 156.346976,80.5827815 152.185269,83.992053 L150.197588,81.698543 C153.893432,78.7231788 156.160631,74.1981457 156.999184,68.1544371 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>
<g id="daolujiebing" transform="translate(20.359926, 17.562914)" fill="#FFFF00" fill-rule="nonzero">
<path d="M65.868211,13.3582774 C65.5226074,10.8782576 63.9894517,8.42794332 60.1320298,7.39564743 L33.8204973,0.354340852 C29.9674832,-0.676775717 27.4130181,0.679703952 25.8736994,2.65522921 L17.7217224,13.0076292 C15.6710084,12.7059974 11.5861805,13.8738851 10.5144721,17.8685331 L9.31725417,33.4946612 L12.1627554,34.2561539 L11.1687236,37.9612753 C9.59857717,43.8137902 17.2500133,45.788722 18.8019645,40.0040289 L19.7959963,36.2989075 L54.2844082,45.5284537 L53.2903765,49.2335735 C51.7384252,55.0182666 59.3534693,57.1288436 60.9236158,51.2763287 L61.9176476,47.5712073 L64.7630817,48.3326816 L71.5491421,34.2022011 C72.6222522,30.2079276 69.6679617,27.1562807 67.743859,26.3941991 L65.868211,13.3582774 Z M21.3437364,27.0436847 C18.9415086,26.4139517 17.4785723,24.1256905 18.079112,21.9329889 C18.6802111,19.7382438 21.1165778,18.4722981 23.5188056,19.102031 C25.9211668,19.7317999 27.3825247,22.0195184 26.7814256,24.2142635 C26.1809701,26.4069216 23.7460976,27.6734536 21.3437364,27.0436847 Z M22.7755102,12.938716 L29.1460048,4.73862761 C29.9875824,3.54852421 30.971695,2.78720087 32.6755749,3.22379927 L59.8231943,10.4393268 C61.5111033,10.9042948 61.981207,12.0520667 62.1100109,13.5000856 L63.4953618,23.7615894 L22.7755102,12.938716 Z M57.9205247,36.6857472 C55.5187301,36.0560367 54.057602,33.7682616 54.6580335,31.575638 C55.2590241,29.3809725 57.6934071,28.1146654 60.0952017,28.7443775 C62.500018,29.3748811 63.9613129,31.6625708 63.3603223,33.8572363 C62.7599077,36.0497999 60.3252735,37.3162344 57.9205247,36.6857472 Z M11.7371825,48.7708929 L18.4471387,56.1186242 L0,62.2443645 L25.2645593,80.2384106 L36.2337662,74.6156747 L12.3513869,62.2206847 L28.6972962,57.0213036 L14.761905,48.2119205 L11.7371825,48.7708929 Z M52.8721216,55.2478238 L58.8329834,61.7264687 L42.445269,67.1276582 L67.5540874,82.9933775 L77.2987013,78.0356959 L53.4177582,67.1067804 L67.938821,62.52238 L55.5591669,54.7549669 L52.8721216,55.2478238 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>LD-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(-648.000000, -128.000000)">
<g id="LD-R" transform="translate(648.000000, 128.000000)">
<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>
<polygon id="Shape" fill="#D12821" points="55.5136597 20.2779762 90.6248633 20.2779762 58.0923321 44.9821096 79.4643691 46.2790766 56.6482756 64.683656 69.2734557 65.4865404 24.1363738 96.4696411 41.9188987 73.7212515 34.4716928 72.9183672 46.2923272 53.0521266 36.1014138 52.8874323"></polygon>
</g>
<path d="M70.8994731,123.142887 L73.2211948,123.142887 L73.2211948,135.406623 L80.9469239,135.406623 L80.9469239,137.403974 L70.8994731,137.403974 L70.8994731,123.142887 Z M82.7482597,123.142887 L85.0899963,123.142887 L85.0899963,137.403974 L82.7482597,137.403974 L82.7482597,123.142887 Z M94.0966753,122.863258 C95.9380408,122.863258 97.3791095,123.262728 98.4398961,124.081642 C99.4606531,124.880583 100.101128,126.05902 100.361321,127.656901 L97.9995696,127.656901 C97.7994212,126.738119 97.3590946,126.05902 96.7186197,125.599629 C96.0581299,125.140238 95.1774768,124.92053 94.0966753,124.92053 C92.7556809,124.92053 91.6948942,125.359947 90.9143154,126.278728 C90.0536772,127.237457 89.6333655,128.575682 89.6333655,130.333351 C89.6333655,132.011126 90.0136475,133.309404 90.7742115,134.208212 C91.59482,135.16694 92.8757699,135.646305 94.6170612,135.646305 C95.2975659,135.646305 95.9380408,135.566411 96.5384861,135.406623 C97.0989017,135.246834 97.5992727,135.027126 98.0796289,134.747497 L98.0796289,131.811391 L94.2968237,131.811391 L94.2968237,129.81404 L100.421365,129.81404 L100.421365,135.84604 C99.6608015,136.445245 98.8001633,136.884662 97.819436,137.204238 C96.7786642,137.523815 95.6378182,137.683603 94.3568683,137.683603 C92.0751763,137.683603 90.3138701,136.964556 89.0529351,135.526464 C87.8720594,134.188238 87.2916289,132.450543 87.2916289,130.333351 C87.2916289,128.196185 87.8720594,126.438517 89.0529351,125.060344 C90.2938553,123.582305 91.975102,122.863258 94.0966753,122.863258 Z M103.023295,123.142887 L105.365032,123.142887 L105.365032,129.094993 L112.610404,129.094993 L112.610404,123.142887 L114.952141,123.142887 L114.952141,137.403974 L112.610404,137.403974 L112.610404,131.092344 L105.365032,131.092344 L105.365032,137.403974 L103.023295,137.403974 L103.023295,123.142887 Z M116.653403,123.142887 L128.362085,123.142887 L128.362085,125.140238 L123.678612,125.140238 L123.678612,137.403974 L121.336876,137.403974 L121.336876,125.140238 L116.653403,125.140238 L116.653403,123.142887 Z M130.063347,123.142887 L132.405083,123.142887 L139.470323,133.429245 L139.550382,133.429245 L139.550382,123.142887 L141.912134,123.142887 L141.912134,137.403974 L139.630442,137.403974 L132.485143,126.977801 L132.405083,126.977801 L132.405083,137.403974 L130.063347,137.403974 L130.063347,123.142887 Z M144.714212,123.142887 L147.055948,123.142887 L154.121187,133.429245 L154.201247,133.429245 L154.201247,123.142887 L156.562998,123.142887 L156.562998,137.403974 L154.281306,137.403974 L147.136007,126.977801 L147.055948,126.977801 L147.055948,137.403974 L144.714212,137.403974 L144.714212,123.142887 Z M165.569677,122.863258 C167.411043,122.863258 168.852111,123.262728 169.912898,124.081642 C170.933655,124.880583 171.57413,126.05902 171.834323,127.656901 L169.472571,127.656901 C169.272423,126.738119 168.832096,126.05902 168.191622,125.599629 C167.531132,125.140238 166.650479,124.92053 165.569677,124.92053 C164.228683,124.92053 163.167896,125.359947 162.387317,126.278728 C161.526679,127.237457 161.106367,128.575682 161.106367,130.333351 C161.106367,132.011126 161.486649,133.309404 162.247213,134.208212 C163.067822,135.16694 164.348772,135.646305 166.090063,135.646305 C166.770568,135.646305 167.411043,135.566411 168.011488,135.406623 C168.571904,135.246834 169.072275,135.027126 169.552631,134.747497 L169.552631,131.811391 L165.769826,131.811391 L165.769826,129.81404 L171.894367,129.81404 L171.894367,135.84604 C171.133803,136.445245 170.273165,136.884662 169.292438,137.204238 C168.251666,137.523815 167.11082,137.683603 165.82987,137.683603 C163.548178,137.683603 161.786872,136.964556 160.525937,135.526464 C159.345061,134.188238 158.764631,132.450543 158.764631,130.333351 C158.764631,128.196185 159.345061,126.438517 160.525937,125.060344 C161.766857,123.582305 163.448104,122.863258 165.569677,122.863258 Z" id="LIGHTNNG" fill="#FFFFFF"></path>
<path d="M159.704638,24.5192053 L159.704638,33.197351 L155.936327,33.197351 L155.936327,27.5772185 L143.720371,27.5772185 L143.720371,36.2966887 L139.910649,36.2966887 L139.910649,27.5772185 L127.860334,27.5772185 L127.860334,33.1560265 L124.092022,33.1560265 L124.092022,24.5192053 L139.910649,24.5192053 L139.910649,22.5769536 L126.121113,22.5769536 L126.121113,19.3949669 L157.634137,19.3949669 L157.634137,22.5769536 L143.720371,22.5769536 L143.720371,24.5192053 L159.704638,24.5192053 Z M130.676215,48.1154967 L130.676215,51.3388079 L139.993469,51.3388079 L139.993469,48.1154967 L130.676215,48.1154967 Z M143.720371,48.1154967 L143.720371,51.3388079 L152.996215,51.3388079 L152.996215,48.1154967 L143.720371,48.1154967 Z M152.996215,45.0574834 L152.996215,41.6275497 L143.720371,41.6275497 L143.720371,45.0574834 L152.996215,45.0574834 Z M139.993469,45.0574834 L139.993469,41.6275497 L130.676215,41.6275497 L130.676215,45.0574834 L139.993469,45.0574834 Z M130.676215,54.5621192 L130.676215,56.2977483 L126.907904,56.2977483 L126.907904,38.4455629 L156.764527,38.4455629 L156.764527,56.3803974 L152.996215,56.3803974 L152.996215,54.5621192 L130.676215,54.5621192 Z M129.558145,29.6021192 L138.254249,29.6021192 L138.254249,32.2055629 L129.558145,32.2055629 L129.558145,29.6021192 Z M129.558145,33.858543 L138.254249,33.858543 L138.254249,36.4206623 L129.558145,36.4206623 L129.558145,33.858543 Z M145.459592,29.6021192 L154.155696,29.6021192 L154.155696,32.2055629 L145.459592,32.2055629 L145.459592,29.6021192 Z M145.459592,33.858543 L154.197106,33.858543 L154.197106,36.4206623 L145.459592,36.4206623 L145.459592,33.858543 Z M130.055065,78.709404 L130.055065,83.8749669 L139.248089,83.8749669 L139.248089,78.709404 L130.055065,78.709404 Z M139.248089,87.5528477 L130.055065,87.5528477 L130.055065,90.8174834 L126.121113,90.8174834 L126.121113,66.229404 L139.248089,66.229404 L139.248089,60.898543 L143.182041,60.898543 L143.182041,66.229404 L156.557477,66.229404 L156.557477,87.5528477 L143.182041,87.5528477 L143.182041,91.7266225 C143.182041,93.6688742 144.051651,94.6606623 145.790872,94.6606623 L154.818256,94.6606623 C155.646456,94.6606623 156.309017,94.4127152 156.723117,93.9994702 C157.054397,93.5862252 157.302857,92.0572185 157.427087,89.4950993 L161.195399,90.7761589 C160.946939,94.3300662 160.450019,96.4789404 159.704638,97.264106 C158.917848,97.9666225 157.509907,98.338543 155.480816,98.338543 L144.879852,98.338543 C141.11154,98.338543 139.248089,96.3136424 139.248089,92.3051656 L139.248089,87.5528477 Z M143.182041,83.8749669 L152.664935,83.8749669 L152.664935,78.709404 L143.182041,78.709404 L143.182041,83.8749669 Z M152.664935,75.1141722 L152.664935,69.9486093 L143.182041,69.9486093 L143.182041,75.1141722 L152.664935,75.1141722 Z M139.248089,69.9486093 L130.055065,69.9486093 L130.055065,75.1141722 L139.248089,75.1141722 L139.248089,69.9486093 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>
</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>LD-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, -128.000000)">
<g id="LD-O" transform="translate(35.000000, 128.000000)">
<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>
<polygon id="Shape" fill="#EC8D15" points="55.5136597 20.2779762 90.6248633 20.2779762 58.0923321 44.9821096 79.4643691 46.2790766 56.6482756 64.683656 69.2734557 65.4865404 24.1363738 96.4696411 41.9188987 73.7212515 34.4716928 72.9183672 46.2923272 53.0521266 36.1014138 52.8874323"></polygon>
</g>
<path d="M70.8994731,123.142887 L73.2211948,123.142887 L73.2211948,135.406623 L80.9469239,135.406623 L80.9469239,137.403974 L70.8994731,137.403974 L70.8994731,123.142887 Z M82.7482597,123.142887 L85.0899963,123.142887 L85.0899963,137.403974 L82.7482597,137.403974 L82.7482597,123.142887 Z M94.0966753,122.863258 C95.9380408,122.863258 97.3791095,123.262728 98.4398961,124.081642 C99.4606531,124.880583 100.101128,126.05902 100.361321,127.656901 L97.9995696,127.656901 C97.7994212,126.738119 97.3590946,126.05902 96.7186197,125.599629 C96.0581299,125.140238 95.1774768,124.92053 94.0966753,124.92053 C92.7556809,124.92053 91.6948942,125.359947 90.9143154,126.278728 C90.0536772,127.237457 89.6333655,128.575682 89.6333655,130.333351 C89.6333655,132.011126 90.0136475,133.309404 90.7742115,134.208212 C91.59482,135.16694 92.8757699,135.646305 94.6170612,135.646305 C95.2975659,135.646305 95.9380408,135.566411 96.5384861,135.406623 C97.0989017,135.246834 97.5992727,135.027126 98.0796289,134.747497 L98.0796289,131.811391 L94.2968237,131.811391 L94.2968237,129.81404 L100.421365,129.81404 L100.421365,135.84604 C99.6608015,136.445245 98.8001633,136.884662 97.819436,137.204238 C96.7786642,137.523815 95.6378182,137.683603 94.3568683,137.683603 C92.0751763,137.683603 90.3138701,136.964556 89.0529351,135.526464 C87.8720594,134.188238 87.2916289,132.450543 87.2916289,130.333351 C87.2916289,128.196185 87.8720594,126.438517 89.0529351,125.060344 C90.2938553,123.582305 91.975102,122.863258 94.0966753,122.863258 Z M103.023295,123.142887 L105.365032,123.142887 L105.365032,129.094993 L112.610404,129.094993 L112.610404,123.142887 L114.952141,123.142887 L114.952141,137.403974 L112.610404,137.403974 L112.610404,131.092344 L105.365032,131.092344 L105.365032,137.403974 L103.023295,137.403974 L103.023295,123.142887 Z M116.653403,123.142887 L128.362085,123.142887 L128.362085,125.140238 L123.678612,125.140238 L123.678612,137.403974 L121.336876,137.403974 L121.336876,125.140238 L116.653403,125.140238 L116.653403,123.142887 Z M130.063347,123.142887 L132.405083,123.142887 L139.470323,133.429245 L139.550382,133.429245 L139.550382,123.142887 L141.912134,123.142887 L141.912134,137.403974 L139.630442,137.403974 L132.485143,126.977801 L132.405083,126.977801 L132.405083,137.403974 L130.063347,137.403974 L130.063347,123.142887 Z M144.714212,123.142887 L147.055948,123.142887 L154.121187,133.429245 L154.201247,133.429245 L154.201247,123.142887 L156.562998,123.142887 L156.562998,137.403974 L154.281306,137.403974 L147.136007,126.977801 L147.055948,126.977801 L147.055948,137.403974 L144.714212,137.403974 L144.714212,123.142887 Z M165.569677,122.863258 C167.411043,122.863258 168.852111,123.262728 169.912898,124.081642 C170.933655,124.880583 171.57413,126.05902 171.834323,127.656901 L169.472571,127.656901 C169.272423,126.738119 168.832096,126.05902 168.191622,125.599629 C167.531132,125.140238 166.650479,124.92053 165.569677,124.92053 C164.228683,124.92053 163.167896,125.359947 162.387317,126.278728 C161.526679,127.237457 161.106367,128.575682 161.106367,130.333351 C161.106367,132.011126 161.486649,133.309404 162.247213,134.208212 C163.067822,135.16694 164.348772,135.646305 166.090063,135.646305 C166.770568,135.646305 167.411043,135.566411 168.011488,135.406623 C168.571904,135.246834 169.072275,135.027126 169.552631,134.747497 L169.552631,131.811391 L165.769826,131.811391 L165.769826,129.81404 L171.894367,129.81404 L171.894367,135.84604 C171.133803,136.445245 170.273165,136.884662 169.292438,137.204238 C168.251666,137.523815 167.11082,137.683603 165.82987,137.683603 C163.548178,137.683603 161.786872,136.964556 160.525937,135.526464 C159.345061,134.188238 158.764631,132.450543 158.764631,130.333351 C158.764631,128.196185 159.345061,126.438517 160.525937,125.060344 C161.766857,123.582305 163.448104,122.863258 165.569677,122.863258 Z" id="LIGHTNNG" fill="#FFFFFF"></path>
<path d="M159.704638,24.5192053 L159.704638,33.197351 L155.936327,33.197351 L155.936327,27.5772185 L143.720371,27.5772185 L143.720371,36.2966887 L139.910649,36.2966887 L139.910649,27.5772185 L127.860334,27.5772185 L127.860334,33.1560265 L124.092022,33.1560265 L124.092022,24.5192053 L139.910649,24.5192053 L139.910649,22.5769536 L126.121113,22.5769536 L126.121113,19.3949669 L157.634137,19.3949669 L157.634137,22.5769536 L143.720371,22.5769536 L143.720371,24.5192053 L159.704638,24.5192053 Z M130.676215,48.1154967 L130.676215,51.3388079 L139.993469,51.3388079 L139.993469,48.1154967 L130.676215,48.1154967 Z M143.720371,48.1154967 L143.720371,51.3388079 L152.996215,51.3388079 L152.996215,48.1154967 L143.720371,48.1154967 Z M152.996215,45.0574834 L152.996215,41.6275497 L143.720371,41.6275497 L143.720371,45.0574834 L152.996215,45.0574834 Z M139.993469,45.0574834 L139.993469,41.6275497 L130.676215,41.6275497 L130.676215,45.0574834 L139.993469,45.0574834 Z M130.676215,54.5621192 L130.676215,56.2977483 L126.907904,56.2977483 L126.907904,38.4455629 L156.764527,38.4455629 L156.764527,56.3803974 L152.996215,56.3803974 L152.996215,54.5621192 L130.676215,54.5621192 Z M129.558145,29.6021192 L138.254249,29.6021192 L138.254249,32.2055629 L129.558145,32.2055629 L129.558145,29.6021192 Z M129.558145,33.858543 L138.254249,33.858543 L138.254249,36.4206623 L129.558145,36.4206623 L129.558145,33.858543 Z M145.459592,29.6021192 L154.155696,29.6021192 L154.155696,32.2055629 L145.459592,32.2055629 L145.459592,29.6021192 Z M145.459592,33.858543 L154.197106,33.858543 L154.197106,36.4206623 L145.459592,36.4206623 L145.459592,33.858543 Z M130.055065,78.709404 L130.055065,83.8749669 L139.248089,83.8749669 L139.248089,78.709404 L130.055065,78.709404 Z M139.248089,87.5528477 L130.055065,87.5528477 L130.055065,90.8174834 L126.121113,90.8174834 L126.121113,66.229404 L139.248089,66.229404 L139.248089,60.898543 L143.182041,60.898543 L143.182041,66.229404 L156.557477,66.229404 L156.557477,87.5528477 L143.182041,87.5528477 L143.182041,91.7266225 C143.182041,93.6688742 144.051651,94.6606623 145.790872,94.6606623 L154.818256,94.6606623 C155.646456,94.6606623 156.309017,94.4127152 156.723117,93.9994702 C157.054397,93.5862252 157.302857,92.0572185 157.427087,89.4950993 L161.195399,90.7761589 C160.946939,94.3300662 160.450019,96.4789404 159.704638,97.264106 C158.917848,97.9666225 157.509907,98.338543 155.480816,98.338543 L144.879852,98.338543 C141.11154,98.338543 139.248089,96.3136424 139.248089,92.3051656 L139.248089,87.5528477 Z M143.182041,83.8749669 L152.664935,83.8749669 L152.664935,78.709404 L143.182041,78.709404 L143.182041,83.8749669 Z M152.664935,75.1141722 L152.664935,69.9486093 L143.182041,69.9486093 L143.182041,75.1141722 L152.664935,75.1141722 Z M139.248089,69.9486093 L130.055065,69.9486093 L130.055065,75.1141722 L139.248089,75.1141722 L139.248089,69.9486093 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>
</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>LD-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, -125.000000)">
<g id="LD-Y" transform="translate(354.000000, 125.000000)">
<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>
<polygon id="Shape" fill="#FFFF00" points="55.5136597 20.2779762 90.6248633 20.2779762 58.0923321 44.9821096 79.4643691 46.2790766 56.6482756 64.683656 69.2734557 65.4865404 24.1363738 96.4696411 41.9188987 73.7212515 34.4716928 72.9183672 46.2923272 53.0521266 36.1014138 52.8874323"></polygon>
</g>
<path d="M70.8994731,123.142887 L73.2211948,123.142887 L73.2211948,135.406623 L80.9469239,135.406623 L80.9469239,137.403974 L70.8994731,137.403974 L70.8994731,123.142887 Z M82.7482597,123.142887 L85.0899963,123.142887 L85.0899963,137.403974 L82.7482597,137.403974 L82.7482597,123.142887 Z M94.0966753,122.863258 C95.9380408,122.863258 97.3791095,123.262728 98.4398961,124.081642 C99.4606531,124.880583 100.101128,126.05902 100.361321,127.656901 L97.9995696,127.656901 C97.7994212,126.738119 97.3590946,126.05902 96.7186197,125.599629 C96.0581299,125.140238 95.1774768,124.92053 94.0966753,124.92053 C92.7556809,124.92053 91.6948942,125.359947 90.9143154,126.278728 C90.0536772,127.237457 89.6333655,128.575682 89.6333655,130.333351 C89.6333655,132.011126 90.0136475,133.309404 90.7742115,134.208212 C91.59482,135.16694 92.8757699,135.646305 94.6170612,135.646305 C95.2975659,135.646305 95.9380408,135.566411 96.5384861,135.406623 C97.0989017,135.246834 97.5992727,135.027126 98.0796289,134.747497 L98.0796289,131.811391 L94.2968237,131.811391 L94.2968237,129.81404 L100.421365,129.81404 L100.421365,135.84604 C99.6608015,136.445245 98.8001633,136.884662 97.819436,137.204238 C96.7786642,137.523815 95.6378182,137.683603 94.3568683,137.683603 C92.0751763,137.683603 90.3138701,136.964556 89.0529351,135.526464 C87.8720594,134.188238 87.2916289,132.450543 87.2916289,130.333351 C87.2916289,128.196185 87.8720594,126.438517 89.0529351,125.060344 C90.2938553,123.582305 91.975102,122.863258 94.0966753,122.863258 Z M103.023295,123.142887 L105.365032,123.142887 L105.365032,129.094993 L112.610404,129.094993 L112.610404,123.142887 L114.952141,123.142887 L114.952141,137.403974 L112.610404,137.403974 L112.610404,131.092344 L105.365032,131.092344 L105.365032,137.403974 L103.023295,137.403974 L103.023295,123.142887 Z M116.653403,123.142887 L128.362085,123.142887 L128.362085,125.140238 L123.678612,125.140238 L123.678612,137.403974 L121.336876,137.403974 L121.336876,125.140238 L116.653403,125.140238 L116.653403,123.142887 Z M130.063347,123.142887 L132.405083,123.142887 L139.470323,133.429245 L139.550382,133.429245 L139.550382,123.142887 L141.912134,123.142887 L141.912134,137.403974 L139.630442,137.403974 L132.485143,126.977801 L132.405083,126.977801 L132.405083,137.403974 L130.063347,137.403974 L130.063347,123.142887 Z M144.714212,123.142887 L147.055948,123.142887 L154.121187,133.429245 L154.201247,133.429245 L154.201247,123.142887 L156.562998,123.142887 L156.562998,137.403974 L154.281306,137.403974 L147.136007,126.977801 L147.055948,126.977801 L147.055948,137.403974 L144.714212,137.403974 L144.714212,123.142887 Z M165.569677,122.863258 C167.411043,122.863258 168.852111,123.262728 169.912898,124.081642 C170.933655,124.880583 171.57413,126.05902 171.834323,127.656901 L169.472571,127.656901 C169.272423,126.738119 168.832096,126.05902 168.191622,125.599629 C167.531132,125.140238 166.650479,124.92053 165.569677,124.92053 C164.228683,124.92053 163.167896,125.359947 162.387317,126.278728 C161.526679,127.237457 161.106367,128.575682 161.106367,130.333351 C161.106367,132.011126 161.486649,133.309404 162.247213,134.208212 C163.067822,135.16694 164.348772,135.646305 166.090063,135.646305 C166.770568,135.646305 167.411043,135.566411 168.011488,135.406623 C168.571904,135.246834 169.072275,135.027126 169.552631,134.747497 L169.552631,131.811391 L165.769826,131.811391 L165.769826,129.81404 L171.894367,129.81404 L171.894367,135.84604 C171.133803,136.445245 170.273165,136.884662 169.292438,137.204238 C168.251666,137.523815 167.11082,137.683603 165.82987,137.683603 C163.548178,137.683603 161.786872,136.964556 160.525937,135.526464 C159.345061,134.188238 158.764631,132.450543 158.764631,130.333351 C158.764631,128.196185 159.345061,126.438517 160.525937,125.060344 C161.766857,123.582305 163.448104,122.863258 165.569677,122.863258 Z" id="LIGHTNNG" fill="#444444"></path>
<path d="M159.704638,24.5192053 L159.704638,33.197351 L155.936327,33.197351 L155.936327,27.5772185 L143.720371,27.5772185 L143.720371,36.2966887 L139.910649,36.2966887 L139.910649,27.5772185 L127.860334,27.5772185 L127.860334,33.1560265 L124.092022,33.1560265 L124.092022,24.5192053 L139.910649,24.5192053 L139.910649,22.5769536 L126.121113,22.5769536 L126.121113,19.3949669 L157.634137,19.3949669 L157.634137,22.5769536 L143.720371,22.5769536 L143.720371,24.5192053 L159.704638,24.5192053 Z M130.676215,48.1154967 L130.676215,51.3388079 L139.993469,51.3388079 L139.993469,48.1154967 L130.676215,48.1154967 Z M143.720371,48.1154967 L143.720371,51.3388079 L152.996215,51.3388079 L152.996215,48.1154967 L143.720371,48.1154967 Z M152.996215,45.0574834 L152.996215,41.6275497 L143.720371,41.6275497 L143.720371,45.0574834 L152.996215,45.0574834 Z M139.993469,45.0574834 L139.993469,41.6275497 L130.676215,41.6275497 L130.676215,45.0574834 L139.993469,45.0574834 Z M130.676215,54.5621192 L130.676215,56.2977483 L126.907904,56.2977483 L126.907904,38.4455629 L156.764527,38.4455629 L156.764527,56.3803974 L152.996215,56.3803974 L152.996215,54.5621192 L130.676215,54.5621192 Z M129.558145,29.6021192 L138.254249,29.6021192 L138.254249,32.2055629 L129.558145,32.2055629 L129.558145,29.6021192 Z M129.558145,33.858543 L138.254249,33.858543 L138.254249,36.4206623 L129.558145,36.4206623 L129.558145,33.858543 Z M145.459592,29.6021192 L154.155696,29.6021192 L154.155696,32.2055629 L145.459592,32.2055629 L145.459592,29.6021192 Z M145.459592,33.858543 L154.197106,33.858543 L154.197106,36.4206623 L145.459592,36.4206623 L145.459592,33.858543 Z M130.055065,78.709404 L130.055065,83.8749669 L139.248089,83.8749669 L139.248089,78.709404 L130.055065,78.709404 Z M139.248089,87.5528477 L130.055065,87.5528477 L130.055065,90.8174834 L126.121113,90.8174834 L126.121113,66.229404 L139.248089,66.229404 L139.248089,60.898543 L143.182041,60.898543 L143.182041,66.229404 L156.557477,66.229404 L156.557477,87.5528477 L143.182041,87.5528477 L143.182041,91.7266225 C143.182041,93.6688742 144.051651,94.6606623 145.790872,94.6606623 L154.818256,94.6606623 C155.646456,94.6606623 156.309017,94.4127152 156.723117,93.9994702 C157.054397,93.5862252 157.302857,92.0572185 157.427087,89.4950993 L161.195399,90.7761589 C160.946939,94.3300662 160.450019,96.4789404 159.704638,97.264106 C158.917848,97.9666225 157.509907,98.338543 155.480816,98.338543 L144.879852,98.338543 C141.11154,98.338543 139.248089,96.3136424 139.248089,92.3051656 L139.248089,87.5528477 Z M143.182041,83.8749669 L152.664935,83.8749669 L152.664935,78.709404 L143.182041,78.709404 L143.182041,83.8749669 Z M152.664935,75.1141722 L152.664935,69.9486093 L143.182041,69.9486093 L143.182041,75.1141722 L152.664935,75.1141722 Z M139.248089,69.9486093 L130.055065,69.9486093 L130.055065,75.1141722 L139.248089,75.1141722 L139.248089,69.9486093 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>
</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>LYDF-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, -1098.000000)">
<g id="LYDF-O" transform="translate(35.000000, 1098.000000)">
<g id="Group-6-Copy">
<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="#EC8D15"></path>
</g>
<path d="M66.509891,125.207735 L75.39234,125.207735 L75.39234,126.722967 L71.8393604,126.722967 L71.8393604,136.02649 L70.0628706,136.02649 L70.0628706,126.722967 L66.509891,126.722967 L66.509891,125.207735 Z M75.3376788,125.207735 L77.1141686,125.207735 L77.1141686,129.723126 L82.6106584,129.723126 L82.6106584,125.207735 L84.3871482,125.207735 L84.3871482,136.02649 L82.6106584,136.02649 L82.6106584,131.238358 L77.1141686,131.238358 L77.1141686,136.02649 L75.3376788,136.02649 L75.3376788,125.207735 Z M85.167589,125.207735 L86.9440788,125.207735 L86.9440788,131.950517 C86.9440788,132.88996 87.1566502,133.571815 87.5969768,134.026384 C88.0221196,134.465801 88.7205686,134.693086 89.67714,134.693086 C90.6185278,134.693086 91.3169768,134.465801 91.7573033,134.026384 C92.1824461,133.571815 92.4102012,132.88996 92.4102012,131.950517 L92.4102012,125.207735 L94.186691,125.207735 L94.186691,131.920212 C94.186691,133.329377 93.7919155,134.405192 93.0023645,135.147656 C92.2128135,135.874967 91.1044053,136.238623 89.67714,136.238623 C88.234691,136.238623 87.1262829,135.874967 86.3670992,135.162808 C85.5623645,134.405192 85.167589,133.329377 85.167589,131.920212 L85.167589,125.207735 Z M94.9671319,125.207735 L96.7436217,125.207735 L102.103458,133.011179 L102.164193,133.011179 L102.164193,125.207735 L103.955867,125.207735 L103.955867,136.02649 L102.224928,136.02649 L96.8043563,128.11698 L96.7436217,128.11698 L96.7436217,136.02649 L94.9671319,136.02649 L94.9671319,125.207735 Z M104.736307,125.207735 L108.699246,125.207735 C110.460552,125.207735 111.781532,125.692609 112.692552,126.662358 C113.558022,127.571497 113.998348,128.889748 113.998348,130.617113 C113.998348,132.329325 113.558022,133.647576 112.692552,134.571868 C111.781532,135.541616 110.460552,136.02649 108.699246,136.02649 L104.736307,136.02649 L104.736307,125.207735 Z M106.512797,126.722967 L106.512797,134.511258 L108.365205,134.511258 C109.716552,134.511258 110.703491,134.19306 111.326022,133.571815 C111.933369,132.935417 112.237042,131.950517 112.237042,130.617113 C112.237042,129.253404 111.933369,128.253351 111.326022,127.647258 C110.703491,127.026013 109.716552,126.722967 108.365205,126.722967 L106.512797,126.722967 Z M114.323279,125.207735 L122.142871,125.207735 L122.142871,126.722967 L116.099769,126.722967 L116.099769,129.723126 L121.778462,129.723126 L121.778462,131.238358 L116.099769,131.238358 L116.099769,134.511258 L122.400993,134.511258 L122.400993,136.02649 L114.323279,136.02649 L114.323279,125.207735 Z M122.725924,125.207735 L127.554332,125.207735 C128.66274,125.207735 129.543393,125.450172 130.181107,125.950199 C130.849189,126.495682 131.198413,127.283603 131.198413,128.31396 C131.198413,128.874596 131.046577,129.374623 130.742903,129.81404 C130.408862,130.298914 129.938169,130.617113 129.361189,130.768636 L129.361189,130.79894 C130.302577,131.011073 130.834005,131.632318 130.955475,132.69298 L131.137679,134.435497 C131.198413,135.102199 131.426169,135.63253 131.790577,136.02649 L129.86225,136.02649 C129.604128,135.693139 129.452291,135.223417 129.391556,134.617325 L129.254903,133.283921 C129.194169,132.69298 129.011965,132.268715 128.708291,132.011126 C128.389434,131.738384 127.91874,131.617166 127.311393,131.617166 L124.502413,131.617166 L124.502413,136.02649 L122.725924,136.02649 L122.725924,125.207735 Z M124.502413,126.722967 L124.502413,130.101934 L127.311393,130.101934 C128.009842,130.101934 128.541271,129.950411 128.905679,129.662517 C129.23972,129.35947 129.40674,128.935205 129.40674,128.389722 C129.40674,127.798781 129.23972,127.374517 128.905679,127.116927 C128.571638,126.844185 128.040209,126.722967 127.311393,126.722967 L124.502413,126.722967 Z M140.381499,124.995603 C141.778397,124.995603 142.871622,125.298649 143.676356,125.919894 C144.450724,126.525987 144.936601,127.419974 145.133989,128.632159 L143.342316,128.632159 C143.190479,127.935152 142.856438,127.419974 142.37056,127.07147 C141.869499,126.722967 141.201418,126.556291 140.381499,126.556291 C139.364193,126.556291 138.559458,126.889642 137.967295,127.586649 C137.314397,128.31396 136.99554,129.329166 136.99554,130.66257 C136.99554,131.935364 137.28403,132.920265 137.861009,133.602119 C138.48354,134.32943 139.455295,134.693086 140.776275,134.693086 C141.29252,134.693086 141.778397,134.632477 142.233907,134.511258 C142.65905,134.39004 143.038642,134.223364 143.40305,134.011232 L143.40305,131.783841 L140.533336,131.783841 L140.533336,130.268609 L145.17954,130.268609 L145.17954,134.844609 C144.60256,135.299179 143.949662,135.63253 143.205662,135.874967 C142.416111,136.117404 141.550642,136.238623 140.578887,136.238623 C138.847948,136.238623 137.511785,135.693139 136.555213,134.602172 C135.659377,133.586967 135.21905,132.268715 135.21905,130.66257 C135.21905,129.041272 135.659377,127.707868 136.555213,126.662358 C137.496601,125.541086 138.77203,124.995603 140.381499,124.995603 Z M145.808144,125.207735 L147.584634,125.207735 L147.584634,131.950517 C147.584634,132.88996 147.797205,133.571815 148.237532,134.026384 C148.662675,134.465801 149.361124,134.693086 150.317695,134.693086 C151.259083,134.693086 151.957532,134.465801 152.397858,134.026384 C152.823001,133.571815 153.050756,132.88996 153.050756,131.950517 L153.050756,125.207735 L154.827246,125.207735 L154.827246,131.920212 C154.827246,133.329377 154.432471,134.405192 153.64292,135.147656 C152.853369,135.874967 151.74496,136.238623 150.317695,136.238623 C148.875246,136.238623 147.766838,135.874967 147.007654,135.162808 C146.20292,134.405192 145.808144,133.329377 145.808144,131.920212 L145.808144,125.207735 Z M159.433973,124.995603 C160.709401,124.995603 161.711524,125.253192 162.425156,125.783523 C163.18434,126.344159 163.624667,127.222993 163.730952,128.404874 L161.969646,128.404874 C161.817809,127.738172 161.52932,127.253298 161.134544,126.965404 C160.739769,126.662358 160.132422,126.525987 159.342871,126.525987 C158.659605,126.525987 158.14336,126.616901 157.778952,126.813881 C157.323442,127.041166 157.110871,127.419974 157.110871,127.935152 C157.110871,128.389722 157.353809,128.76853 157.870054,129.041272 C158.097809,129.16249 158.72034,129.389775 159.722462,129.707974 C161.195279,130.162543 162.136667,130.526199 162.561809,130.768636 C163.503197,131.329272 163.973891,132.10204 163.973891,133.102093 C163.973891,134.071841 163.594299,134.844609 162.835116,135.405245 C162.075932,135.950728 160.997891,136.238623 159.616177,136.238623 C158.280013,136.238623 157.23234,135.981033 156.48834,135.465854 C155.57732,134.829457 155.076258,133.829404 155.00034,132.450543 L156.761646,132.450543 C156.883116,133.268768 157.171605,133.859709 157.642299,134.208212 C158.067442,134.511258 158.72034,134.677934 159.616177,134.677934 C160.405728,134.677934 161.043442,134.541563 161.498952,134.283974 C161.954462,134.011232 162.197401,133.662728 162.197401,133.208159 C162.197401,132.632371 161.848177,132.177801 161.180095,131.84445 C160.967524,131.738384 160.269075,131.495947 159.069565,131.132291 C157.733401,130.708026 156.898299,130.40498 156.579442,130.223152 C155.74434,129.723126 155.334381,128.995815 155.334381,128.041219 C155.334381,127.086623 155.729156,126.329007 156.549075,125.783523 C157.308258,125.253192 158.26483,124.995603 159.433973,124.995603 Z M163.311883,125.207735 L172.194332,125.207735 L172.194332,126.722967 L168.641352,126.722967 L168.641352,136.02649 L166.864862,136.02649 L166.864862,126.722967 L163.311883,126.722967 L163.311883,125.207735 Z" id="THUNDER-GUST" 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>
</g>
</g>
<path d="M141.415213,35.5218543 L141.415213,42.0304636 L138.58898,42.0304636 L138.58898,37.8153642 L129.427013,37.8153642 L129.427013,44.3549669 L126.569722,44.3549669 L126.569722,37.8153642 L117.531985,37.8153642 L117.531985,41.9994702 L114.705751,41.9994702 L114.705751,35.5218543 L126.569722,35.5218543 L126.569722,34.0651656 L116.22757,34.0651656 L116.22757,31.6786755 L139.862338,31.6786755 L139.862338,34.0651656 L129.427013,34.0651656 L129.427013,35.5218543 L141.415213,35.5218543 Z M119.643896,53.2190728 L119.643896,55.6365563 L126.631837,55.6365563 L126.631837,53.2190728 L119.643896,53.2190728 Z M129.427013,53.2190728 L129.427013,55.6365563 L136.383896,55.6365563 L136.383896,53.2190728 L129.427013,53.2190728 Z M136.383896,50.9255629 L136.383896,48.3531126 L129.427013,48.3531126 L129.427013,50.9255629 L136.383896,50.9255629 Z M126.631837,50.9255629 L126.631837,48.3531126 L119.643896,48.3531126 L119.643896,50.9255629 L126.631837,50.9255629 Z M119.643896,58.0540397 L119.643896,59.3557616 L116.817662,59.3557616 L116.817662,45.9666225 L139.21013,45.9666225 L139.21013,59.4177483 L136.383896,59.4177483 L136.383896,58.0540397 L119.643896,58.0540397 Z M118.805343,39.3340397 L125.327421,39.3340397 L125.327421,41.2866225 L118.805343,41.2866225 L118.805343,39.3340397 Z M118.805343,42.5263576 L125.327421,42.5263576 L125.327421,44.447947 L118.805343,44.447947 L118.805343,42.5263576 Z M130.731429,39.3340397 L137.253507,39.3340397 L137.253507,41.2866225 L130.731429,41.2866225 L130.731429,39.3340397 Z M130.731429,42.5263576 L137.284564,42.5263576 L137.284564,44.447947 L130.731429,44.447947 L130.731429,42.5263576 Z M144.824638,31.802649 L172.652171,31.802649 L172.652171,34.6230464 L160.16705,34.6230464 L160.16705,37.7533775 L171.130353,37.7533775 L171.130353,55.8845033 C171.130353,58.0850331 170.105455,59.2007947 168.055659,59.2007947 L164.515102,59.2007947 L163.738664,56.3803974 L167.123933,56.5353642 C167.869314,56.5353642 168.273061,56.101457 168.273061,55.2336424 L168.273061,40.5427815 L160.16705,40.5427815 L160.16705,58.8908609 L157.309759,58.8908609 L157.309759,40.5427815 L149.079518,40.5427815 L149.079518,59.4177483 L146.222226,59.4177483 L146.222226,37.7533775 L157.309759,37.7533775 L157.309759,34.6230464 L144.824638,34.6230464 L144.824638,31.802649 Z M151.502004,42.5883444 C153.334397,43.3321854 155.011503,44.2929801 156.564378,45.4087417 L155.073618,47.7022517 C153.458627,46.4625166 151.781521,45.4707285 150.073358,44.7578808 L151.502004,42.5883444 Z M151.284601,48.7560265 C153.116994,49.5928477 154.7941,50.6156291 156.315918,51.7933775 L154.825158,54.0868874 C153.210167,52.7541722 151.533061,51.7003974 149.824898,50.9255629 L151.284601,48.7560265 Z M162.434249,42.5883444 C164.297699,43.4561589 165.974805,44.4789404 167.496623,45.6566887 L166.005863,47.9811921 C164.359814,46.6174834 162.682709,45.5327152 160.974545,44.7578808 L162.434249,42.5883444 Z M162.434249,49.0969536 C164.297699,49.9647682 165.974805,51.018543 167.496623,52.2582781 L166.005863,54.5517881 C164.359814,53.1260927 162.682709,52.0413245 160.974545,51.2354967 L162.434249,49.0969536 Z M114.333061,68.581457 L126.228089,68.581457 C126.414434,66.9388079 126.538664,65.2031788 126.569722,63.4055629 L126.569722,60.7091391 L129.551243,60.7091391 L129.551243,62.7237086 C129.551243,64.7692715 129.427013,66.7218543 129.178553,68.581457 L141.787904,68.581457 L141.787904,71.4328477 L129.923933,71.4328477 C132.097959,78.0654305 136.290724,83.1793377 142.440111,86.8055629 L140.607718,89.192053 C134.644675,85.5348344 130.451911,80.4209272 128.09154,73.8503311 C126.041744,80.9478146 121.84898,86.154702 115.544304,89.4709934 L113.649796,86.9915232 C120.047644,83.8921854 124.085121,78.685298 125.731169,71.4328477 L114.333061,71.4328477 L114.333061,68.581457 Z M154.04872,67.6516556 C155.694768,69.6972185 157.216586,71.6498013 158.614174,73.509404 C159.732245,71.4018543 160.601855,69.1393377 161.285121,66.7218543 L164.204527,67.2177483 C163.272801,70.5650331 162.061558,73.5403974 160.570798,76.1748344 C162.372134,78.7782781 163.925009,81.1647682 165.198367,83.3343046 L162.527421,85.1629139 C161.409351,83.1793377 160.16705,81.1337748 158.738404,79.0262252 C156.874954,81.5986755 154.700928,83.8301987 152.216327,85.6898013 L150.228646,83.1793377 C152.868534,81.1957616 155.104675,78.9022517 156.906011,76.2988079 C155.29102,74.005298 153.5518,71.6188079 151.626234,69.1393377 L154.04872,67.6516556 Z M147.837217,61.7319205 L168.490464,61.7319205 L168.490464,74.4082119 C168.490464,79.1501987 168.614694,82.1875497 168.925269,83.5202649 C169.173729,84.8219868 169.484304,85.5038411 169.856994,85.5038411 C170.136512,85.5038411 170.384972,84.264106 170.571317,81.8156291 L173.211206,83.0863576 C172.807458,85.4418543 172.372653,87.0535099 171.90679,87.8593377 C171.378813,88.6031788 170.78872,89.0060927 170.16757,89.0060927 C168.552579,89.0060927 167.372393,88.0143046 166.627013,86.0617219 C165.850575,84.1401325 165.477885,80.2659603 165.477885,74.4082119 L165.477885,64.5833113 L150.787681,64.5833113 L150.787681,74.005298 C150.725566,80.08 149.452208,85.1939073 146.998664,89.3160265 L144.514063,87.301457 C146.625974,83.7682119 147.744045,79.3361589 147.837217,74.005298 L147.837217,61.7319205 Z" id="雷雨-大风" fill="#FFFFFF"></path>
<g id="leiyudafengyujingxinhao" transform="translate(21.740260, 12.397351)" fill="#EC8D15" fill-rule="nonzero">
<path d="M19.8715067,36.9123159 L6.18130714,73.5673264 C5.78397878,74.6308284 4.84683016,75.4025509 3.72287612,75.5917934 C2.59892208,75.7810359 1.45891797,75.359048 0.732292314,74.4847884 C0.00566666198,73.6105289 -0.197188803,72.4168185 0.20013961,71.3533165 L26.0785473,2.06992274 C26.453164,1.06600702 27.3108983,0.31765981 28.3598623,0.0795444237 C29.4088264,-0.158570963 30.5077087,0.145623227 31.2825586,0.888609399 L69.9183232,17.99987 C72.0953814,18.9652443 71.8733368,22.1116026 69.5814279,22.7632303 L19.8727828,36.9135861 L19.8715067,36.9123159 Z M39.005628,41.9170198 L31.9027522,61.0263512 L39.0094563,61.0263512 L39.231501,60.7164153 L32.6492815,77.4834437 L51.6634476,54.436401 L43.7310949,54.436401 L52.700932,41.9170198 L39.005628,41.9170198 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>LYDF-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, -1095.000000)">
<g id="LYDF-Y" transform="translate(354.000000, 1095.000000)">
<g id="Group-6-Copy">
<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="#FFFF00"></path>
</g>
<path d="M66.509891,125.207735 L75.39234,125.207735 L75.39234,126.722967 L71.8393604,126.722967 L71.8393604,136.02649 L70.0628706,136.02649 L70.0628706,126.722967 L66.509891,126.722967 L66.509891,125.207735 Z M75.3376788,125.207735 L77.1141686,125.207735 L77.1141686,129.723126 L82.6106584,129.723126 L82.6106584,125.207735 L84.3871482,125.207735 L84.3871482,136.02649 L82.6106584,136.02649 L82.6106584,131.238358 L77.1141686,131.238358 L77.1141686,136.02649 L75.3376788,136.02649 L75.3376788,125.207735 Z M85.167589,125.207735 L86.9440788,125.207735 L86.9440788,131.950517 C86.9440788,132.88996 87.1566502,133.571815 87.5969768,134.026384 C88.0221196,134.465801 88.7205686,134.693086 89.67714,134.693086 C90.6185278,134.693086 91.3169768,134.465801 91.7573033,134.026384 C92.1824461,133.571815 92.4102012,132.88996 92.4102012,131.950517 L92.4102012,125.207735 L94.186691,125.207735 L94.186691,131.920212 C94.186691,133.329377 93.7919155,134.405192 93.0023645,135.147656 C92.2128135,135.874967 91.1044053,136.238623 89.67714,136.238623 C88.234691,136.238623 87.1262829,135.874967 86.3670992,135.162808 C85.5623645,134.405192 85.167589,133.329377 85.167589,131.920212 L85.167589,125.207735 Z M94.9671319,125.207735 L96.7436217,125.207735 L102.103458,133.011179 L102.164193,133.011179 L102.164193,125.207735 L103.955867,125.207735 L103.955867,136.02649 L102.224928,136.02649 L96.8043563,128.11698 L96.7436217,128.11698 L96.7436217,136.02649 L94.9671319,136.02649 L94.9671319,125.207735 Z M104.736307,125.207735 L108.699246,125.207735 C110.460552,125.207735 111.781532,125.692609 112.692552,126.662358 C113.558022,127.571497 113.998348,128.889748 113.998348,130.617113 C113.998348,132.329325 113.558022,133.647576 112.692552,134.571868 C111.781532,135.541616 110.460552,136.02649 108.699246,136.02649 L104.736307,136.02649 L104.736307,125.207735 Z M106.512797,126.722967 L106.512797,134.511258 L108.365205,134.511258 C109.716552,134.511258 110.703491,134.19306 111.326022,133.571815 C111.933369,132.935417 112.237042,131.950517 112.237042,130.617113 C112.237042,129.253404 111.933369,128.253351 111.326022,127.647258 C110.703491,127.026013 109.716552,126.722967 108.365205,126.722967 L106.512797,126.722967 Z M114.323279,125.207735 L122.142871,125.207735 L122.142871,126.722967 L116.099769,126.722967 L116.099769,129.723126 L121.778462,129.723126 L121.778462,131.238358 L116.099769,131.238358 L116.099769,134.511258 L122.400993,134.511258 L122.400993,136.02649 L114.323279,136.02649 L114.323279,125.207735 Z M122.725924,125.207735 L127.554332,125.207735 C128.66274,125.207735 129.543393,125.450172 130.181107,125.950199 C130.849189,126.495682 131.198413,127.283603 131.198413,128.31396 C131.198413,128.874596 131.046577,129.374623 130.742903,129.81404 C130.408862,130.298914 129.938169,130.617113 129.361189,130.768636 L129.361189,130.79894 C130.302577,131.011073 130.834005,131.632318 130.955475,132.69298 L131.137679,134.435497 C131.198413,135.102199 131.426169,135.63253 131.790577,136.02649 L129.86225,136.02649 C129.604128,135.693139 129.452291,135.223417 129.391556,134.617325 L129.254903,133.283921 C129.194169,132.69298 129.011965,132.268715 128.708291,132.011126 C128.389434,131.738384 127.91874,131.617166 127.311393,131.617166 L124.502413,131.617166 L124.502413,136.02649 L122.725924,136.02649 L122.725924,125.207735 Z M124.502413,126.722967 L124.502413,130.101934 L127.311393,130.101934 C128.009842,130.101934 128.541271,129.950411 128.905679,129.662517 C129.23972,129.35947 129.40674,128.935205 129.40674,128.389722 C129.40674,127.798781 129.23972,127.374517 128.905679,127.116927 C128.571638,126.844185 128.040209,126.722967 127.311393,126.722967 L124.502413,126.722967 Z M140.381499,124.995603 C141.778397,124.995603 142.871622,125.298649 143.676356,125.919894 C144.450724,126.525987 144.936601,127.419974 145.133989,128.632159 L143.342316,128.632159 C143.190479,127.935152 142.856438,127.419974 142.37056,127.07147 C141.869499,126.722967 141.201418,126.556291 140.381499,126.556291 C139.364193,126.556291 138.559458,126.889642 137.967295,127.586649 C137.314397,128.31396 136.99554,129.329166 136.99554,130.66257 C136.99554,131.935364 137.28403,132.920265 137.861009,133.602119 C138.48354,134.32943 139.455295,134.693086 140.776275,134.693086 C141.29252,134.693086 141.778397,134.632477 142.233907,134.511258 C142.65905,134.39004 143.038642,134.223364 143.40305,134.011232 L143.40305,131.783841 L140.533336,131.783841 L140.533336,130.268609 L145.17954,130.268609 L145.17954,134.844609 C144.60256,135.299179 143.949662,135.63253 143.205662,135.874967 C142.416111,136.117404 141.550642,136.238623 140.578887,136.238623 C138.847948,136.238623 137.511785,135.693139 136.555213,134.602172 C135.659377,133.586967 135.21905,132.268715 135.21905,130.66257 C135.21905,129.041272 135.659377,127.707868 136.555213,126.662358 C137.496601,125.541086 138.77203,124.995603 140.381499,124.995603 Z M145.808144,125.207735 L147.584634,125.207735 L147.584634,131.950517 C147.584634,132.88996 147.797205,133.571815 148.237532,134.026384 C148.662675,134.465801 149.361124,134.693086 150.317695,134.693086 C151.259083,134.693086 151.957532,134.465801 152.397858,134.026384 C152.823001,133.571815 153.050756,132.88996 153.050756,131.950517 L153.050756,125.207735 L154.827246,125.207735 L154.827246,131.920212 C154.827246,133.329377 154.432471,134.405192 153.64292,135.147656 C152.853369,135.874967 151.74496,136.238623 150.317695,136.238623 C148.875246,136.238623 147.766838,135.874967 147.007654,135.162808 C146.20292,134.405192 145.808144,133.329377 145.808144,131.920212 L145.808144,125.207735 Z M159.433973,124.995603 C160.709401,124.995603 161.711524,125.253192 162.425156,125.783523 C163.18434,126.344159 163.624667,127.222993 163.730952,128.404874 L161.969646,128.404874 C161.817809,127.738172 161.52932,127.253298 161.134544,126.965404 C160.739769,126.662358 160.132422,126.525987 159.342871,126.525987 C158.659605,126.525987 158.14336,126.616901 157.778952,126.813881 C157.323442,127.041166 157.110871,127.419974 157.110871,127.935152 C157.110871,128.389722 157.353809,128.76853 157.870054,129.041272 C158.097809,129.16249 158.72034,129.389775 159.722462,129.707974 C161.195279,130.162543 162.136667,130.526199 162.561809,130.768636 C163.503197,131.329272 163.973891,132.10204 163.973891,133.102093 C163.973891,134.071841 163.594299,134.844609 162.835116,135.405245 C162.075932,135.950728 160.997891,136.238623 159.616177,136.238623 C158.280013,136.238623 157.23234,135.981033 156.48834,135.465854 C155.57732,134.829457 155.076258,133.829404 155.00034,132.450543 L156.761646,132.450543 C156.883116,133.268768 157.171605,133.859709 157.642299,134.208212 C158.067442,134.511258 158.72034,134.677934 159.616177,134.677934 C160.405728,134.677934 161.043442,134.541563 161.498952,134.283974 C161.954462,134.011232 162.197401,133.662728 162.197401,133.208159 C162.197401,132.632371 161.848177,132.177801 161.180095,131.84445 C160.967524,131.738384 160.269075,131.495947 159.069565,131.132291 C157.733401,130.708026 156.898299,130.40498 156.579442,130.223152 C155.74434,129.723126 155.334381,128.995815 155.334381,128.041219 C155.334381,127.086623 155.729156,126.329007 156.549075,125.783523 C157.308258,125.253192 158.26483,124.995603 159.433973,124.995603 Z M163.311883,125.207735 L172.194332,125.207735 L172.194332,126.722967 L168.641352,126.722967 L168.641352,136.02649 L166.864862,136.02649 L166.864862,126.722967 L163.311883,126.722967 L163.311883,125.207735 Z" id="THUNDER-GUST" 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>
</g>
</g>
<path d="M141.415213,35.5218543 L141.415213,42.0304636 L138.58898,42.0304636 L138.58898,37.8153642 L129.427013,37.8153642 L129.427013,44.3549669 L126.569722,44.3549669 L126.569722,37.8153642 L117.531985,37.8153642 L117.531985,41.9994702 L114.705751,41.9994702 L114.705751,35.5218543 L126.569722,35.5218543 L126.569722,34.0651656 L116.22757,34.0651656 L116.22757,31.6786755 L139.862338,31.6786755 L139.862338,34.0651656 L129.427013,34.0651656 L129.427013,35.5218543 L141.415213,35.5218543 Z M119.643896,53.2190728 L119.643896,55.6365563 L126.631837,55.6365563 L126.631837,53.2190728 L119.643896,53.2190728 Z M129.427013,53.2190728 L129.427013,55.6365563 L136.383896,55.6365563 L136.383896,53.2190728 L129.427013,53.2190728 Z M136.383896,50.9255629 L136.383896,48.3531126 L129.427013,48.3531126 L129.427013,50.9255629 L136.383896,50.9255629 Z M126.631837,50.9255629 L126.631837,48.3531126 L119.643896,48.3531126 L119.643896,50.9255629 L126.631837,50.9255629 Z M119.643896,58.0540397 L119.643896,59.3557616 L116.817662,59.3557616 L116.817662,45.9666225 L139.21013,45.9666225 L139.21013,59.4177483 L136.383896,59.4177483 L136.383896,58.0540397 L119.643896,58.0540397 Z M118.805343,39.3340397 L125.327421,39.3340397 L125.327421,41.2866225 L118.805343,41.2866225 L118.805343,39.3340397 Z M118.805343,42.5263576 L125.327421,42.5263576 L125.327421,44.447947 L118.805343,44.447947 L118.805343,42.5263576 Z M130.731429,39.3340397 L137.253507,39.3340397 L137.253507,41.2866225 L130.731429,41.2866225 L130.731429,39.3340397 Z M130.731429,42.5263576 L137.284564,42.5263576 L137.284564,44.447947 L130.731429,44.447947 L130.731429,42.5263576 Z M144.824638,31.802649 L172.652171,31.802649 L172.652171,34.6230464 L160.16705,34.6230464 L160.16705,37.7533775 L171.130353,37.7533775 L171.130353,55.8845033 C171.130353,58.0850331 170.105455,59.2007947 168.055659,59.2007947 L164.515102,59.2007947 L163.738664,56.3803974 L167.123933,56.5353642 C167.869314,56.5353642 168.273061,56.101457 168.273061,55.2336424 L168.273061,40.5427815 L160.16705,40.5427815 L160.16705,58.8908609 L157.309759,58.8908609 L157.309759,40.5427815 L149.079518,40.5427815 L149.079518,59.4177483 L146.222226,59.4177483 L146.222226,37.7533775 L157.309759,37.7533775 L157.309759,34.6230464 L144.824638,34.6230464 L144.824638,31.802649 Z M151.502004,42.5883444 C153.334397,43.3321854 155.011503,44.2929801 156.564378,45.4087417 L155.073618,47.7022517 C153.458627,46.4625166 151.781521,45.4707285 150.073358,44.7578808 L151.502004,42.5883444 Z M151.284601,48.7560265 C153.116994,49.5928477 154.7941,50.6156291 156.315918,51.7933775 L154.825158,54.0868874 C153.210167,52.7541722 151.533061,51.7003974 149.824898,50.9255629 L151.284601,48.7560265 Z M162.434249,42.5883444 C164.297699,43.4561589 165.974805,44.4789404 167.496623,45.6566887 L166.005863,47.9811921 C164.359814,46.6174834 162.682709,45.5327152 160.974545,44.7578808 L162.434249,42.5883444 Z M162.434249,49.0969536 C164.297699,49.9647682 165.974805,51.018543 167.496623,52.2582781 L166.005863,54.5517881 C164.359814,53.1260927 162.682709,52.0413245 160.974545,51.2354967 L162.434249,49.0969536 Z M114.333061,68.581457 L126.228089,68.581457 C126.414434,66.9388079 126.538664,65.2031788 126.569722,63.4055629 L126.569722,60.7091391 L129.551243,60.7091391 L129.551243,62.7237086 C129.551243,64.7692715 129.427013,66.7218543 129.178553,68.581457 L141.787904,68.581457 L141.787904,71.4328477 L129.923933,71.4328477 C132.097959,78.0654305 136.290724,83.1793377 142.440111,86.8055629 L140.607718,89.192053 C134.644675,85.5348344 130.451911,80.4209272 128.09154,73.8503311 C126.041744,80.9478146 121.84898,86.154702 115.544304,89.4709934 L113.649796,86.9915232 C120.047644,83.8921854 124.085121,78.685298 125.731169,71.4328477 L114.333061,71.4328477 L114.333061,68.581457 Z M154.04872,67.6516556 C155.694768,69.6972185 157.216586,71.6498013 158.614174,73.509404 C159.732245,71.4018543 160.601855,69.1393377 161.285121,66.7218543 L164.204527,67.2177483 C163.272801,70.5650331 162.061558,73.5403974 160.570798,76.1748344 C162.372134,78.7782781 163.925009,81.1647682 165.198367,83.3343046 L162.527421,85.1629139 C161.409351,83.1793377 160.16705,81.1337748 158.738404,79.0262252 C156.874954,81.5986755 154.700928,83.8301987 152.216327,85.6898013 L150.228646,83.1793377 C152.868534,81.1957616 155.104675,78.9022517 156.906011,76.2988079 C155.29102,74.005298 153.5518,71.6188079 151.626234,69.1393377 L154.04872,67.6516556 Z M147.837217,61.7319205 L168.490464,61.7319205 L168.490464,74.4082119 C168.490464,79.1501987 168.614694,82.1875497 168.925269,83.5202649 C169.173729,84.8219868 169.484304,85.5038411 169.856994,85.5038411 C170.136512,85.5038411 170.384972,84.264106 170.571317,81.8156291 L173.211206,83.0863576 C172.807458,85.4418543 172.372653,87.0535099 171.90679,87.8593377 C171.378813,88.6031788 170.78872,89.0060927 170.16757,89.0060927 C168.552579,89.0060927 167.372393,88.0143046 166.627013,86.0617219 C165.850575,84.1401325 165.477885,80.2659603 165.477885,74.4082119 L165.477885,64.5833113 L150.787681,64.5833113 L150.787681,74.005298 C150.725566,80.08 149.452208,85.1939073 146.998664,89.3160265 L144.514063,87.301457 C146.625974,83.7682119 147.744045,79.3361589 147.837217,74.005298 L147.837217,61.7319205 Z" id="雷雨-大风" fill="#444444"></path>
<g id="leiyudafengyujingxinhao" transform="translate(21.740260, 12.397351)" fill="#FFFF00" fill-rule="nonzero">
<path d="M19.8715067,36.9123159 L6.18130714,73.5673264 C5.78397878,74.6308284 4.84683016,75.4025509 3.72287612,75.5917934 C2.59892208,75.7810359 1.45891797,75.359048 0.732292314,74.4847884 C0.00566666198,73.6105289 -0.197188803,72.4168185 0.20013961,71.3533165 L26.0785473,2.06992274 C26.453164,1.06600702 27.3108983,0.31765981 28.3598623,0.0795444237 C29.4088264,-0.158570963 30.5077087,0.145623227 31.2825586,0.888609399 L69.9183232,17.99987 C72.0953814,18.9652443 71.8733368,22.1116026 69.5814279,22.7632303 L19.8727828,36.9135861 L19.8715067,36.9123159 Z M39.005628,41.9170198 L31.9027522,61.0263512 L39.0094563,61.0263512 L39.231501,60.7164153 L32.6492815,77.4834437 L51.6634476,54.436401 L43.7310949,54.436401 L52.700932,41.9170198 L39.005628,41.9170198 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>LYDF-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, -1095.000000)">
<g id="LYDF-B" transform="translate(648.000000, 1095.000000)">
<g id="Group-6-Copy">
<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="#3265FE"></path>
</g>
<path d="M66.509891,125.207735 L75.39234,125.207735 L75.39234,126.722967 L71.8393604,126.722967 L71.8393604,136.02649 L70.0628706,136.02649 L70.0628706,126.722967 L66.509891,126.722967 L66.509891,125.207735 Z M75.3376788,125.207735 L77.1141686,125.207735 L77.1141686,129.723126 L82.6106584,129.723126 L82.6106584,125.207735 L84.3871482,125.207735 L84.3871482,136.02649 L82.6106584,136.02649 L82.6106584,131.238358 L77.1141686,131.238358 L77.1141686,136.02649 L75.3376788,136.02649 L75.3376788,125.207735 Z M85.167589,125.207735 L86.9440788,125.207735 L86.9440788,131.950517 C86.9440788,132.88996 87.1566502,133.571815 87.5969768,134.026384 C88.0221196,134.465801 88.7205686,134.693086 89.67714,134.693086 C90.6185278,134.693086 91.3169768,134.465801 91.7573033,134.026384 C92.1824461,133.571815 92.4102012,132.88996 92.4102012,131.950517 L92.4102012,125.207735 L94.186691,125.207735 L94.186691,131.920212 C94.186691,133.329377 93.7919155,134.405192 93.0023645,135.147656 C92.2128135,135.874967 91.1044053,136.238623 89.67714,136.238623 C88.234691,136.238623 87.1262829,135.874967 86.3670992,135.162808 C85.5623645,134.405192 85.167589,133.329377 85.167589,131.920212 L85.167589,125.207735 Z M94.9671319,125.207735 L96.7436217,125.207735 L102.103458,133.011179 L102.164193,133.011179 L102.164193,125.207735 L103.955867,125.207735 L103.955867,136.02649 L102.224928,136.02649 L96.8043563,128.11698 L96.7436217,128.11698 L96.7436217,136.02649 L94.9671319,136.02649 L94.9671319,125.207735 Z M104.736307,125.207735 L108.699246,125.207735 C110.460552,125.207735 111.781532,125.692609 112.692552,126.662358 C113.558022,127.571497 113.998348,128.889748 113.998348,130.617113 C113.998348,132.329325 113.558022,133.647576 112.692552,134.571868 C111.781532,135.541616 110.460552,136.02649 108.699246,136.02649 L104.736307,136.02649 L104.736307,125.207735 Z M106.512797,126.722967 L106.512797,134.511258 L108.365205,134.511258 C109.716552,134.511258 110.703491,134.19306 111.326022,133.571815 C111.933369,132.935417 112.237042,131.950517 112.237042,130.617113 C112.237042,129.253404 111.933369,128.253351 111.326022,127.647258 C110.703491,127.026013 109.716552,126.722967 108.365205,126.722967 L106.512797,126.722967 Z M114.323279,125.207735 L122.142871,125.207735 L122.142871,126.722967 L116.099769,126.722967 L116.099769,129.723126 L121.778462,129.723126 L121.778462,131.238358 L116.099769,131.238358 L116.099769,134.511258 L122.400993,134.511258 L122.400993,136.02649 L114.323279,136.02649 L114.323279,125.207735 Z M122.725924,125.207735 L127.554332,125.207735 C128.66274,125.207735 129.543393,125.450172 130.181107,125.950199 C130.849189,126.495682 131.198413,127.283603 131.198413,128.31396 C131.198413,128.874596 131.046577,129.374623 130.742903,129.81404 C130.408862,130.298914 129.938169,130.617113 129.361189,130.768636 L129.361189,130.79894 C130.302577,131.011073 130.834005,131.632318 130.955475,132.69298 L131.137679,134.435497 C131.198413,135.102199 131.426169,135.63253 131.790577,136.02649 L129.86225,136.02649 C129.604128,135.693139 129.452291,135.223417 129.391556,134.617325 L129.254903,133.283921 C129.194169,132.69298 129.011965,132.268715 128.708291,132.011126 C128.389434,131.738384 127.91874,131.617166 127.311393,131.617166 L124.502413,131.617166 L124.502413,136.02649 L122.725924,136.02649 L122.725924,125.207735 Z M124.502413,126.722967 L124.502413,130.101934 L127.311393,130.101934 C128.009842,130.101934 128.541271,129.950411 128.905679,129.662517 C129.23972,129.35947 129.40674,128.935205 129.40674,128.389722 C129.40674,127.798781 129.23972,127.374517 128.905679,127.116927 C128.571638,126.844185 128.040209,126.722967 127.311393,126.722967 L124.502413,126.722967 Z M140.381499,124.995603 C141.778397,124.995603 142.871622,125.298649 143.676356,125.919894 C144.450724,126.525987 144.936601,127.419974 145.133989,128.632159 L143.342316,128.632159 C143.190479,127.935152 142.856438,127.419974 142.37056,127.07147 C141.869499,126.722967 141.201418,126.556291 140.381499,126.556291 C139.364193,126.556291 138.559458,126.889642 137.967295,127.586649 C137.314397,128.31396 136.99554,129.329166 136.99554,130.66257 C136.99554,131.935364 137.28403,132.920265 137.861009,133.602119 C138.48354,134.32943 139.455295,134.693086 140.776275,134.693086 C141.29252,134.693086 141.778397,134.632477 142.233907,134.511258 C142.65905,134.39004 143.038642,134.223364 143.40305,134.011232 L143.40305,131.783841 L140.533336,131.783841 L140.533336,130.268609 L145.17954,130.268609 L145.17954,134.844609 C144.60256,135.299179 143.949662,135.63253 143.205662,135.874967 C142.416111,136.117404 141.550642,136.238623 140.578887,136.238623 C138.847948,136.238623 137.511785,135.693139 136.555213,134.602172 C135.659377,133.586967 135.21905,132.268715 135.21905,130.66257 C135.21905,129.041272 135.659377,127.707868 136.555213,126.662358 C137.496601,125.541086 138.77203,124.995603 140.381499,124.995603 Z M145.808144,125.207735 L147.584634,125.207735 L147.584634,131.950517 C147.584634,132.88996 147.797205,133.571815 148.237532,134.026384 C148.662675,134.465801 149.361124,134.693086 150.317695,134.693086 C151.259083,134.693086 151.957532,134.465801 152.397858,134.026384 C152.823001,133.571815 153.050756,132.88996 153.050756,131.950517 L153.050756,125.207735 L154.827246,125.207735 L154.827246,131.920212 C154.827246,133.329377 154.432471,134.405192 153.64292,135.147656 C152.853369,135.874967 151.74496,136.238623 150.317695,136.238623 C148.875246,136.238623 147.766838,135.874967 147.007654,135.162808 C146.20292,134.405192 145.808144,133.329377 145.808144,131.920212 L145.808144,125.207735 Z M159.433973,124.995603 C160.709401,124.995603 161.711524,125.253192 162.425156,125.783523 C163.18434,126.344159 163.624667,127.222993 163.730952,128.404874 L161.969646,128.404874 C161.817809,127.738172 161.52932,127.253298 161.134544,126.965404 C160.739769,126.662358 160.132422,126.525987 159.342871,126.525987 C158.659605,126.525987 158.14336,126.616901 157.778952,126.813881 C157.323442,127.041166 157.110871,127.419974 157.110871,127.935152 C157.110871,128.389722 157.353809,128.76853 157.870054,129.041272 C158.097809,129.16249 158.72034,129.389775 159.722462,129.707974 C161.195279,130.162543 162.136667,130.526199 162.561809,130.768636 C163.503197,131.329272 163.973891,132.10204 163.973891,133.102093 C163.973891,134.071841 163.594299,134.844609 162.835116,135.405245 C162.075932,135.950728 160.997891,136.238623 159.616177,136.238623 C158.280013,136.238623 157.23234,135.981033 156.48834,135.465854 C155.57732,134.829457 155.076258,133.829404 155.00034,132.450543 L156.761646,132.450543 C156.883116,133.268768 157.171605,133.859709 157.642299,134.208212 C158.067442,134.511258 158.72034,134.677934 159.616177,134.677934 C160.405728,134.677934 161.043442,134.541563 161.498952,134.283974 C161.954462,134.011232 162.197401,133.662728 162.197401,133.208159 C162.197401,132.632371 161.848177,132.177801 161.180095,131.84445 C160.967524,131.738384 160.269075,131.495947 159.069565,131.132291 C157.733401,130.708026 156.898299,130.40498 156.579442,130.223152 C155.74434,129.723126 155.334381,128.995815 155.334381,128.041219 C155.334381,127.086623 155.729156,126.329007 156.549075,125.783523 C157.308258,125.253192 158.26483,124.995603 159.433973,124.995603 Z M163.311883,125.207735 L172.194332,125.207735 L172.194332,126.722967 L168.641352,126.722967 L168.641352,136.02649 L166.864862,136.02649 L166.864862,126.722967 L163.311883,126.722967 L163.311883,125.207735 Z" id="THUNDER-GUST" 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>
</g>
</g>
<path d="M141.415213,35.5218543 L141.415213,42.0304636 L138.58898,42.0304636 L138.58898,37.8153642 L129.427013,37.8153642 L129.427013,44.3549669 L126.569722,44.3549669 L126.569722,37.8153642 L117.531985,37.8153642 L117.531985,41.9994702 L114.705751,41.9994702 L114.705751,35.5218543 L126.569722,35.5218543 L126.569722,34.0651656 L116.22757,34.0651656 L116.22757,31.6786755 L139.862338,31.6786755 L139.862338,34.0651656 L129.427013,34.0651656 L129.427013,35.5218543 L141.415213,35.5218543 Z M119.643896,53.2190728 L119.643896,55.6365563 L126.631837,55.6365563 L126.631837,53.2190728 L119.643896,53.2190728 Z M129.427013,53.2190728 L129.427013,55.6365563 L136.383896,55.6365563 L136.383896,53.2190728 L129.427013,53.2190728 Z M136.383896,50.9255629 L136.383896,48.3531126 L129.427013,48.3531126 L129.427013,50.9255629 L136.383896,50.9255629 Z M126.631837,50.9255629 L126.631837,48.3531126 L119.643896,48.3531126 L119.643896,50.9255629 L126.631837,50.9255629 Z M119.643896,58.0540397 L119.643896,59.3557616 L116.817662,59.3557616 L116.817662,45.9666225 L139.21013,45.9666225 L139.21013,59.4177483 L136.383896,59.4177483 L136.383896,58.0540397 L119.643896,58.0540397 Z M118.805343,39.3340397 L125.327421,39.3340397 L125.327421,41.2866225 L118.805343,41.2866225 L118.805343,39.3340397 Z M118.805343,42.5263576 L125.327421,42.5263576 L125.327421,44.447947 L118.805343,44.447947 L118.805343,42.5263576 Z M130.731429,39.3340397 L137.253507,39.3340397 L137.253507,41.2866225 L130.731429,41.2866225 L130.731429,39.3340397 Z M130.731429,42.5263576 L137.284564,42.5263576 L137.284564,44.447947 L130.731429,44.447947 L130.731429,42.5263576 Z M144.824638,31.802649 L172.652171,31.802649 L172.652171,34.6230464 L160.16705,34.6230464 L160.16705,37.7533775 L171.130353,37.7533775 L171.130353,55.8845033 C171.130353,58.0850331 170.105455,59.2007947 168.055659,59.2007947 L164.515102,59.2007947 L163.738664,56.3803974 L167.123933,56.5353642 C167.869314,56.5353642 168.273061,56.101457 168.273061,55.2336424 L168.273061,40.5427815 L160.16705,40.5427815 L160.16705,58.8908609 L157.309759,58.8908609 L157.309759,40.5427815 L149.079518,40.5427815 L149.079518,59.4177483 L146.222226,59.4177483 L146.222226,37.7533775 L157.309759,37.7533775 L157.309759,34.6230464 L144.824638,34.6230464 L144.824638,31.802649 Z M151.502004,42.5883444 C153.334397,43.3321854 155.011503,44.2929801 156.564378,45.4087417 L155.073618,47.7022517 C153.458627,46.4625166 151.781521,45.4707285 150.073358,44.7578808 L151.502004,42.5883444 Z M151.284601,48.7560265 C153.116994,49.5928477 154.7941,50.6156291 156.315918,51.7933775 L154.825158,54.0868874 C153.210167,52.7541722 151.533061,51.7003974 149.824898,50.9255629 L151.284601,48.7560265 Z M162.434249,42.5883444 C164.297699,43.4561589 165.974805,44.4789404 167.496623,45.6566887 L166.005863,47.9811921 C164.359814,46.6174834 162.682709,45.5327152 160.974545,44.7578808 L162.434249,42.5883444 Z M162.434249,49.0969536 C164.297699,49.9647682 165.974805,51.018543 167.496623,52.2582781 L166.005863,54.5517881 C164.359814,53.1260927 162.682709,52.0413245 160.974545,51.2354967 L162.434249,49.0969536 Z M114.333061,68.581457 L126.228089,68.581457 C126.414434,66.9388079 126.538664,65.2031788 126.569722,63.4055629 L126.569722,60.7091391 L129.551243,60.7091391 L129.551243,62.7237086 C129.551243,64.7692715 129.427013,66.7218543 129.178553,68.581457 L141.787904,68.581457 L141.787904,71.4328477 L129.923933,71.4328477 C132.097959,78.0654305 136.290724,83.1793377 142.440111,86.8055629 L140.607718,89.192053 C134.644675,85.5348344 130.451911,80.4209272 128.09154,73.8503311 C126.041744,80.9478146 121.84898,86.154702 115.544304,89.4709934 L113.649796,86.9915232 C120.047644,83.8921854 124.085121,78.685298 125.731169,71.4328477 L114.333061,71.4328477 L114.333061,68.581457 Z M154.04872,67.6516556 C155.694768,69.6972185 157.216586,71.6498013 158.614174,73.509404 C159.732245,71.4018543 160.601855,69.1393377 161.285121,66.7218543 L164.204527,67.2177483 C163.272801,70.5650331 162.061558,73.5403974 160.570798,76.1748344 C162.372134,78.7782781 163.925009,81.1647682 165.198367,83.3343046 L162.527421,85.1629139 C161.409351,83.1793377 160.16705,81.1337748 158.738404,79.0262252 C156.874954,81.5986755 154.700928,83.8301987 152.216327,85.6898013 L150.228646,83.1793377 C152.868534,81.1957616 155.104675,78.9022517 156.906011,76.2988079 C155.29102,74.005298 153.5518,71.6188079 151.626234,69.1393377 L154.04872,67.6516556 Z M147.837217,61.7319205 L168.490464,61.7319205 L168.490464,74.4082119 C168.490464,79.1501987 168.614694,82.1875497 168.925269,83.5202649 C169.173729,84.8219868 169.484304,85.5038411 169.856994,85.5038411 C170.136512,85.5038411 170.384972,84.264106 170.571317,81.8156291 L173.211206,83.0863576 C172.807458,85.4418543 172.372653,87.0535099 171.90679,87.8593377 C171.378813,88.6031788 170.78872,89.0060927 170.16757,89.0060927 C168.552579,89.0060927 167.372393,88.0143046 166.627013,86.0617219 C165.850575,84.1401325 165.477885,80.2659603 165.477885,74.4082119 L165.477885,64.5833113 L150.787681,64.5833113 L150.787681,74.005298 C150.725566,80.08 149.452208,85.1939073 146.998664,89.3160265 L144.514063,87.301457 C146.625974,83.7682119 147.744045,79.3361589 147.837217,74.005298 L147.837217,61.7319205 Z" id="雷雨-大风" fill="#FFFFFF"></path>
<g id="leiyudafengyujingxinhao" transform="translate(21.740260, 12.397351)" fill="#3265FE" fill-rule="nonzero">
<path d="M19.8715067,36.9123159 L6.18130714,73.5673264 C5.78397878,74.6308284 4.84683016,75.4025509 3.72287612,75.5917934 C2.59892208,75.7810359 1.45891797,75.359048 0.732292314,74.4847884 C0.00566666198,73.6105289 -0.197188803,72.4168185 0.20013961,71.3533165 L26.0785473,2.06992274 C26.453164,1.06600702 27.3108983,0.31765981 28.3598623,0.0795444237 C29.4088264,-0.158570963 30.5077087,0.145623227 31.2825586,0.888609399 L69.9183232,17.99987 C72.0953814,18.9652443 71.8733368,22.1116026 69.5814279,22.7632303 L19.8727828,36.9135861 L19.8715067,36.9123159 Z M39.005628,41.9170198 L31.9027522,61.0263512 L39.0094563,61.0263512 L39.231501,60.7164153 L32.6492815,77.4834437 L51.6634476,54.436401 L43.7310949,54.436401 L52.700932,41.9170198 L39.005628,41.9170198 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>MAI-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(-648.000000, -593.000000)">
<g id="MAI-R" transform="translate(648.000000, 593.000000)">
<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="M98.0966533,123.142887 L100.43839,123.142887 L100.43839,129.094993 L107.683763,129.094993 L107.683763,123.142887 L110.025499,123.142887 L110.025499,137.403974 L107.683763,137.403974 L107.683763,131.092344 L100.43839,131.092344 L100.43839,137.403974 L98.0966533,137.403974 L98.0966533,123.142887 Z M115.356119,123.142887 L118.018093,123.142887 L123.482145,137.403974 L120.98029,137.403974 L119.679325,133.828715 L113.694887,133.828715 L112.393922,137.403974 L109.892067,137.403974 L115.356119,123.142887 Z M114.395406,131.911258 L118.978805,131.911258 L116.737143,125.65955 L116.657084,125.65955 L114.395406,131.911258 Z M123.04849,123.142887 L133.75643,123.142887 L133.75643,125.000424 L125.510315,135.406623 L134.236787,135.406623 L134.236787,137.403974 L122.448045,137.403974 L122.448045,135.566411 L130.714174,125.140238 L123.04849,125.140238 L123.04849,123.142887 Z M134.603725,123.142887 L144.911369,123.142887 L144.911369,125.140238 L136.945462,125.140238 L136.945462,129.094993 L144.431013,129.094993 L144.431013,131.092344 L136.945462,131.092344 L136.945462,135.406623 L145.251621,135.406623 L145.251621,137.403974 L134.603725,137.403974 L134.603725,123.142887 Z" id="HAZE" fill="#FFFFFF"></path>
<path d="M143.113024,53.6529801 L159.552801,53.6529801 L159.552801,65.4304636 L152.885788,65.4304636 L152.885788,67.1660927 L160.256772,67.1660927 L160.256772,70.0588079 L152.885788,70.0588079 L152.885788,71.8357616 L161.457662,71.8357616 L161.457662,74.7698013 L141.373803,74.7698013 L141.373803,71.8357616 L149.738627,71.8357616 L149.738627,70.0588079 L142.616104,70.0588079 L142.616104,67.1660927 L149.738627,67.1660927 L149.738627,65.4304636 L143.113024,65.4304636 L143.113024,53.6529801 Z M156.48846,62.7443709 L156.48846,60.8434437 L152.885788,60.8434437 L152.885788,62.7443709 L156.48846,62.7443709 Z M149.738627,62.7443709 L149.738627,60.8434437 L146.177365,60.8434437 L146.177365,62.7443709 L149.738627,62.7443709 Z M146.177365,58.322649 L149.738627,58.322649 L149.738627,56.3390728 L146.177365,56.3390728 L146.177365,58.322649 Z M152.885788,56.3390728 L152.885788,58.322649 L156.48846,58.322649 L156.48846,56.3390728 L152.885788,56.3390728 Z M133.54731,57.5788079 C132.553469,57.8680795 131.601039,58.1160265 130.648609,58.322649 C131.145529,59.0664901 131.559629,59.8103311 131.973729,60.5954967 C133.05039,60.2649007 134.08564,59.9343046 134.99666,59.6037086 C134.54115,58.8598675 134.04423,58.1986755 133.54731,57.5788079 Z M127.625677,58.8598675 C127.045937,58.9425166 126.549017,58.9838411 126.052096,59.0664901 L125.141076,56.4217219 C130.772839,55.6778808 135.327941,54.3141722 138.806382,52.2892715 L140.214323,54.7274172 C138.930612,55.4299338 137.646902,56.0498013 136.321781,56.5870199 C136.818701,57.2068874 137.274212,57.8680795 137.688312,58.5292715 C138.806382,58.0333775 139.841633,57.4961589 140.752653,56.9589404 L142.533284,59.3144371 C141.001113,60.2235762 139.220482,61.0913907 137.232801,61.8352318 C139.386122,63.9427815 140.504193,66.4635762 140.587013,69.3562914 C140.587013,71.6291391 140.297143,73.1994702 139.758813,74.0259603 C139.013432,75.0177483 137.439852,75.5549669 134.99666,75.5549669 L132.96757,75.5549669 L131.890909,72.6209272 L134.58256,72.6209272 C135.700631,72.6209272 136.404601,72.4143046 136.694471,72.0837086 C137.025751,71.5878146 137.232801,70.6786755 137.232801,69.3562914 L137.232801,69.1909934 C134.37551,71.0092715 130.979889,72.4969536 127.004527,73.7366887 L125.430946,71.4638411 C130.317328,70.141457 134.08564,68.5711258 136.735881,66.7528477 C136.570241,66.3396026 136.446011,65.9676821 136.280371,65.6784106 C133.71295,67.1660927 130.690019,68.3645033 127.128757,69.3562914 L125.555176,67.0421192 C129.530538,66.1329801 132.636289,65.0172185 134.95525,63.7774834 C134.66538,63.4468874 134.37551,63.1576159 134.08564,62.9096689 C131.890909,63.5708609 129.530538,64.1907285 126.963117,64.6866225 L125.472356,62.1245033 C126.756067,61.8765563 127.998367,61.5872848 129.157848,61.3393377 C128.660928,60.4301987 128.164007,59.6037086 127.625677,58.8598675 Z M127.087347,38.9827815 L159.428571,38.9827815 L159.428571,41.8341722 L145.142115,41.8341722 L145.142115,43.1565563 L160.919332,43.1565563 L160.919332,50.0164238 L157.31666,50.0164238 L157.31666,45.76 L145.142115,45.76 L145.142115,52.3719205 L141.415213,52.3719205 L141.415213,45.76 L129.240668,45.76 L129.240668,50.0577483 L125.637996,50.0577483 L125.637996,43.1565563 L141.415213,43.1565563 L141.415213,41.8341722 L127.087347,41.8341722 L127.087347,38.9827815 Z M130.979889,46.9997351 L139.634583,46.9997351 L139.634583,49.1072848 L130.979889,49.1072848 L130.979889,46.9997351 Z M130.979889,50.0990728 L139.551763,50.0990728 L139.551763,52.247947 L130.979889,52.247947 L130.979889,50.0990728 Z M146.881336,46.9997351 L155.49462,46.9997351 L155.49462,49.1072848 L146.881336,49.1072848 L146.881336,46.9997351 Z M146.922746,50.0990728 L155.61885,50.0990728 L155.61885,52.247947 L146.922746,52.247947 L146.922746,50.0990728 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 id="mai" transform="translate(13.458256, 37.536424)" fill="#D12821" fill-rule="nonzero">
<path d="M0.0571034537,17.5198676 C0.853516074,7.96357622 8.02122994,0.796357678 19.9674197,0.796357678 C25.9405146,0.796357678 30.3207842,3.58360936 33.9046412,6.7690398 C35.4974665,7.96357622 37.4884981,9.95447023 40.2759423,12.3435431 C46.2490372,3.98178811 55.4077827,0 68.1503852,0 C77.3091306,0 84.8750509,6.7690397 86.8660825,13.5380795 C88.4589078,18.714404 87.2642888,23.4925497 86.4678762,26.2798013 C85.6714636,29.0670529 79.6983687,38.2251656 66.9557662,38.2251656 C58.9916397,38.2251656 51.0275131,34.6415563 43.8597993,27.8725166 C33.5064348,34.2433775 25.9405146,37.428808 20.7638324,37.428808 C6.82661106,37.428808 -0.739309167,27.076159 0.0571034537,17.5198676 Z M33.8181818,17.605673 C31.0455317,15.6279127 28.6689744,14.0457045 26.6885101,13.6501524 C17.1822811,10.485736 9.26042362,12.0679441 8.07214491,18.0012249 C6.88386619,23.9345058 13.6174451,29.4722345 24.7080456,24.7256099 C27.0846029,23.9345058 29.857253,21.5611935 33.8181818,17.605673 Z M49.6920223,21.9612098 C54.4971915,25.9494084 60.9040837,27.5446878 68.912699,27.145868 C80.5251912,26.3482283 81.3260528,19.1694709 80.5251913,16.3777318 C78.9234682,9.59779428 69.3131298,10.395434 65.3088221,11.1930737 C62.5058067,11.9907133 57.3002068,15.5800921 49.6920223,21.9612098 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>MAI-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, -593.000000)">
<g id="MAI-O" transform="translate(35.000000, 593.000000)">
<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="#EC8D15"></path>
</g>
<path d="M98.0966533,123.142887 L100.43839,123.142887 L100.43839,129.094993 L107.683763,129.094993 L107.683763,123.142887 L110.025499,123.142887 L110.025499,137.403974 L107.683763,137.403974 L107.683763,131.092344 L100.43839,131.092344 L100.43839,137.403974 L98.0966533,137.403974 L98.0966533,123.142887 Z M115.356119,123.142887 L118.018093,123.142887 L123.482145,137.403974 L120.98029,137.403974 L119.679325,133.828715 L113.694887,133.828715 L112.393922,137.403974 L109.892067,137.403974 L115.356119,123.142887 Z M114.395406,131.911258 L118.978805,131.911258 L116.737143,125.65955 L116.657084,125.65955 L114.395406,131.911258 Z M123.04849,123.142887 L133.75643,123.142887 L133.75643,125.000424 L125.510315,135.406623 L134.236787,135.406623 L134.236787,137.403974 L122.448045,137.403974 L122.448045,135.566411 L130.714174,125.140238 L123.04849,125.140238 L123.04849,123.142887 Z M134.603725,123.142887 L144.911369,123.142887 L144.911369,125.140238 L136.945462,125.140238 L136.945462,129.094993 L144.431013,129.094993 L144.431013,131.092344 L136.945462,131.092344 L136.945462,135.406623 L145.251621,135.406623 L145.251621,137.403974 L134.603725,137.403974 L134.603725,123.142887 Z" id="HAZE" fill="#FFFFFF"></path>
<path d="M143.113024,53.6529801 L159.552801,53.6529801 L159.552801,65.4304636 L152.885788,65.4304636 L152.885788,67.1660927 L160.256772,67.1660927 L160.256772,70.0588079 L152.885788,70.0588079 L152.885788,71.8357616 L161.457662,71.8357616 L161.457662,74.7698013 L141.373803,74.7698013 L141.373803,71.8357616 L149.738627,71.8357616 L149.738627,70.0588079 L142.616104,70.0588079 L142.616104,67.1660927 L149.738627,67.1660927 L149.738627,65.4304636 L143.113024,65.4304636 L143.113024,53.6529801 Z M156.48846,62.7443709 L156.48846,60.8434437 L152.885788,60.8434437 L152.885788,62.7443709 L156.48846,62.7443709 Z M149.738627,62.7443709 L149.738627,60.8434437 L146.177365,60.8434437 L146.177365,62.7443709 L149.738627,62.7443709 Z M146.177365,58.322649 L149.738627,58.322649 L149.738627,56.3390728 L146.177365,56.3390728 L146.177365,58.322649 Z M152.885788,56.3390728 L152.885788,58.322649 L156.48846,58.322649 L156.48846,56.3390728 L152.885788,56.3390728 Z M133.54731,57.5788079 C132.553469,57.8680795 131.601039,58.1160265 130.648609,58.322649 C131.145529,59.0664901 131.559629,59.8103311 131.973729,60.5954967 C133.05039,60.2649007 134.08564,59.9343046 134.99666,59.6037086 C134.54115,58.8598675 134.04423,58.1986755 133.54731,57.5788079 Z M127.625677,58.8598675 C127.045937,58.9425166 126.549017,58.9838411 126.052096,59.0664901 L125.141076,56.4217219 C130.772839,55.6778808 135.327941,54.3141722 138.806382,52.2892715 L140.214323,54.7274172 C138.930612,55.4299338 137.646902,56.0498013 136.321781,56.5870199 C136.818701,57.2068874 137.274212,57.8680795 137.688312,58.5292715 C138.806382,58.0333775 139.841633,57.4961589 140.752653,56.9589404 L142.533284,59.3144371 C141.001113,60.2235762 139.220482,61.0913907 137.232801,61.8352318 C139.386122,63.9427815 140.504193,66.4635762 140.587013,69.3562914 C140.587013,71.6291391 140.297143,73.1994702 139.758813,74.0259603 C139.013432,75.0177483 137.439852,75.5549669 134.99666,75.5549669 L132.96757,75.5549669 L131.890909,72.6209272 L134.58256,72.6209272 C135.700631,72.6209272 136.404601,72.4143046 136.694471,72.0837086 C137.025751,71.5878146 137.232801,70.6786755 137.232801,69.3562914 L137.232801,69.1909934 C134.37551,71.0092715 130.979889,72.4969536 127.004527,73.7366887 L125.430946,71.4638411 C130.317328,70.141457 134.08564,68.5711258 136.735881,66.7528477 C136.570241,66.3396026 136.446011,65.9676821 136.280371,65.6784106 C133.71295,67.1660927 130.690019,68.3645033 127.128757,69.3562914 L125.555176,67.0421192 C129.530538,66.1329801 132.636289,65.0172185 134.95525,63.7774834 C134.66538,63.4468874 134.37551,63.1576159 134.08564,62.9096689 C131.890909,63.5708609 129.530538,64.1907285 126.963117,64.6866225 L125.472356,62.1245033 C126.756067,61.8765563 127.998367,61.5872848 129.157848,61.3393377 C128.660928,60.4301987 128.164007,59.6037086 127.625677,58.8598675 Z M127.087347,38.9827815 L159.428571,38.9827815 L159.428571,41.8341722 L145.142115,41.8341722 L145.142115,43.1565563 L160.919332,43.1565563 L160.919332,50.0164238 L157.31666,50.0164238 L157.31666,45.76 L145.142115,45.76 L145.142115,52.3719205 L141.415213,52.3719205 L141.415213,45.76 L129.240668,45.76 L129.240668,50.0577483 L125.637996,50.0577483 L125.637996,43.1565563 L141.415213,43.1565563 L141.415213,41.8341722 L127.087347,41.8341722 L127.087347,38.9827815 Z M130.979889,46.9997351 L139.634583,46.9997351 L139.634583,49.1072848 L130.979889,49.1072848 L130.979889,46.9997351 Z M130.979889,50.0990728 L139.551763,50.0990728 L139.551763,52.247947 L130.979889,52.247947 L130.979889,50.0990728 Z M146.881336,46.9997351 L155.49462,46.9997351 L155.49462,49.1072848 L146.881336,49.1072848 L146.881336,46.9997351 Z M146.922746,50.0990728 L155.61885,50.0990728 L155.61885,52.247947 L146.922746,52.247947 L146.922746,50.0990728 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>
<g id="mai" transform="translate(13.458256, 37.536424)" fill="#EC8D15" fill-rule="nonzero">
<path d="M0.0571034537,17.5198676 C0.853516074,7.96357622 8.02122994,0.796357678 19.9674197,0.796357678 C25.9405146,0.796357678 30.3207842,3.58360936 33.9046412,6.7690398 C35.4974665,7.96357622 37.4884981,9.95447023 40.2759423,12.3435431 C46.2490372,3.98178811 55.4077827,0 68.1503852,0 C77.3091306,0 84.8750509,6.7690397 86.8660825,13.5380795 C88.4589078,18.714404 87.2642888,23.4925497 86.4678762,26.2798013 C85.6714636,29.0670529 79.6983687,38.2251656 66.9557662,38.2251656 C58.9916397,38.2251656 51.0275131,34.6415563 43.8597993,27.8725166 C33.5064348,34.2433775 25.9405146,37.428808 20.7638324,37.428808 C6.82661106,37.428808 -0.739309167,27.076159 0.0571034537,17.5198676 Z M33.8181818,17.605673 C31.0455317,15.6279127 28.6689744,14.0457045 26.6885101,13.6501524 C17.1822811,10.485736 9.26042362,12.0679441 8.07214491,18.0012249 C6.88386619,23.9345058 13.6174451,29.4722345 24.7080456,24.7256099 C27.0846029,23.9345058 29.857253,21.5611935 33.8181818,17.605673 Z M49.6920223,21.9612098 C54.4971915,25.9494084 60.9040837,27.5446878 68.912699,27.145868 C80.5251912,26.3482283 81.3260528,19.1694709 80.5251913,16.3777318 C78.9234682,9.59779428 69.3131298,10.395434 65.3088221,11.1930737 C62.5058067,11.9907133 57.3002068,15.5800921 49.6920223,21.9612098 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>MAI-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, -590.000000)">
<g id="MAI-Y" transform="translate(354.000000, 590.000000)">
<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="#FFFF00"></path>
</g>
<path d="M98.0966533,123.142887 L100.43839,123.142887 L100.43839,129.094993 L107.683763,129.094993 L107.683763,123.142887 L110.025499,123.142887 L110.025499,137.403974 L107.683763,137.403974 L107.683763,131.092344 L100.43839,131.092344 L100.43839,137.403974 L98.0966533,137.403974 L98.0966533,123.142887 Z M115.356119,123.142887 L118.018093,123.142887 L123.482145,137.403974 L120.98029,137.403974 L119.679325,133.828715 L113.694887,133.828715 L112.393922,137.403974 L109.892067,137.403974 L115.356119,123.142887 Z M114.395406,131.911258 L118.978805,131.911258 L116.737143,125.65955 L116.657084,125.65955 L114.395406,131.911258 Z M123.04849,123.142887 L133.75643,123.142887 L133.75643,125.000424 L125.510315,135.406623 L134.236787,135.406623 L134.236787,137.403974 L122.448045,137.403974 L122.448045,135.566411 L130.714174,125.140238 L123.04849,125.140238 L123.04849,123.142887 Z M134.603725,123.142887 L144.911369,123.142887 L144.911369,125.140238 L136.945462,125.140238 L136.945462,129.094993 L144.431013,129.094993 L144.431013,131.092344 L136.945462,131.092344 L136.945462,135.406623 L145.251621,135.406623 L145.251621,137.403974 L134.603725,137.403974 L134.603725,123.142887 Z" id="HAZE" fill="#444444"></path>
<path d="M143.113024,53.6529801 L159.552801,53.6529801 L159.552801,65.4304636 L152.885788,65.4304636 L152.885788,67.1660927 L160.256772,67.1660927 L160.256772,70.0588079 L152.885788,70.0588079 L152.885788,71.8357616 L161.457662,71.8357616 L161.457662,74.7698013 L141.373803,74.7698013 L141.373803,71.8357616 L149.738627,71.8357616 L149.738627,70.0588079 L142.616104,70.0588079 L142.616104,67.1660927 L149.738627,67.1660927 L149.738627,65.4304636 L143.113024,65.4304636 L143.113024,53.6529801 Z M156.48846,62.7443709 L156.48846,60.8434437 L152.885788,60.8434437 L152.885788,62.7443709 L156.48846,62.7443709 Z M149.738627,62.7443709 L149.738627,60.8434437 L146.177365,60.8434437 L146.177365,62.7443709 L149.738627,62.7443709 Z M146.177365,58.322649 L149.738627,58.322649 L149.738627,56.3390728 L146.177365,56.3390728 L146.177365,58.322649 Z M152.885788,56.3390728 L152.885788,58.322649 L156.48846,58.322649 L156.48846,56.3390728 L152.885788,56.3390728 Z M133.54731,57.5788079 C132.553469,57.8680795 131.601039,58.1160265 130.648609,58.322649 C131.145529,59.0664901 131.559629,59.8103311 131.973729,60.5954967 C133.05039,60.2649007 134.08564,59.9343046 134.99666,59.6037086 C134.54115,58.8598675 134.04423,58.1986755 133.54731,57.5788079 Z M127.625677,58.8598675 C127.045937,58.9425166 126.549017,58.9838411 126.052096,59.0664901 L125.141076,56.4217219 C130.772839,55.6778808 135.327941,54.3141722 138.806382,52.2892715 L140.214323,54.7274172 C138.930612,55.4299338 137.646902,56.0498013 136.321781,56.5870199 C136.818701,57.2068874 137.274212,57.8680795 137.688312,58.5292715 C138.806382,58.0333775 139.841633,57.4961589 140.752653,56.9589404 L142.533284,59.3144371 C141.001113,60.2235762 139.220482,61.0913907 137.232801,61.8352318 C139.386122,63.9427815 140.504193,66.4635762 140.587013,69.3562914 C140.587013,71.6291391 140.297143,73.1994702 139.758813,74.0259603 C139.013432,75.0177483 137.439852,75.5549669 134.99666,75.5549669 L132.96757,75.5549669 L131.890909,72.6209272 L134.58256,72.6209272 C135.700631,72.6209272 136.404601,72.4143046 136.694471,72.0837086 C137.025751,71.5878146 137.232801,70.6786755 137.232801,69.3562914 L137.232801,69.1909934 C134.37551,71.0092715 130.979889,72.4969536 127.004527,73.7366887 L125.430946,71.4638411 C130.317328,70.141457 134.08564,68.5711258 136.735881,66.7528477 C136.570241,66.3396026 136.446011,65.9676821 136.280371,65.6784106 C133.71295,67.1660927 130.690019,68.3645033 127.128757,69.3562914 L125.555176,67.0421192 C129.530538,66.1329801 132.636289,65.0172185 134.95525,63.7774834 C134.66538,63.4468874 134.37551,63.1576159 134.08564,62.9096689 C131.890909,63.5708609 129.530538,64.1907285 126.963117,64.6866225 L125.472356,62.1245033 C126.756067,61.8765563 127.998367,61.5872848 129.157848,61.3393377 C128.660928,60.4301987 128.164007,59.6037086 127.625677,58.8598675 Z M127.087347,38.9827815 L159.428571,38.9827815 L159.428571,41.8341722 L145.142115,41.8341722 L145.142115,43.1565563 L160.919332,43.1565563 L160.919332,50.0164238 L157.31666,50.0164238 L157.31666,45.76 L145.142115,45.76 L145.142115,52.3719205 L141.415213,52.3719205 L141.415213,45.76 L129.240668,45.76 L129.240668,50.0577483 L125.637996,50.0577483 L125.637996,43.1565563 L141.415213,43.1565563 L141.415213,41.8341722 L127.087347,41.8341722 L127.087347,38.9827815 Z M130.979889,46.9997351 L139.634583,46.9997351 L139.634583,49.1072848 L130.979889,49.1072848 L130.979889,46.9997351 Z M130.979889,50.0990728 L139.551763,50.0990728 L139.551763,52.247947 L130.979889,52.247947 L130.979889,50.0990728 Z M146.881336,46.9997351 L155.49462,46.9997351 L155.49462,49.1072848 L146.881336,49.1072848 L146.881336,46.9997351 Z M146.922746,50.0990728 L155.61885,50.0990728 L155.61885,52.247947 L146.922746,52.247947 L146.922746,50.0990728 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>
<g id="mai" transform="translate(13.458256, 37.536424)" fill="#FFFF00" fill-rule="nonzero">
<path d="M0.0571034537,17.5198676 C0.853516074,7.96357622 8.02122994,0.796357678 19.9674197,0.796357678 C25.9405146,0.796357678 30.3207842,3.58360936 33.9046412,6.7690398 C35.4974665,7.96357622 37.4884981,9.95447023 40.2759423,12.3435431 C46.2490372,3.98178811 55.4077827,0 68.1503852,0 C77.3091306,0 84.8750509,6.7690397 86.8660825,13.5380795 C88.4589078,18.714404 87.2642888,23.4925497 86.4678762,26.2798013 C85.6714636,29.0670529 79.6983687,38.2251656 66.9557662,38.2251656 C58.9916397,38.2251656 51.0275131,34.6415563 43.8597993,27.8725166 C33.5064348,34.2433775 25.9405146,37.428808 20.7638324,37.428808 C6.82661106,37.428808 -0.739309167,27.076159 0.0571034537,17.5198676 Z M33.8181818,17.605673 C31.0455317,15.6279127 28.6689744,14.0457045 26.6885101,13.6501524 C17.1822811,10.485736 9.26042362,12.0679441 8.07214491,18.0012249 C6.88386619,23.9345058 13.6174451,29.4722345 24.7080456,24.7256099 C27.0846029,23.9345058 29.857253,21.5611935 33.8181818,17.605673 Z M49.6920223,21.9612098 C54.4971915,25.9494084 60.9040837,27.5446878 68.912699,27.145868 C80.5251912,26.3482283 81.3260528,19.1694709 80.5251913,16.3777318 C78.9234682,9.59779428 69.3131298,10.395434 65.3088221,11.1930737 C62.5058067,11.9907133 57.3002068,15.5800921 49.6920223,21.9612098 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 52.6 (67491) - http://www.bohemiancoding.com/sketch -->
<title>分组 2</title>
<desc>Created with Sketch.</desc>
<g id="图标" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.14" transform="translate(-76.000000, -3358.000000)">
<g id="分组-3" transform="translate(76.000000, 3358.000000)">
<g id="分组-2">
<g id="Group-15-Copy">
<g id="LYDF-Y">
<g id="Group-6-Copy">
<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="#FFFF00"></path>
</g>
<path d="M74.5335,124.624 C75.9445,124.624 77.1175,124.981 78.0355,125.729 C78.9195,126.443 79.4635,127.429 79.6505,128.653 L77.8485,128.653 C77.6445,127.837 77.2535,127.225 76.6755,126.834 C76.0975,126.443 75.3835,126.256 74.4995,126.256 C73.1905,126.256 72.2045,126.698 71.5415,127.599 C70.9125,128.415 70.6065,129.537 70.6065,130.948 C70.6065,132.41 70.9125,133.532 71.5245,134.331 C72.1705,135.181 73.1735,135.606 74.5335,135.606 C75.4175,135.606 76.1655,135.385 76.7435,134.943 C77.3555,134.467 77.7805,133.753 78.0185,132.801 L79.8205,132.801 C79.5485,134.212 78.9195,135.317 77.9165,136.116 C76.9815,136.864 75.8595,137.238 74.5505,137.238 C72.5615,137.238 71.0655,136.592 70.0625,135.334 C69.1785,134.246 68.7535,132.784 68.7535,130.948 C68.7535,129.146 69.1955,127.684 70.1135,126.545 C71.1335,125.253 72.5955,124.624 74.5335,124.624 Z M86.1785,124.624 C88.0145,124.624 89.4765,125.219 90.5475,126.426 C91.5675,127.565 92.0775,129.078 92.0775,130.948 C92.0775,132.801 91.5675,134.297 90.5475,135.453 C89.4765,136.643 88.0145,137.238 86.1785,137.238 C84.3255,137.238 82.8635,136.626 81.8095,135.436 C80.7895,134.28 80.2965,132.784 80.2965,130.948 C80.2965,129.095 80.7895,127.599 81.8095,126.443 C82.8635,125.219 84.3255,124.624 86.1785,124.624 Z M86.1785,126.256 C84.8865,126.256 83.8835,126.681 83.1695,127.565 C82.4895,128.398 82.1495,129.52 82.1495,130.948 C82.1495,132.359 82.4895,133.481 83.1695,134.314 C83.8835,135.164 84.8865,135.606 86.1785,135.606 C87.4705,135.606 88.4735,135.181 89.1705,134.348 C89.8505,133.532 90.2075,132.393 90.2075,130.948 C90.2075,129.486 89.8505,128.347 89.1705,127.514 C88.4735,126.664 87.4705,126.256 86.1785,126.256 Z M93.0635,124.862 L94.9335,124.862 L101.1385,133.889 L101.2065,133.889 L101.2065,124.862 L103.0595,124.862 L103.0595,137 L101.2575,137 L94.9845,127.871 L94.9165,127.871 L94.9165,137 L93.0635,137 L93.0635,124.862 Z M103.4675,124.862 L105.4735,124.862 L108.9245,134.926 L108.9755,134.926 L112.4095,124.862 L114.4155,124.862 L110.0635,137 L107.8195,137 L103.4675,124.862 Z M114.8065,124.862 L123.5275,124.862 L123.5275,126.443 L116.6595,126.443 L116.6595,129.979 L123.1195,129.979 L123.1195,131.56 L116.6595,131.56 L116.6595,135.419 L123.8165,135.419 L123.8165,137 L114.8065,137 L114.8065,124.862 Z M130.0895,124.624 C131.5005,124.624 132.6735,124.981 133.5915,125.729 C134.4755,126.443 135.0195,127.429 135.2065,128.653 L133.4045,128.653 C133.2005,127.837 132.8095,127.225 132.2315,126.834 C131.6535,126.443 130.9395,126.256 130.0555,126.256 C128.7465,126.256 127.7605,126.698 127.0975,127.599 C126.4685,128.415 126.1625,129.537 126.1625,130.948 C126.1625,132.41 126.4685,133.532 127.0805,134.331 C127.7265,135.181 128.7295,135.606 130.0895,135.606 C130.9735,135.606 131.7215,135.385 132.2995,134.943 C132.9115,134.467 133.3365,133.753 133.5745,132.801 L135.3765,132.801 C135.1045,134.212 134.4755,135.317 133.4725,136.116 C132.5375,136.864 131.4155,137.238 130.1065,137.238 C128.1175,137.238 126.6215,136.592 125.6185,135.334 C124.7345,134.246 124.3095,132.784 124.3095,130.948 C124.3095,129.146 124.7515,127.684 125.6695,126.545 C126.6895,125.253 128.1515,124.624 130.0895,124.624 Z M135.4275,124.862 L145.3725,124.862 L145.3725,126.443 L141.3265,126.443 L141.3265,137 L139.4905,137 L139.4905,126.443 L135.4275,126.443 L135.4275,124.862 Z M145.9845,124.862 L147.8205,124.862 L147.8205,137 L145.9845,137 L145.9845,124.862 Z M154.7225,124.624 C156.5585,124.624 158.0205,125.219 159.0915,126.426 C160.1115,127.565 160.6215,129.078 160.6215,130.948 C160.6215,132.801 160.1115,134.297 159.0915,135.453 C158.0205,136.643 156.5585,137.238 154.7225,137.238 C152.8695,137.238 151.4075,136.626 150.3535,135.436 C149.3335,134.28 148.8405,132.784 148.8405,130.948 C148.8405,129.095 149.3335,127.599 150.3535,126.443 C151.4075,125.219 152.8695,124.624 154.7225,124.624 Z M154.7225,126.256 C153.4305,126.256 152.4275,126.681 151.7135,127.565 C151.0335,128.398 150.6935,129.52 150.6935,130.948 C150.6935,132.359 151.0335,133.481 151.7135,134.314 C152.4275,135.164 153.4305,135.606 154.7225,135.606 C156.0145,135.606 157.0175,135.181 157.7145,134.348 C158.3945,133.532 158.7515,132.393 158.7515,130.948 C158.7515,129.486 158.3945,128.347 157.7145,127.514 C157.0175,126.664 156.0145,126.256 154.7225,126.256 Z M161.6075,124.862 L163.4775,124.862 L169.6825,133.889 L169.7505,133.889 L169.7505,124.862 L171.6035,124.862 L171.6035,137 L169.8015,137 L163.5285,127.871 L163.4605,127.871 L163.4605,137 L161.6075,137 L161.6075,124.862 Z" id="CONVECTION" fill="#444444"></path>
</g>
</g>
</g>
</g>
<path d="M140.43,27.53 L146.7,27.53 L146.7,25.4 L141.51,25.4 L141.51,17.42 L154.77,17.42 L154.77,25.4 L149.52,25.4 L149.52,27.53 L155.73,27.53 L155.73,36.05 L149.52,36.05 L149.52,39.86 C150.6,39.74 151.65,39.59 152.73,39.44 C152.43,38.66 152.1,37.88 151.8,37.16 L154.35,36.47 C155.43,38.96 156.24,41.24 156.81,43.28 L154.32,44.24 C154.08,43.4 153.84,42.62 153.6,41.9 C149.4,42.56 144.99,43.1 140.34,43.55 L139.65,40.82 C142.05,40.64 144.39,40.43 146.7,40.19 L146.7,36.05 L140.43,36.05 L140.43,27.53 Z M153.15,33.62 L153.15,29.96 L149.52,29.96 L149.52,33.62 L153.15,33.62 Z M146.7,33.62 L146.7,29.96 L143.01,29.96 L143.01,33.62 L146.7,33.62 Z M133.26,26.69 L132.75,30.95 L138.96,30.95 C138.96,36.02 138.78,39.41 138.48,41.09 C138.12,42.8 136.56,43.73 133.86,43.88 C133.08,43.88 132.27,43.82 131.46,43.76 L130.77,41.18 C131.58,41.24 132.39,41.3 133.23,41.3 C134.76,41.3 135.63,40.79 135.87,39.8 C136.08,38.78 136.2,36.65 136.2,33.41 L129.9,33.41 L130.83,24.14 L135.96,24.14 L135.96,20.03 L130.17,20.03 L130.17,17.42 L138.63,17.42 L138.63,26.69 L133.26,26.69 Z M152.16,23.03 L152.16,19.76 L144.15,19.76 L144.15,23.03 L152.16,23.03 Z M142.38,50.01 L150.78,50.01 L150.78,44.34 L153.66,44.34 L153.66,50.01 L156.75,50.01 L156.75,52.77 L153.66,52.77 L153.66,68.55 C153.66,70.83 152.46,72 150.09,72 L145.53,72 L144.93,69.21 C146.37,69.33 147.78,69.39 149.1,69.39 C150.21,69.39 150.78,68.85 150.78,67.83 L150.78,52.77 L142.38,52.77 L142.38,50.01 Z M132,52.14 C133.74,54.06 135.39,55.95 136.92,57.87 C137.88,55.41 138.42,52.77 138.57,49.95 L130.59,49.95 L130.59,47.19 L141.12,47.19 L141.12,49.29 C141.06,53.28 140.28,56.94 138.75,60.27 C139.89,61.83 140.94,63.36 141.93,64.89 L139.83,66.99 C139.08,65.67 138.24,64.35 137.31,63 C135.69,65.64 133.53,68.04 130.89,70.26 L129.27,67.77 C131.97,65.73 134.07,63.33 135.6,60.63 C133.98,58.47 132.12,56.22 130.08,53.94 L132,52.14 Z M144.39,55.8 C146.34,58.2 147.84,60.36 148.89,62.22 L146.64,63.78 C145.53,61.83 144.06,59.7 142.23,57.39 L144.39,55.8 Z M138.3,85.33 L137.67,82.93 C137.91,82.84 138.12,82.75 138.24,82.69 C139.29,82.06 140.61,80.41 142.23,77.77 L137.49,77.77 L137.49,75.22 L145.5,75.22 C145.14,74.26 144.75,73.36 144.33,72.52 L147.24,72.04 C147.63,73 148.02,74.05 148.41,75.22 L156.09,75.22 L156.09,77.77 L145.17,77.77 C143.97,79.87 142.92,81.49 141.96,82.63 C144.96,82.42 147.99,82.15 150.99,81.82 C150.42,81.07 149.85,80.32 149.25,79.57 L151.56,78.16 C153.63,80.62 155.22,82.78 156.3,84.64 L153.93,86.29 C153.51,85.57 153.06,84.82 152.58,84.1 C148.2,84.61 143.43,85.03 138.3,85.33 Z M132.3,72.67 C134.1,73.93 135.66,75.22 136.92,76.51 L134.88,78.55 C133.77,77.35 132.21,76.03 130.23,74.65 L132.3,72.67 Z M131.58,79.84 C133.44,81.28 135.03,82.75 136.29,84.19 L134.25,86.23 C133.14,84.85 131.58,83.38 129.54,81.82 L131.58,79.84 Z M134.01,87.94 L136.53,88.9 C135.39,92.74 134.1,96.34 132.69,99.7 L130.08,98.53 C131.58,95.08 132.9,91.54 134.01,87.94 Z M144.18,86.35 L147.06,86.35 L147.06,99.49 L144.18,99.49 L144.18,86.35 Z M139.29,86.35 L142.05,86.35 C141.93,90.31 141.54,93.19 140.88,95.05 C140.16,96.97 138.93,98.62 137.25,100.06 L135.42,97.81 C136.8,96.67 137.76,95.32 138.33,93.76 C138.87,92.26 139.17,89.8 139.29,86.35 Z M153.99,99.79 L152.67,99.79 C150.63,99.79 149.64,98.89 149.64,97.15 L149.64,86.35 L152.34,86.35 L152.34,96.61 C152.34,96.94 152.49,97.15 152.79,97.21 L153.87,97.21 C154.26,97.15 154.47,96.73 154.53,96.01 C154.59,95.23 154.65,94.09 154.65,92.65 L157.14,93.58 C157.14,96.4 156.93,98.14 156.54,98.77 C156.15,99.37 155.31,99.7 153.99,99.79 Z" id="强对流" fill="#444444"></path>
<polygon id="路径" fill="#FFFF00" points="55.5430997 22 90.3710937 22 57.3340026 47.5112653 79.5790431 47.5112653 55.5430997 65.9191972 68.2740247 65.9191972 25 95.8359375 41.3593642 74.2962014 33.4101588 74.2962014 46.3419663 53.649003 36.663737 53.649003"></polygon>
</g>
</g>
<path d="M20.9060001,120.76 L25.9760001,120.76 L25.9760001,118.732 L28.3680001,118.732 L28.3680001,120.76 L33.5680001,120.76 L33.5680001,118.706 L35.9600001,118.706 L35.9600001,120.76 L41.2380001,120.76 L41.2380001,122.944 L35.9600001,122.944 L35.9600001,124.764 L42.6160001,124.764 L42.6160001,126.974 L32.2160001,126.974 L32.2160001,128.508 L39.8080001,128.508 L39.8080001,138.024 L34.5300001,138.024 C37.4940001,138.726 40.1980001,139.584 42.6420001,140.624 L41.3420001,142.652 C38.6640001,141.404 35.9340001,140.442 33.1520001,139.714 L34.2960001,138.024 L27.4320001,138.024 L28.6280001,139.428 C26.3920001,140.728 23.6620001,141.82 20.4380001,142.678 L19.4240001,140.52 C22.3100001,139.87 24.7280001,139.038 26.7040001,138.024 L22.2320001,138.024 L22.2320001,128.508 L29.8240001,128.508 L29.8240001,126.974 L19.4500001,126.974 L19.4500001,124.764 L25.9760001,124.764 L25.9760001,122.944 L20.9060001,122.944 L20.9060001,120.76 Z M33.5680001,124.764 L33.5680001,122.944 L28.3680001,122.944 L28.3680001,124.764 L33.5680001,124.764 Z M37.4420001,135.944 L37.4420001,134.228 L32.2160001,134.228 L32.2160001,135.944 L37.4420001,135.944 Z M29.8240001,135.944 L29.8240001,134.228 L24.5980001,134.228 L24.5980001,135.944 L29.8240001,135.944 Z M24.5980001,132.226 L29.8240001,132.226 L29.8240001,130.562 L24.5980001,130.562 L24.5980001,132.226 Z M32.2160001,130.562 L32.2160001,132.226 L37.4420001,132.226 L37.4420001,130.562 L32.2160001,130.562 Z" id="黄" fill="#444444"></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 52.6 (67491) - http://www.bohemiancoding.com/sketch -->
<title>分组</title>
<desc>Created with Sketch.</desc>
<g id="图标" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.14" transform="translate(-373.000000, -3358.000000)">
<g id="分组-4" transform="translate(373.000000, 3358.000000)">
<g id="分组">
<g id="Group-6-Copy">
<g id="Group-5">
<g id="Group-3-Copy">
<g id="Group-2">
<g id="leidian-cheng">
<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" fill-rule="nonzero"></path>
<polygon id="Shape" fill="#CBCCCC" fill-rule="nonzero" 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" fill-rule="nonzero"></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" fill-rule="nonzero"></path>
<path d="M33.594,128.716 C32.814,129.912 31.904,130.926 30.89,131.732 L29.044,130.016 C30.838,128.508 32.138,126.688 32.944,124.582 L35.31,125.18 C35.154,125.596 34.972,126.012 34.816,126.428 L41.732,126.428 L41.732,128.716 L33.594,128.716 Z M20.906,125.778 L23.35,125.778 L23.35,132.252 L20.906,132.252 L20.906,125.778 Z M25.872,124.972 L28.29,124.972 L28.29,133.084 L25.872,133.084 L25.872,124.972 Z M35.908,129.21 C37.468,129.886 38.872,130.692 40.172,131.628 L38.638,133.37 C37.312,132.33 35.882,131.42 34.374,130.666 L35.908,129.21 Z M19.632,120.292 L25.378,120.292 L25.378,118.706 L27.874,118.706 L27.874,120.292 L34.166,120.292 L34.166,118.706 L36.662,118.706 L36.662,120.292 L42.408,120.292 L42.408,122.606 L36.662,122.606 L36.662,124.27 L34.166,124.27 L34.166,122.606 L27.874,122.606 L27.874,124.244 L25.378,124.244 L25.378,122.606 L19.632,122.606 L19.632,120.292 Z M40.12,133.864 L40.12,139.844 L42.824,139.844 L42.824,142.054 L19.216,142.054 L19.216,139.844 L21.92,139.844 L21.92,133.864 L40.12,133.864 Z M24.286,139.844 L27.146,139.844 L27.146,136.1 L24.286,136.1 L24.286,139.844 Z M29.486,139.844 L32.45,139.844 L32.45,136.1 L29.486,136.1 L29.486,139.844 Z M34.816,139.844 L37.754,139.844 L37.754,136.1 L34.816,136.1 L34.816,139.844 Z" id="蓝" fill="#FFFFFF"></path>
</g>
<path d="M74.5335,124.624 C75.9445,124.624 77.1175,124.981 78.0355,125.729 C78.9195,126.443 79.4635,127.429 79.6505,128.653 L77.8485,128.653 C77.6445,127.837 77.2535,127.225 76.6755,126.834 C76.0975,126.443 75.3835,126.256 74.4995,126.256 C73.1905,126.256 72.2045,126.698 71.5415,127.599 C70.9125,128.415 70.6065,129.537 70.6065,130.948 C70.6065,132.41 70.9125,133.532 71.5245,134.331 C72.1705,135.181 73.1735,135.606 74.5335,135.606 C75.4175,135.606 76.1655,135.385 76.7435,134.943 C77.3555,134.467 77.7805,133.753 78.0185,132.801 L79.8205,132.801 C79.5485,134.212 78.9195,135.317 77.9165,136.116 C76.9815,136.864 75.8595,137.238 74.5505,137.238 C72.5615,137.238 71.0655,136.592 70.0625,135.334 C69.1785,134.246 68.7535,132.784 68.7535,130.948 C68.7535,129.146 69.1955,127.684 70.1135,126.545 C71.1335,125.253 72.5955,124.624 74.5335,124.624 Z M86.1785,124.624 C88.0145,124.624 89.4765,125.219 90.5475,126.426 C91.5675,127.565 92.0775,129.078 92.0775,130.948 C92.0775,132.801 91.5675,134.297 90.5475,135.453 C89.4765,136.643 88.0145,137.238 86.1785,137.238 C84.3255,137.238 82.8635,136.626 81.8095,135.436 C80.7895,134.28 80.2965,132.784 80.2965,130.948 C80.2965,129.095 80.7895,127.599 81.8095,126.443 C82.8635,125.219 84.3255,124.624 86.1785,124.624 Z M86.1785,126.256 C84.8865,126.256 83.8835,126.681 83.1695,127.565 C82.4895,128.398 82.1495,129.52 82.1495,130.948 C82.1495,132.359 82.4895,133.481 83.1695,134.314 C83.8835,135.164 84.8865,135.606 86.1785,135.606 C87.4705,135.606 88.4735,135.181 89.1705,134.348 C89.8505,133.532 90.2075,132.393 90.2075,130.948 C90.2075,129.486 89.8505,128.347 89.1705,127.514 C88.4735,126.664 87.4705,126.256 86.1785,126.256 Z M93.0635,124.862 L94.9335,124.862 L101.1385,133.889 L101.2065,133.889 L101.2065,124.862 L103.0595,124.862 L103.0595,137 L101.2575,137 L94.9845,127.871 L94.9165,127.871 L94.9165,137 L93.0635,137 L93.0635,124.862 Z M103.4675,124.862 L105.4735,124.862 L108.9245,134.926 L108.9755,134.926 L112.4095,124.862 L114.4155,124.862 L110.0635,137 L107.8195,137 L103.4675,124.862 Z M114.8065,124.862 L123.5275,124.862 L123.5275,126.443 L116.6595,126.443 L116.6595,129.979 L123.1195,129.979 L123.1195,131.56 L116.6595,131.56 L116.6595,135.419 L123.8165,135.419 L123.8165,137 L114.8065,137 L114.8065,124.862 Z M130.0895,124.624 C131.5005,124.624 132.6735,124.981 133.5915,125.729 C134.4755,126.443 135.0195,127.429 135.2065,128.653 L133.4045,128.653 C133.2005,127.837 132.8095,127.225 132.2315,126.834 C131.6535,126.443 130.9395,126.256 130.0555,126.256 C128.7465,126.256 127.7605,126.698 127.0975,127.599 C126.4685,128.415 126.1625,129.537 126.1625,130.948 C126.1625,132.41 126.4685,133.532 127.0805,134.331 C127.7265,135.181 128.7295,135.606 130.0895,135.606 C130.9735,135.606 131.7215,135.385 132.2995,134.943 C132.9115,134.467 133.3365,133.753 133.5745,132.801 L135.3765,132.801 C135.1045,134.212 134.4755,135.317 133.4725,136.116 C132.5375,136.864 131.4155,137.238 130.1065,137.238 C128.1175,137.238 126.6215,136.592 125.6185,135.334 C124.7345,134.246 124.3095,132.784 124.3095,130.948 C124.3095,129.146 124.7515,127.684 125.6695,126.545 C126.6895,125.253 128.1515,124.624 130.0895,124.624 Z M135.4275,124.862 L145.3725,124.862 L145.3725,126.443 L141.3265,126.443 L141.3265,137 L139.4905,137 L139.4905,126.443 L135.4275,126.443 L135.4275,124.862 Z M145.9845,124.862 L147.8205,124.862 L147.8205,137 L145.9845,137 L145.9845,124.862 Z M154.7225,124.624 C156.5585,124.624 158.0205,125.219 159.0915,126.426 C160.1115,127.565 160.6215,129.078 160.6215,130.948 C160.6215,132.801 160.1115,134.297 159.0915,135.453 C158.0205,136.643 156.5585,137.238 154.7225,137.238 C152.8695,137.238 151.4075,136.626 150.3535,135.436 C149.3335,134.28 148.8405,132.784 148.8405,130.948 C148.8405,129.095 149.3335,127.599 150.3535,126.443 C151.4075,125.219 152.8695,124.624 154.7225,124.624 Z M154.7225,126.256 C153.4305,126.256 152.4275,126.681 151.7135,127.565 C151.0335,128.398 150.6935,129.52 150.6935,130.948 C150.6935,132.359 151.0335,133.481 151.7135,134.314 C152.4275,135.164 153.4305,135.606 154.7225,135.606 C156.0145,135.606 157.0175,135.181 157.7145,134.348 C158.3945,133.532 158.7515,132.393 158.7515,130.948 C158.7515,129.486 158.3945,128.347 157.7145,127.514 C157.0175,126.664 156.0145,126.256 154.7225,126.256 Z M161.6075,124.862 L163.4775,124.862 L169.6825,133.889 L169.7505,133.889 L169.7505,124.862 L171.6035,124.862 L171.6035,137 L169.8015,137 L163.5285,127.871 L163.4605,127.871 L163.4605,137 L161.6075,137 L161.6075,124.862 Z" id="CONVECTION" fill="#FFFFFF"></path>
</g>
</g>
</g>
</g>
<path d="M140.43,27.53 L146.7,27.53 L146.7,25.4 L141.51,25.4 L141.51,17.42 L154.77,17.42 L154.77,25.4 L149.52,25.4 L149.52,27.53 L155.73,27.53 L155.73,36.05 L149.52,36.05 L149.52,39.86 C150.6,39.74 151.65,39.59 152.73,39.44 C152.43,38.66 152.1,37.88 151.8,37.16 L154.35,36.47 C155.43,38.96 156.24,41.24 156.81,43.28 L154.32,44.24 C154.08,43.4 153.84,42.62 153.6,41.9 C149.4,42.56 144.99,43.1 140.34,43.55 L139.65,40.82 C142.05,40.64 144.39,40.43 146.7,40.19 L146.7,36.05 L140.43,36.05 L140.43,27.53 Z M153.15,33.62 L153.15,29.96 L149.52,29.96 L149.52,33.62 L153.15,33.62 Z M146.7,33.62 L146.7,29.96 L143.01,29.96 L143.01,33.62 L146.7,33.62 Z M133.26,26.69 L132.75,30.95 L138.96,30.95 C138.96,36.02 138.78,39.41 138.48,41.09 C138.12,42.8 136.56,43.73 133.86,43.88 C133.08,43.88 132.27,43.82 131.46,43.76 L130.77,41.18 C131.58,41.24 132.39,41.3 133.23,41.3 C134.76,41.3 135.63,40.79 135.87,39.8 C136.08,38.78 136.2,36.65 136.2,33.41 L129.9,33.41 L130.83,24.14 L135.96,24.14 L135.96,20.03 L130.17,20.03 L130.17,17.42 L138.63,17.42 L138.63,26.69 L133.26,26.69 Z M152.16,23.03 L152.16,19.76 L144.15,19.76 L144.15,23.03 L152.16,23.03 Z M142.38,50.01 L150.78,50.01 L150.78,44.34 L153.66,44.34 L153.66,50.01 L156.75,50.01 L156.75,52.77 L153.66,52.77 L153.66,68.55 C153.66,70.83 152.46,72 150.09,72 L145.53,72 L144.93,69.21 C146.37,69.33 147.78,69.39 149.1,69.39 C150.21,69.39 150.78,68.85 150.78,67.83 L150.78,52.77 L142.38,52.77 L142.38,50.01 Z M132,52.14 C133.74,54.06 135.39,55.95 136.92,57.87 C137.88,55.41 138.42,52.77 138.57,49.95 L130.59,49.95 L130.59,47.19 L141.12,47.19 L141.12,49.29 C141.06,53.28 140.28,56.94 138.75,60.27 C139.89,61.83 140.94,63.36 141.93,64.89 L139.83,66.99 C139.08,65.67 138.24,64.35 137.31,63 C135.69,65.64 133.53,68.04 130.89,70.26 L129.27,67.77 C131.97,65.73 134.07,63.33 135.6,60.63 C133.98,58.47 132.12,56.22 130.08,53.94 L132,52.14 Z M144.39,55.8 C146.34,58.2 147.84,60.36 148.89,62.22 L146.64,63.78 C145.53,61.83 144.06,59.7 142.23,57.39 L144.39,55.8 Z M138.3,85.33 L137.67,82.93 C137.91,82.84 138.12,82.75 138.24,82.69 C139.29,82.06 140.61,80.41 142.23,77.77 L137.49,77.77 L137.49,75.22 L145.5,75.22 C145.14,74.26 144.75,73.36 144.33,72.52 L147.24,72.04 C147.63,73 148.02,74.05 148.41,75.22 L156.09,75.22 L156.09,77.77 L145.17,77.77 C143.97,79.87 142.92,81.49 141.96,82.63 C144.96,82.42 147.99,82.15 150.99,81.82 C150.42,81.07 149.85,80.32 149.25,79.57 L151.56,78.16 C153.63,80.62 155.22,82.78 156.3,84.64 L153.93,86.29 C153.51,85.57 153.06,84.82 152.58,84.1 C148.2,84.61 143.43,85.03 138.3,85.33 Z M132.3,72.67 C134.1,73.93 135.66,75.22 136.92,76.51 L134.88,78.55 C133.77,77.35 132.21,76.03 130.23,74.65 L132.3,72.67 Z M131.58,79.84 C133.44,81.28 135.03,82.75 136.29,84.19 L134.25,86.23 C133.14,84.85 131.58,83.38 129.54,81.82 L131.58,79.84 Z M134.01,87.94 L136.53,88.9 C135.39,92.74 134.1,96.34 132.69,99.7 L130.08,98.53 C131.58,95.08 132.9,91.54 134.01,87.94 Z M144.18,86.35 L147.06,86.35 L147.06,99.49 L144.18,99.49 L144.18,86.35 Z M139.29,86.35 L142.05,86.35 C141.93,90.31 141.54,93.19 140.88,95.05 C140.16,96.97 138.93,98.62 137.25,100.06 L135.42,97.81 C136.8,96.67 137.76,95.32 138.33,93.76 C138.87,92.26 139.17,89.8 139.29,86.35 Z M153.99,99.79 L152.67,99.79 C150.63,99.79 149.64,98.89 149.64,97.15 L149.64,86.35 L152.34,86.35 L152.34,96.61 C152.34,96.94 152.49,97.15 152.79,97.21 L153.87,97.21 C154.26,97.15 154.47,96.73 154.53,96.01 C154.59,95.23 154.65,94.09 154.65,92.65 L157.14,93.58 C157.14,96.4 156.93,98.14 156.54,98.77 C156.15,99.37 155.31,99.7 153.99,99.79 Z" id="强对流" fill="#FFFFFF"></path>
<polygon id="路径" fill="#3265FE" points="55.5430997 22 90.3710937 22 57.3340026 47.5112653 79.5790431 47.5112653 55.5430997 65.9191972 68.2740247 65.9191972 25 95.8359375 41.3593642 74.2962014 33.4101588 74.2962014 46.3419663 53.649003 36.663737 53.649003"></polygon>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="282px" height="156px" viewBox="0 0 282 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 60 (88103) - https://sketch.com -->
<title>编组 5备份</title>
<desc>Created with Sketch.</desc>
<defs>
<circle id="path-1" cx="52.693617" cy="52.693617" r="52.693617"></circle>
<text id="text-3" font-family="PingFangSC-Medium, PingFang SC" font-size="72" font-weight="400" line-spacing="72" fill="#D12821">
<tspan x="12" y="76"></tspan>
</text>
<filter x="-3.5%" y="-3.5%" width="109.7%" height="109.7%" filterUnits="objectBoundingBox" id="filter-4">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
<text id="text-5" font-family="PingFangSC-Medium, PingFang SC" font-size="24" font-weight="400" line-spacing="24" fill="#FFFFFF">
<tspan x="0" y="122">极度危险</tspan>
</text>
<filter x="-2.6%" y="-10.4%" width="107.3%" height="129.2%" filterUnits="objectBoundingBox" id="filter-6">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="图标" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.14" transform="translate(-1543.000000, -1728.000000)">
<g id="编组-5备份" transform="translate(1543.000000, 1728.000000)">
<rect id="矩形" stroke="#636464" stroke-width="4" fill="#D12821" x="2" y="2" width="278" height="152" rx="10"></rect>
<g id="编组-3" transform="translate(20.000000, 20.000000)">
<circle id="椭圆形" fill="#FFFFFF" cx="57.8765957" cy="57.8765957" r="57.8765957"></circle>
<g id="编组-2" transform="translate(5.182979, 5.182979)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="蒙版" fill="#005A3E" xlink:href="#path-1"></use>
<g mask="url(#mask-2)">
<g transform="translate(0.000000, 2.591489)">
<path d="M52.5321246,0 L26.2130603,36.8932382 L29.304365,36.8932382 L14.5060015,58.8023154 L18.9403292,58.8023154 L0,82.0638298 L106.251064,82.0155044 C103.943329,65.6258246 97.673338,55.0513164 87.4410909,50.2919796 C86.0651881,41.6985986 78.7809971,32.1494238 73.6605761,29.1608344 C73.2026581,24.6746645 66.1598409,14.9543864 52.5321246,0 Z" id="路径-8" fill="#FFFFFF"></path>
<g id="编组" stroke-width="1" fill="none" transform="translate(10.797872, 8.638298)">
<path d="M41.2690004,2.84217094e-14 L23.6127249,24.2481783 L27.170827,24.2481783 L11.2678887,46.4261723 L15.9761417,46.4261723 L0,67.8994565 L30.144642,67.8994565 C38.5417851,65.3085862 41.6288493,58.4618609 39.4058345,47.3592806 C35.7575159,34.7756105 31.198752,21.7792111 43.3021393,2.44020257 C43.2957472,2.4114379 42.6180342,1.59803705 41.2690004,2.84217094e-14 Z" id="路径-5" fill="#005A3E"></path>
<path d="M44.2646441,6.81444092 C42.2687249,8.49151204 34.2715756,17.5135659 40.4030394,38.9901556 C46.4122532,57.3441297 43.7836966,62.8854246 39.2295079,67.8994565 C41.8561376,67.8653817 51.0130823,67.8653817 66.700342,67.8994565 C66.1810244,57.6265216 60.614549,47.6732358 50.000916,38.0395991 C41.2088918,29.69017 39.7803126,16.3215031 44.2646441,6.81444092 Z" id="路径-6" fill="#DBB528"></path>
<path d="M46.8728116,6.81440333 C46.9624342,10.0579565 46.2190392,18.4211904 51.7168769,16.4340132 C52.3744462,15.9175732 52.4542053,13.2827128 51.7168769,11.7694711 C55.8386489,14.437156 60.0200187,21.3208077 58.3696704,29.3556488 C58.3408685,31.325255 57.879152,34.535558 63.1873404,34.535558 C64.9918895,33.9787953 62.7672759,30.6900626 62.7672759,30.2358789 C62.7672759,29.7816953 62.4852389,27.5663868 63.1873404,27.1786691 C64.8823483,28.5485976 71.7035435,32.6768469 71.7035435,49.9856746 C71.7532467,51.6957704 73.6408846,54.0890773 75.5766493,53.6690011 C77.512414,53.2489248 78.0512998,51.6389617 76.0195632,48.0833046 C75.756764,46.8435849 75.7312709,45.9497529 76.0195632,45.9497529 C76.3078555,45.9497529 88.2963203,52.3942061 88.2963203,67.8994616 C79.6665567,67.8239439 74.6050051,67.8239439 73.1116656,67.8994616 C73.8945005,60.7165993 67.0130831,48.8359776 52.4674134,32.2575965 C44.6917932,24.4398634 42.4168007,13.9850689 46.8728116,6.81440333 Z" id="路径-7" fill="#D12821"></path>
</g>
</g>
</g>
</g>
</g>
<g id="编组-4" transform="translate(166.000000, 15.000000)">
<rect id="矩形" fill="#FFFFFF" x="0" y="0" width="96" height="96"></rect>
<g id="红" fill="#D12821" fill-opacity="1">
<use filter="url(#filter-4)" xlink:href="#text-3"></use>
<use xlink:href="#text-3"></use>
</g>
<g id="极度危险" fill="#FFFFFF" fill-opacity="1">
<use filter="url(#filter-6)" xlink:href="#text-5"></use>
<use xlink:href="#text-5"></use>
</g>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="282px" height="156px" viewBox="0 0 282 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 60 (88103) - https://sketch.com -->
<title>编组 5备份 2</title>
<desc>Created with Sketch.</desc>
<defs>
<circle id="path-1" cx="52.693617" cy="52.693617" r="52.693617"></circle>
<text id="text-3" font-family="PingFangSC-Medium, PingFang SC" font-size="72" font-weight="400" line-spacing="72" fill="#EC8D15">
<tspan x="12" y="76"></tspan>
</text>
<filter x="-3.5%" y="-3.5%" width="109.7%" height="109.7%" filterUnits="objectBoundingBox" id="filter-4">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
<text id="text-5" font-family="PingFangSC-Medium, PingFang SC" font-size="24" font-weight="400" line-spacing="24" fill="#FFFFFF">
<tspan x="0" y="122">高度危险</tspan>
</text>
<filter x="-2.6%" y="-10.4%" width="107.3%" height="129.2%" filterUnits="objectBoundingBox" id="filter-6">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="图标" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.14" transform="translate(-1543.000000, -1911.000000)">
<g id="编组-5备份-2" transform="translate(1543.000000, 1911.000000)">
<rect id="矩形" stroke="#636464" stroke-width="4" fill="#EC8D15" x="2" y="2" width="278" height="152" rx="10"></rect>
<g id="编组-3" transform="translate(20.000000, 20.000000)">
<circle id="椭圆形" fill="#FFFFFF" cx="57.8765957" cy="57.8765957" r="57.8765957"></circle>
<g id="编组-2" transform="translate(5.182979, 5.182979)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="蒙版" fill="#005A3E" xlink:href="#path-1"></use>
<g mask="url(#mask-2)">
<g transform="translate(0.000000, 2.591489)">
<path d="M52.5321246,0 L26.2130603,36.8932382 L29.304365,36.8932382 L14.5060015,58.8023154 L18.9403292,58.8023154 L0,82.0638298 L106.251064,82.0155044 C103.943329,65.6258246 97.673338,55.0513164 87.4410909,50.2919796 C86.0651881,41.6985986 78.7809971,32.1494238 73.6605761,29.1608344 C73.2026581,24.6746645 66.1598409,14.9543864 52.5321246,0 Z" id="路径-8" fill="#FFFFFF"></path>
<g id="编组" stroke-width="1" fill="none" transform="translate(10.797872, 8.638298)">
<path d="M41.2690004,2.84217094e-14 L23.6127249,24.2481783 L27.170827,24.2481783 L11.2678887,46.4261723 L15.9761417,46.4261723 L0,67.8994565 L30.144642,67.8994565 C38.5417851,65.3085862 41.6288493,58.4618609 39.4058345,47.3592806 C35.7575159,34.7756105 31.198752,21.7792111 43.3021393,2.44020257 C43.2957472,2.4114379 42.6180342,1.59803705 41.2690004,2.84217094e-14 Z" id="路径-5" fill="#005A3E"></path>
<path d="M44.2646441,6.81444092 C42.2687249,8.49151204 34.2715756,17.5135659 40.4030394,38.9901556 C46.4122532,57.3441297 43.7836966,62.8854246 39.2295079,67.8994565 C41.8561376,67.8653817 51.0130823,67.8653817 66.700342,67.8994565 C66.1810244,57.6265216 60.614549,47.6732358 50.000916,38.0395991 C41.2088918,29.69017 39.7803126,16.3215031 44.2646441,6.81444092 Z" id="路径-6" fill="#DBB528"></path>
<path d="M46.8728116,6.81440333 C46.9624342,10.0579565 46.2190392,18.4211904 51.7168769,16.4340132 C52.3744462,15.9175732 52.4542053,13.2827128 51.7168769,11.7694711 C55.8386489,14.437156 60.0200187,21.3208077 58.3696704,29.3556488 C58.3408685,31.325255 57.879152,34.535558 63.1873404,34.535558 C64.9918895,33.9787953 62.7672759,30.6900626 62.7672759,30.2358789 C62.7672759,29.7816953 62.4852389,27.5663868 63.1873404,27.1786691 C64.8823483,28.5485976 71.7035435,32.6768469 71.7035435,49.9856746 C71.7532467,51.6957704 73.6408846,54.0890773 75.5766493,53.6690011 C77.512414,53.2489248 78.0512998,51.6389617 76.0195632,48.0833046 C75.756764,46.8435849 75.7312709,45.9497529 76.0195632,45.9497529 C76.3078555,45.9497529 88.2963203,52.3942061 88.2963203,67.8994616 C79.6665567,67.8239439 74.6050051,67.8239439 73.1116656,67.8994616 C73.8945005,60.7165993 67.0130831,48.8359776 52.4674134,32.2575965 C44.6917932,24.4398634 42.4168007,13.9850689 46.8728116,6.81440333 Z" id="路径-7" fill="#D12821"></path>
</g>
</g>
</g>
</g>
</g>
<g id="编组-4" transform="translate(166.000000, 15.000000)">
<rect id="矩形" fill="#FFFFFF" x="0" y="0" width="96" height="96"></rect>
<g id="橙" fill="#EC8D15" fill-opacity="1">
<use filter="url(#filter-4)" xlink:href="#text-3"></use>
<use xlink:href="#text-3"></use>
</g>
<g id="高度危险" fill="#FFFFFF" fill-opacity="1">
<use filter="url(#filter-6)" xlink:href="#text-5"></use>
<use xlink:href="#text-5"></use>
</g>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="282px" height="156px" viewBox="0 0 282 156" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 60 (88103) - https://sketch.com -->
<title>编组 5</title>
<desc>Created with Sketch.</desc>
<defs>
<circle id="path-1" cx="52.693617" cy="52.693617" r="52.693617"></circle>
<text id="text-3" font-family="PingFangSC-Medium, PingFang SC" font-size="72" font-weight="400" line-spacing="72" fill="#FFFF00">
<tspan x="12" y="76"></tspan>
</text>
<filter x="-3.5%" y="-3.5%" width="109.7%" height="109.7%" filterUnits="objectBoundingBox" id="filter-4">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
<text id="text-5" font-family="PingFangSC-Medium, PingFang SC" font-size="24" font-weight="400" line-spacing="24" fill="#FFFFFF">
<tspan x="0" y="122">较高危险</tspan>
</text>
<filter x="-2.6%" y="-10.4%" width="107.3%" height="129.2%" filterUnits="objectBoundingBox" id="filter-6">
<feOffset dx="1" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="图标" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="预警信号图标11.14" transform="translate(-1543.000000, -2094.000000)">
<g id="编组-5" transform="translate(1543.000000, 2094.000000)">
<rect id="矩形" stroke="#636464" stroke-width="4" fill="#FFFF00" x="2" y="2" width="278" height="152" rx="10"></rect>
<g id="编组-3" transform="translate(20.000000, 20.000000)">
<circle id="椭圆形" fill="#FFFFFF" cx="57.8765957" cy="57.8765957" r="57.8765957"></circle>
<g id="编组-2" transform="translate(5.182979, 5.182979)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="蒙版" fill="#005A3E" xlink:href="#path-1"></use>
<g mask="url(#mask-2)">
<g transform="translate(0.000000, 2.591489)">
<path d="M52.5321246,0 L26.2130603,36.8932382 L29.304365,36.8932382 L14.5060015,58.8023154 L18.9403292,58.8023154 L0,82.0638298 L106.251064,82.0155044 C103.943329,65.6258246 97.673338,55.0513164 87.4410909,50.2919796 C86.0651881,41.6985986 78.7809971,32.1494238 73.6605761,29.1608344 C73.2026581,24.6746645 66.1598409,14.9543864 52.5321246,0 Z" id="路径-8" fill="#FFFFFF"></path>
<g id="编组" stroke-width="1" fill="none" transform="translate(10.797872, 8.638298)">
<path d="M41.2690004,2.84217094e-14 L23.6127249,24.2481783 L27.170827,24.2481783 L11.2678887,46.4261723 L15.9761417,46.4261723 L0,67.8994565 L30.144642,67.8994565 C38.5417851,65.3085862 41.6288493,58.4618609 39.4058345,47.3592806 C35.7575159,34.7756105 31.198752,21.7792111 43.3021393,2.44020257 C43.2957472,2.4114379 42.6180342,1.59803705 41.2690004,2.84217094e-14 Z" id="路径-5" fill="#005A3E"></path>
<path d="M44.2646441,6.81444092 C42.2687249,8.49151204 34.2715756,17.5135659 40.4030394,38.9901556 C46.4122532,57.3441297 43.7836966,62.8854246 39.2295079,67.8994565 C41.8561376,67.8653817 51.0130823,67.8653817 66.700342,67.8994565 C66.1810244,57.6265216 60.614549,47.6732358 50.000916,38.0395991 C41.2088918,29.69017 39.7803126,16.3215031 44.2646441,6.81444092 Z" id="路径-6" fill="#DBB528"></path>
<path d="M46.8728116,6.81440333 C46.9624342,10.0579565 46.2190392,18.4211904 51.7168769,16.4340132 C52.3744462,15.9175732 52.4542053,13.2827128 51.7168769,11.7694711 C55.8386489,14.437156 60.0200187,21.3208077 58.3696704,29.3556488 C58.3408685,31.325255 57.879152,34.535558 63.1873404,34.535558 C64.9918895,33.9787953 62.7672759,30.6900626 62.7672759,30.2358789 C62.7672759,29.7816953 62.4852389,27.5663868 63.1873404,27.1786691 C64.8823483,28.5485976 71.7035435,32.6768469 71.7035435,49.9856746 C71.7532467,51.6957704 73.6408846,54.0890773 75.5766493,53.6690011 C77.512414,53.2489248 78.0512998,51.6389617 76.0195632,48.0833046 C75.756764,46.8435849 75.7312709,45.9497529 76.0195632,45.9497529 C76.3078555,45.9497529 88.2963203,52.3942061 88.2963203,67.8994616 C79.6665567,67.8239439 74.6050051,67.8239439 73.1116656,67.8994616 C73.8945005,60.7165993 67.0130831,48.8359776 52.4674134,32.2575965 C44.6917932,24.4398634 42.4168007,13.9850689 46.8728116,6.81440333 Z" id="路径-7" fill="#D12821"></path>
</g>
</g>
</g>
</g>
</g>
<g id="编组-4" transform="translate(166.000000, 15.000000)">
<rect id="矩形" fill="#FFFFFF" x="0" y="0" width="96" height="96"></rect>
<g id="黄" fill="#FFFF00" fill-opacity="1">
<use filter="url(#filter-4)" xlink:href="#text-3"></use>
<use xlink:href="#text-3"></use>
</g>
<g id="较高危险" fill="#FFFFFF" fill-opacity="1">
<use filter="url(#filter-6)" xlink:href="#text-5"></use>
<use xlink:href="#text-5"></use>
</g>
</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.
@font-face {
font-family: "iconfont"; /* Project id */
src: url('iconfont.ttf?t=1667453284784') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-daohang:before {
content: "\e797";
}
.mapboxgl-map{font:12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;overflow:hidden;position:relative;-webkit-tap-highlight-color:rgb(0 0 0/0)}.mapboxgl-canvas{position:absolute;left:0;top:0}.mapboxgl-map:-webkit-full-screen{width:100%;height:100%}.mapboxgl-canary{background-color:salmon}.mapboxgl-canvas-container.mapboxgl-interactive,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass{cursor:grab;-webkit-user-select:none;user-select:none}.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer{cursor:pointer}.mapboxgl-canvas-container.mapboxgl-interactive:active,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active{cursor:grabbing}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas{touch-action:pan-x pan-y}.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:pinch-zoom}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:none}.mapboxgl-ctrl-bottom-left,.mapboxgl-ctrl-bottom-right,.mapboxgl-ctrl-top-left,.mapboxgl-ctrl-top-right{position:absolute;pointer-events:none;z-index:2}.mapboxgl-ctrl-top-left{top:0;left:0}.mapboxgl-ctrl-top-right{top:0;right:0}.mapboxgl-ctrl-bottom-left{bottom:0;left:0}.mapboxgl-ctrl-bottom-right{right:0;bottom:0}.mapboxgl-ctrl{clear:both;pointer-events:auto;transform:translate(0)}.mapboxgl-ctrl-top-left .mapboxgl-ctrl{margin:10px 0 0 10px;float:left}.mapboxgl-ctrl-top-right .mapboxgl-ctrl{margin:10px 10px 0 0;float:right}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl{margin:0 0 10px 10px;float:left}.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl{margin:0 10px 10px 0;float:right}.mapboxgl-ctrl-group{border-radius:4px;background:#fff}.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px rgb(0 0 0/10%)}@media (-ms-high-contrast:active){.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px ButtonText}}.mapboxgl-ctrl-group button{width:29px;height:29px;display:block;padding:0;outline:none;border:0;box-sizing:border-box;background-color:transparent;cursor:pointer;overflow:hidden}.mapboxgl-ctrl-group button+button{border-top:1px solid #ddd}.mapboxgl-ctrl button .mapboxgl-ctrl-icon{display:block;width:100%;height:100%;background-repeat:no-repeat;background-position:50%}@media (-ms-high-contrast:active){.mapboxgl-ctrl-icon{background-color:transparent}.mapboxgl-ctrl-group button+button{border-top:1px solid ButtonText}}.mapboxgl-ctrl-attrib-button:focus,.mapboxgl-ctrl-group button:focus{box-shadow:0 0 2px 2px rgb(0 150 255/100%)}.mapboxgl-ctrl button:disabled{cursor:not-allowed}.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon{opacity:.25}.mapboxgl-ctrl-group button:first-child{border-radius:4px 4px 0 0}.mapboxgl-ctrl-group button:last-child{border-radius:0 0 4px 4px}.mapboxgl-ctrl-group button:only-child{border-radius:inherit}.mapboxgl-ctrl button:not(:disabled):hover{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-group button:focus:focus-visible{box-shadow:0 0 2px 2px rgb(0 150 255/100%)}.mapboxgl-ctrl-group button:focus:not(:focus-visible){box-shadow:none}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon{animation:mapboxgl-spin 2s linear infinite}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E")}}@keyframes mapboxgl-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}a.mapboxgl-ctrl-logo{width:88px;height:23px;margin:0 0 -4px -4px;display:block;background-repeat:no-repeat;cursor:pointer;overflow:hidden;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='0.9' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E")}a.mapboxgl-ctrl-logo.mapboxgl-compact{width:23px}@media (-ms-high-contrast:active){a.mapboxgl-ctrl-logo{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){a.mapboxgl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23000'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E")}}.mapboxgl-ctrl.mapboxgl-ctrl-attrib{padding:0 5px;background-color:rgb(255 255 255/50%);margin:0}@media screen{.mapboxgl-ctrl-attrib.mapboxgl-compact{min-height:20px;padding:2px 24px 2px 0;margin:10px;position:relative;background-color:#fff;border-radius:12px}.mapboxgl-ctrl-attrib.mapboxgl-compact-show{padding:2px 28px 2px 8px;visibility:visible}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show,.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show{padding:2px 8px 2px 28px;border-radius:12px}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner{display:none}.mapboxgl-ctrl-attrib-button{display:none;cursor:pointer;position:absolute;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");background-color:rgb(255 255 255/50%);width:24px;height:24px;box-sizing:border-box;border-radius:12px;outline:none;top:0;right:0;border:0}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,.mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button{left:0}.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner,.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button{display:block}.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-bottom-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;right:0}.mapboxgl-ctrl-top-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{top:0;right:0}.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{top:0;left:0}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;left:0}}@media screen and (-ms-high-contrast:active){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E")}}@media screen and (-ms-high-contrast:black-on-white){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E")}}.mapboxgl-ctrl-attrib a{color:rgb(0 0 0/75%);text-decoration:none}.mapboxgl-ctrl-attrib a:hover{color:inherit;text-decoration:underline}.mapboxgl-ctrl-attrib .mapbox-improve-map{font-weight:700;margin-left:2px}.mapboxgl-attrib-empty{display:none}.mapboxgl-ctrl-scale{background-color:rgb(255 255 255/75%);font-size:10px;border:2px solid #333;border-top:#333;padding:0 5px;color:#333;box-sizing:border-box;white-space:nowrap}.mapboxgl-popup{position:absolute;top:0;left:0;display:flex;will-change:transform;pointer-events:none}.mapboxgl-popup-anchor-top,.mapboxgl-popup-anchor-top-left,.mapboxgl-popup-anchor-top-right{flex-direction:column}.mapboxgl-popup-anchor-bottom,.mapboxgl-popup-anchor-bottom-left,.mapboxgl-popup-anchor-bottom-right{flex-direction:column-reverse}.mapboxgl-popup-anchor-left{flex-direction:row}.mapboxgl-popup-anchor-right{flex-direction:row-reverse}.mapboxgl-popup-tip{width:0;height:0;border:10px solid transparent;z-index:1}.mapboxgl-popup-anchor-top .mapboxgl-popup-tip{align-self:center;border-top:none;border-bottom-color:#fff}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip{align-self:flex-start;border-top:none;border-left:none;border-bottom-color:#fff}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip{align-self:flex-end;border-top:none;border-right:none;border-bottom-color:#fff}.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip{align-self:center;border-bottom:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip{align-self:flex-start;border-bottom:none;border-left:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip{align-self:flex-end;border-bottom:none;border-right:none;border-top-color:#fff}.mapboxgl-popup-anchor-left .mapboxgl-popup-tip{align-self:center;border-left:none;border-right-color:#fff}.mapboxgl-popup-anchor-right .mapboxgl-popup-tip{align-self:center;border-right:none;border-left-color:#fff}.mapboxgl-popup-close-button{position:absolute;right:0;top:0;border:0;border-radius:0 3px 0 0;cursor:pointer;background-color:transparent}.mapboxgl-popup-close-button:hover{background-color:rgb(0 0 0/5%)}.mapboxgl-popup-content{position:relative;background:#fff;border-radius:3px;box-shadow:0 1px 2px rgb(0 0 0/10%);padding:10px 10px 15px;pointer-events:auto}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content{border-top-left-radius:0}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content{border-top-right-radius:0}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content{border-bottom-left-radius:0}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content{border-bottom-right-radius:0}.mapboxgl-popup-track-pointer{display:none}.mapboxgl-popup-track-pointer *{pointer-events:none;user-select:none}.mapboxgl-map:hover .mapboxgl-popup-track-pointer{display:flex}.mapboxgl-map:active .mapboxgl-popup-track-pointer{display:none}.mapboxgl-marker{position:absolute;top:0;left:0;will-change:transform;opacity:1;transition:opacity .2s}.mapboxgl-user-location-dot,.mapboxgl-user-location-dot:before{background-color:#1da1f2;width:15px;height:15px;border-radius:50%}.mapboxgl-user-location-dot:before{content:"";position:absolute;animation:mapboxgl-user-location-dot-pulse 2s infinite}.mapboxgl-user-location-dot:after{border-radius:50%;border:2px solid #fff;content:"";height:19px;left:-2px;position:absolute;top:-2px;width:19px;box-sizing:border-box;box-shadow:0 0 3px rgb(0 0 0/35%)}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading{width:0;height:0}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{content:"";border-bottom:7.5px solid #4aa1eb;position:absolute}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{border-left:7.5px solid transparent;transform:translateY(-28px) skewY(-20deg)}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after{border-right:7.5px solid transparent;transform:translate(7.5px,-28px) skewY(20deg)}@keyframes mapboxgl-user-location-dot-pulse{0%{transform:scale(1);opacity:1}70%{transform:scale(3);opacity:0}to{transform:scale(1);opacity:0}}.mapboxgl-user-location-dot-stale{background-color:#aaa}.mapboxgl-user-location-dot-stale:after{display:none}.mapboxgl-user-location-accuracy-circle{background-color:rgba(29,161,242,.2);width:1px;height:1px;border-radius:100%}.mapboxgl-crosshair,.mapboxgl-crosshair .mapboxgl-interactive,.mapboxgl-crosshair .mapboxgl-interactive:active{cursor:crosshair}.mapboxgl-boxzoom{position:absolute;top:0;left:0;width:0;height:0;background:#fff;border:2px dotted #202020;opacity:.5}@media print{.mapbox-improve-map{display:none}}.mapboxgl-scroll-zoom-blocker,.mapboxgl-touch-pan-blocker{color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;justify-content:center;text-align:center;position:absolute;display:flex;align-items:center;top:0;left:0;width:100%;height:100%;background:rgb(0 0 0/70%);opacity:0;pointer-events:none;transition:opacity .75s ease-in-out;transition-delay:1s}.mapboxgl-scroll-zoom-blocker-show,.mapboxgl-touch-pan-blocker-show{opacity:1;transition:opacity .1s ease-in-out}.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas{touch-action:pan-x pan-y}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
export interface navItemType {
label: string
value: string
code?: string
navigate?: UniApp.NavigateToOptions
}
// 实况监测
export const liveModules: navItemType[] = [
{
label: '降水监测',
value: 'rain-m',
navigate: {
url: '/pages/business/monitor/rain',
},
},
{
label: '气温监测',
value: 'tem-m',
},
{
label: '大风监测',
value: 'wind-m',
},
{
label: '相对湿度',
value: 'humidness-m',
},
{
label: '雷达拼图',
value: 'radar-m',
},
{
label: '强对流',
value: 'light-m',
},
{
label: '冰雪天气',
value: 'iceSnow-m',
},
{
label: '形势场',
value: 'situation-field-m',
},
{
label: '台风监测',
value: 'typhoon-m',
},
{
label: '卫星云图',
value: 'satellite-m',
},
{
label: '环境监测',
value: 'envir-m',
},
{
label: '水情监测',
value: 'water-m',
},
{
label: '山洪风险',
value: 'torrents-m',
},
{
label: '面雨量/流域风险',
value: 'areal-rainfall-m',
},
{
label: '地质灾害',
value: 'geology-disaster-m',
},
{
label: '森林火险',
value: 'forest-m',
},
]
// 预报信息
export const forecastModules: navItemType[] = [
{
label: '降水预报',
value: 'rain-f',
},
{
label: '气温预报',
value: 'tem-f',
},
{
label: '网格预报',
value: 'grid-f',
},
{
label: '环境预报',
value: 'envir-f',
},
{
label: '大雾预报',
value: 'fog-f',
},
{
label: '面雨量/流域风险',
value: 'areal-rainfall-f',
},
{
label: '山洪风险',
value: 'torrents-f',
},
{
label: '地质灾害',
value: 'geology-disaster-f',
},
{
label: '森林火险',
value: 'forest-fire-f',
},
]
// 气候
export const climateModules: navItemType[] = [
{
label: '降水统计',
value: 'rain-c',
},
{
label: '气温统计',
value: 'tem-c',
},
{
label: '气候服务产品',
value: 'service-product-c',
},
{
label: '中期气候',
value: 'metaphase-climate-c',
},
{
label: '气象干旱',
value: 'drought-c',
},
]
// 天气
export const weatherModules: navItemType[] = [
{
label: '会商材料',
value: 'meeting-materials-w',
},
{
label: '模式产品',
value: 'pattern-product-w',
},
{
label: '重要过程',
value: 'important-process-w',
},
{
label: '值排班',
value: 'be-onduty-w',
},
]
// 省市县
export interface AreaTreeType {
adcode: string
citycode?: string
name: string
level: string
center?: { P: number; Q: number; lng: number; lat: number }
districtList?: AreaTreeType[]
}
export const CITYAREAS: AreaTreeType[] = [
{
adcode: '430000',
name: '湖南省',
center: { P: 27.728921, Q: 111.777057, lng: 111.777057, lat: 27.728921 },
level: 'province',
districtList: [
{
citycode: '0731',
adcode: '430100',
name: '长沙市',
center: { P: 28.19409, Q: 112.982279, lng: 112.982279, lat: 28.19409 },
level: 'city',
districtList: [
{
citycode: '0731',
adcode: '430103',
name: '天心区',
center: { P: 28.192375, Q: 112.97307, lng: 112.97307, lat: 28.192375 },
level: 'district',
},
{
citycode: '0731',
adcode: '430105',
name: '开福区',
center: { P: 28.201336, Q: 112.985525, lng: 112.985525, lat: 28.201336 },
level: 'district',
},
{
citycode: '0731',
adcode: '430104',
name: '岳麓区',
center: { P: 28.213044, Q: 112.91159099999999, lng: 112.911591, lat: 28.213044 },
level: 'district',
},
{
citycode: '0731',
adcode: '430181',
name: '浏阳市',
center: { P: 28.141112, Q: 113.63330100000002, lng: 113.633301, lat: 28.141112 },
level: 'district',
},
{
citycode: '0731',
adcode: '430111',
name: '雨花区',
center: { P: 28.109937, Q: 113.01633700000002, lng: 113.016337, lat: 28.109937 },
level: 'district',
},
{
citycode: '0731',
adcode: '430121',
name: '长沙县',
center: { P: 28.237888, Q: 113.08009800000002, lng: 113.080098, lat: 28.237888 },
level: 'district',
},
{
citycode: '0731',
adcode: '430102',
name: '芙蓉区',
center: { P: 28.193106, Q: 112.98809399999999, lng: 112.988094, lat: 28.193106 },
level: 'district',
},
{
citycode: '0731',
adcode: '430182',
name: '宁乡市',
center: { P: 28.253928, Q: 112.55318199999999, lng: 112.553182, lat: 28.253928 },
level: 'district',
},
{
citycode: '0731',
adcode: '430112',
name: '望城区',
center: { P: 28.347458, Q: 112.819549, lng: 112.819549, lat: 28.347458 },
level: 'district',
},
],
},
{
citycode: '0733',
adcode: '430200',
name: '株洲市',
center: { P: 27.835806, Q: 113.15173700000003, lng: 113.151737, lat: 27.835806 },
level: 'city',
districtList: [
{
citycode: '0733',
adcode: '430202',
name: '荷塘区',
center: { P: 27.833036, Q: 113.16254800000002, lng: 113.162548, lat: 27.833036 },
level: 'district',
},
{
citycode: '0733',
adcode: '430223',
name: '攸县',
center: { P: 27.000071, Q: 113.345774, lng: 113.345774, lat: 27.000071 },
level: 'district',
},
{
citycode: '0733',
adcode: '430224',
name: '茶陵县',
center: { P: 26.789534, Q: 113.54650900000001, lng: 113.546509, lat: 26.789534 },
level: 'district',
},
{
citycode: '0733',
adcode: '430225',
name: '炎陵县',
center: { P: 26.489459, Q: 113.776884, lng: 113.776884, lat: 26.489459 },
level: 'district',
},
{
citycode: '0733',
adcode: '430211',
name: '天元区',
center: { P: 27.826909, Q: 113.13625200000001, lng: 113.136252, lat: 27.826909 },
level: 'district',
},
{
citycode: '0733',
adcode: '430203',
name: '芦淞区',
center: { P: 27.827246, Q: 113.155169, lng: 113.155169, lat: 27.827246 },
level: 'district',
},
{
citycode: '0733',
adcode: '430212',
name: '渌口区',
center: { P: 27.705844, Q: 113.14617599999997, lng: 113.146176, lat: 27.705844 },
level: 'district',
},
{
citycode: '0733',
adcode: '430204',
name: '石峰区',
center: { P: 27.871945, Q: 113.11295000000001, lng: 113.11295, lat: 27.871945 },
level: 'district',
},
{
citycode: '0733',
adcode: '430281',
name: '醴陵市',
center: { P: 27.657873, Q: 113.507157, lng: 113.507157, lat: 27.657873 },
level: 'district',
},
],
},
{
citycode: '0732',
adcode: '430300',
name: '湘潭市',
center: { P: 27.82973, Q: 112.944052, lng: 112.944052, lat: 27.82973 },
level: 'city',
districtList: [
{
citycode: '0732',
adcode: '430304',
name: '岳塘区',
center: { P: 27.828854, Q: 112.927707, lng: 112.927707, lat: 27.828854 },
level: 'district',
},
{
citycode: '0732',
adcode: '430302',
name: '雨湖区',
center: { P: 27.86077, Q: 112.90742699999998, lng: 112.907427, lat: 27.86077 },
level: 'district',
},
{
citycode: '0732',
adcode: '430321',
name: '湘潭县',
center: { P: 27.778601, Q: 112.95282900000001, lng: 112.952829, lat: 27.778601 },
level: 'district',
},
{
citycode: '0732',
adcode: '430382',
name: '韶山市',
center: { P: 27.922682, Q: 112.52848, lng: 112.52848, lat: 27.922682 },
level: 'district',
},
{
citycode: '0732',
adcode: '430381',
name: '湘乡市',
center: { P: 27.734918, Q: 112.525217, lng: 112.525217, lat: 27.734918 },
level: 'district',
},
],
},
{
citycode: '0734',
adcode: '430400',
name: '衡阳市',
center: { P: 26.900358, Q: 112.60769299999998, lng: 112.607693, lat: 26.900358 },
level: 'city',
districtList: [
{
citycode: '0734',
adcode: '430423',
name: '衡山县',
center: { P: 27.234808, Q: 112.86971, lng: 112.86971, lat: 27.234808 },
level: 'district',
},
{
citycode: '0734',
adcode: '430424',
name: '衡东县',
center: { P: 27.083531, Q: 112.95041200000003, lng: 112.950412, lat: 27.083531 },
level: 'district',
},
{
citycode: '0734',
adcode: '430412',
name: '南岳区',
center: { P: 27.240536, Q: 112.73414700000001, lng: 112.734147, lat: 27.240536 },
level: 'district',
},
{
citycode: '0734',
adcode: '430421',
name: '衡阳县',
center: { P: 26.962388, Q: 112.37964299999999, lng: 112.379643, lat: 26.962388 },
level: 'district',
},
{
citycode: '0734',
adcode: '430405',
name: '珠晖区',
center: { P: 26.891063, Q: 112.62632400000001, lng: 112.626324, lat: 26.891063 },
level: 'district',
},
{
citycode: '0734',
adcode: '430406',
name: '雁峰区',
center: { P: 26.893694, Q: 112.61224099999998, lng: 112.612241, lat: 26.893694 },
level: 'district',
},
{
citycode: '0734',
adcode: '430426',
name: '祁东县',
center: { P: 26.787109, Q: 112.11119200000002, lng: 112.111192, lat: 26.787109 },
level: 'district',
},
{
citycode: '0734',
adcode: '430407',
name: '石鼓区',
center: { P: 26.903908, Q: 112.60763500000002, lng: 112.607635, lat: 26.903908 },
level: 'district',
},
{
citycode: '0734',
adcode: '430422',
name: '衡南县',
center: { P: 26.739973, Q: 112.677459, lng: 112.677459, lat: 26.739973 },
level: 'district',
},
{
citycode: '0734',
adcode: '430481',
name: '耒阳市',
center: { P: 26.414162, Q: 112.847215, lng: 112.847215, lat: 26.414162 },
level: 'district',
},
{
citycode: '0734',
adcode: '430408',
name: '蒸湘区',
center: { P: 26.89087, Q: 112.570608, lng: 112.570608, lat: 26.89087 },
level: 'district',
},
{
citycode: '0734',
adcode: '430482',
name: '常宁市',
center: { P: 26.406773, Q: 112.39682099999999, lng: 112.396821, lat: 26.406773 },
level: 'district',
},
],
},
{
citycode: '0739',
adcode: '430500',
name: '邵阳市',
center: { P: 27.237842, Q: 111.46922999999998, lng: 111.46923, lat: 27.237842 },
level: 'city',
districtList: [
{
citycode: '0739',
adcode: '430524',
name: '隆回县',
center: { P: 27.116002, Q: 111.03878500000002, lng: 111.038785, lat: 27.116002 },
level: 'district',
},
{
citycode: '0739',
adcode: '430511',
name: '北塔区',
center: { P: 27.245688, Q: 111.452315, lng: 111.452315, lat: 27.245688 },
level: 'district',
},
{
citycode: '0739',
adcode: '430523',
name: '邵阳县',
center: { P: 26.989713, Q: 111.27570000000003, lng: 111.2757, lat: 26.989713 },
level: 'district',
},
{
citycode: '0739',
adcode: '430502',
name: '双清区',
center: { P: 27.240001, Q: 111.47975600000001, lng: 111.479756, lat: 27.240001 },
level: 'district',
},
{
citycode: '0739',
adcode: '430503',
name: '大祥区',
center: { P: 27.233593, Q: 111.46296799999999, lng: 111.462968, lat: 27.233593 },
level: 'district',
},
{
citycode: '0739',
adcode: '430527',
name: '绥宁县',
center: { P: 26.580622, Q: 110.15507500000001, lng: 110.155075, lat: 26.580622 },
level: 'district',
},
{
citycode: '0739',
adcode: '430528',
name: '新宁县',
center: { P: 26.438912, Q: 110.85911499999997, lng: 110.859115, lat: 26.438912 },
level: 'district',
},
{
citycode: '0739',
adcode: '430529',
name: '城步苗族自治县',
center: { P: 26.363575, Q: 110.31322599999999, lng: 110.313226, lat: 26.363575 },
level: 'district',
},
{
citycode: '0739',
adcode: '430581',
name: '武冈市',
center: { P: 26.732086, Q: 110.63680399999998, lng: 110.636804, lat: 26.732086 },
level: 'district',
},
{
citycode: '0739',
adcode: '430525',
name: '洞口县',
center: { P: 27.062286, Q: 110.57921199999998, lng: 110.579212, lat: 27.062286 },
level: 'district',
},
{
citycode: '0739',
adcode: '430521',
name: '邵东县',
center: { P: 27.257273, Q: 111.74316799999997, lng: 111.743168, lat: 27.257273 },
level: 'district',
},
{
citycode: '0739',
adcode: '430522',
name: '新邵县',
center: { P: 27.311429, Q: 111.45976200000001, lng: 111.459762, lat: 27.311429 },
level: 'district',
},
],
},
{
citycode: '0730',
adcode: '430600',
name: '岳阳市',
center: { P: 29.37029, Q: 113.132855, lng: 113.132855, lat: 29.37029 },
level: 'city',
districtList: [
{
citycode: '0730',
adcode: '430603',
name: '云溪区',
center: { P: 29.473395, Q: 113.27386999999999, lng: 113.27387, lat: 29.473395 },
level: 'district',
},
{
citycode: '0730',
adcode: '430623',
name: '华容县',
center: { P: 29.524107, Q: 112.559369, lng: 112.559369, lat: 29.524107 },
level: 'district',
},
{
citycode: '0730',
adcode: '430602',
name: '岳阳楼区',
center: { P: 29.366784, Q: 113.12075099999998, lng: 113.120751, lat: 29.366784 },
level: 'district',
},
{
citycode: '0730',
adcode: '430611',
name: '君山区',
center: { P: 29.438062, Q: 113.00408199999998, lng: 113.004082, lat: 29.438062 },
level: 'district',
},
{
citycode: '0730',
adcode: '430681',
name: '汨罗市',
center: { P: 28.803149, Q: 113.07941900000003, lng: 113.079419, lat: 28.803149 },
level: 'district',
},
{
citycode: '0730',
adcode: '430624',
name: '湘阴县',
center: { P: 28.677498, Q: 112.889748, lng: 112.889748, lat: 28.677498 },
level: 'district',
},
{
citycode: '0730',
adcode: '430621',
name: '岳阳县',
center: { P: 29.144843, Q: 113.11607300000003, lng: 113.116073, lat: 29.144843 },
level: 'district',
},
{
citycode: '0730',
adcode: '430682',
name: '临湘市',
center: { P: 29.471594, Q: 113.45080899999999, lng: 113.450809, lat: 29.471594 },
level: 'district',
},
{
citycode: '0730',
adcode: '430626',
name: '平江县',
center: { P: 28.701523, Q: 113.593751, lng: 113.593751, lat: 28.701523 },
level: 'district',
},
],
},
{
citycode: '0744',
adcode: '430800',
name: '张家界市',
center: { P: 29.127401, Q: 110.47992099999999, lng: 110.479921, lat: 29.127401 },
level: 'city',
districtList: [
{
citycode: '0744',
adcode: '430821',
name: '慈利县',
center: { P: 29.423876, Q: 111.132702, lng: 111.132702, lat: 29.423876 },
level: 'district',
},
{
citycode: '0744',
adcode: '430811',
name: '武陵源区',
center: { P: 29.347827, Q: 110.54757999999998, lng: 110.54758, lat: 29.347827 },
level: 'district',
},
{
citycode: '0744',
adcode: '430822',
name: '桑植县',
center: { P: 29.399939, Q: 110.164039, lng: 110.164039, lat: 29.399939 },
level: 'district',
},
{
citycode: '0744',
adcode: '430802',
name: '永定区',
center: { P: 29.125961, Q: 110.48455899999999, lng: 110.484559, lat: 29.125961 },
level: 'district',
},
],
},
{
citycode: '0737',
adcode: '430900',
name: '益阳市',
center: { P: 28.570066, Q: 112.35504200000003, lng: 112.355042, lat: 28.570066 },
level: 'city',
districtList: [
{
citycode: '0737',
adcode: '430921',
name: '南县',
center: { P: 29.372181, Q: 112.41039899999998, lng: 112.410399, lat: 29.372181 },
level: 'district',
},
{
citycode: '0737',
adcode: '430981',
name: '沅江市',
center: { P: 28.839713, Q: 112.361088, lng: 112.361088, lat: 28.839713 },
level: 'district',
},
{
citycode: '0737',
adcode: '430902',
name: '资阳区',
center: { P: 28.592771, Q: 112.33083999999997, lng: 112.33084, lat: 28.592771 },
level: 'district',
},
{
citycode: '0737',
adcode: '430922',
name: '桃江县',
center: { P: 28.520993, Q: 112.13973199999998, lng: 112.139732, lat: 28.520993 },
level: 'district',
},
{
citycode: '0737',
adcode: '430903',
name: '赫山区',
center: { P: 28.568327, Q: 112.36094600000001, lng: 112.360946, lat: 28.568327 },
level: 'district',
},
{
citycode: '0737',
adcode: '430923',
name: '安化县',
center: { P: 28.377421, Q: 111.22182399999997, lng: 111.221824, lat: 28.377421 },
level: 'district',
},
],
},
{
citycode: '0736',
adcode: '430700',
name: '常德市',
center: { P: 29.040225, Q: 111.69134700000001, lng: 111.691347, lat: 29.040225 },
level: 'city',
districtList: [
{
citycode: '0736',
adcode: '430726',
name: '石门县',
center: { P: 29.584703, Q: 111.37908700000003, lng: 111.379087, lat: 29.584703 },
level: 'district',
},
{
citycode: '0736',
adcode: '430723',
name: '澧县',
center: { P: 29.64264, Q: 111.76168200000001, lng: 111.761682, lat: 29.64264 },
level: 'district',
},
{
citycode: '0736',
adcode: '430724',
name: '临澧县',
center: { P: 29.443217, Q: 111.645602, lng: 111.645602, lat: 29.443217 },
level: 'district',
},
{
citycode: '0736',
adcode: '430781',
name: '津市市',
center: { P: 29.630867, Q: 111.87960900000002, lng: 111.879609, lat: 29.630867 },
level: 'district',
},
{
citycode: '0736',
adcode: '430702',
name: '武陵区',
center: { P: 29.040477, Q: 111.690718, lng: 111.690718, lat: 29.040477 },
level: 'district',
},
{
citycode: '0736',
adcode: '430722',
name: '汉寿县',
center: { P: 28.907319, Q: 111.96850599999999, lng: 111.968506, lat: 28.907319 },
level: 'district',
},
{
citycode: '0736',
adcode: '430703',
name: '鼎城区',
center: { P: 29.014426, Q: 111.68532700000003, lng: 111.685327, lat: 29.014426 },
level: 'district',
},
{
citycode: '0736',
adcode: '430725',
name: '桃源县',
center: { P: 28.902734, Q: 111.48450300000002, lng: 111.484503, lat: 28.902734 },
level: 'district',
},
{
citycode: '0736',
adcode: '430721',
name: '安乡县',
center: { P: 29.414483, Q: 112.17228899999998, lng: 112.172289, lat: 29.414483 },
level: 'district',
},
],
},
{
citycode: '0738',
adcode: '431300',
name: '娄底市',
center: { P: 27.728136, Q: 112.00849700000003, lng: 112.008497, lat: 27.728136 },
level: 'city',
districtList: [
{
citycode: '0738',
adcode: '431381',
name: '冷水江市',
center: { P: 27.685759, Q: 111.43467399999997, lng: 111.434674, lat: 27.685759 },
level: 'district',
},
{
citycode: '0738',
adcode: '431322',
name: '新化县',
center: { P: 27.737456, Q: 111.30674699999997, lng: 111.306747, lat: 27.737456 },
level: 'district',
},
{
citycode: '0738',
adcode: '431382',
name: '涟源市',
center: { P: 27.692301, Q: 111.67084699999998, lng: 111.670847, lat: 27.692301 },
level: 'district',
},
{
citycode: '0738',
adcode: '431321',
name: '双峰县',
center: { P: 27.459126, Q: 112.19824499999999, lng: 112.198245, lat: 27.459126 },
level: 'district',
},
{
citycode: '0738',
adcode: '431302',
name: '娄星区',
center: { P: 27.726643, Q: 112.008486, lng: 112.008486, lat: 27.726643 },
level: 'district',
},
],
},
{
citycode: '0735',
adcode: '431000',
name: '郴州市',
center: { P: 25.793589, Q: 113.03206699999998, lng: 113.032067, lat: 25.793589 },
level: 'city',
districtList: [
{
citycode: '0735',
adcode: '431028',
name: '安仁县',
center: { P: 26.708625, Q: 113.27217000000002, lng: 113.27217, lat: 26.708625 },
level: 'district',
},
{
citycode: '0735',
adcode: '431023',
name: '永兴县',
center: { P: 26.129392, Q: 113.11481900000001, lng: 113.114819, lat: 26.129392 },
level: 'district',
},
{
citycode: '0735',
adcode: '431081',
name: '资兴市',
center: { P: 25.974152, Q: 113.23681999999997, lng: 113.23682, lat: 25.974152 },
level: 'district',
},
{
citycode: '0735',
adcode: '431027',
name: '桂东县',
center: { P: 26.073917, Q: 113.94587899999999, lng: 113.945879, lat: 26.073917 },
level: 'district',
},
{
citycode: '0735',
adcode: '431003',
name: '苏仙区',
center: { P: 25.793157, Q: 113.03869800000001, lng: 113.038698, lat: 25.793157 },
level: 'district',
},
{
citycode: '0735',
adcode: '431026',
name: '汝城县',
center: { P: 25.553759, Q: 113.68568600000003, lng: 113.685686, lat: 25.553759 },
level: 'district',
},
{
citycode: '0735',
adcode: '431002',
name: '北湖区',
center: { P: 25.792628, Q: 113.03220799999997, lng: 113.032208, lat: 25.792628 },
level: 'district',
},
{
citycode: '0735',
adcode: '431025',
name: '临武县',
center: { P: 25.279119, Q: 112.56458900000001, lng: 112.564589, lat: 25.279119 },
level: 'district',
},
{
citycode: '0735',
adcode: '431021',
name: '桂阳县',
center: { P: 25.737447, Q: 112.734466, lng: 112.734466, lat: 25.737447 },
level: 'district',
},
{
citycode: '0735',
adcode: '431022',
name: '宜章县',
center: { P: 25.394345, Q: 112.94788399999999, lng: 112.947884, lat: 25.394345 },
level: 'district',
},
{
citycode: '0735',
adcode: '431024',
name: '嘉禾县',
center: { P: 25.587309, Q: 112.37061799999998, lng: 112.370618, lat: 25.587309 },
level: 'district',
},
],
},
{
citycode: '0746',
adcode: '431100',
name: '永州市',
center: { P: 26.434516, Q: 111.60801900000001, lng: 111.608019, lat: 26.434516 },
level: 'city',
districtList: [
{
citycode: '0746',
adcode: '431122',
name: '东安县',
center: { P: 26.397278, Q: 111.31303500000001, lng: 111.313035, lat: 26.397278 },
level: 'district',
},
{
citycode: '0746',
adcode: '431121',
name: '祁阳县',
center: { P: 26.585929, Q: 111.85734000000002, lng: 111.85734, lat: 26.585929 },
level: 'district',
},
{
citycode: '0746',
adcode: '431103',
name: '冷水滩区',
center: { P: 26.434364, Q: 111.60715600000003, lng: 111.607156, lat: 26.434364 },
level: 'district',
},
{
citycode: '0746',
adcode: '431102',
name: '零陵区',
center: { P: 26.223347, Q: 111.62634800000001, lng: 111.626348, lat: 26.223347 },
level: 'district',
},
{
citycode: '0746',
adcode: '431128',
name: '新田县',
center: { P: 25.906927, Q: 112.22034100000002, lng: 112.220341, lat: 25.906927 },
level: 'district',
},
{
citycode: '0746',
adcode: '431126',
name: '宁远县',
center: { P: 25.584112, Q: 111.94452899999999, lng: 111.944529, lat: 25.584112 },
level: 'district',
},
{
citycode: '0746',
adcode: '431124',
name: '道县',
center: { P: 25.518444, Q: 111.59161399999999, lng: 111.591614, lat: 25.518444 },
level: 'district',
},
{
citycode: '0746',
adcode: '431125',
name: '江永县',
center: { P: 25.268154, Q: 111.34680300000002, lng: 111.346803, lat: 25.268154 },
level: 'district',
},
{
citycode: '0746',
adcode: '431129',
name: '江华瑶族自治县',
center: { P: 25.182596, Q: 111.57727599999998, lng: 111.577276, lat: 25.182596 },
level: 'district',
},
{
citycode: '0746',
adcode: '431123',
name: '双牌县',
center: { P: 25.959397, Q: 111.662146, lng: 111.662146, lat: 25.959397 },
level: 'district',
},
{
citycode: '0746',
adcode: '431127',
name: '蓝山县',
center: { P: 25.375255, Q: 112.19419499999998, lng: 112.194195, lat: 25.375255 },
level: 'district',
},
],
},
{
citycode: '0745',
adcode: '431200',
name: '怀化市',
center: { P: 27.550082, Q: 109.97824000000003, lng: 109.97824, lat: 27.550082 },
level: 'city',
districtList: [
{
citycode: '0745',
adcode: '431228',
name: '芷江侗族自治县',
center: { P: 27.437996, Q: 109.68777699999998, lng: 109.687777, lat: 27.437996 },
level: 'district',
},
{
citycode: '0745',
adcode: '431281',
name: '洪江市',
center: { P: 27.201876, Q: 109.83176500000002, lng: 109.831765, lat: 27.201876 },
level: 'district',
},
{
citycode: '0745',
adcode: '431230',
name: '通道侗族自治县',
center: { P: 26.158349, Q: 109.78335900000002, lng: 109.783359, lat: 26.158349 },
level: 'district',
},
{
citycode: '0745',
adcode: '431223',
name: '辰溪县',
center: { P: 28.005474, Q: 110.19695300000001, lng: 110.196953, lat: 28.005474 },
level: 'district',
},
{
citycode: '0745',
adcode: '431222',
name: '沅陵县',
center: { P: 28.455554, Q: 110.39916099999999, lng: 110.399161, lat: 28.455554 },
level: 'district',
},
{
citycode: '0745',
adcode: '431224',
name: '溆浦县',
center: { P: 27.903802, Q: 110.59337299999999, lng: 110.593373, lat: 27.903802 },
level: 'district',
},
{
citycode: '0745',
adcode: '431229',
name: '靖州苗族侗族自治县',
center: { P: 26.573511, Q: 109.69115899999997, lng: 109.691159, lat: 26.573511 },
level: 'district',
},
{
citycode: '0745',
adcode: '431225',
name: '会同县',
center: { P: 26.870789, Q: 109.72078499999998, lng: 109.720785, lat: 26.870789 },
level: 'district',
},
{
citycode: '0745',
adcode: '431226',
name: '麻阳苗族自治县',
center: { P: 27.865991, Q: 109.80280700000003, lng: 109.802807, lat: 27.865991 },
level: 'district',
},
{
citycode: '0745',
adcode: '431227',
name: '新晃侗族自治县',
center: { P: 27.359897, Q: 109.174443, lng: 109.174443, lat: 27.359897 },
level: 'district',
},
{
citycode: '0745',
adcode: '431221',
name: '中方县',
center: { P: 27.43736, Q: 109.948061, lng: 109.948061, lat: 27.43736 },
level: 'district',
},
{
citycode: '0745',
adcode: '431202',
name: '鹤城区',
center: { P: 27.548474, Q: 109.98224199999999, lng: 109.982242, lat: 27.548474 },
level: 'district',
},
],
},
{
citycode: '0743',
adcode: '433100',
name: '湘西州',
center: { P: 28.314296, Q: 109.739735, lng: 109.739735, lat: 28.314296 },
level: 'city',
districtList: [
{
citycode: '0743',
adcode: '433127',
name: '永顺县',
center: { P: 28.998068, Q: 109.85329200000001, lng: 109.853292, lat: 28.998068 },
level: 'district',
},
{
citycode: '0743',
adcode: '433125',
name: '保靖县',
center: { P: 28.709605, Q: 109.65144499999997, lng: 109.651445, lat: 28.709605 },
level: 'district',
},
{
citycode: '0743',
adcode: '433124',
name: '花垣县',
center: { P: 28.581352, Q: 109.479063, lng: 109.479063, lat: 28.581352 },
level: 'district',
},
{
citycode: '0743',
adcode: '433101',
name: '吉首市',
center: { P: 28.314827, Q: 109.73827299999999, lng: 109.738273, lat: 28.314827 },
level: 'district',
},
{
citycode: '0743',
adcode: '433126',
name: '古丈县',
center: { P: 28.616973, Q: 109.949592, lng: 109.949592, lat: 28.616973 },
level: 'district',
},
{
citycode: '0743',
adcode: '433122',
name: '泸溪县',
center: { P: 28.214516, Q: 110.214428, lng: 110.214428, lat: 28.214516 },
level: 'district',
},
{
citycode: '0743',
adcode: '433130',
name: '龙山县',
center: { P: 29.453438, Q: 109.44118900000001, lng: 109.441189, lat: 29.453438 },
level: 'district',
},
{
citycode: '0743',
adcode: '433123',
name: '凤凰县',
center: { P: 27.948308, Q: 109.59919100000002, lng: 109.599191, lat: 27.948308 },
level: 'district',
},
],
},
],
},
]
// 高德
export const A_MAP_KEY = 'd06eccc211f568255ab187bc634de511' // 旧20893380130f7a850e932949b35a4ce5 d06eccc211f568255ab187bc634de511
export const A_MAP_URL = `//webapi.amap.com/maps?v=2.0&key=${A_MAP_KEY}`
// 获取文件类型
export function getFileTypeName(dictionaryId: number): string {
switch (dictionaryId) {
case 1:
case 5:
return 'hjqx'
case 2:
return 'syjc'
case 3:
case 26:
return 'slhx'
case 4:
return 'qxyj'
case 10:
return 'zqyb'
case 12:
return 'dzzh'
case 13:
return 'zdzb'
case 14:
return 'qxzt'
case 15:
return 'jcts'
case 16:
return 'fxkh'
case 17:
return 'dqqh'
case 18:
return 'myzb'
case 19:
return 'qxbz'
case 20:
return 'mrfw'
case 21:
return 'tqgb'
case 22:
return 'kqzl'
case 23:
return 'qhgb'
case 24:
return 'tqyp'
case 25:
return 'qxkb'
case 27:
return 'ysqb'
case 28:
return 'shfx'
default:
return 'others'
}
}
type WranTypes = {
level: number
color?: string
text: string
text1?: string
roman?: string
description?: string
}[]
// 预警类型
export const WarnTypes = [
{ label: '大风', value: 'df' },
{ label: '冰雹', value: 'bb' },
{ label: '暴雪', value: 'bx' },
{ label: '暴雨', value: 'by' },
{ label: '大雾', value: 'dw' },
{ label: '低温雨雪冰冻', value: 'dwbd' },
{ label: '干旱', value: 'gh' },
{ label: '高温', value: 'gw' },
{ label: '寒潮', value: 'hc' },
{ label: '道路结冰', value: 'jb' },
{ label: '雷电', value: 'ld' },
{ label: '雷雨大风', value: 'lf' },
{ label: '霾', value: 'm' },
{ label: '重污染天气', value: 'zwr' },
{ label: '强对流', value: 'qdl' },
{ label: '森林火险', value: 'slhx' },
]
// 预警等级
export const WARNINGS: WranTypes = [
{
level: 1,
roman: 'Ⅰ',
color: 'red',
text: '红色预警',
text1: '红色',
description: '特别严重',
},
{
level: 2,
roman: 'Ⅱ',
color: 'orange',
text: '橙色预警',
text1: '橙色',
description: '严重',
},
{
level: 3,
color: 'yellow',
roman: 'Ⅲ',
text: '黄色预警',
text1: '黄色',
description: '较重',
},
{
level: 4,
roman: 'Ⅳ',
color: 'blue',
text: '蓝色预警',
text1: '蓝色',
description: '一般',
},
]
export function getWarnInfo(type: string | number): any {
return WARNINGS.filter((v) => type === v.level)[0] || null
}
/**
* 通过aqi获取 污染等级
* @param qualityLevel
* @returns
*/
export function getAqiLevel(qualityLevel) {
const res = { qualityLevelName: '', color: '' }
switch (Number.parseInt(qualityLevel)) {
case 1:
res.qualityLevelName = '优'
res.color = '#24e228'
break
case 2:
res.qualityLevelName = '良'
res.color = '#e6f638'
break
case 3:
res.qualityLevelName = '轻度污染'
res.color = '#e09540'
break
case 4:
res.qualityLevelName = '中度污染'
res.color = '#f30c08'
break
case 5:
res.qualityLevelName = '重度污染'
res.color = '#a11856'
break
case 6:
res.qualityLevelName = '严重污染'
res.color = '#7a0224'
break
default:
res.qualityLevelName = '优'
res.color = '#24e228'
break
}
return res
}
export function appendStylesheet(id: string, href: string) {
return new Promise((resolve, reject) => {
const element = document.getElementById(id) as HTMLLinkElement
if (element && element.href === href) {
resolve(0)
return
}
const link = document.createElement('link')
link.id = id
link.rel = 'stylesheet'
link.href = href
link.onload = resolve
link.onerror = link.onabort = reject
document.head.appendChild(link)
})
}
export function appendScript(id: string, src: string) {
return new Promise((resolve, reject) => {
const element = document.getElementById(id) as HTMLScriptElement
if (element && element.src === src) {
resolve(0)
return
}
const script = document.createElement('script')
script.id = id
script.src = src
script.onload = resolve
script.onerror = script.onabort = reject
document.head.appendChild(script)
})
}
export function removeChild(id: string) {
const child = document.getElementById(id)
if (child) {
child.parentNode.removeChild(child)
}
}
...@@ -63,9 +63,9 @@ module.exports = { ...@@ -63,9 +63,9 @@ module.exports = {
], ],
{ severity: 'warning' }, { severity: 'warning' },
], ],
'function-no-unknown': null,
'selector-type-no-unknown': null, 'selector-type-no-unknown': null,
'comment-empty-line-before': null, 'comment-empty-line-before': null,
'function-no-unknown': null,
}, },
ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts'], ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts'],
overrides: [ overrides: [
......
...@@ -8,6 +8,7 @@ export {} ...@@ -8,6 +8,7 @@ export {}
declare module 'vue' { declare module 'vue' {
export interface GlobalComponents { export interface GlobalComponents {
CacheImage: typeof import('./../src/components/CacheImage/index.vue')['default'] CacheImage: typeof import('./../src/components/CacheImage/index.vue')['default']
CustomPicker: typeof import('./../src/components/CustomPicker/index.vue')['default']
Empty: typeof import('./../src/components/Empty/index.vue')['default'] Empty: typeof import('./../src/components/Empty/index.vue')['default']
FDragItem: typeof import('./../src/components/FirstUI/fui-drag/f-drag-item.vue')['default'] FDragItem: typeof import('./../src/components/FirstUI/fui-drag/f-drag-item.vue')['default']
FIndexListItem: typeof import('./../src/components/FirstUI/fui-index-list/f-index-list-item.vue')['default'] FIndexListItem: typeof import('./../src/components/FirstUI/fui-index-list/f-index-list-item.vue')['default']
...@@ -132,9 +133,14 @@ declare module 'vue' { ...@@ -132,9 +133,14 @@ declare module 'vue' {
FuiVtabsContent: typeof import('./../src/components/FirstUI/fui-vtabs-content/fui-vtabs-content.vue')['default'] FuiVtabsContent: typeof import('./../src/components/FirstUI/fui-vtabs-content/fui-vtabs-content.vue')['default']
FuiWaterfall: typeof import('./../src/components/FirstUI/fui-waterfall/fui-waterfall.vue')['default'] FuiWaterfall: typeof import('./../src/components/FirstUI/fui-waterfall/fui-waterfall.vue')['default']
FuiWaterfallItem: typeof import('./../src/components/FirstUI/fui-waterfall-item/fui-waterfall-item.vue')['default'] FuiWaterfallItem: typeof import('./../src/components/FirstUI/fui-waterfall-item/fui-waterfall-item.vue')['default']
Grid: typeof import('./../src/components/Layout/Grid.vue')['default']
Header: typeof import('./../src/components/Layout/Header.vue')['default']
Icon: typeof import('./../src/components/Icon/index.vue')['default'] Icon: typeof import('./../src/components/Icon/index.vue')['default']
Map: typeof import('./../src/components/Map/Mapbox/Map.vue')['default']
MenuHeader: typeof import('./../src/components/Layout/MenuHeader.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink'] RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView'] RouterView: typeof import('vue-router')['RouterView']
ThumbnailPreview: typeof import('./../src/components/ThumbnailPreview/index.vue')['default'] ThumbnailPreview: typeof import('./../src/components/ThumbnailPreview/index.vue')['default']
View: typeof import('./../src/components/Layout/View.vue')['default']
} }
} }
...@@ -11,6 +11,7 @@ const { presetWeappAttributify, transformerAttributify } = extractorAttributify( ...@@ -11,6 +11,7 @@ const { presetWeappAttributify, transformerAttributify } = extractorAttributify(
export default defineConfig({ export default defineConfig({
shortcuts: [ shortcuts: [
{ {
bg: 'bg-[#F4F5F7]',
'border-base': 'border border-[#eee]', 'border-base': 'border border-[#eee]',
'flex-center': 'flex justify-center items-center', 'flex-center': 'flex justify-center items-center',
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论