Commit d303a77b authored by 田翔's avatar 田翔

fix: 图标样式优化

parent c6ace4be
{
"name": "panda-xform",
"version": "6.10.14",
"description": "6.10.14 地址转化地名优化",
"version": "6.10.15",
"description": "6.10.15 表单设计器图标样式优化",
"keywords": [
"panda-xform"
],
......
......@@ -98,16 +98,16 @@ const options = [
</div>
)
},
{
title: '图片',
height: 114,
descriptions: (
<div>
<div>用于表单中拍照上传或选择本地图片上传</div>
<div>例现场施工照片、现场维修照片等。</div>
</div>
)
},
// {
// title: '图片',
// height: 114,
// descriptions: (
// <div>
// <div>用于表单中拍照上传或选择本地图片上传</div>
// <div>例现场施工照片、现场维修照片等。</div>
// </div>
// )
// },
{
title: '日期选择',
height: 114,
......@@ -205,13 +205,14 @@ const options = [
},
{
title: '区域任务',
height: 70,
// descriptions: (
// <div>
// <div>用于表单中在GIS管网地图中进行区域绘制的场景.</div>
// <div>例如漏点区域范围等等。</div>
// </div>
// )
height: 136,
descriptions: (
<div>
<div>用于工单流程中绘制区域进行巡检的业务场景。</div>
<div>支持将控件配置在表单中,打开GIS地图绘制要巡检的区域设备</div>
<div>支持关联管网巡检区域,支持配置区域巡检设备类型,以及前端列表展示字段以及巡检任务的摘要字段</div>
</div>
)
}
]
},
......@@ -230,11 +231,14 @@ const options = [
},
{
title: '编码',
height: 114,
height: 440,
descriptions: (
<div>
<div>用于系统自动生成字段内容,根据预设规则生成编码或流水号信息的场景。</div>
<div>例如采购单号、订单号、流水号等。</div>
<div><strong>【前缀】:</strong>用于编码(流水号前缀)比如:WXSH 等</div>
<div><strong>【编码方式】:</strong>结合前缀形成唯一编码(流水号)</div>
<div className={styles['descriptions-Coding-img']}></div>
</div>
)
},
......@@ -249,11 +253,12 @@ const options = [
},
{
title: '关联表单',
height: 114,
height: 440,
descriptions: (
<div>
<div>适用于当前表单关联其他表单,从而在两个表单之间建立联系。</div>
<div>例如在维修工单中增加维修物料清单等等。</div>
<div className={styles['descriptions-relationForm-img']}></div>
</div>
)
},
......@@ -269,10 +274,32 @@ const options = [
},
{
title: '身份证识别',
height: 92,
height: 430,
descriptions: (
<div>
<div>在填写身份证信息时,通过上传身份证图片自动填充证件信息,提升效率、避免输入出错</div>
<div className={styles['descriptions-IDCard']}>
<div className={styles['IDCard-item']}>
<div className={styles['item-header']}>上传身份证</div>
<div className={styles['item-content']}>
<div className={styles['img-one']}></div>
</div>
</div>
<div className={styles['IDCard-arrow']}></div>
<div className={styles['IDCard-item']}>
<div className={styles['item-header']}>文字识别</div>
<div className={styles['item-content']}>
<div className={styles['img-two']}></div>
</div>
</div>
<div className={styles['IDCard-arrow']}></div>
<div className={styles['IDCard-item']}>
<div className={styles['item-header']}>自动填充</div>
<div className={styles['item-content']}>
<div className={styles['img-three']}></div>
</div>
</div>
</div>
</div>
)
},
......@@ -288,7 +315,7 @@ const Help = (props, ref) => {
const [visible, setVisible] = useState(false)
const [active, setActive] = useState('单行文本')
const [shink, setShink] = useState({ 基础控件: true, GIS控件: false, advanced: false })
const [shink, setShink] = useState({ 基础控件: true, GIS控件: true, 高级控件: true })
const rightRef = useRef(null)
const contentHTML = useMemo(() => {
......@@ -314,10 +341,11 @@ const Help = (props, ref) => {
rightRef.current.scrollTop = scrollTop
}
const open = (value) => {
const open = ({ active, title }) => {
setVisible(true)
setShink({ 基础控件: true, GIS控件: true, 高级控件: true, [title]: false })
setTimeout(() => {
activeChange(value)
activeChange(active)
}, 500)
}
......
......@@ -72,7 +72,7 @@
height: 100%;
overflow: auto;
background: #F1F1F1;
transition: all 0.3s all;
transition: all 0.3s ease-in-out;
.t-box {
margin-bottom: 10px;
......@@ -95,5 +95,76 @@
}
}
//编码介绍
.descriptions-Coding-img {
height: 212px;
margin: 35px;
background: url('@{imgSrc}/编码说明.png');
background-size: 100% 100%;
}
//关联表单介绍
.descriptions-relationForm-img {
height: 262px;
margin: 32px;
background: url('@{imgSrc}/关联表单说明.png');
background-size: 100% 100%;
}
.descriptions-IDCard {
display: flex;
align-items: center;
margin-top: 60px;
margin-bottom: 80px;
.IDCard-item {
flex: 1;
border-radius: 5px;
border: 1px solid #DBDBDB;
.item-header {
height: 36px;
line-height: 36px;
text-align: center;
background: #F5F5F5;
}
.item-content {
height: 160px;
display: flex;
align-items: center;
justify-content: center;
.img-one {
width: 184px;
height: 113px;
background: url('@{imgSrc}/上传身份证.png');
background-size: 100% 100%;
}
.img-two {
width: 184px;
height: 113px;
background: url('@{imgSrc}/文字识别.png');
background-size: 100% 100%;
}
.img-three {
width: 146px;
height: 141px;
background: url('@{imgSrc}/自动填充.png');
background-size: 100% 100%;
}
}
}
.IDCard-arrow {
width: 11px;
height: 27px;
background: url('@{imgSrc}/箭头.png');
background-size: 100% 100%;
margin-right: 5px;
}
}
}
}
\ No newline at end of file
import React from 'react'
import { commonSettings, switchSettings, elementSettings } from './otherSettings'
import { GroupOutlined } from '@ant-design/icons'
import IconPack from '../../components/IconPack'
// const disabled = '{{formData.tableTypeParent === "物联设备表" && formData.IsSystemField}}'
......@@ -23,7 +22,7 @@ const layoutWidgets = [
{
text: '分组标题',
name: '分组标题',
icon: <GroupOutlined />,
icon: <IconPack.Group />,
schema: {
title: '分组标题',
type: 'object',
......@@ -41,7 +40,7 @@ const layoutWidgets = [
{
text: '描述说明',
name: '描述说明',
icon: <IconPack.SearchLocation />,
icon: <IconPack.Describe />,
schema: {
title: '',
type: 'html',
......@@ -3627,11 +3626,11 @@ const mapWidgets = [
},
},
{
text: '路径控件',
name: '路径控件',
text: '绘制路径',
name: '绘制路径',
icon: <IconPack.DrawPath />,
schema: {
title: '路径控件',
title: '绘制路径',
type: 'string',
widget: 'DrawPath',
placeholder: '',
......@@ -3715,11 +3714,11 @@ const mapWidgets = [
},
},
{
text: '区域控件',
name: '区域控件',
text: '绘制区域',
name: '绘制区域',
icon: <IconPack.DrawArea />,
schema: {
title: '区域控件',
title: '绘制区域',
type: 'string',
widget: 'DrawArea',
placeholder: '',
......@@ -3803,7 +3802,7 @@ const mapWidgets = [
{
text: '区域任务',
name: '区域任务',
icon: <IconPack.DrawArea />,
icon: <IconPack.AreaTask />,
schema: {
title: '区域任务',
type: 'string',
......@@ -4300,7 +4299,7 @@ const advancedWidgets = [
{
text: '手写签名',
name: '手写签名',
icon: <IconPack.RelationForm />,
icon: <IconPack.Signature />,
schema: {
title: '手写签名',
type: 'string',
......@@ -4376,7 +4375,7 @@ const advancedWidgets = [
{
text: '身份证识别',
name: '身份证识别',
icon: <IconPack.FileUpload />,
icon: <IconPack.IDCard />,
schema: {
title: '身份证',
type: 'string',
......
......@@ -388,7 +388,7 @@ const FormDesigner = (props, ref) => {
div.setAttribute('type', options?.[i]?.title)
v.appendChild(div)
div.onclick = (e) => {
helpRef.current.open(options?.[i]?.one)
helpRef.current.open({ active: options?.[i]?.one, title: options?.[i]?.title })
}
})
}
......@@ -404,7 +404,7 @@ const FormDesigner = (props, ref) => {
}
const changeElement = () => {
// addHelp()
addHelp()
changeUI()
}
......
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677841976387"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29926" width="14"
height="14" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M835.96858 63.659046H185.154303c-35.422337 0-64.2529 28.817252-64.2529 64.2529v767.966212c0 35.436671 28.830563 64.2529 64.2529 64.252899h650.814277c35.422337 0 64.2529-28.817252 64.252899-64.252899v-767.965188c0-35.436671-28.830563-64.253924-64.252899-64.253924z m-650.814277 56.720176h650.814277c4.153903 0 7.532724 3.378822 7.532724 7.532724v64.793511H177.620554v-64.793511c0-4.153903 3.378822-7.532724 7.533749-7.532724z m650.814277 783.032684H185.154303c-4.153903 0-7.532724-3.378822-7.532725-7.532724V249.426656h665.88075v646.452526c-0.001024 4.153903-3.379845 7.532724-7.533748 7.532724z"
p-id="29927"></path>
<path
d="M482.187531 318.775433H283.278353c-31.268434 0-56.720175 25.438431-56.720176 56.720175v84.748013c0 31.281744 25.451741 56.720175 56.720176 56.720175h198.908154c31.268434 0 56.720175-25.438431 56.720175-56.720175v-84.748013c0.001024-31.281744-25.451741-56.720175-56.719151-56.720175zM283.278353 460.243621v-84.748013h198.908154l0.027645 84.748013H283.278353zM759.196634 318.775433H621.467676c-15.675684 0-28.3606 12.698226-28.3606 28.3606 0 15.66135 12.684915 28.3606 28.3606 28.360599h137.728958c15.675684 0 28.3606-12.698226 28.3606-28.360599 0-15.662374-12.684915-28.3606-28.3606-28.3606zM759.196634 460.243621h-71.565489c-15.675684 0-28.359576 12.698226-28.359575 28.360599 0 15.66135 12.684915 28.359576 28.359575 28.359576h71.565489c15.675684 0 28.3606-12.698226 28.3606-28.359576 0-15.662374-12.684915-28.3606-28.3606-28.360599zM482.187531 626.94239H283.278353c-31.268434 0-56.720175 25.438431-56.720176 56.720176v84.748012c0 31.281744 25.451741 56.720175 56.720176 56.720175h198.908154c31.268434 0 56.720175-25.438431 56.720175-56.720175v-84.748012c0.001024-31.281744-25.451741-56.720175-56.719151-56.720176zM283.278353 768.410578v-84.748012h198.908154l0.027645 84.748012H283.278353zM759.196634 626.94239H621.467676c-15.675684 0-28.3606 12.698226-28.3606 28.359576 0 15.66135 12.684915 28.359576 28.3606 28.359576h137.728958c15.675684 0 28.3606-12.698226 28.3606-28.359576 0-15.66135-12.684915-28.359576-28.3606-28.359576zM759.196634 768.410578h-71.565489c-15.675684 0-28.359576 12.698226-28.359575 28.359576 0 15.66135 12.684915 28.3606 28.359575 28.360599h71.565489c15.675684 0 28.3606-12.698226 28.3606-28.360599 0-15.66135-12.684915-28.359576-28.3606-28.359576z"
p-id="29928"></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M12.47,1H1.55A.55.55,0,0,0,1,1.55V12.32a.67.67,0,0,0,.68.68H12.37a.63.63,0,0,0,.63-.63V1.54A.54.54,0,0,0,12.47,1Zm-.8,10.67H2.33V2.33h9.34Z"/>
<path class="cls-1" d="M5.42,6.06H8.23a.7.7,0,1,0,0-1.4H5.42a.7.7,0,0,0,0,1.4Z"/>
<path class="cls-1" d="M5.42,9.34H8.23a.7.7,0,1,0,0-1.4H5.42a.7.7,0,1,0,0,1.4Z"/>
</g>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.AreaTask {
fill: #01A442;
}
</style>
</defs>
<g>
<path class="AreaTask" d="M9.13,5.41,6.51,8.22,5.25,7a.67.67,0,0,0-.94,0,.64.64,0,0,0,0,.92L6,9.62a.68.68,0,0,0,1,0l3.1-3.32a.64.64,0,0,0,0-.92A.68.68,0,0,0,9.13,5.41Z"/>
<path class="AreaTask" d="M11.85,1.3H10.21A2,2,0,0,0,8.33,0H5.67A2,2,0,0,0,3.79,1.3H2.15A1.13,1.13,0,0,0,1,2.4v9.5A1.13,1.13,0,0,0,2.15,13h9.7A1.13,1.13,0,0,0,13,11.9V2.4A1.13,1.13,0,0,0,11.85,1.3Zm-6.18,0H8.33a.65.65,0,1,1,0,1.3H5.67a.65.65,0,1,1,0-1.3Zm6,10.4H2.33V2.6H3.79A2,2,0,0,0,5.67,3.9H8.33a2,2,0,0,0,1.88-1.3h1.46v9.1Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677842171028" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="35344" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M759.296 177.066667c24.917333 0 48.810667 9.856 66.474667 27.434666 17.621333 17.536 27.562667 41.386667 27.562666 66.304v482.346667a93.610667 93.610667 0 0 1-93.610666 93.610667H264.277333A93.610667 93.610667 0 0 1 170.666667 753.152V270.677333A93.610667 93.610667 0 0 1 264.277333 177.066667h495.018667zM262.656 225.749333a42.666667 42.666667 0 0 0-42.666667 42.666667v486.997333a42.666667 42.666667 0 0 0 42.666667 42.666667h174.933333V225.706667h-174.933333z m499.029333 572.330667a42.666667 42.666667 0 0 0 42.666667-42.666667V268.373333a42.666667 42.666667 0 0 0-42.666667-42.666666h-275.413333v572.330666h275.413333zM367.274667 363.093333a7.808 7.808 0 0 1 0 11.861334L310.357333 418.773333c-4.864 3.669333-11.861333 0.298667-11.861333-5.76V325.333333c0-6.058667 6.997333-9.386667 11.861333-5.76l56.917334 43.52z m173.184 31.957334a12.202667 12.202667 0 0 1-12.16-12.202667v-24.32c0-6.698667 5.461333-12.202667 12.16-12.202667h211.2c6.698667 0 12.202667 5.205333 12.202666 12.202667v24.32a12.202667 12.202667 0 0 1-12.202666 12.202667h-211.2z m0 134.229333a12.202667 12.202667 0 0 1-12.16-12.202667v-24.32c0-6.698667 5.461333-12.202667 12.16-12.202666h211.2c6.698667 0 12.202667 5.205333 12.202666 12.202666v24.32a12.202667 12.202667 0 0 1-12.202666 12.202667h-211.2z m0 133.888a12.202667 12.202667 0 0 1-12.16-12.16v-24.32c0-6.741333 5.461333-12.202667 12.16-12.202667h211.2c6.698667 0 12.202667 5.162667 12.202666 12.16v24.32a12.202667 12.202667 0 0 1-12.202666 12.202667h-211.2z" p-id="35345"></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.CascadeSelector {
fill: #F78D04;
}
</style>
</defs>
<path class="CascadeSelector" d="M4.43,6h7.76A.8.8,0,0,0,13,5.2V1.81A.81.81,0,0,0,12.19,1H1.81A.81.81,0,0,0,1,1.81V5.2a.8.8,0,0,0,.81.8h1.4v4.8a.6.6,0,0,0,.61.6H5.94v.79a.81.81,0,0,0,.81.81h5.44a.81.81,0,0,0,.81-.81V8.8a.8.8,0,0,0-.81-.8H6.75a.8.8,0,0,0-.81.8v1.39H4.43ZM2.22,2.21h9.56V4.79H2.22Zm4.94,7h4.62v2.58H7.16Z"/>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677841761506" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="24563" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M170.666667 128h682.666666a42.666667 42.666667 0 0 1 42.666667 42.666667v682.666666a42.666667 42.666667 0 0 1-42.666667 42.666667H170.666667a42.666667 42.666667 0 0 1-42.666667-42.666667V170.666667a42.666667 42.666667 0 0 1 42.666667-42.666667z m42.666666 85.333333v597.333334h597.333334V213.333333H213.333333z m256.128 469.333334L288.426667 501.632l60.330666-60.330667 120.704 120.704 241.322667-241.365333 60.373333 60.330667L469.461333 682.666667z" p-id="24564" ></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<path class="cls-1" d="M1.56,1A.56.56,0,0,0,1,1.57V12.31a.69.69,0,0,0,.68.68H12.37a.64.64,0,0,0,.63-.63V1.55A.54.54,0,0,0,12.46,1Zm10.1,10.65H2.34V2.34h9.32ZM11,5l-.94-.94L5.66,8.44,3.94,6.73,3,7.67l2.66,2.66Zm0,0"/>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677838948397"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5756"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M378.1 140h130.5v798.3H378.1zM580.8 140h87v798.3h-87zM953.7 140h65.2v798.3h-65.2zM229.6 140h65.2v798.3h-65.2zM729.2 140h152.2v798.3H729.2zM5.1 140h152.2v798.3H5.1z"
p-id="5757"></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.Coding {
fill: #F78D04;
}
</style>
</defs>
<g>
<path class="Coding" d="M1.69,7,3.91,4.75A.72.72,0,0,0,3.6,3.56a.74.74,0,0,0-.68.18L.2,6.5a.72.72,0,0,0,0,1l2.72,2.75a.68.68,0,0,0,.68.2.71.71,0,0,0,.31-1.2Zm12.1-.5L11.07,3.74a.7.7,0,0,0-1.18.31.72.72,0,0,0,.19.7L12.31,7,10.08,9.25a.71.71,0,0,0-.19.69.68.68,0,0,0,.5.51.67.67,0,0,0,.68-.2L13.79,7.5a.7.7,0,0,0,0-1Zm0,0"/>
<path class="Coding" d="M9.12,2.1A.63.63,0,0,1,9.49,3L6,11.52a.62.62,0,0,1-.91.38A.63.63,0,0,1,4.69,11L8.2,2.48a.62.62,0,0,1,.92-.38Zm0,0"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677842144531" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="34885" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M128 128v768h768V128H128z m682.666667 682.666667H213.333333V213.333333h597.333334v597.333334z" p-id="34886" ></path><path d="M682.666667 426.666667H341.333333l170.666667 213.333333z" p-id="34887" ></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<path class="cls-1" d="M1.13,7.64a.65.65,0,0,1,.94-.15L7,11.41l4.93-3.92a.65.65,0,0,1,.94.15.72.72,0,0,1-.14,1L7.4,12.86a.63.63,0,0,1-.8,0L1.27,8.62A.7.7,0,0,1,1,8.16a.73.73,0,0,1,.12-.52ZM2,1.71a.78.78,0,0,1,.17-.5A.47.47,0,0,1,2.58,1h8.84a.65.65,0,0,1,.56.71.64.64,0,0,1-.56.7H2.58a.47.47,0,0,1-.39-.21A.77.77,0,0,1,2,1.71ZM2,4.78a.65.65,0,0,1,.56-.71h8.84a.65.65,0,0,1,.56.71.65.65,0,0,1-.56.71H2.58A.65.65,0,0,1,2,4.78ZM1,4.53"/>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677841900223" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="26338" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M511.626335 1024l-33.902944-26.326417c-3.264355-2.528867-80.923759-63.272063-161.454587-165.232775-47.544724-60.178986-86.465102-122.554358-115.662943-185.383114C163.499013 567.232128 142.018752 486.439346 136.749439 406.875735A373.28502 373.28502 0 0 1 135.510193 376.307671v-0.110827c-0.100752-7.475776 0.110827-14.820574 0.634736-21.842966C147.600396 155.601014 312.510766 0.000101 511.817764 0.000101a376.045616 376.045616 0 0 1 376.30757 373.990281c0.87654 15.918767 3.29458 100.106881-33.248058 211.689381-23.062062 70.385132-57.025458 138.029818-100.953196 201.090302-54.405914 78.153088-124.367889 149.344233-207.840666 211.578554zM249.450282 400.991836c10.337124 148.356867 89.155172 277.188056 153.60603 359.270459a1018.740661 1018.740661 0 0 0 111.008214 119.854213c112.368362-92.409452 190.259496-201.332107 231.728892-324.269321 33.540238-99.321018 29.812426-172.144341 29.600848-175.761327l-0.110827-2.266913v-1.894132C775.061785 230.842378 656.869975 112.841996 511.817764 112.841996c-139.672071 0-255.214112 109.104008-263.042519 248.393222l-0.070526 1.138494c-0.302255 3.939391-0.423157 8.170962-0.362706 12.604037v1.329922c0 7.385099 0.302255 14.739973 0.89669 21.842967z m260.856206 197.473317c-105.557548 0-191.428215-85.870667-191.428215-191.428216s85.870667-191.428215 191.428215-191.428215 191.428215 85.870667 191.428215 191.428215-85.870667 191.428215-191.428215 191.428216z m0-270.014536a78.58632 78.58632 0 1 0 78.58632 78.58632 78.676996 78.676996 0 0 0-78.58632-78.58632z" p-id="26339" ></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.Coordinate {
fill: #01A442;
}
</style>
</defs>
<g>
<path class="Coordinate" d="M7,14a1.43,1.43,0,0,1-1-.48c-.5-.58-1-1.11-1.46-1.62C2.56,9.78,1,8.1,1,5.74A5.89,5.89,0,0,1,7,0H7a5.89,5.89,0,0,1,6,5.74c0,2.36-1.56,4-3.53,6.16-.46.51-1,1-1.46,1.62A1.4,1.4,0,0,1,7,14ZM7,1.37A4.51,4.51,0,0,0,2.38,5.74C2.38,7.57,3.71,9,5.54,11c.48.51,1,1,1.5,1.64A19,19,0,0,1,8.46,11c1.83-2,3.16-3.41,3.16-5.24A4.51,4.51,0,0,0,7,1.37Z"/>
<path class="Coordinate" d="M7,7.65a2,2,0,1,1,2-2,2,2,0,0,1-2,2Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677839147586"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14103"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path d="M938.666667 235.093333V938.666667H85.333333V235.093333h853.333334m85.333333-85.333333H0V1024h1024V149.76z"
p-id="14104" ></path>
<path
d="M796.373333 565.333333H227.84c-23.466667 0-42.666667-19.2-42.666667-42.666666s19.2-42.666667 42.666667-42.666667h568.533333c23.466667 0 42.666667 19.2 42.666667 42.666667s-19.2 42.666667-42.666667 42.666666zM532.693333 756.266667H227.84c-23.466667 0-42.666667-19.2-42.666667-42.666667s19.2-42.666667 42.666667-42.666667h304.853333a42.666667 42.666667 0 1 1 0 85.333334z"
p-id="14105" ></path>
<path d="M298.453333 0h85.333334v299.52h-85.333334zM640.213333 0h85.333334v299.52h-85.333334z" p-id="14106"
></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M12.33,1.67H10v-1a.67.67,0,1,0-1.33,0v1H5.33v-1A.67.67,0,1,0,4,.67v1H1.67A.67.67,0,0,0,1,2.33v10a.67.67,0,0,0,.67.67H12.33a.67.67,0,0,0,.67-.67v-10a.67.67,0,0,0-.67-.66Zm-.66,10H2.33V3H4A.67.67,0,1,0,5.33,3H8.67A.67.67,0,1,0,10,3h1.67Zm0,0"/>
<path class="cls-1" d="M8.33,5H5.67a.67.67,0,1,0,0,1.33H7.4l-1,3.14a.65.65,0,0,0,.43.83.46.46,0,0,0,.2,0,.66.66,0,0,0,.63-.46L9,5.87a.67.67,0,0,0-.1-.6A.71.71,0,0,0,8.33,5Zm0,0"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677841961577" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28599" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M938.666667 661.333333h-67.413334c-0.426667-0.853333-0.426667-1.706667-0.853333-2.133333l-128.426667-170.666667a20.48 20.48 0 0 0-17.066666-8.533333H533.333333V362.666667H768c35.413333 0 64-28.586667 64-64V213.333333c0-35.413333-28.586667-64-64-64H256c-35.413333 0-64 28.586667-64 64v85.333334c0 35.413333 28.586667 64 64 64h234.666667v117.333333H298.666667a20.48 20.48 0 0 0-17.066667 8.533333l-128 170.666667c-0.426667 0.853333-0.426667 1.28-0.853333 2.133333H85.333333c-11.946667 0-21.333333 9.386667-21.333333 21.333334v170.666666c0 11.946667 9.386667 21.333333 21.333333 21.333334h170.666667c11.946667 0 21.333333-9.386667 21.333333-21.333334v-170.666666c0-11.946667-9.386667-21.333333-21.333333-21.333334H205.226667l104.106666-138.666666h181.333334v138.666666H426.666667c-11.946667 0-21.333333 9.386667-21.333334 21.333334v170.666666c0 11.946667 9.386667 21.333333 21.333334 21.333334h170.666666c11.946667 0 21.333333-9.386667 21.333334-21.333334v-170.666666c0-11.946667-9.386667-21.333333-21.333334-21.333334h-64v-138.666666h180.906667l104.533333 138.666666H768c-11.946667 0-21.333333 9.386667-21.333333 21.333334v170.666666c0 11.946667 9.386667 21.333333 21.333333 21.333334h170.666667c11.946667 0 21.333333-9.386667 21.333333-21.333334v-170.666666c0-11.946667-9.386667-21.333333-21.333333-21.333334zM234.666667 298.666667V213.333333c0-11.946667 9.386667-21.333333 21.333333-21.333333h512c11.946667 0 21.333333 9.386667 21.333333 21.333333v85.333334c0 11.946667-9.386667 21.333333-21.333333 21.333333H256c-11.946667 0-21.333333-9.386667-21.333333-21.333333z m0 533.333333h-128v-128h128v128z m341.333333 0h-128v-128h128v128z m341.333333 0h-128v-128h128v128z" p-id="28600"></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M13.8,6.93,7.43,1.17a.69.69,0,0,0-.91,0L.2,6.79a.57.57,0,0,0-.2.43.59.59,0,0,0,.19.44.69.69,0,0,0,.92,0L7,2.46l5.92,5.35a.69.69,0,0,0,.92,0A.59.59,0,0,0,14,7.36.57.57,0,0,0,13.8,6.93Z"/>
<path class="cls-1" d="M11.36,8.12a.59.59,0,0,0-.61.57v3.18H3.24V8.69a.59.59,0,0,0-.62-.57A.59.59,0,0,0,2,8.69V12a1.09,1.09,0,0,0,1.13,1h7.71A1.08,1.08,0,0,0,12,12V8.69A.59.59,0,0,0,11.36,8.12Z"/>
</g>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.Describe {
fill: #6B69FF;
}
</style>
</defs>
<g>
<path class="Describe" d="M3.94,5.17h6.12a.24.24,0,0,0,.24-.23V4.25A.24.24,0,0,0,10.06,4H3.94a.24.24,0,0,0-.24.24v.69A.24.24,0,0,0,3.94,5.17Z"/>
<path class="Describe" d="M3.94,8h6.12a.24.24,0,0,0,.24-.23V7.07a.24.24,0,0,0-.24-.24H3.94a.24.24,0,0,0-.24.24v.69A.24.24,0,0,0,3.94,8Z"/>
<path class="Describe" d="M12.4,1H1.6a.57.57,0,0,0-.6.58v9a.57.57,0,0,0,.6.58H3.44l2,1.56a.49.49,0,0,0,.6,0l2-1.57h4.4a.61.61,0,0,0,.52-.57v-9A.57.57,0,0,0,12.4,1Zm-.55,1.15V10h-4a.59.59,0,0,0-.37.13L5.74,11.51,4.07,10.18A.62.62,0,0,0,3.69,10H2.19V2.15Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677842012979" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31068" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M869 119.3H156.8c-36.4 0-66 29.6-66 66v657.9c0 36.4 29.6 66 66 66H869c36.4 0 66-29.6 66-66V185.3c0-36.4-29.6-66-66-66z m-4 70v176.6H160.8V189.3H865z m0 246.6V602H160.8V435.9H865zM160.8 839.2V672H865v167.2H160.8z" p-id="31069" ></path><path d="M723.5 317.8h43c19.3 0 35-15.7 35-35s-15.7-35-35-35h-43c-19.3 0-35 15.7-35 35s15.7 35 35 35zM723.5 553.9h43c19.3 0 35-15.7 35-35s-15.7-35-35-35h-43c-19.3 0-35 15.7-35 35 0 19.4 15.7 35 35 35zM766.5 720.1h-43c-19.3 0-35 15.7-35 35s15.7 35 35 35h43c19.3 0 35-15.7 35-35 0-19.4-15.7-35-35-35z" p-id="31070" ></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.Device {
fill: #01A442;
}
</style>
</defs>
<path class="Device" d="M12.37,6A.63.63,0,0,0,13,5.37V1.54A.54.54,0,0,0,12.47,1H1.55A.55.55,0,0,0,1,1.55V5.32A.68.68,0,0,0,1.68,6H6.35V8H1.55A.55.55,0,0,0,1,8.55v3.77a.68.68,0,0,0,.68.68H12.37a.63.63,0,0,0,.63-.63V8.54A.54.54,0,0,0,12.47,8H7.65V6Zm-.7,5.67H2.33V9.33h9.34ZM2.33,2.33h9.34V4.67H2.33Z"/>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1682324829287" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9060" xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14"><path d="M333.226667 197.290667l16.725333-83.669334 376.533333 75.178667-16.682666 83.669333zM790.698667 351.872l84.736-10.154667 40.533333 338.901334-84.736 10.154666zM227.285333 831.530667l559.189334-66.816 10.154666 84.736-559.232 66.816zM111.530667 782.08L196.224 225.365333l84.352 12.8-84.693333 556.8z" p-id="9061"></path><path d="M247.466667 277.333333C170.666667 277.333333 106.666667 213.333333 106.666667 136.533333S170.666667 0 247.466667 0 384 64 384 136.533333 324.266667 277.333333 247.466667 277.333333z m0-192c-29.866667 0-55.466667 25.6-55.466667 51.2s25.6 51.2 51.2 51.2S298.666667 166.4 298.666667 136.533333 277.333333 85.333333 247.466667 85.333333zM136.533333 1024C64 1024 0 960 0 887.466667s64-136.533333 136.533333-136.533334c76.8 0 136.533333 64 136.533334 136.533334S213.333333 1024 136.533333 1024z m0-192c-29.866667 0-51.2 25.6-51.2 51.2S110.933333 938.666667 136.533333 938.666667s51.2-25.6 51.2-51.2-21.333333-55.466667-51.2-55.466667zM810.666667 392.533333c-76.8 0-136.533333-64-136.533334-136.533333s64-136.533333 136.533334-136.533333 136.533333 64 136.533333 136.533333-59.733333 136.533333-136.533333 136.533333z m0-192c-29.866667 0-51.2 25.6-51.2 51.2s25.6 51.2 51.2 51.2 51.2-25.6 51.2-51.2-21.333333-51.2-51.2-51.2zM887.466667 917.333333c-76.8 0-136.533333-64-136.533334-136.533333S810.666667 640 887.466667 640s136.533333 64 136.533333 136.533333-64 140.8-136.533333 140.8z m0-192c-29.866667 0-51.2 25.6-51.2 51.2s25.6 51.2 51.2 51.2S938.666667 810.666667 938.666667 780.8s-25.6-55.466667-51.2-55.466667z" p-id="9062"></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.DrawArea {
fill: #01A442;
}
</style>
</defs>
<g>
<path class="DrawArea" d="M4.93,11H3.46a1.32,1.32,0,0,0-.63-.56V3.53a1.29,1.29,0,0,0,.65-.59h7A1.32,1.32,0,1,0,11.67,1a1.29,1.29,0,0,0-1.11.64H3.44A1.29,1.29,0,0,0,2.33,1,1.33,1.33,0,0,0,1,2.32a1.27,1.27,0,0,0,.53,1v7.32a1.27,1.27,0,0,0-.53,1,1.31,1.31,0,0,0,2.46.65H4.93a.65.65,0,0,0,0-1.3Z"/>
<path class="DrawArea" d="M11.39,6.14,7.21,11.21a.75.75,0,0,0,.1,1,.72.72,0,0,0,.48.17.74.74,0,0,0,.58-.27L12.55,7.1a.75.75,0,0,0-1.16-1Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1682324737322" class="icon" viewBox="0 0 1260 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5278" width="17.2265625" height="14" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M875.632259 508.010011C875.632259 508.010011 1100.740849 346.048357 1099.71727 211.408382 1098.772428 94.641667 999.327815 0 875.632259 0 751.857966 0 658.791036 94.877877 651.468511 211.408382 643.04367 346.048357 875.632259 508.010011 875.632259 508.010011L875.632259 508.010011 875.632259 508.010011ZM871.931628 109.916611C926.102565 109.916611 969.958978 152.591972 969.958978 205.188173 969.958978 257.784373 926.102565 300.459734 871.931628 300.459734 817.760691 300.459734 773.825541 257.784373 773.825541 205.188173 773.825541 152.591972 817.760691 109.916611 871.931628 109.916611L871.931628 109.916611 871.931628 109.916611ZM590.44747 689.104715C598.242416 677.845348 605.09252 666.034824 611.076519 653.830616 630.130831 617.296728 641.783881 580.290419 641.468934 544.701373 640.130408 384.156982 498.167908 254.005006 321.324993 254.005006 320.931309 254.005006 320.537625 254.005006 320.143941 254.005006 319.67152 254.005006 319.277836 254.005006 318.884152 254.005006 142.749868 254.005006 0 381.794877 0 539.504742 0 547.850846 0.393684 556.039476 1.181052 564.228106 2.125894 579.503051 5.117894 594.935469 9.92084 610.446624 18.896839 641.862618 33.699362 671.152718 53.226095 697.372081 144.009658 833.586793 321.324993 952.55814 321.324993 952.55814 321.324993 952.55814 500.057592 828.783847 590.44747 689.104715L590.44747 689.104715 590.44747 689.104715ZM316.049626 635.012514C243.847955 635.012514 185.267755 578.164525 185.267755 508.010011 185.267755 437.855498 243.847955 381.007508 316.049626 381.007508 388.330033 381.007508 446.831496 437.855498 446.831496 508.010011 446.831496 578.164525 388.330033 635.012514 316.049626 635.012514L316.049626 635.012514 316.049626 635.012514ZM1165.619995 708.316501C841.696686 648.712722 904.607412 571.471894 904.607412 571.471894L839.177108 571.471894C804.13922 773.431857 1362.619537 699.497976 1145.463367 870.514365 953.266771 1021.925285 497.065592 889.01752 497.065592 889.01752L431.714025 952.55814C1161.131996 1191.603148 1417.420369 754.692492 1165.619995 708.316501L1165.619995 708.316501 1165.619995 708.316501Z" p-id="5279"></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.DrawPath {
fill:#01A442;
}
</style>
</defs>
<path class="DrawPath" d="M11.67,10.37a1.32,1.32,0,0,0-1.1.61H4.31a1.64,1.64,0,1,1,0-3.28h5a3,3,0,1,0,0-6.08H3.43A1.3,1.3,0,0,0,2.33,1a1.32,1.32,0,1,0,1.1,2H9.3a1.64,1.64,0,1,1,0,3.28h-5a3,3,0,1,0,0,6.08h6.26a1.3,1.3,0,0,0,1.1.62,1.32,1.32,0,1,0,0-2.63Z"/>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677839181340"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15585"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M924.672 126.976q36.864 36.864 54.784 82.432t17.92 93.696-17.92 93.696-54.784 82.432l-392.192 389.12q-36.864 36.864-90.624 61.44t-113.664 28.672-122.368-16.384-115.712-73.728q-52.224-52.224-72.704-113.152t-16.384-121.344 28.16-113.664 60.928-90.112l348.16-345.088q9.216-9.216 27.136-4.608t27.136 13.824q8.192 9.216 13.312 27.136t-4.096 27.136l-347.136 344.064q-27.648 27.648-46.08 64.512t-21.504 78.848 12.288 84.992 55.296 82.944q35.84 35.84 79.36 50.688t86.528 12.288 81.92-18.944 66.56-44.032l391.168-388.096q27.648-27.648 39.424-57.344t11.264-58.88-13.824-56.832-36.864-51.2q-44.032-43.008-98.816-40.448t-110.08 57.856l-353.28 351.232q-23.552 23.552-23.04 52.224t18.944 47.104q22.528 22.528 51.712 18.432t47.616-22.528l320.512-318.464q9.216-9.216 27.136-4.608t27.136 13.824 14.336 27.136-4.096 27.136l-321.536 318.464q-36.864 36.864-70.656 51.2t-63.488 12.8-55.296-15.872-47.104-34.816q-17.408-16.384-31.232-41.984t-15.872-56.32 10.752-65.536 49.664-70.656q18.432-18.432 32.768-33.792 12.288-13.312 23.04-23.552t11.776-11.264l285.696-284.672q36.864-36.864 80.384-57.856t88.576-24.064 88.576 12.288 80.384 52.224z"
p-id="15586" ></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<path class="cls-1" d="M1,12.53V1.47A.47.47,0,0,1,1.47,1H5.93a.67.67,0,0,1,.49.21L8.17,3a.48.48,0,0,0,.34.14h4a.47.47,0,0,1,.47.47v8.88a.47.47,0,0,1-.47.47H1.47A.47.47,0,0,1,1,12.53ZM11.77,4.46h-4a.45.45,0,0,1-.34-.15L5.66,2.45a.69.69,0,0,0-.49-.21H2.23v9.52h9.54ZM9.57,8.69H4.43V7.35H9.57Zm0,0"/>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.Group {
fill: #6B69FF;
}
</style>
</defs>
<g>
<path class="Group" d="M12.39,1H1.61A.61.61,0,0,0,1,1.61V12.39a.61.61,0,0,0,.61.61H12.39a.61.61,0,0,0,.61-.61V1.61A.61.61,0,0,0,12.39,1Zm-.61,10.78H2.22V2.22h9.56Z"/>
<path class="Group" d="M4,5.29H6.35v5.12a.65.65,0,1,0,1.3,0V5.29H10A.65.65,0,0,0,10,4H4a.65.65,0,0,0,0,1.3Z"/>
</g>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.IDCard {
fill: #F78D04;
}
</style>
</defs>
<path class="IDCard" d="M4.16,7a1,1,0,0,1-1-1,1,1,0,0,1,1-1.06A1,1,0,0,1,5.11,6a1,1,0,0,1-1,1Z"/>
<path class="IDCard" d="M5.15,9.11h-2a.56.56,0,0,1-.44-.22.74.74,0,0,1-.13-.51l.08-.63a.59.59,0,0,1,.57-.54h1.8a.59.59,0,0,1,.57.54l.08.63a.7.7,0,0,1-.14.51.52.52,0,0,1-.42.22Z"/>
<path class="IDCard" d="M9.12,6.41H7.43a.75.75,0,0,1-.7-.78.75.75,0,0,1,.7-.77H9.12a.75.75,0,0,1,.7.77.75.75,0,0,1-.7.78Z"/>
<path class="IDCard" d="M10.61,9.14H7.43a.75.75,0,0,1-.7-.78.74.74,0,0,1,.7-.77h3.18a.74.74,0,0,1,.7.77.75.75,0,0,1-.7.78Z"/>
<path class="IDCard" d="M12.7,2.3v9.4H1.3V2.3H12.7M13.17,1H.83A.83.83,0,0,0,0,1.83V12.17A.83.83,0,0,0,.83,13H13.17a.83.83,0,0,0,.83-.83V1.83A.83.83,0,0,0,13.17,1Z"/>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677838851877"
class="icon" viewBox="0 0 1073 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3948"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M191.597683 1024h690.029335A191.850117 191.850117 0 0 0 1072.84605 833.033403V191.597683A191.850117 191.850117 0 0 0 881.627018 0H191.597683A191.850117 191.850117 0 0 0 0 191.597683V833.033403a191.850117 191.850117 0 0 0 191.597683 190.966597zM87.468507 833.033403V191.597683a104.255393 104.255393 0 0 1 104.129176-104.129176h690.029335a104.255393 104.255393 0 0 1 104.129176 104.129176V833.033403a104.255393 104.255393 0 0 1-104.129176 104.129176H191.597683A104.255393 104.255393 0 0 1 87.468507 833.033403z"
p-id="3949"></path>
<path
d="M248.016763 312.008875a160.043387 160.043387 0 0 1-37.865154 45.816837 265.056083 265.056083 0 0 1-63.865895 41.65167l-7.320596 3.407864v70.176753l17.291754-6.058424a329.048194 329.048194 0 0 0 50.486873-25.243437c8.835203-5.174904 16.913102-10.476026 24.233699-15.650931v277.29915h70.807839V304.940712h-50.234439zM492.247011 631.085912c7.320597-7.699248 25.243436-23.097744 51.749045-45.816838a770.682115 770.682115 0 0 0 71.691359-66.642672 181.87896 181.87896 0 0 0 31.80673-49.098484 124.450142 124.450142 0 0 0 10.097375-48.846049 109.556514 109.556514 0 0 0-35.088377-82.546038 130.003698 130.003698 0 0 0-93.400715-33.195119 136.062123 136.062123 0 0 0-92.643412 30.670776 127.353137 127.353137 0 0 0-40.515715 88.352027l-1.135955 12.621719 73.079749 7.573031v-13.883891a62.225071 62.225071 0 0 1 16.282016-45.943054 58.564773 58.564773 0 0 1 43.797363-16.155799 57.428818 57.428818 0 0 1 41.904104 15.146062 48.593615 48.593615 0 0 1 15.524714 36.602983A82.798472 82.798472 0 0 1 566.588931 467.003575a496.538395 496.538395 0 0 1-79.643042 76.487612 487.324541 487.324541 0 0 0-61.34155 57.807469 181.500308 181.500308 0 0 0-32.185382 53.137434 92.390977 92.390977 0 0 0-6.184642 36.602983v12.621718h270.862074v-69.41945H488.460496zM929.841982 513.32528a93.400715 93.400715 0 0 0-32.185381-26.758042 89.614199 89.614199 0 0 0 19.816097-21.709356 90.623937 90.623937 0 0 0 15.019845-50.486873 104.507827 104.507827 0 0 0-15.398496-54.399605 107.537039 107.537039 0 0 0-44.302231-40.389498 133.790213 133.790213 0 0 0-61.720203-14.388759 122.178232 122.178232 0 0 0-81.914951 28.272649 129.877481 129.877481 0 0 0-42.282756 78.38087l-2.271909 12.621718 70.807839 12.621718 2.019475-12.621718a72.322445 72.322445 0 0 1 18.932577-42.913842 49.603353 49.603353 0 0 1 35.719463-13.379021 47.836312 47.836312 0 0 1 35.088377 12.621718 42.913842 42.913842 0 0 1 12.621718 32.437816 39.379761 39.379761 0 0 1-17.544189 36.350548 81.157648 81.157648 0 0 1-45.564402 12.621719h-5.932208l-12.621718-1.388389-8.204117 70.934056 18.175274-4.796253a119.527672 119.527672 0 0 1 28.903735-4.543818 58.69099 58.69099 0 0 1 43.418711 16.660668 57.681252 57.681252 0 0 1 16.786885 42.913842 62.351288 62.351288 0 0 1-18.932577 46.321705 60.710465 60.710465 0 0 1-45.438186 18.680143 53.011217 53.011217 0 0 1-37.865155-13.88389 88.352028 88.352028 0 0 1-22.84531-49.098483l-2.398126-11.485764-69.41945 9.213854 1.262171 12.621718a124.828793 124.828793 0 0 0 40.894367 83.681992 129.246395 129.246395 0 0 0 89.740417 32.437816 137.702946 137.702946 0 0 0 98.449402-37.865155A122.30445 122.30445 0 0 0 950.667817 580.599039a108.546777 108.546777 0 0 0-20.825835-67.273759z"
p-id="3950"></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M4.55,9.87H7.49a.64.64,0,0,0,.61-.66V8.13a.61.61,0,1,0-1.22,0v.42H5.16V6.1H7.49a.64.64,0,0,0,.61-.66V1.66A.64.64,0,0,0,7.49,1H4.55a.64.64,0,0,0-.61.66V2.74a.64.64,0,0,0,.61.66.64.64,0,0,0,.61-.66V2.32H6.88V4.77H4.55a.64.64,0,0,0-.61.67V9.21A.64.64,0,0,0,4.55,9.87Z"/>
<rect class="cls-1" x="1" y="11.68" width="12" height="1.32"/>
<path class="cls-1" d="M1.61,2.32H2V9.21a.64.64,0,0,0,.61.66.64.64,0,0,0,.61-.66V1.66A.64.64,0,0,0,2.59,1h-1A.64.64,0,0,0,1,1.66.63.63,0,0,0,1.61,2.32Z"/>
<path class="cls-1" d="M12.39,1H9.45a.64.64,0,0,0-.61.66.63.63,0,0,0,.61.66h2.33V4.77H9.45a.67.67,0,0,0,0,1.33h2.33V8.55H9.45a.66.66,0,0,0,0,1.32h2.94A.64.64,0,0,0,13,9.21V1.66A.64.64,0,0,0,12.39,1Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677841934214" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="27474" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M284.672 899.072c0-178.176 145.408-321.536 323.584-319.488 129.024 2.048 241.664 83.968 292.864 202.752 16.384 40.96 24.576 79.872 24.576 116.736 0 18.432 14.336 34.816 32.768 34.816h4.096c18.432 0 34.816-14.336 34.816-32.768 0-167.936-104.448-309.248-251.904-366.592 61.44-43.008 102.4-114.688 102.4-196.608 2.048-131.072-104.448-241.664-235.52-245.76-141.312-6.144-253.952 104.448-253.952 243.712 0 81.92 40.96 155.648 104.448 198.656-145.408 57.344-249.856 198.656-249.856 364.544v2.048c0 16.384 14.336 30.72 32.768 30.72h8.192c16.384 0 30.72-14.336 30.72-32.768z m147.456-534.528c-20.48-118.784 81.92-219.136 198.656-198.656 71.68 12.288 129.024 69.632 141.312 141.312 20.48 118.784-81.92 219.136-198.656 198.656-71.68-12.288-129.024-69.632-141.312-141.312z" p-id="27475" ></path><path d="M323.584 489.472c-65.536-14.336-112.64-71.68-112.64-141.312 0-69.632 49.152-126.976 114.688-141.312 12.288-2.048 22.528-14.336 22.528-28.672 0-18.432-18.432-32.768-36.864-28.672-92.16 20.48-161.792 102.4-161.792 200.704 0 69.632 34.816 131.072 88.064 167.936-122.88 47.104-208.896 167.936-208.896 307.2 0 10.24 0 18.432 2.048 28.672v2.048c0 16.384 14.336 30.72 30.72 30.72s30.72-14.336 30.72-30.72v-2.048c0-8.192-2.048-18.432-2.048-28.672 0-135.168 100.352-247.808 231.424-266.24 16.384-2.048 30.72-16.384 30.72-34.816-4.096-16.384-14.336-30.72-28.672-34.816z" p-id="27476" ></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<path class="cls-1" d="M8.94,7.64a3.55,3.55,0,0,0,1.81-3A3.68,3.68,0,0,0,7,1,3.68,3.68,0,0,0,3.25,4.59,3.55,3.55,0,0,0,5.06,7.64,5.17,5.17,0,0,0,1,12.37a.64.64,0,0,0,.66.63.64.64,0,0,0,.65-.63c0-2.07,2.1-3.75,4.69-3.75s4.69,1.68,4.69,3.75a.66.66,0,0,0,1.31,0A5.17,5.17,0,0,0,8.94,7.64ZM7,2.25A2.39,2.39,0,0,1,9.44,4.59,2.39,2.39,0,0,1,7,6.92,2.39,2.39,0,0,1,4.56,4.59,2.39,2.39,0,0,1,7,2.25Z"/>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677838975661"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7061"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M957.91 512.93c0 247.03-200.26 447.29-447.29 447.29S63.33 759.97 63.33 512.93 263.59 65.65 510.62 65.65 957.91 265.9 957.91 512.93zM510.62 155.1c-197.62 0-357.83 160.21-357.83 357.83S313 870.77 510.62 870.77s357.83-160.21 357.83-357.83S708.25 155.1 510.62 155.1z"
p-id="7062"></path>
<path d="M510.62 512.93m-178.92 0a178.92 178.92 0 1 0 357.84 0 178.92 178.92 0 1 0-357.84 0Z" p-id="7063"></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M7,2.41A4.59,4.59,0,1,1,2.41,7,4.6,4.6,0,0,1,7,2.41M7,1a6,6,0,1,0,6,6A6,6,0,0,0,7,1ZM7,1"/>
<path class="cls-1" d="M5.17,7A1.83,1.83,0,1,0,7,5.17,1.83,1.83,0,0,0,5.17,7Zm0,0"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677839445542"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21903"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M225.664 576l-160 0L65.664 192l512 0 0 384-96 0c-17.664 0-32 14.336-32 32S464 640 481.664 640l96 0c35.392 0 64-28.608 64-64L641.664 192c0-35.392-28.608-64-64-64l-512 0c-35.392 0-64 28.608-64 64l0 384c0 35.392 28.608 64 64 64l160 0c17.664 0 32-14.336 32-32S243.392 576 225.664 576zM897.664 384l-160 0c-17.664 0-32 14.336-32 32S720 448 737.664 448l160 0 0 384-512 0L385.664 448l96 0c17.664 0 32-14.336 32-32S499.392 384 481.664 384l-96 0c-35.392 0-64 28.608-64 64l0 384c0 35.392 28.608 64 64 64l512 0c35.392 0 64-28.608 64-64L961.664 448C961.664 412.608 933.056 384 897.664 384z"
p-id="21904" ></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.RelationForm {
fill: #F78D04;
}
</style>
</defs>
<g>
<path class="RelationForm" d="M12,3.93h-.42a.61.61,0,0,0-.63.58.6.6,0,0,0,.63.57h.36v6.83H5.05V5.08H6.44a.6.6,0,0,0,.64-.57.61.61,0,0,0-.64-.58H4.88a.92.92,0,0,0-.94,1v7.17a.92.92,0,0,0,.94,1H12a1.06,1.06,0,0,0,1.1-1V4.9A1,1,0,0,0,12,3.93Z"/>
<path class="RelationForm" d="M2.45,7.94H2.07V2.09H8.92V7.92H7.56a.58.58,0,1,0,0,1.16H8.94a1,1,0,0,0,1.09-1V1.92a1.05,1.05,0,0,0-1.09-1H2a1.06,1.06,0,0,0-1.1,1V8.09a1.05,1.05,0,0,0,1.1,1h.41a.61.61,0,0,0,.63-.58A.57.57,0,0,0,2.45,7.94Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677838902567"
class="icon" viewBox="0 0 1126 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4946"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M312.383084 102.454109h506.83626V0.065505h-506.83626z m0-102.388604h506.83626c66.556816 0 66.556816 102.388604 0 102.388604h-506.83626a51.259576 51.259576 0 1 1 0-102.388604z m711.621147 204.784887V102.454109h-921.520472v102.396283z m0-204.784887a102.695777 102.695777 0 0 1 102.388604 102.388604v153.586745A48.379825 48.379825 0 0 1 1075.194694 307.238996H51.285617A48.379825 48.379825 0 0 1 0.087475 256.040854v-153.586745A102.695777 102.695777 0 0 1 102.476079 0.065505h921.520473z"
p-id="4947"></path>
<path
d="M102.476079 307.238996v563.14884A48.379825 48.379825 0 0 0 153.674221 921.585978h819.131869a48.379825 48.379825 0 0 0 51.198141-51.198142V460.825741a51.198142 51.198142 0 0 1 102.388604 0v409.562095a150.845222 150.845222 0 0 1-153.586745 153.586745H153.674221a150.845222 150.845222 0 0 1-153.586746-153.586745v-614.346982a48.379825 48.379825 0 0 1 51.198142-51.198142H1075.194694a48.379825 48.379825 0 0 1 51.198141 51.198142A48.379825 48.379825 0 0 1 1075.194694 307.238996z"
p-id="4948"></path>
<path
d="M256.062825 563.214345a48.379825 48.379825 0 0 1-51.198142-51.198142A48.379825 48.379825 0 0 1 256.062825 460.825741H460.847712a48.379825 48.379825 0 0 1 51.198141 51.198142A48.379825 48.379825 0 0 1 460.847712 563.214345z m0 204.784887a51.198142 51.198142 0 0 1 0-102.388604h409.569774a51.198142 51.198142 0 0 1 0 102.388604H256.062825z"
p-id="4949" data-spm-anchor-id="a313x.7781069.0.i5" class="selected"></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.RichText {
fill: #F78D04;
}
</style>
</defs>
<g>
<path class="RichText" d="M1.65,5.9H7.41a.68.68,0,0,0,0-1.35H1.65a.68.68,0,0,0,0,1.35Z"/>
<path class="RichText" d="M1.65,2.35h10.7A.64.64,0,0,0,12.91,2a.67.67,0,0,0,0-.67A.64.64,0,0,0,12.35,1H1.65A.66.66,0,0,0,1,1.67.67.67,0,0,0,1.65,2.35Z"/>
<path class="RichText" d="M7.41,11.65H1.65a.64.64,0,0,0-.56.34.67.67,0,0,0,0,.67.64.64,0,0,0,.56.34H7.41A.66.66,0,0,0,8,12.66.72.72,0,0,0,8,12,.66.66,0,0,0,7.41,11.65Z"/>
<path class="RichText" d="M12.35,8.1H1.65a.64.64,0,0,0-.56.34.67.67,0,0,0,0,.67.64.64,0,0,0,.56.34h10.7a.64.64,0,0,0,.56-.34.67.67,0,0,0,0-.67A.64.64,0,0,0,12.35,8.1Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677839386622"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21686"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M567.68 304c0-30.75072-24.92928-55.68-55.68-55.68s-55.68 24.92928-55.68 55.68S481.24928 359.68 512 359.68s55.68-24.92928 55.68-55.68z m74.24 0c0 71.75168-58.16832 129.92-129.92 129.92S382.08 375.75168 382.08 304 440.24832 174.08 512 174.08s129.92 58.16832 129.92 129.92z"
p-id="21687" ></path>
<path
d="M215.04 315.8784C217.07776 153.79968 349.91616 23.95136 512 25.6c162.08384-1.64864 294.91712 128.19968 296.95488 290.27328A288.78848 288.78848 0 0 1 660.48 566.43072l-117.2992 113.5872a49.00864 49.00864 0 0 1-68.3008 0l-122.496-118.77888A287.68768 287.68768 0 0 1 215.04 315.8784z m296.96 293.61664l105.4208-101.33504 4.4544-2.2272a215.28576 215.28576 0 0 0 111.35488-188.19584c-0.80896-121.15456-99.6864-218.71104-220.84608-217.89696l-0.384 0.00512c-121.14432-1.85856-220.86144 94.83776-222.72 215.98208v0.0512a214.54848 214.54848 0 0 0 106.15808 185.6l3.712 2.2272 3.34336 2.9696L512 609.49504z"
p-id="21688" ></path>
<path
d="M831.60064 656.63488h-96.88576a37.12 37.12 0 0 1 0-74.24h123.61216a37.12 37.12 0 0 1 37.12 25.24672l99.10784 296.95488a37.12 37.12 0 0 1-37.12 48.9984H66.56512a37.12 37.12 0 0 1-37.12-48.9984l99.10784-296.95488a37.12 37.12 0 0 1 37.12-25.24672H289.28a37.12 37.12 0 0 1 0 74.24H192.39936l-74.24 222.72h787.68128l-74.24-222.72z"
p-id="21689" ></path>
<path
d="M400.64 805.11488a37.12 37.12 0 0 1 0-74.24h222.72c20.49536 0 37.12 16.62464 37.12 37.12s-16.62464 37.12-37.12 37.12h-222.72z"
p-id="21690" ></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<path class="cls-1" d="M6.35,11.37A5.24,5.24,0,0,1,1,6.19,5.24,5.24,0,0,1,6.35,1,5.24,5.24,0,0,1,11.7,6.19a5.24,5.24,0,0,1-5.35,5.18Zm0-1.48a3.71,3.71,0,1,0,0-7.41,3.71,3.71,0,1,0,0,7.41Zm4.51,0L13,12l-1.07,1L9.79,10.93Zm0,0"/>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.Signature {
fill: #F78D04;
}
</style>
</defs>
<path class="Signature" d="M12.3,11.56A.72.72,0,0,1,12.39,13H6.66A.72.72,0,0,1,6,12.33a.73.73,0,0,1,.61-.77H12.3ZM6.9,1.9a2.56,2.56,0,0,1,2.59-.81,2.62,2.62,0,0,1,1.93,1.78,2.59,2.59,0,0,1-.77,2.66L4.89,11.42a.7.7,0,0,1-.31.18L.89,12.65a.69.69,0,0,1-.68-.18A.74.74,0,0,1,0,11.76L1.05,8a.74.74,0,0,1,.09-.21ZM6.47,4.25,2.07,8.73l-.68,2.51,2.45-.7L8.33,6ZM9.8,2.66a1.34,1.34,0,0,0-2,0l-.57.6,2,1.87L10,4.46a1.25,1.25,0,0,0,0-1.57l-.09-.13Zm-.15.15"/>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677841846605" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25135" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M711.15 757.38H311.52c-136.12 0-247.48-111.37-247.48-247.48v-16.23c0-136.12 111.37-247.48 247.48-247.48h399.63c136.12 0 247.48 111.37 247.48 247.48v16.23c0.01 136.11-111.36 247.48-247.48 247.48z m183.58-247.44v-16.32c0-100.95-82.59-183.54-183.54-183.54H311.47c-100.95 0-183.54 82.59-183.54 183.54v16.32c0 100.95 82.59 183.54 183.54 183.54H711.2c100.94 0 183.53-82.59 183.53-183.54z" p-id="25136" ></path><path d="M351.58 507.76m-127.8 0a127.8 127.8 0 1 0 255.6 0 127.8 127.8 0 1 0-255.6 0Z" p-id="25137" ></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M13.57,5.06a5.18,5.18,0,0,0-1.16-1.6A5.45,5.45,0,0,0,10.67,2.4,5.61,5.61,0,0,0,8.56,2H5.44a5.61,5.61,0,0,0-2.11.4A5.45,5.45,0,0,0,1.59,3.46,5.18,5.18,0,0,0,.43,5.06a4.59,4.59,0,0,0,0,3.88,5.18,5.18,0,0,0,1.16,1.6A5.45,5.45,0,0,0,3.33,11.6a5.61,5.61,0,0,0,2.11.4H8.56a5.61,5.61,0,0,0,2.11-.4,5.45,5.45,0,0,0,1.74-1.06,5.18,5.18,0,0,0,1.16-1.6,4.59,4.59,0,0,0,0-3.88ZM12.09,8.88a3.91,3.91,0,0,1-1.48,1.37,4.36,4.36,0,0,1-2.06.5H5.44a4.35,4.35,0,0,1-2.05-.5A3.91,3.91,0,0,1,1.91,8.88a3.49,3.49,0,0,1,0-3.76A3.91,3.91,0,0,1,3.39,3.75a4.35,4.35,0,0,1,2.05-.5H8.55a4.36,4.36,0,0,1,2.06.5,3.91,3.91,0,0,1,1.48,1.37,3.49,3.49,0,0,1,0,3.76Z"/>
<path class="cls-1" d="M4.85,5a2,2,0,0,1,1.47.6A1.94,1.94,0,0,1,6.93,7a1.94,1.94,0,0,1-.61,1.45,2,2,0,0,1-1.47.6,2,2,0,0,1-1.47-.6,2.05,2.05,0,0,1,0-2.9A2,2,0,0,1,4.85,5"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677842093471" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="33182" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M760.32 622.08a12.8 12.8 0 0 0-13.824 2.56l-153.6 153.6a12.8 12.8 0 0 0 9.216 22.016h153.6a12.8 12.8 0 0 0 12.8-12.8v-153.6a12.8 12.8 0 0 0-8.192-11.776z" p-id="33183"></path><path d="M768 153.6H256a128 128 0 0 0-128 128v512A128 128 0 0 0 256 921.6h512a128 128 0 0 0 128-128v-512A128 128 0 0 0 768 153.6z m76.8 640A76.8 76.8 0 0 1 768 870.4H256a76.8 76.8 0 0 1-76.8-76.8v-512A76.8 76.8 0 0 1 256 204.8h512a76.8 76.8 0 0 1 76.8 76.8z" p-id="33184"></path><path d="M307.2 398.848h409.6a25.6 25.6 0 0 0 0-51.2H307.2a25.6 25.6 0 0 0 0 51.2zM307.2 567.296h409.6a25.6 25.6 0 0 0 0-51.2H307.2a25.6 25.6 0 0 0 0 51.2zM512 685.056H307.2a25.6 25.6 0 0 0 0 51.2h204.8a25.6 25.6 0 0 0 0-51.2z" p-id="33185"></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<rect class="cls-1" x="1" y="11.62" width="12" height="1.38"/>
<rect class="cls-1" x="8.92" y="1.71" width="4.08" height="1.29"/>
<rect class="cls-1" x="9.91" y="6" width="3.09" height="1.42"/>
<path class="cls-1" d="M5.91,1H4.73L1,9.74H2.51L3.22,8H7.39l.7,1.75H9.64ZM3.68,6.73,5.31,2.8,7,6.73H3.68Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677842116206" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="34307" width="16" height="16" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M806.88 1002H202.2C90.74 1002 0.07 911.33 0.07 799.85V242.26c0-111.48 90.67-202.15 202.12-202.15h604.69c111.48 0 202.15 90.67 202.15 202.15v557.59c0 111.48-90.67 202.15-202.15 202.15zM202.2 120.61c-67.06 0-121.62 54.56-121.62 121.64v557.59c0 67.09 54.56 121.64 121.62 121.64h604.69c67.09 0 121.64-54.56 121.64-121.64V242.26c0-67.09-54.56-121.64-121.64-121.64l-604.69-0.01z" p-id="34308"></path><path d="M243.31 395.56h522.48v80.5H243.31zM243.31 608.82h292.74v80.5H243.31z" p-id="34309"></path></svg>
\ No newline at end of file
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<polygon class="cls-1" points="1 11.62 1 11.62 1 13 13 13 13 11.62 1 11.62"/>
<path class="cls-1" d="M4.67,8H9.33L10.1,9.8h1.61L7.64,1H6.36L2.29,9.8H3.9ZM7,2.4H7L8.75,6.79H5.25Z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1677839166044"
class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14568"
xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="14">
<path
d="M559.542857 256a47.542857 47.542857 0 0 0-95.085714 0v293.083429l191.561143 113.517714a47.542857 47.542857 0 1 0 48.420571-81.773714L559.542857 494.884571V256z"
p-id="14569"></path>
<path
d="M987.428571 512a475.428571 475.428571 0 1 1-950.857142 0 475.428571 475.428571 0 0 1 950.857142 0z m-95.085714 0A380.342857 380.342857 0 1 0 131.657143 512a380.342857 380.342857 0 0 0 760.685714 0z"
p-id="14570"></path>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<path class="cls-1" d="M6.5,1A6.5,6.5,0,1,1,0,7.5,6.5,6.5,0,0,1,6.5,1Zm0,1.28A5.22,5.22,0,1,0,11.72,7.5,5.22,5.22,0,0,0,6.5,2.28Zm0,2.08a.29.29,0,0,1,.29.29V7.23H9.44a.3.3,0,0,1,.3.29v.77a.29.29,0,0,1-.3.29H5.68a.29.29,0,0,1-.29-.29V4.65a.29.29,0,0,1,.29-.29Zm0,0"/>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #f78b00;
}
</style>
</defs>
<g>
<path class="cls-1" d="M4.9,10.71A3.77,3.77,0,0,1,1.27,7,3.79,3.79,0,0,1,4.9,3.27H6.09V2H4.9A5,5,0,0,0,0,7a5,5,0,0,0,4.9,5H6.09V10.71ZM9.1,2H7.87V3.27H9.1a3.72,3.72,0,0,1,0,7.44H7.87V12H9.1A5,5,0,0,0,14,7,5,5,0,0,0,9.1,2Zm0,0"/>
<rect class="cls-1" x="3.5" y="6.38" width="7" height="1.33"/>
</g>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M12.47,1H1.55A.55.55,0,0,0,1,1.55V12.32a.68.68,0,0,0,.68.68H12.37a.63.63,0,0,0,.63-.63V1.54A.54.54,0,0,0,12.47,1Zm-.8,1.33V9.08L10.15,7.82a.66.66,0,0,0-.87,0L8.4,8.7,6.09,6.63a.62.62,0,0,0-.49-.16.61.61,0,0,0-.45.24L2.33,10.26V2.33ZM2.88,11.67,5.74,8.06l2.24,2a.65.65,0,0,0,.88,0l.9-.87,1.91,1.58v.9Z"/>
<circle class="cls-1" cx="8.97" cy="5" r="1.25"/>
</g>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #f78b00;
}
</style>
</defs>
<path class="cls-1" d="M6.5,1A6.5,6.5,0,1,0,13,7.5,6.5,6.5,0,0,0,6.5,1Zm0,11.81A5.31,5.31,0,1,1,11.81,7.5,5.31,5.31,0,0,1,6.5,12.81Z"/>
<path class="cls-1" d="M10.84,6.23a.49.49,0,0,0-.4-.37l-2.36-.3L7,3.44a.54.54,0,0,0-1,0L5,5.64,2.6,6a.57.57,0,0,0-.44.37.49.49,0,0,0,.15.55L4.05,8.57l-.36,2.36a.54.54,0,0,0,.55.63.47.47,0,0,0,.26-.07l2.12-1.16,2.12,1.08a.52.52,0,0,0,.56-.06.5.5,0,0,0,.2-.55L9,8.46l1.68-1.69A.51.51,0,0,0,10.84,6.23ZM8.25,9.94,6.81,9.22l-.07,0a.81.81,0,0,0-.43.09l-1.4.76.25-1.57A.51.51,0,0,0,5,8L3.82,6.91l1.56-.26a.54.54,0,0,0,.43-.33l.68-1.45.73,1.41a.54.54,0,0,0,.42.28l1.58.21L8.11,7.91A.58.58,0,0,0,8,8.39Z"/>
</svg>
<svg id="图层_1" data-name="图层 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14">
<defs>
<style>
.cls-1 {
fill: #1685ff;
}
</style>
</defs>
<g>
<path class="cls-1" d="M8.25,1.6V3.81l4.5,3.05a.58.58,0,0,1,.25.48V12.4a.6.6,0,0,1-.18.42.63.63,0,0,1-.45.18H1.63a.63.63,0,0,1-.45-.18A.6.6,0,0,1,1,12.4V2.78a.61.61,0,0,1,.51-.59L7.51,1A.62.62,0,0,1,8,1.14a.56.56,0,0,1,.23.46ZM5.57,11.8H7V2.33l-4.75.94V11.8H4.31M8.25,5.32V11.8h3.5V7.64L8.25,5.32Zm0,0"/>
<rect class="cls-1" x="3.19" y="6.18" width="2.92" height="1.2"/>
</g>
</svg>
......@@ -21,19 +21,33 @@ body #app {
padding: 0 !important;
}
//分组内层不允许选中
// .fr-content.ml3>.object>.field-wrapper.relative.w-100 {
// pointer-events: none;
// }
// .fr-content.ml3>.object>.field-wrapper.relative.w-100 .field-wrapper.relative.w-100 {
// pointer-events: all;
// }
.fr-content.ml3>.object>.field-wrapper.relative.w-100 .field-wrapper.relative.w-100 .fr-field {
pointer-events: none;
}
.object>.field-wrapper.relative.w-100 {
padding: 0 !important;
margin: 0 !important;
border: none !important;
}
//内层框线样式
.fr-content.ml3 {
.field-wrapper.relative.w-100 {
border: none !important;
.flex.flex-wrap.pl0>.field-wrapper.relative.w-100 {
border: 1px solid #efefef;
}
.object>.flex-wrap.pl0>.field-wrapper.relative.w-100 {
border: none;
}
//
.fr-field-complex {
border: none !important;
}
......@@ -49,7 +63,7 @@ body #app {
}
.left-layout {
width: 267px !important;
width: 282px !important;
padding: 7px;
background: #F1F3F6;
......@@ -85,6 +99,8 @@ body #app {
.pl0 {
margin-bottom: 7px;
padding: 10px;
padding-top: 0;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment