点位配置.html 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>点位配置</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/点位配置/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/点位配置/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (客户管理端-一级) -->
  54. <div id="u34976" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u34977" class="ax_default box_2 transition">
  57. <div id="u34977_div" class=""></div>
  58. <div id="u34977_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u34978" class="ax_default label transition">
  64. <div id="u34978_div" class=""></div>
  65. <div id="u34978_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u34979" class="ax_default box_2 transition">
  71. <div id="u34979_div" class=""></div>
  72. <div id="u34979_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u34980" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u34981" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u34981_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u34981_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u34981_img_cl14">
  84. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
  85. </mask>
  86. </defs>
  87. <g transform="matrix(1 0 0 1 -19 -10 )">
  88. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
  89. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u34981_img_cl14)" />
  90. </g>
  91. </svg>
  92. <div id="u34981_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u34982" class="ax_default label transition">
  98. <div id="u34982_div" class=""></div>
  99. <div id="u34982_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u34983" class="ax_default box_2 transition">
  106. <div id="u34983_div" class=""></div>
  107. <div id="u34983_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u34984" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u34985" class="ax_default label transition">
  115. <div id="u34985_div" class=""></div>
  116. <div id="u34985_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u34986" class="ax_default placeholder transition">
  122. <svg data="images/点位配置/u34986.svg" id="u34986_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u34986_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u34986_img_cl1830">
  126. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  127. </mask>
  128. </defs>
  129. <g transform="matrix(1 0 0 1 -20 -175 )">
  130. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
  131. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u34986_img_cl1830)" />
  132. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
  133. </g>
  134. </svg>
  135. <div id="u34986_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u34987" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u34988" class="ax_default label transition">
  144. <div id="u34988_div" class=""></div>
  145. <div id="u34988_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u34989" class="ax_default placeholder transition">
  151. <svg data="images/点位配置/u34989.svg" id="u34989_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u34989_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u34989_img_cl1831">
  155. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  156. </mask>
  157. </defs>
  158. <g transform="matrix(1 0 0 1 -20 -385 )">
  159. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
  160. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u34989_img_cl1831)" />
  161. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
  162. </g>
  163. </svg>
  164. <div id="u34989_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u34990" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u34991" class="ax_default label transition">
  173. <div id="u34991_div" class=""></div>
  174. <div id="u34991_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u34992" class="ax_default placeholder transition">
  180. <svg data="images/点位配置/u34992.svg" id="u34992_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u34992_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u34992_img_cl1832">
  184. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  185. </mask>
  186. </defs>
  187. <g transform="matrix(1 0 0 1 -20 -137 )">
  188. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
  189. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u34992_img_cl1832)" />
  190. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
  191. </g>
  192. </svg>
  193. <div id="u34992_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u34993" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u34994" class="ax_default label transition">
  202. <div id="u34994_div" class=""></div>
  203. <div id="u34994_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u34995" class="ax_default placeholder transition">
  209. <svg data="images/点位配置/u34995.svg" id="u34995_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u34995_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u34995_img_cl1833">
  213. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  214. </mask>
  215. </defs>
  216. <g transform="matrix(1 0 0 1 -20 -427 )">
  217. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
  218. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u34995_img_cl1833)" />
  219. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
  220. </g>
  221. </svg>
  222. <div id="u34995_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u34996" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u34997" class="ax_default label transition">
  231. <div id="u34997_div" class=""></div>
  232. <div id="u34997_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u34998" class="ax_default placeholder transition">
  238. <svg data="images/点位配置/u34998.svg" id="u34998_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u34998_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u34998_img_cl1834">
  242. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  243. </mask>
  244. </defs>
  245. <g transform="matrix(1 0 0 1 -20 -301 )">
  246. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
  247. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u34998_img_cl1834)" />
  248. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
  249. </g>
  250. </svg>
  251. <div id="u34998_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u34999" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u35000" class="ax_default label transition">
  260. <div id="u35000_div" class=""></div>
  261. <div id="u35000_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u35001" class="ax_default placeholder transition">
  267. <svg data="images/点位配置/u35001.svg" id="u35001_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u35001_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u35001_img_cl1835">
  271. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  272. </mask>
  273. </defs>
  274. <g transform="matrix(1 0 0 1 -20 -217 )">
  275. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
  276. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u35001_img_cl1835)" />
  277. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
  278. </g>
  279. </svg>
  280. <div id="u35001_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u35002" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u35003" class="ax_default label transition">
  289. <div id="u35003_div" class=""></div>
  290. <div id="u35003_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u35004" class="ax_default placeholder transition">
  296. <svg data="images/点位配置/u35004.svg" id="u35004_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u35004_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u35004_img_cl1836">
  300. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  301. </mask>
  302. </defs>
  303. <g transform="matrix(1 0 0 1 -20 -343 )">
  304. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
  305. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u35004_img_cl1836)" />
  306. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
  307. </g>
  308. </svg>
  309. <div id="u35004_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u35005" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u35006" class="ax_default label transition">
  318. <div id="u35006_div" class=""></div>
  319. <div id="u35006_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u35007" class="ax_default placeholder transition">
  325. <svg data="images/点位配置/u35007.svg" id="u35007_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u35007_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u35007_img_cl1837">
  329. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  330. </mask>
  331. </defs>
  332. <g transform="matrix(1 0 0 1 -20 -469 )">
  333. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
  334. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u35007_img_cl1837)" />
  335. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
  336. </g>
  337. </svg>
  338. <div id="u35007_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u35008" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u35009" class="ax_default label transition">
  347. <div id="u35009_div" class=""></div>
  348. <div id="u35009_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u35010" class="ax_default placeholder transition">
  354. <svg data="images/点位配置/u35010.svg" id="u35010_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u35010_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u35010_img_cl1838">
  358. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  359. </mask>
  360. </defs>
  361. <g transform="matrix(1 0 0 1 -20 -1144 )">
  362. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
  363. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u35010_img_cl1838)" />
  364. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
  365. </g>
  366. </svg>
  367. <div id="u35010_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u35011" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u35012" class="ax_default label transition">
  376. <div id="u35012_div" class=""></div>
  377. <div id="u35012_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u35013" class="ax_default placeholder transition">
  383. <svg data="images/点位配置/u35013.svg" id="u35013_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u35013_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u35013_img_cl1839">
  387. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  388. </mask>
  389. </defs>
  390. <g transform="matrix(1 0 0 1 -20 -1186 )">
  391. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
  392. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u35013_img_cl1839)" />
  393. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
  394. </g>
  395. </svg>
  396. <div id="u35013_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u35014" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u35015" class="ax_default label transition">
  405. <div id="u35015_div" class=""></div>
  406. <div id="u35015_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u35016" class="ax_default placeholder transition">
  412. <svg data="images/点位配置/u35016.svg" id="u35016_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u35016_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u35016_img_cl1840">
  416. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  417. </mask>
  418. </defs>
  419. <g transform="matrix(1 0 0 1 -20 -259 )">
  420. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
  421. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u35016_img_cl1840)" />
  422. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
  423. </g>
  424. </svg>
  425. <div id="u35016_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u35017" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u35018" class="ax_default droplist transition">
  434. <div id="u35018_div" class=""></div>
  435. <select id="u35018_input" class="u35018_input">
  436. <option class="u35018_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u35019" class="ax_default placeholder transition">
  441. <svg data="images/点位配置/u35019.svg" id="u35019_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u35019_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u35019_img_cl1841">
  445. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  446. </mask>
  447. </defs>
  448. <g transform="matrix(1 0 0 1 -1194 -14 )">
  449. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
  450. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u35019_img_cl1841)" />
  451. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
  452. </g>
  453. </svg>
  454. <div id="u35019_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u35020" class="ax_default label transition">
  460. <div id="u35020_div" class=""></div>
  461. <div id="u35020_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u35021" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u35021_img" class="img generatedImage">
  468. <g transform="matrix(1 0 0 1 -1452 -19 )">
  469. <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
  470. </g>
  471. </svg>
  472. <div id="u35021_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u35022" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u35023" class="ax_default label transition">
  481. <div id="u35023_div" class=""></div>
  482. <div id="u35023_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u35024" class="ax_default placeholder transition">
  488. <svg data="images/点位配置/u35024.svg" id="u35024_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u35024_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u35024_img_cl1842">
  492. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  493. </mask>
  494. </defs>
  495. <g transform="matrix(1 0 0 1 -20 -1081 )">
  496. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
  497. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u35024_img_cl1842)" />
  498. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
  499. </g>
  500. </svg>
  501. <div id="u35024_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u35025" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u35025_img" class="img generatedImage">
  509. <g transform="matrix(1 0 0 1 -20 -1123 )">
  510. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  511. </g>
  512. </svg>
  513. <div id="u35025_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u35026" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u35026_img" class="img generatedImage">
  520. <g transform="matrix(1 0 0 1 -20 -1123 )">
  521. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  522. </g>
  523. </svg>
  524. <div id="u35026_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u35027" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u35027_img" class="img generatedImage">
  531. <g transform="matrix(1 0 0 1 -20 -112 )">
  532. <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
  533. </g>
  534. </svg>
  535. <div id="u35027_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u35028" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u35029" class="ax_default label transition">
  543. <div id="u35029_div" class=""></div>
  544. <div id="u35029_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u35030" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u35030_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u35030_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u35030_img_cl28">
  554. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
  555. </mask>
  556. </defs>
  557. <g transform="matrix(1 0 0 1 -20 -75 )">
  558. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
  559. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u35030_img_cl28)" />
  560. <path d="M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u35030_img_cl28)" />
  561. </g>
  562. </svg>
  563. <div id="u35030_text" class="text " style="display:none; visibility: hidden">
  564. <p></p>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <!-- Unnamed (Rectangle) -->
  570. <div id="u35031" class="ax_default box_2 transition">
  571. <div id="u35031_div" class=""></div>
  572. <div id="u35031_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Table) -->
  577. <div id="u35032" class="ax_default">
  578. <!-- Unnamed (Table cell) -->
  579. <div id="u35033" class="ax_default table_cell transition">
  580. <svg data="images/点位配置/u35033.svg" id="u35033_img" class="img generatedImage" viewbox="0 0 47 30">
  581. <path d="M 1 1 L 47 1 L 47 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  582. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  583. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  584. </svg>
  585. <div id="u35033_text" class="text ">
  586. <p><span>序号</span></p>
  587. </div>
  588. </div>
  589. <!-- Unnamed (Table cell) -->
  590. <div id="u35034" class="ax_default table_cell transition">
  591. <svg data="images/点位配置/u35034.svg" id="u35034_img" class="img generatedImage" viewbox="47 0 241 30">
  592. <path d="M 1 1 L 241 1 L 241 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 47 0 )" class="fill" />
  593. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 0 )" class="stroke" />
  594. <path d="M 0 0.5 L 241 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 0 )" class="stroke" />
  595. </svg>
  596. <div id="u35034_text" class="text ">
  597. <p><span>点位名称</span></p>
  598. </div>
  599. </div>
  600. <!-- Unnamed (Table cell) -->
  601. <div id="u35035" class="ax_default table_cell transition">
  602. <svg data="images/点位配置/u35035.svg" id="u35035_img" class="img generatedImage" viewbox="288 0 172 30">
  603. <path d="M 1 1 L 172 1 L 172 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 288 0 )" class="fill" />
  604. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 0 )" class="stroke" />
  605. <path d="M 0 0.5 L 172 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 0 )" class="stroke" />
  606. </svg>
  607. <div id="u35035_text" class="text ">
  608. <p><span>点位类型</span></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u35036" class="ax_default table_cell transition">
  613. <svg data="images/点位配置/u35036.svg" id="u35036_img" class="img generatedImage" viewbox="460 0 196 30">
  614. <path d="M 1 1 L 196 1 L 196 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 460 0 )" class="fill" />
  615. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 0 )" class="stroke" />
  616. <path d="M 0 0.5 L 196 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 0 )" class="stroke" />
  617. </svg>
  618. <div id="u35036_text" class="text ">
  619. <p><span>关联空间</span></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Table cell) -->
  623. <div id="u35037" class="ax_default table_cell transition">
  624. <svg data="images/点位配置/u35037.svg" id="u35037_img" class="img generatedImage" viewbox="656 0 243 30">
  625. <path d="M 1 1 L 243 1 L 243 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 656 0 )" class="fill" />
  626. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 0 )" class="stroke" />
  627. <path d="M 0 0.5 L 243 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 0 )" class="stroke" />
  628. </svg>
  629. <div id="u35037_text" class="text ">
  630. <p><span>地理位置</span></p>
  631. </div>
  632. </div>
  633. <!-- Unnamed (Table cell) -->
  634. <div id="u35038" class="ax_default table_cell transition">
  635. <svg data="images/点位配置/u35038.svg" id="u35038_img" class="img generatedImage" viewbox="899 0 154 30">
  636. <path d="M 1 1 L 154 1 L 154 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 899 0 )" class="fill" />
  637. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 0 )" class="stroke" />
  638. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 0 )" class="stroke" />
  639. </svg>
  640. <div id="u35038_text" class="text ">
  641. <p><span>项目</span></p>
  642. </div>
  643. </div>
  644. <!-- Unnamed (Table cell) -->
  645. <div id="u35039" class="ax_default table_cell transition">
  646. <svg data="images/点位配置/u35039.svg" id="u35039_img" class="img generatedImage" viewbox="1053 0 154 30">
  647. <path d="M 1 1 L 153 1 L 153 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1053 0 )" class="fill" />
  648. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 0 )" class="stroke" />
  649. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 0 )" class="stroke" />
  650. <path d="M 153.5 1 L 153.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 0 )" class="stroke" />
  651. </svg>
  652. <div id="u35039_text" class="text ">
  653. <p><span>操作</span></p>
  654. </div>
  655. </div>
  656. <!-- Unnamed (Table cell) -->
  657. <div id="u35040" class="ax_default table_cell transition">
  658. <svg data="images/点位配置/u35040.svg" id="u35040_img" class="img generatedImage" viewbox="0 30 47 38">
  659. <path d="M 1 1 L 47 1 L 47 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 30 )" class="fill" />
  660. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  661. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  662. </svg>
  663. <div id="u35040_text" class="text ">
  664. <p><span>1</span></p>
  665. </div>
  666. </div>
  667. <!-- Unnamed (Table cell) -->
  668. <div id="u35041" class="ax_default table_cell transition">
  669. <svg data="images/点位配置/u35041.svg" id="u35041_img" class="img generatedImage" viewbox="47 30 241 38">
  670. <path d="M 1 1 L 241 1 L 241 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 47 30 )" class="fill" />
  671. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 30 )" class="stroke" />
  672. <path d="M 0 0.5 L 241 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 30 )" class="stroke" />
  673. </svg>
  674. <div id="u35041_text" class="text " style="display:none; visibility: hidden">
  675. <p></p>
  676. </div>
  677. </div>
  678. <!-- Unnamed (Table cell) -->
  679. <div id="u35042" class="ax_default table_cell transition">
  680. <svg data="images/点位配置/u35042.svg" id="u35042_img" class="img generatedImage" viewbox="288 30 172 38">
  681. <path d="M 1 1 L 172 1 L 172 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 288 30 )" class="fill" />
  682. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 30 )" class="stroke" />
  683. <path d="M 0 0.5 L 172 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 30 )" class="stroke" />
  684. </svg>
  685. <div id="u35042_text" class="text " style="display:none; visibility: hidden">
  686. <p></p>
  687. </div>
  688. </div>
  689. <!-- Unnamed (Table cell) -->
  690. <div id="u35043" class="ax_default table_cell transition">
  691. <svg data="images/点位配置/u35043.svg" id="u35043_img" class="img generatedImage" viewbox="460 30 196 38">
  692. <path d="M 1 1 L 196 1 L 196 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 460 30 )" class="fill" />
  693. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 30 )" class="stroke" />
  694. <path d="M 0 0.5 L 196 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 30 )" class="stroke" />
  695. </svg>
  696. <div id="u35043_text" class="text " style="display:none; visibility: hidden">
  697. <p></p>
  698. </div>
  699. </div>
  700. <!-- Unnamed (Table cell) -->
  701. <div id="u35044" class="ax_default table_cell transition">
  702. <svg data="images/点位配置/u35044.svg" id="u35044_img" class="img generatedImage" viewbox="656 30 243 38">
  703. <path d="M 1 1 L 243 1 L 243 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 656 30 )" class="fill" />
  704. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 30 )" class="stroke" />
  705. <path d="M 0 0.5 L 243 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 30 )" class="stroke" />
  706. </svg>
  707. <div id="u35044_text" class="text " style="display:none; visibility: hidden">
  708. <p></p>
  709. </div>
  710. </div>
  711. <!-- Unnamed (Table cell) -->
  712. <div id="u35045" class="ax_default table_cell transition">
  713. <svg data="images/点位配置/u35045.svg" id="u35045_img" class="img generatedImage" viewbox="899 30 154 38">
  714. <path d="M 1 1 L 154 1 L 154 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 899 30 )" class="fill" />
  715. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 30 )" class="stroke" />
  716. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 30 )" class="stroke" />
  717. </svg>
  718. <div id="u35045_text" class="text " style="display:none; visibility: hidden">
  719. <p></p>
  720. </div>
  721. </div>
  722. <!-- Unnamed (Table cell) -->
  723. <div id="u35046" class="ax_default table_cell transition">
  724. <svg data="images/点位配置/u35046.svg" id="u35046_img" class="img generatedImage" viewbox="1053 30 154 38">
  725. <path d="M 1 1 L 153 1 L 153 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 1053 30 )" class="fill" />
  726. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 30 )" class="stroke" />
  727. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 30 )" class="stroke" />
  728. <path d="M 153.5 1 L 153.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 30 )" class="stroke" />
  729. </svg>
  730. <div id="u35046_text" class="text ">
  731. <p><span style="font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;">编辑</span><span style="font-family:'ArialMT', 'Arial', sans-serif;">&nbsp; </span><span style="font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;">删除</span></p>
  732. </div>
  733. </div>
  734. <!-- Unnamed (Table cell) -->
  735. <div id="u35047" class="ax_default table_cell transition">
  736. <svg data="images/点位配置/u35047.svg" id="u35047_img" class="img generatedImage" viewbox="0 68 47 38">
  737. <path d="M 1 1 L 47 1 L 47 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 68 )" class="fill" />
  738. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 68 )" class="stroke" />
  739. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 68 )" class="stroke" />
  740. </svg>
  741. <div id="u35047_text" class="text " style="display:none; visibility: hidden">
  742. <p></p>
  743. </div>
  744. </div>
  745. <!-- Unnamed (Table cell) -->
  746. <div id="u35048" class="ax_default table_cell transition">
  747. <svg data="images/点位配置/u35048.svg" id="u35048_img" class="img generatedImage" viewbox="47 68 241 38">
  748. <path d="M 1 1 L 241 1 L 241 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 47 68 )" class="fill" />
  749. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 68 )" class="stroke" />
  750. <path d="M 0 0.5 L 241 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 68 )" class="stroke" />
  751. </svg>
  752. <div id="u35048_text" class="text " style="display:none; visibility: hidden">
  753. <p></p>
  754. </div>
  755. </div>
  756. <!-- Unnamed (Table cell) -->
  757. <div id="u35049" class="ax_default table_cell transition">
  758. <svg data="images/点位配置/u35049.svg" id="u35049_img" class="img generatedImage" viewbox="288 68 172 38">
  759. <path d="M 1 1 L 172 1 L 172 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 288 68 )" class="fill" />
  760. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 68 )" class="stroke" />
  761. <path d="M 0 0.5 L 172 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 68 )" class="stroke" />
  762. </svg>
  763. <div id="u35049_text" class="text " style="display:none; visibility: hidden">
  764. <p></p>
  765. </div>
  766. </div>
  767. <!-- Unnamed (Table cell) -->
  768. <div id="u35050" class="ax_default table_cell transition">
  769. <svg data="images/点位配置/u35050.svg" id="u35050_img" class="img generatedImage" viewbox="460 68 196 38">
  770. <path d="M 1 1 L 196 1 L 196 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 460 68 )" class="fill" />
  771. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 68 )" class="stroke" />
  772. <path d="M 0 0.5 L 196 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 68 )" class="stroke" />
  773. </svg>
  774. <div id="u35050_text" class="text " style="display:none; visibility: hidden">
  775. <p></p>
  776. </div>
  777. </div>
  778. <!-- Unnamed (Table cell) -->
  779. <div id="u35051" class="ax_default table_cell transition">
  780. <svg data="images/点位配置/u35051.svg" id="u35051_img" class="img generatedImage" viewbox="656 68 243 38">
  781. <path d="M 1 1 L 243 1 L 243 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 656 68 )" class="fill" />
  782. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 68 )" class="stroke" />
  783. <path d="M 0 0.5 L 243 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 68 )" class="stroke" />
  784. </svg>
  785. <div id="u35051_text" class="text " style="display:none; visibility: hidden">
  786. <p></p>
  787. </div>
  788. </div>
  789. <!-- Unnamed (Table cell) -->
  790. <div id="u35052" class="ax_default table_cell transition">
  791. <svg data="images/点位配置/u35052.svg" id="u35052_img" class="img generatedImage" viewbox="899 68 154 38">
  792. <path d="M 1 1 L 154 1 L 154 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 899 68 )" class="fill" />
  793. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 68 )" class="stroke" />
  794. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 68 )" class="stroke" />
  795. </svg>
  796. <div id="u35052_text" class="text " style="display:none; visibility: hidden">
  797. <p></p>
  798. </div>
  799. </div>
  800. <!-- Unnamed (Table cell) -->
  801. <div id="u35053" class="ax_default table_cell transition">
  802. <svg data="images/点位配置/u35053.svg" id="u35053_img" class="img generatedImage" viewbox="1053 68 154 38">
  803. <path d="M 1 1 L 153 1 L 153 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 1053 68 )" class="fill" />
  804. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 68 )" class="stroke" />
  805. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 68 )" class="stroke" />
  806. <path d="M 153.5 1 L 153.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 68 )" class="stroke" />
  807. </svg>
  808. <div id="u35053_text" class="text " style="display:none; visibility: hidden">
  809. <p></p>
  810. </div>
  811. </div>
  812. <!-- Unnamed (Table cell) -->
  813. <div id="u35054" class="ax_default table_cell transition">
  814. <svg data="images/点位配置/u35054.svg" id="u35054_img" class="img generatedImage" viewbox="0 106 47 38">
  815. <path d="M 1 1 L 47 1 L 47 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 106 )" class="fill" />
  816. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 106 )" class="stroke" />
  817. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 106 )" class="stroke" />
  818. </svg>
  819. <div id="u35054_text" class="text " style="display:none; visibility: hidden">
  820. <p></p>
  821. </div>
  822. </div>
  823. <!-- Unnamed (Table cell) -->
  824. <div id="u35055" class="ax_default table_cell transition">
  825. <svg data="images/点位配置/u35055.svg" id="u35055_img" class="img generatedImage" viewbox="47 106 241 38">
  826. <path d="M 1 1 L 241 1 L 241 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 47 106 )" class="fill" />
  827. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 106 )" class="stroke" />
  828. <path d="M 0 0.5 L 241 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 106 )" class="stroke" />
  829. </svg>
  830. <div id="u35055_text" class="text " style="display:none; visibility: hidden">
  831. <p></p>
  832. </div>
  833. </div>
  834. <!-- Unnamed (Table cell) -->
  835. <div id="u35056" class="ax_default table_cell transition">
  836. <svg data="images/点位配置/u35056.svg" id="u35056_img" class="img generatedImage" viewbox="288 106 172 38">
  837. <path d="M 1 1 L 172 1 L 172 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 288 106 )" class="fill" />
  838. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 106 )" class="stroke" />
  839. <path d="M 0 0.5 L 172 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 106 )" class="stroke" />
  840. </svg>
  841. <div id="u35056_text" class="text " style="display:none; visibility: hidden">
  842. <p></p>
  843. </div>
  844. </div>
  845. <!-- Unnamed (Table cell) -->
  846. <div id="u35057" class="ax_default table_cell transition">
  847. <svg data="images/点位配置/u35057.svg" id="u35057_img" class="img generatedImage" viewbox="460 106 196 38">
  848. <path d="M 1 1 L 196 1 L 196 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 460 106 )" class="fill" />
  849. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 106 )" class="stroke" />
  850. <path d="M 0 0.5 L 196 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 106 )" class="stroke" />
  851. </svg>
  852. <div id="u35057_text" class="text " style="display:none; visibility: hidden">
  853. <p></p>
  854. </div>
  855. </div>
  856. <!-- Unnamed (Table cell) -->
  857. <div id="u35058" class="ax_default table_cell transition">
  858. <svg data="images/点位配置/u35058.svg" id="u35058_img" class="img generatedImage" viewbox="656 106 243 38">
  859. <path d="M 1 1 L 243 1 L 243 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 656 106 )" class="fill" />
  860. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 106 )" class="stroke" />
  861. <path d="M 0 0.5 L 243 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 106 )" class="stroke" />
  862. </svg>
  863. <div id="u35058_text" class="text " style="display:none; visibility: hidden">
  864. <p></p>
  865. </div>
  866. </div>
  867. <!-- Unnamed (Table cell) -->
  868. <div id="u35059" class="ax_default table_cell transition">
  869. <svg data="images/点位配置/u35059.svg" id="u35059_img" class="img generatedImage" viewbox="899 106 154 38">
  870. <path d="M 1 1 L 154 1 L 154 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 899 106 )" class="fill" />
  871. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 106 )" class="stroke" />
  872. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 106 )" class="stroke" />
  873. </svg>
  874. <div id="u35059_text" class="text " style="display:none; visibility: hidden">
  875. <p></p>
  876. </div>
  877. </div>
  878. <!-- Unnamed (Table cell) -->
  879. <div id="u35060" class="ax_default table_cell transition">
  880. <svg data="images/点位配置/u35060.svg" id="u35060_img" class="img generatedImage" viewbox="1053 106 154 38">
  881. <path d="M 1 1 L 153 1 L 153 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 1053 106 )" class="fill" />
  882. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 106 )" class="stroke" />
  883. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 106 )" class="stroke" />
  884. <path d="M 153.5 1 L 153.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 106 )" class="stroke" />
  885. </svg>
  886. <div id="u35060_text" class="text " style="display:none; visibility: hidden">
  887. <p></p>
  888. </div>
  889. </div>
  890. <!-- Unnamed (Table cell) -->
  891. <div id="u35061" class="ax_default table_cell transition">
  892. <svg data="images/点位配置/u35061.svg" id="u35061_img" class="img generatedImage" viewbox="0 144 47 38">
  893. <path d="M 1 1 L 47 1 L 47 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 144 )" class="fill" />
  894. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 144 )" class="stroke" />
  895. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 144 )" class="stroke" />
  896. </svg>
  897. <div id="u35061_text" class="text " style="display:none; visibility: hidden">
  898. <p></p>
  899. </div>
  900. </div>
  901. <!-- Unnamed (Table cell) -->
  902. <div id="u35062" class="ax_default table_cell transition">
  903. <svg data="images/点位配置/u35062.svg" id="u35062_img" class="img generatedImage" viewbox="47 144 241 38">
  904. <path d="M 1 1 L 241 1 L 241 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 47 144 )" class="fill" />
  905. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 144 )" class="stroke" />
  906. <path d="M 0 0.5 L 241 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 144 )" class="stroke" />
  907. </svg>
  908. <div id="u35062_text" class="text " style="display:none; visibility: hidden">
  909. <p></p>
  910. </div>
  911. </div>
  912. <!-- Unnamed (Table cell) -->
  913. <div id="u35063" class="ax_default table_cell transition">
  914. <svg data="images/点位配置/u35063.svg" id="u35063_img" class="img generatedImage" viewbox="288 144 172 38">
  915. <path d="M 1 1 L 172 1 L 172 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 288 144 )" class="fill" />
  916. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 144 )" class="stroke" />
  917. <path d="M 0 0.5 L 172 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 144 )" class="stroke" />
  918. </svg>
  919. <div id="u35063_text" class="text " style="display:none; visibility: hidden">
  920. <p></p>
  921. </div>
  922. </div>
  923. <!-- Unnamed (Table cell) -->
  924. <div id="u35064" class="ax_default table_cell transition">
  925. <svg data="images/点位配置/u35064.svg" id="u35064_img" class="img generatedImage" viewbox="460 144 196 38">
  926. <path d="M 1 1 L 196 1 L 196 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 460 144 )" class="fill" />
  927. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 144 )" class="stroke" />
  928. <path d="M 0 0.5 L 196 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 144 )" class="stroke" />
  929. </svg>
  930. <div id="u35064_text" class="text " style="display:none; visibility: hidden">
  931. <p></p>
  932. </div>
  933. </div>
  934. <!-- Unnamed (Table cell) -->
  935. <div id="u35065" class="ax_default table_cell transition">
  936. <svg data="images/点位配置/u35065.svg" id="u35065_img" class="img generatedImage" viewbox="656 144 243 38">
  937. <path d="M 1 1 L 243 1 L 243 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 656 144 )" class="fill" />
  938. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 144 )" class="stroke" />
  939. <path d="M 0 0.5 L 243 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 144 )" class="stroke" />
  940. </svg>
  941. <div id="u35065_text" class="text " style="display:none; visibility: hidden">
  942. <p></p>
  943. </div>
  944. </div>
  945. <!-- Unnamed (Table cell) -->
  946. <div id="u35066" class="ax_default table_cell transition">
  947. <svg data="images/点位配置/u35066.svg" id="u35066_img" class="img generatedImage" viewbox="899 144 154 38">
  948. <path d="M 1 1 L 154 1 L 154 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 899 144 )" class="fill" />
  949. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 144 )" class="stroke" />
  950. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 144 )" class="stroke" />
  951. </svg>
  952. <div id="u35066_text" class="text " style="display:none; visibility: hidden">
  953. <p></p>
  954. </div>
  955. </div>
  956. <!-- Unnamed (Table cell) -->
  957. <div id="u35067" class="ax_default table_cell transition">
  958. <svg data="images/点位配置/u35067.svg" id="u35067_img" class="img generatedImage" viewbox="1053 144 154 38">
  959. <path d="M 1 1 L 153 1 L 153 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 1053 144 )" class="fill" />
  960. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 144 )" class="stroke" />
  961. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 144 )" class="stroke" />
  962. <path d="M 153.5 1 L 153.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 144 )" class="stroke" />
  963. </svg>
  964. <div id="u35067_text" class="text " style="display:none; visibility: hidden">
  965. <p></p>
  966. </div>
  967. </div>
  968. <!-- Unnamed (Table cell) -->
  969. <div id="u35068" class="ax_default table_cell transition">
  970. <svg data="images/点位配置/u35068.svg" id="u35068_img" class="img generatedImage" viewbox="0 182 47 38">
  971. <path d="M 1 1 L 47 1 L 47 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 182 )" class="fill" />
  972. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 182 )" class="stroke" />
  973. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 182 )" class="stroke" />
  974. <path d="M 0 37.5 L 47 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 182 )" class="stroke" />
  975. </svg>
  976. <div id="u35068_text" class="text " style="display:none; visibility: hidden">
  977. <p></p>
  978. </div>
  979. </div>
  980. <!-- Unnamed (Table cell) -->
  981. <div id="u35069" class="ax_default table_cell transition">
  982. <svg data="images/点位配置/u35069.svg" id="u35069_img" class="img generatedImage" viewbox="47 182 241 38">
  983. <path d="M 1 1 L 241 1 L 241 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 47 182 )" class="fill" />
  984. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 182 )" class="stroke" />
  985. <path d="M 0 0.5 L 241 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 182 )" class="stroke" />
  986. <path d="M 0 37.5 L 241 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 47 182 )" class="stroke" />
  987. </svg>
  988. <div id="u35069_text" class="text " style="display:none; visibility: hidden">
  989. <p></p>
  990. </div>
  991. </div>
  992. <!-- Unnamed (Table cell) -->
  993. <div id="u35070" class="ax_default table_cell transition">
  994. <svg data="images/点位配置/u35070.svg" id="u35070_img" class="img generatedImage" viewbox="288 182 172 38">
  995. <path d="M 1 1 L 172 1 L 172 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 288 182 )" class="fill" />
  996. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 182 )" class="stroke" />
  997. <path d="M 0 0.5 L 172 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 182 )" class="stroke" />
  998. <path d="M 0 37.5 L 172 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 288 182 )" class="stroke" />
  999. </svg>
  1000. <div id="u35070_text" class="text " style="display:none; visibility: hidden">
  1001. <p></p>
  1002. </div>
  1003. </div>
  1004. <!-- Unnamed (Table cell) -->
  1005. <div id="u35071" class="ax_default table_cell transition">
  1006. <svg data="images/点位配置/u35071.svg" id="u35071_img" class="img generatedImage" viewbox="460 182 196 38">
  1007. <path d="M 1 1 L 196 1 L 196 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 460 182 )" class="fill" />
  1008. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 182 )" class="stroke" />
  1009. <path d="M 0 0.5 L 196 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 182 )" class="stroke" />
  1010. <path d="M 0 37.5 L 196 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 460 182 )" class="stroke" />
  1011. </svg>
  1012. <div id="u35071_text" class="text " style="display:none; visibility: hidden">
  1013. <p></p>
  1014. </div>
  1015. </div>
  1016. <!-- Unnamed (Table cell) -->
  1017. <div id="u35072" class="ax_default table_cell transition">
  1018. <svg data="images/点位配置/u35072.svg" id="u35072_img" class="img generatedImage" viewbox="656 182 243 38">
  1019. <path d="M 1 1 L 243 1 L 243 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 656 182 )" class="fill" />
  1020. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 182 )" class="stroke" />
  1021. <path d="M 0 0.5 L 243 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 182 )" class="stroke" />
  1022. <path d="M 0 37.5 L 243 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 656 182 )" class="stroke" />
  1023. </svg>
  1024. <div id="u35072_text" class="text " style="display:none; visibility: hidden">
  1025. <p></p>
  1026. </div>
  1027. </div>
  1028. <!-- Unnamed (Table cell) -->
  1029. <div id="u35073" class="ax_default table_cell transition">
  1030. <svg data="images/点位配置/u35073.svg" id="u35073_img" class="img generatedImage" viewbox="899 182 154 38">
  1031. <path d="M 1 1 L 154 1 L 154 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 899 182 )" class="fill" />
  1032. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 182 )" class="stroke" />
  1033. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 182 )" class="stroke" />
  1034. <path d="M 0 37.5 L 154 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 899 182 )" class="stroke" />
  1035. </svg>
  1036. <div id="u35073_text" class="text " style="display:none; visibility: hidden">
  1037. <p></p>
  1038. </div>
  1039. </div>
  1040. <!-- Unnamed (Table cell) -->
  1041. <div id="u35074" class="ax_default table_cell transition">
  1042. <svg data="images/点位配置/u35074.svg" id="u35074_img" class="img generatedImage" viewbox="1053 182 154 38">
  1043. <path d="M 1 1 L 153 1 L 153 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 1053 182 )" class="fill" />
  1044. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 182 )" class="stroke" />
  1045. <path d="M 0 0.5 L 154 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 182 )" class="stroke" />
  1046. <path d="M 153.5 1 L 153.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 182 )" class="stroke" />
  1047. <path d="M 0 37.5 L 154 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1053 182 )" class="stroke" />
  1048. </svg>
  1049. <div id="u35074_text" class="text " style="display:none; visibility: hidden">
  1050. <p></p>
  1051. </div>
  1052. </div>
  1053. </div>
  1054. <!-- Unnamed (Rectangle) -->
  1055. <div id="u35075" class="ax_default box_1 transition">
  1056. <div id="u35075_div" class=""></div>
  1057. <div id="u35075_text" class="text ">
  1058. <p><span>添加</span></p>
  1059. </div>
  1060. </div>
  1061. <!-- Unnamed (Group) -->
  1062. <div id="u35076" class="ax_default" data-left="527" data-top="143" data-width="160" data-height="30" layer-opacity="1">
  1063. <!-- Unnamed (Rectangle) -->
  1064. <div id="u35077" class="ax_default shape transition">
  1065. <div id="u35077_div" class=""></div>
  1066. <div id="u35077_text" class="text " style="display:none; visibility: hidden">
  1067. <p></p>
  1068. </div>
  1069. </div>
  1070. <!-- 选项内容 (Text field) -->
  1071. <div id="u35078" class="ax_default text_field transition" data-label="选项内容">
  1072. <div id="u35078_div" class=""></div>
  1073. <input id="u35078_input" type="text" value="" class="u35078_input"/>
  1074. </div>
  1075. </div>
  1076. <!-- Unnamed (Group) -->
  1077. <div id="u35079" class="ax_default" data-left="697" data-top="143" data-width="130" data-height="30" layer-opacity="1">
  1078. <!-- Unnamed (Rectangle) -->
  1079. <div id="u35080" class="ax_default box_1 transition">
  1080. <div id="u35080_div" class=""></div>
  1081. <div id="u35080_text" class="text ">
  1082. <p><span>搜索</span></p>
  1083. </div>
  1084. </div>
  1085. <!-- Unnamed (Rectangle) -->
  1086. <div id="u35081" class="ax_default box_1 transition">
  1087. <div id="u35081_div" class=""></div>
  1088. <div id="u35081_text" class="text ">
  1089. <p><span>重置</span></p>
  1090. </div>
  1091. </div>
  1092. </div>
  1093. <!-- Unnamed (Rectangle) -->
  1094. <div id="u35082" class="ax_default paragraph transition">
  1095. <div id="u35082_div" class=""></div>
  1096. <div id="u35082_text" class="text ">
  1097. <p><span>点位配置</span></p>
  1098. </div>
  1099. </div>
  1100. <!-- Unnamed (Group) -->
  1101. <div id="u35083" class="ax_default" data-left="357" data-top="141" data-width="160" data-height="30" layer-opacity="1">
  1102. <!-- Unnamed (Rectangle) -->
  1103. <div id="u35084" class="ax_default box_1 transition">
  1104. <div id="u35084_div" class=""></div>
  1105. <div id="u35084_text" class="text " style="display:none; visibility: hidden">
  1106. <p></p>
  1107. </div>
  1108. </div>
  1109. <!-- Unnamed (Droplist) -->
  1110. <div id="u35085" class="ax_default droplist transition">
  1111. <div id="u35085_div" class=""></div>
  1112. <select id="u35085_input" class="u35085_input">
  1113. <option class="u35085_input_option" value="项目">项目</option>
  1114. </select>
  1115. </div>
  1116. </div>
  1117. <!-- Unnamed (客户-智慧巡检) -->
  1118. <div id="u35086" class="nopointer ax_default">
  1119. <!-- Unnamed (Rectangle) -->
  1120. <div id="u35087" class="ax_default box_2 transition">
  1121. <div id="u35087_div" class=""></div>
  1122. <div id="u35087_text" class="text " style="display:none; visibility: hidden">
  1123. <p></p>
  1124. </div>
  1125. </div>
  1126. <!-- Unnamed (Rectangle) -->
  1127. <div id="u35088" class="ax_default label transition">
  1128. <div id="u35088_div" class=""></div>
  1129. <div id="u35088_text" class="text ">
  1130. <p><span>智慧巡检</span></p>
  1131. </div>
  1132. </div>
  1133. <!-- Unnamed (Rectangle) -->
  1134. <div id="u35089" class="ax_default label transition">
  1135. <div id="u35089_div" class=""></div>
  1136. <div id="u35089_text" class="text ">
  1137. <p><span>巡检异常</span></p>
  1138. </div>
  1139. </div>
  1140. <!-- Unnamed (Rectangle) -->
  1141. <div id="u35090" class="ax_default label transition">
  1142. <div id="u35090_div" class=""></div>
  1143. <div id="u35090_text" class="text ">
  1144. <p><span>巡检计划</span></p>
  1145. </div>
  1146. </div>
  1147. <!-- Unnamed (Rectangle) -->
  1148. <div id="u35091" class="ax_default label transition">
  1149. <div id="u35091_div" class=""></div>
  1150. <div id="u35091_text" class="text ">
  1151. <p><span>巡检点</span></p>
  1152. </div>
  1153. </div>
  1154. <!-- Unnamed (Rectangle) -->
  1155. <div id="u35092" class="ax_default label transition">
  1156. <div id="u35092_div" class=""></div>
  1157. <div id="u35092_text" class="text ">
  1158. <p><span>点位信息</span></p>
  1159. </div>
  1160. </div>
  1161. <!-- Unnamed (Rectangle) -->
  1162. <div id="u35093" class="ax_default label transition">
  1163. <div id="u35093_div" class=""></div>
  1164. <div id="u35093_text" class="text ">
  1165. <p><span>巡检管理</span></p>
  1166. </div>
  1167. </div>
  1168. <!-- Unnamed (Line) -->
  1169. <div id="u35094" class="ax_default line1 transition">
  1170. <svg data="images/项目列表/u4861.svg" id="u35094_img" class="img generatedImage">
  1171. <g transform="matrix(1 0 0 1 -1 -122 )">
  1172. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  1173. </g>
  1174. </svg>
  1175. <div id="u35094_text" class="text " style="display:none; visibility: hidden">
  1176. <p></p>
  1177. </div>
  1178. </div>
  1179. <!-- Unnamed (Rectangle) -->
  1180. <div id="u35095" class="ax_default label transition">
  1181. <div id="u35095_div" class=""></div>
  1182. <div id="u35095_text" class="text ">
  1183. <p><span>巡检表单</span></p>
  1184. </div>
  1185. </div>
  1186. <!-- Unnamed (Rectangle) -->
  1187. <div id="u35096" class="ax_default label transition">
  1188. <div id="u35096_div" class=""></div>
  1189. <div id="u35096_text" class="text ">
  1190. <p><span>巡检类型</span></p>
  1191. </div>
  1192. </div>
  1193. <!-- Unnamed (Rectangle) -->
  1194. <div id="u35097" class="ax_default label transition">
  1195. <div id="u35097_div" class=""></div>
  1196. <div id="u35097_text" class="text ">
  1197. <p><span>巡检配置</span></p>
  1198. </div>
  1199. </div>
  1200. <!-- Unnamed (Rectangle) -->
  1201. <div id="u35098" class="ax_default label transition">
  1202. <div id="u35098_div" class=""></div>
  1203. <div id="u35098_text" class="text ">
  1204. <p><span>巡检看板</span></p>
  1205. </div>
  1206. </div>
  1207. <!-- Unnamed (Rectangle) -->
  1208. <div id="u35099" class="ax_default label transition">
  1209. <div id="u35099_div" class=""></div>
  1210. <div id="u35099_text" class="text ">
  1211. <p><span>巡检任务</span></p>
  1212. </div>
  1213. </div>
  1214. <!-- Unnamed (Rectangle) -->
  1215. <div id="u35100" class="ax_default label transition">
  1216. <div id="u35100_div" class=""></div>
  1217. <div id="u35100_text" class="text ">
  1218. <p><span>巡检统计</span></p>
  1219. </div>
  1220. </div>
  1221. <!-- Unnamed (Line) -->
  1222. <div id="u35101" class="ax_default line1 transition">
  1223. <svg data="images/项目列表/u4861.svg" id="u35101_img" class="img generatedImage">
  1224. <g transform="matrix(1 0 0 1 -1 -122 )">
  1225. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  1226. </g>
  1227. </svg>
  1228. <div id="u35101_text" class="text " style="display:none; visibility: hidden">
  1229. <p></p>
  1230. </div>
  1231. </div>
  1232. <!-- Unnamed (Rectangle) -->
  1233. <div id="u35102" class="ax_default label transition">
  1234. <div id="u35102_div" class=""></div>
  1235. <div id="u35102_text" class="text ">
  1236. <p><span>任务统计</span></p>
  1237. </div>
  1238. </div>
  1239. <!-- Unnamed (Rectangle) -->
  1240. <div id="u35103" class="ax_default label transition">
  1241. <div id="u35103_div" class=""></div>
  1242. <div id="u35103_text" class="text ">
  1243. <p><span>巡检路线</span></p>
  1244. </div>
  1245. </div>
  1246. </div>
  1247. <!-- Unnamed (Group) -->
  1248. <div id="u35104" class="ax_default" data-left="1166" data-top="328" data-width="380" data-height="140" layer-opacity="1">
  1249. <!-- Unnamed (Group) -->
  1250. <div id="u35105" class="ax_default" data-left="1166" data-top="328" data-width="380" data-height="140" layer-opacity="1">
  1251. <!-- Unnamed (Rectangle) -->
  1252. <div id="u35106" class="ax_default shape transition">
  1253. <div id="u35106_div" class=""></div>
  1254. <div id="u35106_text" class="text " style="display:none; visibility: hidden">
  1255. <p></p>
  1256. </div>
  1257. </div>
  1258. <!-- Unnamed (Rectangle) -->
  1259. <div id="u35107" class="ax_default paragraph transition">
  1260. <div id="u35107_div" class=""></div>
  1261. <div id="u35107_text" class="text ">
  1262. <p><span>删除之后,不支持撤回。</span></p>
  1263. </div>
  1264. </div>
  1265. <!-- Unnamed (Rectangle) -->
  1266. <div id="u35108" class="ax_default paragraph transition">
  1267. <div id="u35108_div" class=""></div>
  1268. <div id="u35108_text" class="text ">
  1269. <p><span>确定删除点位?</span></p>
  1270. </div>
  1271. </div>
  1272. <!-- Unnamed (Rectangle) -->
  1273. <div id="u35109" class="ax_default shape transition">
  1274. <div id="u35109_div" class=""></div>
  1275. <div id="u35109_text" class="text ">
  1276. <p><span>确定</span></p>
  1277. </div>
  1278. </div>
  1279. <!-- Unnamed (Rectangle) -->
  1280. <div id="u35110" class="ax_default shape transition">
  1281. <div id="u35110_div" class=""></div>
  1282. <div id="u35110_text" class="text ">
  1283. <p><span>取 消</span></p>
  1284. </div>
  1285. </div>
  1286. <!-- Unnamed (Shape) -->
  1287. <div id="u35111" class="ax_default icon transition">
  1288. <svg data="images/项目列表/u4791.svg" id="u35111_img" class="img generatedImage">
  1289. <defs>
  1290. <pattern id="u35111_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1291. <mask fill="white" id="u35111_img_cl411">
  1292. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  1293. </mask>
  1294. </defs>
  1295. <g transform="matrix(1 0 0 1 -1661 -842 )">
  1296. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  1297. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u35111_img_cl411)" />
  1298. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u35111_img_cl411)" />
  1299. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u35111_img_cl411)" />
  1300. </g>
  1301. </svg>
  1302. <div id="u35111_text" class="text " style="display:none; visibility: hidden">
  1303. <p></p>
  1304. </div>
  1305. </div>
  1306. </div>
  1307. </div>
  1308. <!-- Unnamed (Group) -->
  1309. <div id="u35112" class="ax_default" data-left="1166" data-top="485" data-width="380" data-height="140" layer-opacity="1">
  1310. <!-- Unnamed (Rectangle) -->
  1311. <div id="u35113" class="ax_default shape transition">
  1312. <div id="u35113_div" class=""></div>
  1313. <div id="u35113_text" class="text " style="display:none; visibility: hidden">
  1314. <p></p>
  1315. </div>
  1316. </div>
  1317. <!-- Unnamed (Rectangle) -->
  1318. <div id="u35114" class="ax_default paragraph transition">
  1319. <div id="u35114_div" class=""></div>
  1320. <div id="u35114_text" class="text ">
  1321. <p><span>该点位已被添加为巡检点,不支持删除。</span></p>
  1322. </div>
  1323. </div>
  1324. <!-- Unnamed (Rectangle) -->
  1325. <div id="u35115" class="ax_default paragraph transition">
  1326. <div id="u35115_div" class=""></div>
  1327. <div id="u35115_text" class="text ">
  1328. <p><span>删除失败!</span></p>
  1329. </div>
  1330. </div>
  1331. <!-- Unnamed (Rectangle) -->
  1332. <div id="u35116" class="ax_default shape transition">
  1333. <div id="u35116_div" class=""></div>
  1334. <div id="u35116_text" class="text ">
  1335. <p><span>确定</span></p>
  1336. </div>
  1337. </div>
  1338. <!-- Unnamed (Rectangle) -->
  1339. <div id="u35117" class="ax_default shape transition">
  1340. <div id="u35117_div" class=""></div>
  1341. <div id="u35117_text" class="text ">
  1342. <p><span>取 消</span></p>
  1343. </div>
  1344. </div>
  1345. <!-- Unnamed (Shape) -->
  1346. <div id="u35118" class="ax_default icon transition">
  1347. <svg data="images/项目列表/u4777.svg" id="u35118_img" class="img generatedImage">
  1348. <defs>
  1349. <pattern id="u35118_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1350. <mask fill="white" id="u35118_img_cl410">
  1351. <path d="M 14.713541666666668 13.541666666666664 C 14.878472222222223 13.37673611111111 14.9609375 13.177083333333336 14.9609375 12.942708333333336 C 14.9609375 12.71701388888889 14.878472222222223 12.52170138888889 14.713541666666668 12.356770833333336 L 12.356770833333332 10 L 14.713541666666668 7.643229166666668 C 14.878472222222223 7.478298611111109 14.9609375 7.282986111111109 14.9609375 7.057291666666668 C 14.9609375 6.822916666666668 14.878472222222223 6.623263888888886 14.713541666666668 6.458333333333332 L 13.541666666666668 5.286458333333332 C 13.376736111111114 5.121527777777777 13.177083333333332 5.0390625 12.942708333333332 5.0390625 C 12.717013888888891 5.0390625 12.521701388888891 5.121527777777777 12.356770833333332 5.286458333333332 L 10 7.643229166666668 L 7.643229166666666 5.286458333333332 C 7.478298611111112 5.121527777777777 7.282986111111112 5.0390625 7.057291666666666 5.0390625 C 6.822916666666666 5.0390625 6.623263888888889 5.121527777777777 6.458333333333334 5.286458333333332 L 5.286458333333334 6.458333333333332 C 5.121527777777778 6.623263888888886 5.039062500000001 6.822916666666668 5.0390625 7.057291666666668 C 5.039062500000001 7.282986111111109 5.121527777777778 7.478298611111109 5.286458333333334 7.643229166666668 L 7.643229166666666 10 L 5.286458333333334 12.356770833333336 C 5.121527777777778 12.52170138888889 5.039062500000001 12.71701388888889 5.0390625 12.942708333333336 C 5.039062500000001 13.177083333333336 5.121527777777778 13.37673611111111 5.286458333333334 13.541666666666664 L 6.458333333333334 14.713541666666664 C 6.623263888888889 14.878472222222218 6.822916666666666 14.9609375 7.057291666666666 14.9609375 C 7.282986111111112 14.9609375 7.478298611111112 14.878472222222218 7.643229166666666 14.713541666666664 L 10 12.356770833333336 L 12.356770833333332 14.713541666666664 C 12.521701388888891 14.878472222222218 12.717013888888891 14.9609375 12.942708333333332 14.9609375 C 13.177083333333332 14.9609375 13.376736111111114 14.878472222222218 13.541666666666668 14.713541666666664 L 14.713541666666668 13.541666666666664 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  1352. </mask>
  1353. </defs>
  1354. <g transform="matrix(1 0 0 1 -2062 -389 )">
  1355. <path d="M 14.713541666666668 13.541666666666664 C 14.878472222222223 13.37673611111111 14.9609375 13.177083333333336 14.9609375 12.942708333333336 C 14.9609375 12.71701388888889 14.878472222222223 12.52170138888889 14.713541666666668 12.356770833333336 L 12.356770833333332 10 L 14.713541666666668 7.643229166666668 C 14.878472222222223 7.478298611111109 14.9609375 7.282986111111109 14.9609375 7.057291666666668 C 14.9609375 6.822916666666668 14.878472222222223 6.623263888888886 14.713541666666668 6.458333333333332 L 13.541666666666668 5.286458333333332 C 13.376736111111114 5.121527777777777 13.177083333333332 5.0390625 12.942708333333332 5.0390625 C 12.717013888888891 5.0390625 12.521701388888891 5.121527777777777 12.356770833333332 5.286458333333332 L 10 7.643229166666668 L 7.643229166666666 5.286458333333332 C 7.478298611111112 5.121527777777777 7.282986111111112 5.0390625 7.057291666666666 5.0390625 C 6.822916666666666 5.0390625 6.623263888888889 5.121527777777777 6.458333333333334 5.286458333333332 L 5.286458333333334 6.458333333333332 C 5.121527777777778 6.623263888888886 5.039062500000001 6.822916666666668 5.0390625 7.057291666666668 C 5.039062500000001 7.282986111111109 5.121527777777778 7.478298611111109 5.286458333333334 7.643229166666668 L 7.643229166666666 10 L 5.286458333333334 12.356770833333336 C 5.121527777777778 12.52170138888889 5.039062500000001 12.71701388888889 5.0390625 12.942708333333336 C 5.039062500000001 13.177083333333336 5.121527777777778 13.37673611111111 5.286458333333334 13.541666666666664 L 6.458333333333334 14.713541666666664 C 6.623263888888889 14.878472222222218 6.822916666666666 14.9609375 7.057291666666666 14.9609375 C 7.282986111111112 14.9609375 7.478298611111112 14.878472222222218 7.643229166666666 14.713541666666664 L 10 12.356770833333336 L 12.356770833333332 14.713541666666664 C 12.521701388888891 14.878472222222218 12.717013888888891 14.9609375 12.942708333333332 14.9609375 C 13.177083333333332 14.9609375 13.376736111111114 14.878472222222218 13.541666666666668 14.713541666666664 L 14.713541666666668 13.541666666666664 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(217, 0, 27, 1)" stroke="none" transform="matrix(1 0 0 1 2062 389 )" class="fill" />
  1356. <path d="M 14.713541666666668 13.541666666666664 C 14.878472222222223 13.37673611111111 14.9609375 13.177083333333336 14.9609375 12.942708333333336 C 14.9609375 12.71701388888889 14.878472222222223 12.52170138888889 14.713541666666668 12.356770833333336 L 12.356770833333332 10 L 14.713541666666668 7.643229166666668 C 14.878472222222223 7.478298611111109 14.9609375 7.282986111111109 14.9609375 7.057291666666668 C 14.9609375 6.822916666666668 14.878472222222223 6.623263888888886 14.713541666666668 6.458333333333332 L 13.541666666666668 5.286458333333332 C 13.376736111111114 5.121527777777777 13.177083333333332 5.0390625 12.942708333333332 5.0390625 C 12.717013888888891 5.0390625 12.521701388888891 5.121527777777777 12.356770833333332 5.286458333333332 L 10 7.643229166666668 L 7.643229166666666 5.286458333333332 C 7.478298611111112 5.121527777777777 7.282986111111112 5.0390625 7.057291666666666 5.0390625 C 6.822916666666666 5.0390625 6.623263888888889 5.121527777777777 6.458333333333334 5.286458333333332 L 5.286458333333334 6.458333333333332 C 5.121527777777778 6.623263888888886 5.039062500000001 6.822916666666668 5.0390625 7.057291666666668 C 5.039062500000001 7.282986111111109 5.121527777777778 7.478298611111109 5.286458333333334 7.643229166666668 L 7.643229166666666 10 L 5.286458333333334 12.356770833333336 C 5.121527777777778 12.52170138888889 5.039062500000001 12.71701388888889 5.0390625 12.942708333333336 C 5.039062500000001 13.177083333333336 5.121527777777778 13.37673611111111 5.286458333333334 13.541666666666664 L 6.458333333333334 14.713541666666664 C 6.623263888888889 14.878472222222218 6.822916666666666 14.9609375 7.057291666666666 14.9609375 C 7.282986111111112 14.9609375 7.478298611111112 14.878472222222218 7.643229166666666 14.713541666666664 L 10 12.356770833333336 L 12.356770833333332 14.713541666666664 C 12.521701388888891 14.878472222222218 12.717013888888891 14.9609375 12.942708333333332 14.9609375 C 13.177083333333332 14.9609375 13.376736111111114 14.878472222222218 13.541666666666668 14.713541666666664 L 14.713541666666668 13.541666666666664 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 2062 389 )" class="stroke" mask="url(#u35118_img_cl410)" />
  1357. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 2062 389 )" class="stroke" mask="url(#u35118_img_cl410)" />
  1358. </g>
  1359. </svg>
  1360. <div id="u35118_text" class="text " style="display:none; visibility: hidden">
  1361. <p></p>
  1362. </div>
  1363. </div>
  1364. </div>
  1365. <!-- Unnamed (Rectangle) -->
  1366. <div id="u35119" class="ax_default paragraph transition">
  1367. <div id="u35119_div" class=""></div>
  1368. <div id="u35119_text" class="text ">
  1369. <p><span>此处配置智慧巡检相关点位,用于定义类型为“区域点位”的巡检点、配置巡检路线。</span></p>
  1370. </div>
  1371. </div>
  1372. <!-- Unnamed (列表翻页) -->
  1373. <div id="u35120" class="nopointer ax_default">
  1374. <!-- Unnamed (Group) -->
  1375. <div id="u35121" class="ax_default" data-left="961" data-top="1183" data-width="600" data-height="30" layer-opacity="1">
  1376. <!-- Unnamed (Rectangle) -->
  1377. <div id="u35122" class="ax_default box_1 transition">
  1378. <div id="u35122_div" class=""></div>
  1379. <div id="u35122_text" class="text ">
  1380. <p><span>1</span></p>
  1381. </div>
  1382. </div>
  1383. <!-- Unnamed (Rectangle) -->
  1384. <div id="u35123" class="ax_default box_1 transition">
  1385. <div id="u35123_div" class=""></div>
  1386. <div id="u35123_text" class="text ">
  1387. <p><span>确定</span></p>
  1388. </div>
  1389. </div>
  1390. <!-- Unnamed (Group) -->
  1391. <div id="u35124" class="ax_default" data-left="1280" data-top="1183" data-width="96" data-height="30" layer-opacity="1">
  1392. <!-- Unnamed (Rectangle) -->
  1393. <div id="u35125" class="ax_default box_1 transition">
  1394. <div id="u35125_div" class=""></div>
  1395. <div id="u35125_text" class="text ">
  1396. <p><span>跳至</span></p>
  1397. </div>
  1398. </div>
  1399. <!-- Unnamed (Rectangle) -->
  1400. <div id="u35126" class="ax_default box_1 transition">
  1401. <div id="u35126_div" class=""></div>
  1402. <div id="u35126_text" class="text " style="display:none; visibility: hidden">
  1403. <p></p>
  1404. </div>
  1405. </div>
  1406. <!-- Unnamed (Rectangle) -->
  1407. <div id="u35127" class="ax_default box_1 transition">
  1408. <div id="u35127_div" class=""></div>
  1409. <div id="u35127_text" class="text ">
  1410. <p><span>页</span></p>
  1411. </div>
  1412. </div>
  1413. <!-- Unnamed (Text field) -->
  1414. <div id="u35128" class="ax_default text_field transition">
  1415. <div id="u35128_div" class=""></div>
  1416. <input id="u35128_input" type="text" value="" class="u35128_input"/>
  1417. </div>
  1418. </div>
  1419. <!-- Unnamed (Rectangle) -->
  1420. <div id="u35129" class="ax_default box_1 transition">
  1421. <div id="u35129_div" class=""></div>
  1422. <div id="u35129_text" class="text ">
  1423. <p><span>2</span></p>
  1424. </div>
  1425. </div>
  1426. <!-- Unnamed (Rectangle) -->
  1427. <div id="u35130" class="ax_default box_1 transition">
  1428. <div id="u35130_div" class=""></div>
  1429. <div id="u35130_text" class="text ">
  1430. <p><span>3</span></p>
  1431. </div>
  1432. </div>
  1433. <!-- Unnamed (Rectangle) -->
  1434. <div id="u35131" class="ax_default box_1 transition">
  1435. <div id="u35131_div" class=""></div>
  1436. <div id="u35131_text" class="text ">
  1437. <p><span>4</span></p>
  1438. </div>
  1439. </div>
  1440. <!-- Unnamed (Rectangle) -->
  1441. <div id="u35132" class="ax_default box_1 transition">
  1442. <div id="u35132_div" class=""></div>
  1443. <div id="u35132_text" class="text ">
  1444. <p><span>...</span></p>
  1445. </div>
  1446. </div>
  1447. <!-- Unnamed (Rectangle) -->
  1448. <div id="u35133" class="ax_default box_1 transition">
  1449. <div id="u35133_div" class=""></div>
  1450. <div id="u35133_text" class="text ">
  1451. <p><span>10</span></p>
  1452. </div>
  1453. </div>
  1454. <!-- Unnamed (Rectangle) -->
  1455. <div id="u35134" class="ax_default box_1 transition">
  1456. <div id="u35134_div" class=""></div>
  1457. <div id="u35134_text" class="text ">
  1458. <p><span>2/10</span></p>
  1459. </div>
  1460. </div>
  1461. <!-- 上一页 (Group) -->
  1462. <div id="u35135" class="ax_default" data-label="上一页" data-left="961" data-top="1183" data-width="31" data-height="30" layer-opacity="1">
  1463. <!-- Unnamed (Rectangle) -->
  1464. <div id="u35136" class="ax_default box_1 transition">
  1465. <div id="u35136_div" class=""></div>
  1466. <div id="u35136_text" class="text " style="display:none; visibility: hidden">
  1467. <p></p>
  1468. </div>
  1469. </div>
  1470. <!-- Unnamed (Shape) -->
  1471. <div id="u35137" class="ax_default icon transition">
  1472. <svg data="images/消息/u1268.svg" id="u35137_img" class="img generatedImage">
  1473. <defs>
  1474. <pattern id="u35137_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1475. <mask fill="white" id="u35137_img_cl216">
  1476. <path d="M 7.862542955326489 0.8416833667334913 C 7.954180985108906 0.9352037408150409 8 1.0427521710087149 8 1.1643286573145133 C 8 1.285905143620539 7.954180985108906 1.393453573814213 7.862542955326489 1.4869739478957626 L 2.460481099656363 6.999999999999886 L 7.862542955326489 12.513026052104237 C 7.954180985108906 12.606546426185787 8 12.714094856379461 8 12.835671342685487 C 8 12.957247828991285 7.954180985108906 13.06479625918496 7.862542955326489 13.158316633266509 L 7.175257731958709 13.859719438877846 C 7.083619702176293 13.953239812959282 6.978235967926594 14 6.859106529209612 14 C 6.739977090492403 14 6.6345933562427035 13.953239812959282 6.542955326460515 13.859719438877846 L 0.1374570446735106 7.322645290581249 C 0.04581901489109441 7.229124916499699 0 7.12157648630614 0 6.999999999999886 C 0 6.8784235136938605 0.04581901489109441 6.7708750835003 0.1374570446735106 6.677354709418751 L 6.542955326460515 0.1402805611221538 C 6.6345933562427035 0.04676018704071794 6.739977090492403 0 6.859106529209612 0 C 6.978235967926594 0 7.083619702176293 0.04676018704071794 7.175257731958709 0.1402805611221538 L 7.862542955326489 0.8416833667334913 Z " fill-rule="evenodd" />
  1477. </mask>
  1478. </defs>
  1479. <g transform="matrix(1 0 0 1 -659 -2248 )">
  1480. <path d="M 7.862542955326489 0.8416833667334913 C 7.954180985108906 0.9352037408150409 8 1.0427521710087149 8 1.1643286573145133 C 8 1.285905143620539 7.954180985108906 1.393453573814213 7.862542955326489 1.4869739478957626 L 2.460481099656363 6.999999999999886 L 7.862542955326489 12.513026052104237 C 7.954180985108906 12.606546426185787 8 12.714094856379461 8 12.835671342685487 C 8 12.957247828991285 7.954180985108906 13.06479625918496 7.862542955326489 13.158316633266509 L 7.175257731958709 13.859719438877846 C 7.083619702176293 13.953239812959282 6.978235967926594 14 6.859106529209612 14 C 6.739977090492403 14 6.6345933562427035 13.953239812959282 6.542955326460515 13.859719438877846 L 0.1374570446735106 7.322645290581249 C 0.04581901489109441 7.229124916499699 0 7.12157648630614 0 6.999999999999886 C 0 6.8784235136938605 0.04581901489109441 6.7708750835003 0.1374570446735106 6.677354709418751 L 6.542955326460515 0.1402805611221538 C 6.6345933562427035 0.04676018704071794 6.739977090492403 0 6.859106529209612 0 C 6.978235967926594 0 7.083619702176293 0.04676018704071794 7.175257731958709 0.1402805611221538 L 7.862542955326489 0.8416833667334913 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 659 2248 )" class="fill" />
  1481. <path d="M 7.862542955326489 0.8416833667334913 C 7.954180985108906 0.9352037408150409 8 1.0427521710087149 8 1.1643286573145133 C 8 1.285905143620539 7.954180985108906 1.393453573814213 7.862542955326489 1.4869739478957626 L 2.460481099656363 6.999999999999886 L 7.862542955326489 12.513026052104237 C 7.954180985108906 12.606546426185787 8 12.714094856379461 8 12.835671342685487 C 8 12.957247828991285 7.954180985108906 13.06479625918496 7.862542955326489 13.158316633266509 L 7.175257731958709 13.859719438877846 C 7.083619702176293 13.953239812959282 6.978235967926594 14 6.859106529209612 14 C 6.739977090492403 14 6.6345933562427035 13.953239812959282 6.542955326460515 13.859719438877846 L 0.1374570446735106 7.322645290581249 C 0.04581901489109441 7.229124916499699 0 7.12157648630614 0 6.999999999999886 C 0 6.8784235136938605 0.04581901489109441 6.7708750835003 0.1374570446735106 6.677354709418751 L 6.542955326460515 0.1402805611221538 C 6.6345933562427035 0.04676018704071794 6.739977090492403 0 6.859106529209612 0 C 6.978235967926594 0 7.083619702176293 0.04676018704071794 7.175257731958709 0.1402805611221538 L 7.862542955326489 0.8416833667334913 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(228, 228, 228, 1)" fill="none" transform="matrix(1 0 0 1 659 2248 )" class="stroke" mask="url(#u35137_img_cl216)" />
  1482. </g>
  1483. </svg>
  1484. <div id="u35137_text" class="text " style="display:none; visibility: hidden">
  1485. <p></p>
  1486. </div>
  1487. </div>
  1488. </div>
  1489. <!-- 下一页 (Group) -->
  1490. <div id="u35138" class="ax_default" data-label="下一页" data-left="1195" data-top="1183" data-width="31" data-height="30" layer-opacity="1">
  1491. <!-- Unnamed (Rectangle) -->
  1492. <div id="u35139" class="ax_default box_1 transition">
  1493. <div id="u35139_div" class=""></div>
  1494. <div id="u35139_text" class="text " style="display:none; visibility: hidden">
  1495. <p></p>
  1496. </div>
  1497. </div>
  1498. <!-- Unnamed (Shape) -->
  1499. <div id="u35140" class="ax_default icon transition">
  1500. <svg data="images/消息/u1271.svg" id="u35140_img" class="img generatedImage">
  1501. <defs>
  1502. <pattern id="u35140_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1503. <mask fill="white" id="u35140_img_cl217">
  1504. <path d="M 7.862542955326489 6.677354709418751 C 7.954180985108906 6.770875083500414 8 6.878423513693974 8 7 C 8 7.121576486306025 7.954180985108906 7.229124916499586 7.862542955326489 7.322645290581249 L 1.4570446735394853 13.859719438877733 C 1.365406643757069 13.953239812959168 1.26002290950737 14 1.1408934707903882 14 C 1.0217640320734063 14 0.9163802978237072 13.953239812959168 0.824742268041291 13.859719438877733 L 0.1374570446735106 13.158316633266509 C 0.04581901489109441 13.064796259185073 0 12.957247828991285 0 12.835671342685373 C 0 12.714094856379461 0.04581901489109441 12.606546426185673 0.1374570446735106 12.513026052104237 L 5.539518900343637 7 L 0.1374570446735106 1.4869739478957626 C 0.04581901489109441 1.3934535738143268 0 1.285905143620539 0 1.164328657314627 C 0 1.0427521710087149 0.04581901489109441 0.9352037408149272 0.1374570446735106 0.8416833667334913 L 0.824742268041291 0.1402805611222675 C 0.9163802978237072 0.046760187040831624 1.0217640320734063 0 1.1408934707903882 0 C 1.26002290950737 0 1.365406643757069 0.046760187040831624 1.4570446735394853 0.1402805611222675 L 7.862542955326489 6.677354709418751 Z " fill-rule="evenodd" />
  1505. </mask>
  1506. </defs>
  1507. <g transform="matrix(1 0 0 1 -894 -2248 )">
  1508. <path d="M 7.862542955326489 6.677354709418751 C 7.954180985108906 6.770875083500414 8 6.878423513693974 8 7 C 8 7.121576486306025 7.954180985108906 7.229124916499586 7.862542955326489 7.322645290581249 L 1.4570446735394853 13.859719438877733 C 1.365406643757069 13.953239812959168 1.26002290950737 14 1.1408934707903882 14 C 1.0217640320734063 14 0.9163802978237072 13.953239812959168 0.824742268041291 13.859719438877733 L 0.1374570446735106 13.158316633266509 C 0.04581901489109441 13.064796259185073 0 12.957247828991285 0 12.835671342685373 C 0 12.714094856379461 0.04581901489109441 12.606546426185673 0.1374570446735106 12.513026052104237 L 5.539518900343637 7 L 0.1374570446735106 1.4869739478957626 C 0.04581901489109441 1.3934535738143268 0 1.285905143620539 0 1.164328657314627 C 0 1.0427521710087149 0.04581901489109441 0.9352037408149272 0.1374570446735106 0.8416833667334913 L 0.824742268041291 0.1402805611222675 C 0.9163802978237072 0.046760187040831624 1.0217640320734063 0 1.1408934707903882 0 C 1.26002290950737 0 1.365406643757069 0.046760187040831624 1.4570446735394853 0.1402805611222675 L 7.862542955326489 6.677354709418751 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 894 2248 )" class="fill" />
  1509. <path d="M 7.862542955326489 6.677354709418751 C 7.954180985108906 6.770875083500414 8 6.878423513693974 8 7 C 8 7.121576486306025 7.954180985108906 7.229124916499586 7.862542955326489 7.322645290581249 L 1.4570446735394853 13.859719438877733 C 1.365406643757069 13.953239812959168 1.26002290950737 14 1.1408934707903882 14 C 1.0217640320734063 14 0.9163802978237072 13.953239812959168 0.824742268041291 13.859719438877733 L 0.1374570446735106 13.158316633266509 C 0.04581901489109441 13.064796259185073 0 12.957247828991285 0 12.835671342685373 C 0 12.714094856379461 0.04581901489109441 12.606546426185673 0.1374570446735106 12.513026052104237 L 5.539518900343637 7 L 0.1374570446735106 1.4869739478957626 C 0.04581901489109441 1.3934535738143268 0 1.285905143620539 0 1.164328657314627 C 0 1.0427521710087149 0.04581901489109441 0.9352037408149272 0.1374570446735106 0.8416833667334913 L 0.824742268041291 0.1402805611222675 C 0.9163802978237072 0.046760187040831624 1.0217640320734063 0 1.1408934707903882 0 C 1.26002290950737 0 1.365406643757069 0.046760187040831624 1.4570446735394853 0.1402805611222675 L 7.862542955326489 6.677354709418751 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(228, 228, 228, 1)" fill="none" transform="matrix(1 0 0 1 894 2248 )" class="stroke" mask="url(#u35140_img_cl217)" />
  1510. </g>
  1511. </svg>
  1512. <div id="u35140_text" class="text " style="display:none; visibility: hidden">
  1513. <p></p>
  1514. </div>
  1515. </div>
  1516. </div>
  1517. <!-- Unnamed (Group) -->
  1518. <div id="u35141" class="ax_default" data-left="1396" data-top="1183" data-width="96" data-height="30" layer-opacity="1">
  1519. <!-- Unnamed (Rectangle) -->
  1520. <div id="u35142" class="ax_default box_1 transition">
  1521. <div id="u35142_div" class=""></div>
  1522. <div id="u35142_text" class="text ">
  1523. <p><span>每页</span></p>
  1524. </div>
  1525. </div>
  1526. <!-- Unnamed (Rectangle) -->
  1527. <div id="u35143" class="ax_default box_1 transition">
  1528. <div id="u35143_div" class=""></div>
  1529. <div id="u35143_text" class="text " style="display:none; visibility: hidden">
  1530. <p></p>
  1531. </div>
  1532. </div>
  1533. <!-- Unnamed (Rectangle) -->
  1534. <div id="u35144" class="ax_default box_1 transition">
  1535. <div id="u35144_div" class=""></div>
  1536. <div id="u35144_text" class="text ">
  1537. <p><span>条</span></p>
  1538. </div>
  1539. </div>
  1540. <!-- Unnamed (Text field) -->
  1541. <div id="u35145" class="ax_default text_field transition">
  1542. <div id="u35145_div" class=""></div>
  1543. <input id="u35145_input" type="text" value="" class="u35145_input"/>
  1544. </div>
  1545. </div>
  1546. </div>
  1547. </div>
  1548. </div>
  1549. <script src="resources/scripts/axure/ios.js"></script>
  1550. </body>
  1551. </html>