设备清单.html 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  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="u7131" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u7132" class="ax_default box_2 transition">
  57. <div id="u7132_div" class=""></div>
  58. <div id="u7132_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u7133" class="ax_default label transition">
  64. <div id="u7133_div" class=""></div>
  65. <div id="u7133_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u7134" class="ax_default box_2 transition">
  71. <div id="u7134_div" class=""></div>
  72. <div id="u7134_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u7135" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u7136" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u7136_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u7136_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u7136_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(#u7136_img_cl14)" />
  90. </g>
  91. </svg>
  92. <div id="u7136_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u7137" class="ax_default label transition">
  98. <div id="u7137_div" class=""></div>
  99. <div id="u7137_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u7138" class="ax_default box_2 transition">
  106. <div id="u7138_div" class=""></div>
  107. <div id="u7138_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u7139" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u7140" class="ax_default label transition">
  115. <div id="u7140_div" class=""></div>
  116. <div id="u7140_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u7141" class="ax_default placeholder transition">
  122. <svg data="images/设备清单/u7141.svg" id="u7141_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u7141_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u7141_img_cl595">
  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(#u7141_img_cl595)" />
  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="u7141_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u7142" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u7143" class="ax_default label transition">
  144. <div id="u7143_div" class=""></div>
  145. <div id="u7143_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u7144" class="ax_default placeholder transition">
  151. <svg data="images/设备清单/u7144.svg" id="u7144_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u7144_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u7144_img_cl596">
  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(#u7144_img_cl596)" />
  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="u7144_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u7145" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u7146" class="ax_default label transition">
  173. <div id="u7146_div" class=""></div>
  174. <div id="u7146_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u7147" class="ax_default placeholder transition">
  180. <svg data="images/设备清单/u7147.svg" id="u7147_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u7147_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u7147_img_cl597">
  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(#u7147_img_cl597)" />
  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="u7147_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u7148" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u7149" class="ax_default label transition">
  202. <div id="u7149_div" class=""></div>
  203. <div id="u7149_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u7150" class="ax_default placeholder transition">
  209. <svg data="images/设备清单/u7150.svg" id="u7150_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u7150_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u7150_img_cl598">
  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(#u7150_img_cl598)" />
  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="u7150_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u7151" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u7152" class="ax_default label transition">
  231. <div id="u7152_div" class=""></div>
  232. <div id="u7152_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u7153" class="ax_default placeholder transition">
  238. <svg data="images/设备清单/u7153.svg" id="u7153_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u7153_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u7153_img_cl599">
  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(#u7153_img_cl599)" />
  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="u7153_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u7154" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u7155" class="ax_default label transition">
  260. <div id="u7155_div" class=""></div>
  261. <div id="u7155_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u7156" class="ax_default placeholder transition">
  267. <svg data="images/设备清单/u7156.svg" id="u7156_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u7156_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u7156_img_cl600">
  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(#u7156_img_cl600)" />
  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="u7156_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u7157" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u7158" class="ax_default label transition">
  289. <div id="u7158_div" class=""></div>
  290. <div id="u7158_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u7159" class="ax_default placeholder transition">
  296. <svg data="images/设备清单/u7159.svg" id="u7159_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u7159_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u7159_img_cl601">
  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(#u7159_img_cl601)" />
  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="u7159_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u7160" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u7161" class="ax_default label transition">
  318. <div id="u7161_div" class=""></div>
  319. <div id="u7161_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u7162" class="ax_default placeholder transition">
  325. <svg data="images/设备清单/u7162.svg" id="u7162_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u7162_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u7162_img_cl602">
  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(#u7162_img_cl602)" />
  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="u7162_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u7163" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u7164" class="ax_default label transition">
  347. <div id="u7164_div" class=""></div>
  348. <div id="u7164_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u7165" class="ax_default placeholder transition">
  354. <svg data="images/设备清单/u7165.svg" id="u7165_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u7165_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u7165_img_cl603">
  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(#u7165_img_cl603)" />
  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="u7165_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u7166" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u7167" class="ax_default label transition">
  376. <div id="u7167_div" class=""></div>
  377. <div id="u7167_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u7168" class="ax_default placeholder transition">
  383. <svg data="images/设备清单/u7168.svg" id="u7168_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u7168_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u7168_img_cl604">
  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(#u7168_img_cl604)" />
  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="u7168_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u7169" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u7170" class="ax_default label transition">
  405. <div id="u7170_div" class=""></div>
  406. <div id="u7170_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u7171" class="ax_default placeholder transition">
  412. <svg data="images/设备清单/u7171.svg" id="u7171_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u7171_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u7171_img_cl605">
  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(#u7171_img_cl605)" />
  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="u7171_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u7172" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u7173" class="ax_default droplist transition">
  434. <div id="u7173_div" class=""></div>
  435. <select id="u7173_input" class="u7173_input">
  436. <option class="u7173_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u7174" class="ax_default placeholder transition">
  441. <svg data="images/设备清单/u7174.svg" id="u7174_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u7174_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u7174_img_cl606">
  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(#u7174_img_cl606)" />
  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="u7174_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u7175" class="ax_default label transition">
  460. <div id="u7175_div" class=""></div>
  461. <div id="u7175_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u7176" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u7176_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="u7176_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u7177" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u7178" class="ax_default label transition">
  481. <div id="u7178_div" class=""></div>
  482. <div id="u7178_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u7179" class="ax_default placeholder transition">
  488. <svg data="images/设备清单/u7179.svg" id="u7179_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u7179_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u7179_img_cl607">
  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(#u7179_img_cl607)" />
  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="u7179_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u7180" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u7180_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="u7180_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u7181" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u7181_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="u7181_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u7182" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u7182_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="u7182_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u7183" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u7184" class="ax_default label transition">
  543. <div id="u7184_div" class=""></div>
  544. <div id="u7184_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u7185" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u7185_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u7185_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u7185_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(#u7185_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(#u7185_img_cl28)" />
  561. </g>
  562. </svg>
  563. <div id="u7185_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="u7186" class="ax_default box_2 transition">
  571. <div id="u7186_div" class=""></div>
  572. <div id="u7186_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Group) -->
  577. <div id="u7187" class="ax_default" data-left="356" data-top="251" data-width="124" data-height="30" layer-opacity="1">
  578. <!-- Unnamed (Rectangle) -->
  579. <div id="u7188" class="ax_default box_1 transition">
  580. <div id="u7188_div" class=""></div>
  581. <div id="u7188_text" class="text ">
  582. <p><span>查询</span></p>
  583. </div>
  584. </div>
  585. <!-- Unnamed (Rectangle) -->
  586. <div id="u7189" class="ax_default box_1 transition">
  587. <div id="u7189_div" class=""></div>
  588. <div id="u7189_text" class="text ">
  589. <p><span>重置</span></p>
  590. </div>
  591. </div>
  592. </div>
  593. <!-- Unnamed (Table) -->
  594. <div id="u7190" class="ax_default">
  595. <!-- Unnamed (Table cell) -->
  596. <div id="u7191" class="ax_default table_cell1 transition">
  597. <svg data="images/设备清单/u7191.svg" id="u7191_img" class="img generatedImage" viewbox="0 0 121 44">
  598. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  599. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  600. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  601. </svg>
  602. <div id="u7191_text" class="text ">
  603. <p><span>项目</span></p>
  604. </div>
  605. </div>
  606. <!-- Unnamed (Table cell) -->
  607. <div id="u7192" class="ax_default table_cell1 transition">
  608. <svg data="images/设备清单/u7192.svg" id="u7192_img" class="img generatedImage" viewbox="121 0 121 44">
  609. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 121 0 )" class="fill" />
  610. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 0 )" class="stroke" />
  611. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 0 )" class="stroke" />
  612. </svg>
  613. <div id="u7192_text" class="text ">
  614. <p><span>设备类型</span></p>
  615. </div>
  616. </div>
  617. <!-- Unnamed (Table cell) -->
  618. <div id="u7193" class="ax_default table_cell1 transition">
  619. <svg data="images/设备清单/u7193.svg" id="u7193_img" class="img generatedImage" viewbox="242 0 121 44">
  620. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 242 0 )" class="fill" />
  621. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 0 )" class="stroke" />
  622. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 0 )" class="stroke" />
  623. </svg>
  624. <div id="u7193_text" class="text ">
  625. <p><span>设备ID</span></p>
  626. </div>
  627. </div>
  628. <!-- Unnamed (Table cell) -->
  629. <div id="u7194" class="ax_default table_cell1 transition">
  630. <svg data="images/设备清单/u7194.svg" id="u7194_img" class="img generatedImage" viewbox="363 0 121 44">
  631. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 363 0 )" class="fill" />
  632. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 0 )" class="stroke" />
  633. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 0 )" class="stroke" />
  634. </svg>
  635. <div id="u7194_text" class="text ">
  636. <p><span>设备名称</span></p>
  637. </div>
  638. </div>
  639. <!-- Unnamed (Table cell) -->
  640. <div id="u7195" class="ax_default table_cell1 transition">
  641. <svg data="images/设备清单/u7195.svg" id="u7195_img" class="img generatedImage" viewbox="484 0 121 44">
  642. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 484 0 )" class="fill" />
  643. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 0 )" class="stroke" />
  644. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 0 )" class="stroke" />
  645. </svg>
  646. <div id="u7195_text" class="text ">
  647. <p><span>品牌</span></p>
  648. </div>
  649. </div>
  650. <!-- Unnamed (Table cell) -->
  651. <div id="u7196" class="ax_default table_cell1 transition">
  652. <svg data="images/设备清单/u7196.svg" id="u7196_img" class="img generatedImage" viewbox="605 0 121 44">
  653. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 605 0 )" class="fill" />
  654. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 0 )" class="stroke" />
  655. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 0 )" class="stroke" />
  656. </svg>
  657. <div id="u7196_text" class="text ">
  658. <p><span>型号</span></p>
  659. </div>
  660. </div>
  661. <!-- Unnamed (Table cell) -->
  662. <div id="u7197" class="ax_default table_cell1 transition">
  663. <svg data="images/设备清单/u7197.svg" id="u7197_img" class="img generatedImage" viewbox="725 0 121 44">
  664. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 725 0 )" class="fill" />
  665. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 0 )" class="stroke" />
  666. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 0 )" class="stroke" />
  667. </svg>
  668. <div id="u7197_text" class="text ">
  669. <p><span>设备图片</span></p>
  670. </div>
  671. </div>
  672. <!-- Unnamed (Table cell) -->
  673. <div id="u7198" class="ax_default table_cell1 transition">
  674. <svg data="images/设备清单/u7198.svg" id="u7198_img" class="img generatedImage" viewbox="846 0 121 44">
  675. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 846 0 )" class="fill" />
  676. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 0 )" class="stroke" />
  677. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 0 )" class="stroke" />
  678. </svg>
  679. <div id="u7198_text" class="text ">
  680. <p><span>设备位置</span></p>
  681. </div>
  682. </div>
  683. <!-- Unnamed (Table cell) -->
  684. <div id="u7199" class="ax_default table_cell1 transition">
  685. <svg data="images/设备清单/u7199.svg" id="u7199_img" class="img generatedImage" viewbox="967 0 121 44">
  686. <path d="M 1 1 L 121 1 L 121 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 967 0 )" class="fill" />
  687. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 0 )" class="stroke" />
  688. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 0 )" class="stroke" />
  689. </svg>
  690. <div id="u7199_text" class="text ">
  691. <p><span>设备状态</span></p>
  692. </div>
  693. </div>
  694. <!-- Unnamed (Table cell) -->
  695. <div id="u7200" class="ax_default table_cell1 transition">
  696. <svg data="images/设备清单/u7200.svg" id="u7200_img" class="img generatedImage" viewbox="1088 0 121 44">
  697. <path d="M 1 1 L 120 1 L 120 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1088 0 )" class="fill" />
  698. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 0 )" class="stroke" />
  699. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 0 )" class="stroke" />
  700. <path d="M 120.5 1 L 120.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 0 )" class="stroke" />
  701. </svg>
  702. <div id="u7200_text" class="text ">
  703. <p><span>最新更新时间</span></p>
  704. </div>
  705. </div>
  706. <!-- Unnamed (Table cell) -->
  707. <div id="u7201" class="ax_default table_cell1 transition">
  708. <svg data="images/设备清单/u7201.svg" id="u7201_img" class="img generatedImage" viewbox="0 44 121 38">
  709. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 44 )" class="fill" />
  710. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 44 )" class="stroke" />
  711. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 44 )" class="stroke" />
  712. </svg>
  713. <div id="u7201_text" class="text " style="display:none; visibility: hidden">
  714. <p></p>
  715. </div>
  716. </div>
  717. <!-- Unnamed (Table cell) -->
  718. <div id="u7202" class="ax_default table_cell1 transition">
  719. <svg data="images/设备清单/u7202.svg" id="u7202_img" class="img generatedImage" viewbox="121 44 121 38">
  720. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 44 )" class="fill" />
  721. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 44 )" class="stroke" />
  722. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 44 )" class="stroke" />
  723. </svg>
  724. <div id="u7202_text" class="text " style="display:none; visibility: hidden">
  725. <p></p>
  726. </div>
  727. </div>
  728. <!-- Unnamed (Table cell) -->
  729. <div id="u7203" class="ax_default table_cell1 transition">
  730. <svg data="images/设备清单/u7203.svg" id="u7203_img" class="img generatedImage" viewbox="242 44 121 38">
  731. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 44 )" class="fill" />
  732. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 44 )" class="stroke" />
  733. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 44 )" class="stroke" />
  734. </svg>
  735. <div id="u7203_text" class="text " style="display:none; visibility: hidden">
  736. <p></p>
  737. </div>
  738. </div>
  739. <!-- Unnamed (Table cell) -->
  740. <div id="u7204" class="ax_default table_cell1 transition">
  741. <svg data="images/设备清单/u7204.svg" id="u7204_img" class="img generatedImage" viewbox="363 44 121 38">
  742. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 44 )" class="fill" />
  743. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 44 )" class="stroke" />
  744. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 44 )" class="stroke" />
  745. </svg>
  746. <div id="u7204_text" class="text " style="display:none; visibility: hidden">
  747. <p></p>
  748. </div>
  749. </div>
  750. <!-- Unnamed (Table cell) -->
  751. <div id="u7205" class="ax_default table_cell1 transition">
  752. <svg data="images/设备清单/u7205.svg" id="u7205_img" class="img generatedImage" viewbox="484 44 121 38">
  753. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 44 )" class="fill" />
  754. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 44 )" class="stroke" />
  755. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 44 )" class="stroke" />
  756. </svg>
  757. <div id="u7205_text" class="text " style="display:none; visibility: hidden">
  758. <p></p>
  759. </div>
  760. </div>
  761. <!-- Unnamed (Table cell) -->
  762. <div id="u7206" class="ax_default table_cell1 transition">
  763. <svg data="images/设备清单/u7206.svg" id="u7206_img" class="img generatedImage" viewbox="605 44 121 38">
  764. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 44 )" class="fill" />
  765. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 44 )" class="stroke" />
  766. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 44 )" class="stroke" />
  767. </svg>
  768. <div id="u7206_text" class="text " style="display:none; visibility: hidden">
  769. <p></p>
  770. </div>
  771. </div>
  772. <!-- Unnamed (Table cell) -->
  773. <div id="u7207" class="ax_default table_cell1 transition">
  774. <svg data="images/设备清单/u7207.svg" id="u7207_img" class="img generatedImage" viewbox="725 44 121 38">
  775. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 44 )" class="fill" />
  776. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 44 )" class="stroke" />
  777. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 44 )" class="stroke" />
  778. </svg>
  779. <div id="u7207_text" class="text " style="display:none; visibility: hidden">
  780. <p></p>
  781. </div>
  782. </div>
  783. <!-- Unnamed (Table cell) -->
  784. <div id="u7208" class="ax_default table_cell1 transition">
  785. <svg data="images/设备清单/u7208.svg" id="u7208_img" class="img generatedImage" viewbox="846 44 121 38">
  786. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 44 )" class="fill" />
  787. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 44 )" class="stroke" />
  788. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 44 )" class="stroke" />
  789. </svg>
  790. <div id="u7208_text" class="text " style="display:none; visibility: hidden">
  791. <p></p>
  792. </div>
  793. </div>
  794. <!-- Unnamed (Table cell) -->
  795. <div id="u7209" class="ax_default table_cell1 transition">
  796. <svg data="images/设备清单/u7209.svg" id="u7209_img" class="img generatedImage" viewbox="967 44 121 38">
  797. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 44 )" class="fill" />
  798. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 44 )" class="stroke" />
  799. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 44 )" class="stroke" />
  800. </svg>
  801. <div id="u7209_text" class="text " style="display:none; visibility: hidden">
  802. <p></p>
  803. </div>
  804. </div>
  805. <!-- Unnamed (Table cell) -->
  806. <div id="u7210" class="ax_default table_cell1 transition">
  807. <svg data="images/设备清单/u7210.svg" id="u7210_img" class="img generatedImage" viewbox="1088 44 121 38">
  808. <path d="M 1 1 L 120 1 L 120 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 44 )" class="fill" />
  809. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 44 )" class="stroke" />
  810. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 44 )" class="stroke" />
  811. <path d="M 120.5 1 L 120.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 44 )" class="stroke" />
  812. </svg>
  813. <div id="u7210_text" class="text " style="display:none; visibility: hidden">
  814. <p></p>
  815. </div>
  816. </div>
  817. <!-- Unnamed (Table cell) -->
  818. <div id="u7211" class="ax_default table_cell1 transition">
  819. <svg data="images/设备清单/u7211.svg" id="u7211_img" class="img generatedImage" viewbox="0 82 121 38">
  820. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 82 )" class="fill" />
  821. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 82 )" class="stroke" />
  822. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 82 )" class="stroke" />
  823. </svg>
  824. <div id="u7211_text" class="text " style="display:none; visibility: hidden">
  825. <p></p>
  826. </div>
  827. </div>
  828. <!-- Unnamed (Table cell) -->
  829. <div id="u7212" class="ax_default table_cell1 transition">
  830. <svg data="images/设备清单/u7212.svg" id="u7212_img" class="img generatedImage" viewbox="121 82 121 38">
  831. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 82 )" class="fill" />
  832. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 82 )" class="stroke" />
  833. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 82 )" class="stroke" />
  834. </svg>
  835. <div id="u7212_text" class="text " style="display:none; visibility: hidden">
  836. <p></p>
  837. </div>
  838. </div>
  839. <!-- Unnamed (Table cell) -->
  840. <div id="u7213" class="ax_default table_cell1 transition">
  841. <svg data="images/设备清单/u7213.svg" id="u7213_img" class="img generatedImage" viewbox="242 82 121 38">
  842. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 82 )" class="fill" />
  843. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 82 )" class="stroke" />
  844. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 82 )" class="stroke" />
  845. </svg>
  846. <div id="u7213_text" class="text " style="display:none; visibility: hidden">
  847. <p></p>
  848. </div>
  849. </div>
  850. <!-- Unnamed (Table cell) -->
  851. <div id="u7214" class="ax_default table_cell1 transition">
  852. <svg data="images/设备清单/u7214.svg" id="u7214_img" class="img generatedImage" viewbox="363 82 121 38">
  853. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 82 )" class="fill" />
  854. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 82 )" class="stroke" />
  855. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 82 )" class="stroke" />
  856. </svg>
  857. <div id="u7214_text" class="text " style="display:none; visibility: hidden">
  858. <p></p>
  859. </div>
  860. </div>
  861. <!-- Unnamed (Table cell) -->
  862. <div id="u7215" class="ax_default table_cell1 transition">
  863. <svg data="images/设备清单/u7215.svg" id="u7215_img" class="img generatedImage" viewbox="484 82 121 38">
  864. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 82 )" class="fill" />
  865. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 82 )" class="stroke" />
  866. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 82 )" class="stroke" />
  867. </svg>
  868. <div id="u7215_text" class="text " style="display:none; visibility: hidden">
  869. <p></p>
  870. </div>
  871. </div>
  872. <!-- Unnamed (Table cell) -->
  873. <div id="u7216" class="ax_default table_cell1 transition">
  874. <svg data="images/设备清单/u7216.svg" id="u7216_img" class="img generatedImage" viewbox="605 82 121 38">
  875. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 82 )" class="fill" />
  876. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 82 )" class="stroke" />
  877. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 82 )" class="stroke" />
  878. </svg>
  879. <div id="u7216_text" class="text " style="display:none; visibility: hidden">
  880. <p></p>
  881. </div>
  882. </div>
  883. <!-- Unnamed (Table cell) -->
  884. <div id="u7217" class="ax_default table_cell1 transition">
  885. <svg data="images/设备清单/u7217.svg" id="u7217_img" class="img generatedImage" viewbox="725 82 121 38">
  886. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 82 )" class="fill" />
  887. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 82 )" class="stroke" />
  888. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 82 )" class="stroke" />
  889. </svg>
  890. <div id="u7217_text" class="text " style="display:none; visibility: hidden">
  891. <p></p>
  892. </div>
  893. </div>
  894. <!-- Unnamed (Table cell) -->
  895. <div id="u7218" class="ax_default table_cell1 transition">
  896. <svg data="images/设备清单/u7218.svg" id="u7218_img" class="img generatedImage" viewbox="846 82 121 38">
  897. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 82 )" class="fill" />
  898. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 82 )" class="stroke" />
  899. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 82 )" class="stroke" />
  900. </svg>
  901. <div id="u7218_text" class="text " style="display:none; visibility: hidden">
  902. <p></p>
  903. </div>
  904. </div>
  905. <!-- Unnamed (Table cell) -->
  906. <div id="u7219" class="ax_default table_cell1 transition">
  907. <svg data="images/设备清单/u7219.svg" id="u7219_img" class="img generatedImage" viewbox="967 82 121 38">
  908. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 82 )" class="fill" />
  909. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 82 )" class="stroke" />
  910. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 82 )" class="stroke" />
  911. </svg>
  912. <div id="u7219_text" class="text " style="display:none; visibility: hidden">
  913. <p></p>
  914. </div>
  915. </div>
  916. <!-- Unnamed (Table cell) -->
  917. <div id="u7220" class="ax_default table_cell1 transition">
  918. <svg data="images/设备清单/u7220.svg" id="u7220_img" class="img generatedImage" viewbox="1088 82 121 38">
  919. <path d="M 1 1 L 120 1 L 120 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 82 )" class="fill" />
  920. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 82 )" class="stroke" />
  921. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 82 )" class="stroke" />
  922. <path d="M 120.5 1 L 120.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 82 )" class="stroke" />
  923. </svg>
  924. <div id="u7220_text" class="text " style="display:none; visibility: hidden">
  925. <p></p>
  926. </div>
  927. </div>
  928. <!-- Unnamed (Table cell) -->
  929. <div id="u7221" class="ax_default table_cell1 transition">
  930. <svg data="images/设备清单/u7221.svg" id="u7221_img" class="img generatedImage" viewbox="0 120 121 38">
  931. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 120 )" class="fill" />
  932. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  933. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  934. </svg>
  935. <div id="u7221_text" class="text " style="display:none; visibility: hidden">
  936. <p></p>
  937. </div>
  938. </div>
  939. <!-- Unnamed (Table cell) -->
  940. <div id="u7222" class="ax_default table_cell1 transition">
  941. <svg data="images/设备清单/u7222.svg" id="u7222_img" class="img generatedImage" viewbox="121 120 121 38">
  942. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 120 )" class="fill" />
  943. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 120 )" class="stroke" />
  944. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 120 )" class="stroke" />
  945. </svg>
  946. <div id="u7222_text" class="text " style="display:none; visibility: hidden">
  947. <p></p>
  948. </div>
  949. </div>
  950. <!-- Unnamed (Table cell) -->
  951. <div id="u7223" class="ax_default table_cell1 transition">
  952. <svg data="images/设备清单/u7223.svg" id="u7223_img" class="img generatedImage" viewbox="242 120 121 38">
  953. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 120 )" class="fill" />
  954. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 120 )" class="stroke" />
  955. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 120 )" class="stroke" />
  956. </svg>
  957. <div id="u7223_text" class="text " style="display:none; visibility: hidden">
  958. <p></p>
  959. </div>
  960. </div>
  961. <!-- Unnamed (Table cell) -->
  962. <div id="u7224" class="ax_default table_cell1 transition">
  963. <svg data="images/设备清单/u7224.svg" id="u7224_img" class="img generatedImage" viewbox="363 120 121 38">
  964. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 120 )" class="fill" />
  965. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 120 )" class="stroke" />
  966. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 120 )" class="stroke" />
  967. </svg>
  968. <div id="u7224_text" class="text " style="display:none; visibility: hidden">
  969. <p></p>
  970. </div>
  971. </div>
  972. <!-- Unnamed (Table cell) -->
  973. <div id="u7225" class="ax_default table_cell1 transition">
  974. <svg data="images/设备清单/u7225.svg" id="u7225_img" class="img generatedImage" viewbox="484 120 121 38">
  975. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 120 )" class="fill" />
  976. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 120 )" class="stroke" />
  977. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 120 )" class="stroke" />
  978. </svg>
  979. <div id="u7225_text" class="text " style="display:none; visibility: hidden">
  980. <p></p>
  981. </div>
  982. </div>
  983. <!-- Unnamed (Table cell) -->
  984. <div id="u7226" class="ax_default table_cell1 transition">
  985. <svg data="images/设备清单/u7226.svg" id="u7226_img" class="img generatedImage" viewbox="605 120 121 38">
  986. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 120 )" class="fill" />
  987. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 120 )" class="stroke" />
  988. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 120 )" class="stroke" />
  989. </svg>
  990. <div id="u7226_text" class="text " style="display:none; visibility: hidden">
  991. <p></p>
  992. </div>
  993. </div>
  994. <!-- Unnamed (Table cell) -->
  995. <div id="u7227" class="ax_default table_cell1 transition">
  996. <svg data="images/设备清单/u7227.svg" id="u7227_img" class="img generatedImage" viewbox="725 120 121 38">
  997. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 120 )" class="fill" />
  998. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 120 )" class="stroke" />
  999. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 120 )" class="stroke" />
  1000. </svg>
  1001. <div id="u7227_text" class="text " style="display:none; visibility: hidden">
  1002. <p></p>
  1003. </div>
  1004. </div>
  1005. <!-- Unnamed (Table cell) -->
  1006. <div id="u7228" class="ax_default table_cell1 transition">
  1007. <svg data="images/设备清单/u7228.svg" id="u7228_img" class="img generatedImage" viewbox="846 120 121 38">
  1008. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 120 )" class="fill" />
  1009. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 120 )" class="stroke" />
  1010. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 120 )" class="stroke" />
  1011. </svg>
  1012. <div id="u7228_text" class="text " style="display:none; visibility: hidden">
  1013. <p></p>
  1014. </div>
  1015. </div>
  1016. <!-- Unnamed (Table cell) -->
  1017. <div id="u7229" class="ax_default table_cell1 transition">
  1018. <svg data="images/设备清单/u7229.svg" id="u7229_img" class="img generatedImage" viewbox="967 120 121 38">
  1019. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 120 )" class="fill" />
  1020. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 120 )" class="stroke" />
  1021. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 120 )" class="stroke" />
  1022. </svg>
  1023. <div id="u7229_text" class="text " style="display:none; visibility: hidden">
  1024. <p></p>
  1025. </div>
  1026. </div>
  1027. <!-- Unnamed (Table cell) -->
  1028. <div id="u7230" class="ax_default table_cell1 transition">
  1029. <svg data="images/设备清单/u7230.svg" id="u7230_img" class="img generatedImage" viewbox="1088 120 121 38">
  1030. <path d="M 1 1 L 120 1 L 120 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 120 )" class="fill" />
  1031. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 120 )" class="stroke" />
  1032. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 120 )" class="stroke" />
  1033. <path d="M 120.5 1 L 120.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 120 )" class="stroke" />
  1034. </svg>
  1035. <div id="u7230_text" class="text " style="display:none; visibility: hidden">
  1036. <p></p>
  1037. </div>
  1038. </div>
  1039. <!-- Unnamed (Table cell) -->
  1040. <div id="u7231" class="ax_default table_cell1 transition">
  1041. <svg data="images/设备清单/u7231.svg" id="u7231_img" class="img generatedImage" viewbox="0 158 121 38">
  1042. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 158 )" class="fill" />
  1043. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 158 )" class="stroke" />
  1044. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 158 )" class="stroke" />
  1045. </svg>
  1046. <div id="u7231_text" class="text " style="display:none; visibility: hidden">
  1047. <p></p>
  1048. </div>
  1049. </div>
  1050. <!-- Unnamed (Table cell) -->
  1051. <div id="u7232" class="ax_default table_cell1 transition">
  1052. <svg data="images/设备清单/u7232.svg" id="u7232_img" class="img generatedImage" viewbox="121 158 121 38">
  1053. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 158 )" class="fill" />
  1054. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 158 )" class="stroke" />
  1055. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 158 )" class="stroke" />
  1056. </svg>
  1057. <div id="u7232_text" class="text " style="display:none; visibility: hidden">
  1058. <p></p>
  1059. </div>
  1060. </div>
  1061. <!-- Unnamed (Table cell) -->
  1062. <div id="u7233" class="ax_default table_cell1 transition">
  1063. <svg data="images/设备清单/u7233.svg" id="u7233_img" class="img generatedImage" viewbox="242 158 121 38">
  1064. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 158 )" class="fill" />
  1065. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 158 )" class="stroke" />
  1066. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 158 )" class="stroke" />
  1067. </svg>
  1068. <div id="u7233_text" class="text " style="display:none; visibility: hidden">
  1069. <p></p>
  1070. </div>
  1071. </div>
  1072. <!-- Unnamed (Table cell) -->
  1073. <div id="u7234" class="ax_default table_cell1 transition">
  1074. <svg data="images/设备清单/u7234.svg" id="u7234_img" class="img generatedImage" viewbox="363 158 121 38">
  1075. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 158 )" class="fill" />
  1076. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 158 )" class="stroke" />
  1077. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 158 )" class="stroke" />
  1078. </svg>
  1079. <div id="u7234_text" class="text " style="display:none; visibility: hidden">
  1080. <p></p>
  1081. </div>
  1082. </div>
  1083. <!-- Unnamed (Table cell) -->
  1084. <div id="u7235" class="ax_default table_cell1 transition">
  1085. <svg data="images/设备清单/u7235.svg" id="u7235_img" class="img generatedImage" viewbox="484 158 121 38">
  1086. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 158 )" class="fill" />
  1087. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 158 )" class="stroke" />
  1088. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 158 )" class="stroke" />
  1089. </svg>
  1090. <div id="u7235_text" class="text " style="display:none; visibility: hidden">
  1091. <p></p>
  1092. </div>
  1093. </div>
  1094. <!-- Unnamed (Table cell) -->
  1095. <div id="u7236" class="ax_default table_cell1 transition">
  1096. <svg data="images/设备清单/u7236.svg" id="u7236_img" class="img generatedImage" viewbox="605 158 121 38">
  1097. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 158 )" class="fill" />
  1098. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 158 )" class="stroke" />
  1099. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 158 )" class="stroke" />
  1100. </svg>
  1101. <div id="u7236_text" class="text " style="display:none; visibility: hidden">
  1102. <p></p>
  1103. </div>
  1104. </div>
  1105. <!-- Unnamed (Table cell) -->
  1106. <div id="u7237" class="ax_default table_cell1 transition">
  1107. <svg data="images/设备清单/u7237.svg" id="u7237_img" class="img generatedImage" viewbox="725 158 121 38">
  1108. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 158 )" class="fill" />
  1109. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 158 )" class="stroke" />
  1110. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 158 )" class="stroke" />
  1111. </svg>
  1112. <div id="u7237_text" class="text " style="display:none; visibility: hidden">
  1113. <p></p>
  1114. </div>
  1115. </div>
  1116. <!-- Unnamed (Table cell) -->
  1117. <div id="u7238" class="ax_default table_cell1 transition">
  1118. <svg data="images/设备清单/u7238.svg" id="u7238_img" class="img generatedImage" viewbox="846 158 121 38">
  1119. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 158 )" class="fill" />
  1120. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 158 )" class="stroke" />
  1121. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 158 )" class="stroke" />
  1122. </svg>
  1123. <div id="u7238_text" class="text " style="display:none; visibility: hidden">
  1124. <p></p>
  1125. </div>
  1126. </div>
  1127. <!-- Unnamed (Table cell) -->
  1128. <div id="u7239" class="ax_default table_cell1 transition">
  1129. <svg data="images/设备清单/u7239.svg" id="u7239_img" class="img generatedImage" viewbox="967 158 121 38">
  1130. <path d="M 1 1 L 121 1 L 121 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 158 )" class="fill" />
  1131. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 158 )" class="stroke" />
  1132. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 158 )" class="stroke" />
  1133. </svg>
  1134. <div id="u7239_text" class="text " style="display:none; visibility: hidden">
  1135. <p></p>
  1136. </div>
  1137. </div>
  1138. <!-- Unnamed (Table cell) -->
  1139. <div id="u7240" class="ax_default table_cell1 transition">
  1140. <svg data="images/设备清单/u7240.svg" id="u7240_img" class="img generatedImage" viewbox="1088 158 121 38">
  1141. <path d="M 1 1 L 120 1 L 120 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 158 )" class="fill" />
  1142. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 158 )" class="stroke" />
  1143. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 158 )" class="stroke" />
  1144. <path d="M 120.5 1 L 120.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 158 )" class="stroke" />
  1145. </svg>
  1146. <div id="u7240_text" class="text " style="display:none; visibility: hidden">
  1147. <p></p>
  1148. </div>
  1149. </div>
  1150. <!-- Unnamed (Table cell) -->
  1151. <div id="u7241" class="ax_default table_cell1 transition">
  1152. <svg data="images/设备清单/u7241.svg" id="u7241_img" class="img generatedImage" viewbox="0 196 121 35">
  1153. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 196 )" class="fill" />
  1154. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 196 )" class="stroke" />
  1155. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 196 )" class="stroke" />
  1156. </svg>
  1157. <div id="u7241_text" class="text " style="display:none; visibility: hidden">
  1158. <p></p>
  1159. </div>
  1160. </div>
  1161. <!-- Unnamed (Table cell) -->
  1162. <div id="u7242" class="ax_default table_cell1 transition">
  1163. <svg data="images/设备清单/u7242.svg" id="u7242_img" class="img generatedImage" viewbox="121 196 121 35">
  1164. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 196 )" class="fill" />
  1165. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 196 )" class="stroke" />
  1166. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 196 )" class="stroke" />
  1167. </svg>
  1168. <div id="u7242_text" class="text " style="display:none; visibility: hidden">
  1169. <p></p>
  1170. </div>
  1171. </div>
  1172. <!-- Unnamed (Table cell) -->
  1173. <div id="u7243" class="ax_default table_cell1 transition">
  1174. <svg data="images/设备清单/u7243.svg" id="u7243_img" class="img generatedImage" viewbox="242 196 121 35">
  1175. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 196 )" class="fill" />
  1176. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 196 )" class="stroke" />
  1177. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 196 )" class="stroke" />
  1178. </svg>
  1179. <div id="u7243_text" class="text " style="display:none; visibility: hidden">
  1180. <p></p>
  1181. </div>
  1182. </div>
  1183. <!-- Unnamed (Table cell) -->
  1184. <div id="u7244" class="ax_default table_cell1 transition">
  1185. <svg data="images/设备清单/u7244.svg" id="u7244_img" class="img generatedImage" viewbox="363 196 121 35">
  1186. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 196 )" class="fill" />
  1187. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 196 )" class="stroke" />
  1188. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 196 )" class="stroke" />
  1189. </svg>
  1190. <div id="u7244_text" class="text " style="display:none; visibility: hidden">
  1191. <p></p>
  1192. </div>
  1193. </div>
  1194. <!-- Unnamed (Table cell) -->
  1195. <div id="u7245" class="ax_default table_cell1 transition">
  1196. <svg data="images/设备清单/u7245.svg" id="u7245_img" class="img generatedImage" viewbox="484 196 121 35">
  1197. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 196 )" class="fill" />
  1198. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 196 )" class="stroke" />
  1199. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 196 )" class="stroke" />
  1200. </svg>
  1201. <div id="u7245_text" class="text " style="display:none; visibility: hidden">
  1202. <p></p>
  1203. </div>
  1204. </div>
  1205. <!-- Unnamed (Table cell) -->
  1206. <div id="u7246" class="ax_default table_cell1 transition">
  1207. <svg data="images/设备清单/u7246.svg" id="u7246_img" class="img generatedImage" viewbox="605 196 121 35">
  1208. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 196 )" class="fill" />
  1209. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 196 )" class="stroke" />
  1210. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 196 )" class="stroke" />
  1211. </svg>
  1212. <div id="u7246_text" class="text " style="display:none; visibility: hidden">
  1213. <p></p>
  1214. </div>
  1215. </div>
  1216. <!-- Unnamed (Table cell) -->
  1217. <div id="u7247" class="ax_default table_cell1 transition">
  1218. <svg data="images/设备清单/u7247.svg" id="u7247_img" class="img generatedImage" viewbox="725 196 121 35">
  1219. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 196 )" class="fill" />
  1220. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 196 )" class="stroke" />
  1221. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 196 )" class="stroke" />
  1222. </svg>
  1223. <div id="u7247_text" class="text " style="display:none; visibility: hidden">
  1224. <p></p>
  1225. </div>
  1226. </div>
  1227. <!-- Unnamed (Table cell) -->
  1228. <div id="u7248" class="ax_default table_cell1 transition">
  1229. <svg data="images/设备清单/u7248.svg" id="u7248_img" class="img generatedImage" viewbox="846 196 121 35">
  1230. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 196 )" class="fill" />
  1231. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 196 )" class="stroke" />
  1232. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 196 )" class="stroke" />
  1233. </svg>
  1234. <div id="u7248_text" class="text " style="display:none; visibility: hidden">
  1235. <p></p>
  1236. </div>
  1237. </div>
  1238. <!-- Unnamed (Table cell) -->
  1239. <div id="u7249" class="ax_default table_cell1 transition">
  1240. <svg data="images/设备清单/u7249.svg" id="u7249_img" class="img generatedImage" viewbox="967 196 121 35">
  1241. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 196 )" class="fill" />
  1242. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 196 )" class="stroke" />
  1243. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 196 )" class="stroke" />
  1244. </svg>
  1245. <div id="u7249_text" class="text " style="display:none; visibility: hidden">
  1246. <p></p>
  1247. </div>
  1248. </div>
  1249. <!-- Unnamed (Table cell) -->
  1250. <div id="u7250" class="ax_default table_cell1 transition">
  1251. <svg data="images/设备清单/u7250.svg" id="u7250_img" class="img generatedImage" viewbox="1088 196 121 35">
  1252. <path d="M 1 1 L 120 1 L 120 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 196 )" class="fill" />
  1253. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 196 )" class="stroke" />
  1254. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 196 )" class="stroke" />
  1255. <path d="M 120.5 1 L 120.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 196 )" class="stroke" />
  1256. </svg>
  1257. <div id="u7250_text" class="text " style="display:none; visibility: hidden">
  1258. <p></p>
  1259. </div>
  1260. </div>
  1261. <!-- Unnamed (Table cell) -->
  1262. <div id="u7251" class="ax_default table_cell1 transition">
  1263. <svg data="images/设备清单/u7251.svg" id="u7251_img" class="img generatedImage" viewbox="0 231 121 35">
  1264. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 231 )" class="fill" />
  1265. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 231 )" class="stroke" />
  1266. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 231 )" class="stroke" />
  1267. </svg>
  1268. <div id="u7251_text" class="text " style="display:none; visibility: hidden">
  1269. <p></p>
  1270. </div>
  1271. </div>
  1272. <!-- Unnamed (Table cell) -->
  1273. <div id="u7252" class="ax_default table_cell1 transition">
  1274. <svg data="images/设备清单/u7252.svg" id="u7252_img" class="img generatedImage" viewbox="121 231 121 35">
  1275. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 231 )" class="fill" />
  1276. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 231 )" class="stroke" />
  1277. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 231 )" class="stroke" />
  1278. </svg>
  1279. <div id="u7252_text" class="text " style="display:none; visibility: hidden">
  1280. <p></p>
  1281. </div>
  1282. </div>
  1283. <!-- Unnamed (Table cell) -->
  1284. <div id="u7253" class="ax_default table_cell1 transition">
  1285. <svg data="images/设备清单/u7253.svg" id="u7253_img" class="img generatedImage" viewbox="242 231 121 35">
  1286. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 231 )" class="fill" />
  1287. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 231 )" class="stroke" />
  1288. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 231 )" class="stroke" />
  1289. </svg>
  1290. <div id="u7253_text" class="text " style="display:none; visibility: hidden">
  1291. <p></p>
  1292. </div>
  1293. </div>
  1294. <!-- Unnamed (Table cell) -->
  1295. <div id="u7254" class="ax_default table_cell1 transition">
  1296. <svg data="images/设备清单/u7254.svg" id="u7254_img" class="img generatedImage" viewbox="363 231 121 35">
  1297. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 231 )" class="fill" />
  1298. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 231 )" class="stroke" />
  1299. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 231 )" class="stroke" />
  1300. </svg>
  1301. <div id="u7254_text" class="text " style="display:none; visibility: hidden">
  1302. <p></p>
  1303. </div>
  1304. </div>
  1305. <!-- Unnamed (Table cell) -->
  1306. <div id="u7255" class="ax_default table_cell1 transition">
  1307. <svg data="images/设备清单/u7255.svg" id="u7255_img" class="img generatedImage" viewbox="484 231 121 35">
  1308. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 231 )" class="fill" />
  1309. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 231 )" class="stroke" />
  1310. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 231 )" class="stroke" />
  1311. </svg>
  1312. <div id="u7255_text" class="text " style="display:none; visibility: hidden">
  1313. <p></p>
  1314. </div>
  1315. </div>
  1316. <!-- Unnamed (Table cell) -->
  1317. <div id="u7256" class="ax_default table_cell1 transition">
  1318. <svg data="images/设备清单/u7256.svg" id="u7256_img" class="img generatedImage" viewbox="605 231 121 35">
  1319. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 231 )" class="fill" />
  1320. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 231 )" class="stroke" />
  1321. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 231 )" class="stroke" />
  1322. </svg>
  1323. <div id="u7256_text" class="text " style="display:none; visibility: hidden">
  1324. <p></p>
  1325. </div>
  1326. </div>
  1327. <!-- Unnamed (Table cell) -->
  1328. <div id="u7257" class="ax_default table_cell1 transition">
  1329. <svg data="images/设备清单/u7257.svg" id="u7257_img" class="img generatedImage" viewbox="725 231 121 35">
  1330. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 231 )" class="fill" />
  1331. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 231 )" class="stroke" />
  1332. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 231 )" class="stroke" />
  1333. </svg>
  1334. <div id="u7257_text" class="text " style="display:none; visibility: hidden">
  1335. <p></p>
  1336. </div>
  1337. </div>
  1338. <!-- Unnamed (Table cell) -->
  1339. <div id="u7258" class="ax_default table_cell1 transition">
  1340. <svg data="images/设备清单/u7258.svg" id="u7258_img" class="img generatedImage" viewbox="846 231 121 35">
  1341. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 231 )" class="fill" />
  1342. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 231 )" class="stroke" />
  1343. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 231 )" class="stroke" />
  1344. </svg>
  1345. <div id="u7258_text" class="text " style="display:none; visibility: hidden">
  1346. <p></p>
  1347. </div>
  1348. </div>
  1349. <!-- Unnamed (Table cell) -->
  1350. <div id="u7259" class="ax_default table_cell1 transition">
  1351. <svg data="images/设备清单/u7259.svg" id="u7259_img" class="img generatedImage" viewbox="967 231 121 35">
  1352. <path d="M 1 1 L 121 1 L 121 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 231 )" class="fill" />
  1353. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 231 )" class="stroke" />
  1354. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 231 )" class="stroke" />
  1355. </svg>
  1356. <div id="u7259_text" class="text " style="display:none; visibility: hidden">
  1357. <p></p>
  1358. </div>
  1359. </div>
  1360. <!-- Unnamed (Table cell) -->
  1361. <div id="u7260" class="ax_default table_cell1 transition">
  1362. <svg data="images/设备清单/u7260.svg" id="u7260_img" class="img generatedImage" viewbox="1088 231 121 35">
  1363. <path d="M 1 1 L 120 1 L 120 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 231 )" class="fill" />
  1364. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 231 )" class="stroke" />
  1365. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 231 )" class="stroke" />
  1366. <path d="M 120.5 1 L 120.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 231 )" class="stroke" />
  1367. </svg>
  1368. <div id="u7260_text" class="text " style="display:none; visibility: hidden">
  1369. <p></p>
  1370. </div>
  1371. </div>
  1372. <!-- Unnamed (Table cell) -->
  1373. <div id="u7261" class="ax_default table_cell1 transition">
  1374. <svg data="images/设备清单/u7261.svg" id="u7261_img" class="img generatedImage" viewbox="0 266 121 32">
  1375. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 266 )" class="fill" />
  1376. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 266 )" class="stroke" />
  1377. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 266 )" class="stroke" />
  1378. </svg>
  1379. <div id="u7261_text" class="text " style="display:none; visibility: hidden">
  1380. <p></p>
  1381. </div>
  1382. </div>
  1383. <!-- Unnamed (Table cell) -->
  1384. <div id="u7262" class="ax_default table_cell1 transition">
  1385. <svg data="images/设备清单/u7262.svg" id="u7262_img" class="img generatedImage" viewbox="121 266 121 32">
  1386. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 266 )" class="fill" />
  1387. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 266 )" class="stroke" />
  1388. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 266 )" class="stroke" />
  1389. </svg>
  1390. <div id="u7262_text" class="text " style="display:none; visibility: hidden">
  1391. <p></p>
  1392. </div>
  1393. </div>
  1394. <!-- Unnamed (Table cell) -->
  1395. <div id="u7263" class="ax_default table_cell1 transition">
  1396. <svg data="images/设备清单/u7263.svg" id="u7263_img" class="img generatedImage" viewbox="242 266 121 32">
  1397. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 266 )" class="fill" />
  1398. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 266 )" class="stroke" />
  1399. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 266 )" class="stroke" />
  1400. </svg>
  1401. <div id="u7263_text" class="text " style="display:none; visibility: hidden">
  1402. <p></p>
  1403. </div>
  1404. </div>
  1405. <!-- Unnamed (Table cell) -->
  1406. <div id="u7264" class="ax_default table_cell1 transition">
  1407. <svg data="images/设备清单/u7264.svg" id="u7264_img" class="img generatedImage" viewbox="363 266 121 32">
  1408. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 266 )" class="fill" />
  1409. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 266 )" class="stroke" />
  1410. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 266 )" class="stroke" />
  1411. </svg>
  1412. <div id="u7264_text" class="text " style="display:none; visibility: hidden">
  1413. <p></p>
  1414. </div>
  1415. </div>
  1416. <!-- Unnamed (Table cell) -->
  1417. <div id="u7265" class="ax_default table_cell1 transition">
  1418. <svg data="images/设备清单/u7265.svg" id="u7265_img" class="img generatedImage" viewbox="484 266 121 32">
  1419. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 266 )" class="fill" />
  1420. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 266 )" class="stroke" />
  1421. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 266 )" class="stroke" />
  1422. </svg>
  1423. <div id="u7265_text" class="text " style="display:none; visibility: hidden">
  1424. <p></p>
  1425. </div>
  1426. </div>
  1427. <!-- Unnamed (Table cell) -->
  1428. <div id="u7266" class="ax_default table_cell1 transition">
  1429. <svg data="images/设备清单/u7266.svg" id="u7266_img" class="img generatedImage" viewbox="605 266 121 32">
  1430. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 266 )" class="fill" />
  1431. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 266 )" class="stroke" />
  1432. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 266 )" class="stroke" />
  1433. </svg>
  1434. <div id="u7266_text" class="text " style="display:none; visibility: hidden">
  1435. <p></p>
  1436. </div>
  1437. </div>
  1438. <!-- Unnamed (Table cell) -->
  1439. <div id="u7267" class="ax_default table_cell1 transition">
  1440. <svg data="images/设备清单/u7267.svg" id="u7267_img" class="img generatedImage" viewbox="725 266 121 32">
  1441. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 266 )" class="fill" />
  1442. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 266 )" class="stroke" />
  1443. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 266 )" class="stroke" />
  1444. </svg>
  1445. <div id="u7267_text" class="text " style="display:none; visibility: hidden">
  1446. <p></p>
  1447. </div>
  1448. </div>
  1449. <!-- Unnamed (Table cell) -->
  1450. <div id="u7268" class="ax_default table_cell1 transition">
  1451. <svg data="images/设备清单/u7268.svg" id="u7268_img" class="img generatedImage" viewbox="846 266 121 32">
  1452. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 266 )" class="fill" />
  1453. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 266 )" class="stroke" />
  1454. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 266 )" class="stroke" />
  1455. </svg>
  1456. <div id="u7268_text" class="text " style="display:none; visibility: hidden">
  1457. <p></p>
  1458. </div>
  1459. </div>
  1460. <!-- Unnamed (Table cell) -->
  1461. <div id="u7269" class="ax_default table_cell1 transition">
  1462. <svg data="images/设备清单/u7269.svg" id="u7269_img" class="img generatedImage" viewbox="967 266 121 32">
  1463. <path d="M 1 1 L 121 1 L 121 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 266 )" class="fill" />
  1464. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 266 )" class="stroke" />
  1465. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 266 )" class="stroke" />
  1466. </svg>
  1467. <div id="u7269_text" class="text " style="display:none; visibility: hidden">
  1468. <p></p>
  1469. </div>
  1470. </div>
  1471. <!-- Unnamed (Table cell) -->
  1472. <div id="u7270" class="ax_default table_cell1 transition">
  1473. <svg data="images/设备清单/u7270.svg" id="u7270_img" class="img generatedImage" viewbox="1088 266 121 32">
  1474. <path d="M 1 1 L 120 1 L 120 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 266 )" class="fill" />
  1475. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 266 )" class="stroke" />
  1476. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 266 )" class="stroke" />
  1477. <path d="M 120.5 1 L 120.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 266 )" class="stroke" />
  1478. </svg>
  1479. <div id="u7270_text" class="text " style="display:none; visibility: hidden">
  1480. <p></p>
  1481. </div>
  1482. </div>
  1483. <!-- Unnamed (Table cell) -->
  1484. <div id="u7271" class="ax_default table_cell1 transition">
  1485. <svg data="images/设备清单/u7271.svg" id="u7271_img" class="img generatedImage" viewbox="0 298 121 30">
  1486. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 298 )" class="fill" />
  1487. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 298 )" class="stroke" />
  1488. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 298 )" class="stroke" />
  1489. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 298 )" class="stroke" />
  1490. </svg>
  1491. <div id="u7271_text" class="text " style="display:none; visibility: hidden">
  1492. <p></p>
  1493. </div>
  1494. </div>
  1495. <!-- Unnamed (Table cell) -->
  1496. <div id="u7272" class="ax_default table_cell1 transition">
  1497. <svg data="images/设备清单/u7272.svg" id="u7272_img" class="img generatedImage" viewbox="121 298 121 30">
  1498. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 121 298 )" class="fill" />
  1499. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 298 )" class="stroke" />
  1500. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 298 )" class="stroke" />
  1501. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 121 298 )" class="stroke" />
  1502. </svg>
  1503. <div id="u7272_text" class="text " style="display:none; visibility: hidden">
  1504. <p></p>
  1505. </div>
  1506. </div>
  1507. <!-- Unnamed (Table cell) -->
  1508. <div id="u7273" class="ax_default table_cell1 transition">
  1509. <svg data="images/设备清单/u7273.svg" id="u7273_img" class="img generatedImage" viewbox="242 298 121 30">
  1510. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 242 298 )" class="fill" />
  1511. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 298 )" class="stroke" />
  1512. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 298 )" class="stroke" />
  1513. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 242 298 )" class="stroke" />
  1514. </svg>
  1515. <div id="u7273_text" class="text " style="display:none; visibility: hidden">
  1516. <p></p>
  1517. </div>
  1518. </div>
  1519. <!-- Unnamed (Table cell) -->
  1520. <div id="u7274" class="ax_default table_cell1 transition">
  1521. <svg data="images/设备清单/u7274.svg" id="u7274_img" class="img generatedImage" viewbox="363 298 121 30">
  1522. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 363 298 )" class="fill" />
  1523. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 298 )" class="stroke" />
  1524. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 298 )" class="stroke" />
  1525. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 363 298 )" class="stroke" />
  1526. </svg>
  1527. <div id="u7274_text" class="text " style="display:none; visibility: hidden">
  1528. <p></p>
  1529. </div>
  1530. </div>
  1531. <!-- Unnamed (Table cell) -->
  1532. <div id="u7275" class="ax_default table_cell1 transition">
  1533. <svg data="images/设备清单/u7275.svg" id="u7275_img" class="img generatedImage" viewbox="484 298 121 30">
  1534. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 484 298 )" class="fill" />
  1535. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 298 )" class="stroke" />
  1536. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 298 )" class="stroke" />
  1537. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 484 298 )" class="stroke" />
  1538. </svg>
  1539. <div id="u7275_text" class="text " style="display:none; visibility: hidden">
  1540. <p></p>
  1541. </div>
  1542. </div>
  1543. <!-- Unnamed (Table cell) -->
  1544. <div id="u7276" class="ax_default table_cell1 transition">
  1545. <svg data="images/设备清单/u7276.svg" id="u7276_img" class="img generatedImage" viewbox="605 298 121 30">
  1546. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 605 298 )" class="fill" />
  1547. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 298 )" class="stroke" />
  1548. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 298 )" class="stroke" />
  1549. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 605 298 )" class="stroke" />
  1550. </svg>
  1551. <div id="u7276_text" class="text " style="display:none; visibility: hidden">
  1552. <p></p>
  1553. </div>
  1554. </div>
  1555. <!-- Unnamed (Table cell) -->
  1556. <div id="u7277" class="ax_default table_cell1 transition">
  1557. <svg data="images/设备清单/u7277.svg" id="u7277_img" class="img generatedImage" viewbox="725 298 121 30">
  1558. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 725 298 )" class="fill" />
  1559. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 298 )" class="stroke" />
  1560. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 298 )" class="stroke" />
  1561. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 725 298 )" class="stroke" />
  1562. </svg>
  1563. <div id="u7277_text" class="text " style="display:none; visibility: hidden">
  1564. <p></p>
  1565. </div>
  1566. </div>
  1567. <!-- Unnamed (Table cell) -->
  1568. <div id="u7278" class="ax_default table_cell1 transition">
  1569. <svg data="images/设备清单/u7278.svg" id="u7278_img" class="img generatedImage" viewbox="846 298 121 30">
  1570. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 846 298 )" class="fill" />
  1571. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 298 )" class="stroke" />
  1572. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 298 )" class="stroke" />
  1573. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 846 298 )" class="stroke" />
  1574. </svg>
  1575. <div id="u7278_text" class="text " style="display:none; visibility: hidden">
  1576. <p></p>
  1577. </div>
  1578. </div>
  1579. <!-- Unnamed (Table cell) -->
  1580. <div id="u7279" class="ax_default table_cell1 transition">
  1581. <svg data="images/设备清单/u7279.svg" id="u7279_img" class="img generatedImage" viewbox="967 298 121 30">
  1582. <path d="M 1 1 L 121 1 L 121 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 967 298 )" class="fill" />
  1583. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 298 )" class="stroke" />
  1584. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 298 )" class="stroke" />
  1585. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 967 298 )" class="stroke" />
  1586. </svg>
  1587. <div id="u7279_text" class="text " style="display:none; visibility: hidden">
  1588. <p></p>
  1589. </div>
  1590. </div>
  1591. <!-- Unnamed (Table cell) -->
  1592. <div id="u7280" class="ax_default table_cell1 transition">
  1593. <svg data="images/设备清单/u7280.svg" id="u7280_img" class="img generatedImage" viewbox="1088 298 121 30">
  1594. <path d="M 1 1 L 120 1 L 120 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1088 298 )" class="fill" />
  1595. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 298 )" class="stroke" />
  1596. <path d="M 0 0.5 L 121 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 298 )" class="stroke" />
  1597. <path d="M 120.5 1 L 120.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 298 )" class="stroke" />
  1598. <path d="M 0 29.5 L 121 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1088 298 )" class="stroke" />
  1599. </svg>
  1600. <div id="u7280_text" class="text " style="display:none; visibility: hidden">
  1601. <p></p>
  1602. </div>
  1603. </div>
  1604. </div>
  1605. <!-- Unnamed (Rectangle) -->
  1606. <div id="u7281" class="ax_default box_1 transition">
  1607. <div id="u7281_div" class=""></div>
  1608. <div id="u7281_text" class="text ">
  1609. <p><span>导出</span></p>
  1610. </div>
  1611. </div>
  1612. <!-- Unnamed (Group) -->
  1613. <div id="u7282" class="ax_default" data-left="956" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  1614. <!-- Unnamed (Rectangle) -->
  1615. <div id="u7283" class="ax_default box_1 transition">
  1616. <div id="u7283_div" class=""></div>
  1617. <div id="u7283_text" class="text " style="display:none; visibility: hidden">
  1618. <p></p>
  1619. </div>
  1620. </div>
  1621. <!-- Unnamed (Droplist) -->
  1622. <div id="u7284" class="ax_default droplist transition">
  1623. <div id="u7284_div" class=""></div>
  1624. <select id="u7284_input" class="u7284_input">
  1625. <option class="u7284_input_option" value="设备状态">设备状态</option>
  1626. <option class="u7284_input_option" value="在线">在线</option>
  1627. <option class="u7284_input_option" value="离线">离线</option>
  1628. <option class="u7284_input_option" value="故障">故障</option>
  1629. </select>
  1630. </div>
  1631. </div>
  1632. <!-- Unnamed (Group) -->
  1633. <div id="u7285" class="ax_default" data-left="1256" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  1634. <!-- Unnamed (Rectangle) -->
  1635. <div id="u7286" class="ax_default box_1 transition">
  1636. <div id="u7286_div" class=""></div>
  1637. <div id="u7286_text" class="text " style="display:none; visibility: hidden">
  1638. <p></p>
  1639. </div>
  1640. </div>
  1641. <!-- Unnamed (Droplist) -->
  1642. <div id="u7287" class="ax_default droplist transition">
  1643. <div id="u7287_div" class=""></div>
  1644. <select id="u7287_input" class="u7287_input">
  1645. <option class="u7287_input_option" value="设备地址">设备地址</option>
  1646. <option class="u7287_input_option" value="省市区县">省市区县</option>
  1647. </select>
  1648. </div>
  1649. </div>
  1650. <!-- Unnamed (Group) -->
  1651. <div id="u7288" class="ax_default" data-left="506" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  1652. <!-- Unnamed (Rectangle) -->
  1653. <div id="u7289" class="ax_default box_1 transition">
  1654. <div id="u7289_div" class=""></div>
  1655. <div id="u7289_text" class="text " style="display:none; visibility: hidden">
  1656. <p></p>
  1657. </div>
  1658. </div>
  1659. <!-- Unnamed (Droplist) -->
  1660. <div id="u7290" class="ax_default droplist transition">
  1661. <div id="u7290_div" class=""></div>
  1662. <select id="u7290_input" class="u7290_input">
  1663. <option class="u7290_input_option" value="设备类型">设备类型</option>
  1664. </select>
  1665. </div>
  1666. </div>
  1667. <!-- Unnamed (Group) -->
  1668. <div id="u7291" class="ax_default" data-left="656" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  1669. <!-- Unnamed (Rectangle) -->
  1670. <div id="u7292" class="ax_default shape transition">
  1671. <div id="u7292_div" class=""></div>
  1672. <div id="u7292_text" class="text " style="display:none; visibility: hidden">
  1673. <p></p>
  1674. </div>
  1675. </div>
  1676. <!-- 选项内容 (Text field) -->
  1677. <div id="u7293" class="ax_default text_field transition" data-label="选项内容">
  1678. <div id="u7293_div" class=""></div>
  1679. <input id="u7293_input" type="text" value="" class="u7293_input"/>
  1680. </div>
  1681. </div>
  1682. <!-- Unnamed (Group) -->
  1683. <div id="u7294" class="ax_default" data-left="806" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  1684. <!-- Unnamed (Rectangle) -->
  1685. <div id="u7295" class="ax_default shape transition">
  1686. <div id="u7295_div" class=""></div>
  1687. <div id="u7295_text" class="text " style="display:none; visibility: hidden">
  1688. <p></p>
  1689. </div>
  1690. </div>
  1691. <!-- 选项内容 (Text field) -->
  1692. <div id="u7296" class="ax_default text_field transition" data-label="选项内容">
  1693. <div id="u7296_div" class=""></div>
  1694. <input id="u7296_input" type="text" value="" class="u7296_input"/>
  1695. </div>
  1696. </div>
  1697. <!-- Unnamed (Group) -->
  1698. <div id="u7297" class="ax_default" data-left="356" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  1699. <!-- Unnamed (Rectangle) -->
  1700. <div id="u7298" class="ax_default box_1 transition">
  1701. <div id="u7298_div" class=""></div>
  1702. <div id="u7298_text" class="text " style="display:none; visibility: hidden">
  1703. <p></p>
  1704. </div>
  1705. </div>
  1706. <!-- Unnamed (Droplist) -->
  1707. <div id="u7299" class="ax_default droplist transition">
  1708. <div id="u7299_div" class=""></div>
  1709. <select id="u7299_input" class="u7299_input">
  1710. <option class="u7299_input_option" value="项目">项目</option>
  1711. </select>
  1712. </div>
  1713. </div>
  1714. <!-- Unnamed (客户-智能设备) -->
  1715. <div id="u7300" class="nopointer ax_default">
  1716. <!-- Unnamed (Group) -->
  1717. <div id="u7301" class="ax_default" data-left="120" data-top="50" data-width="200" data-height="1190" layer-opacity="1">
  1718. <!-- Unnamed (Rectangle) -->
  1719. <div id="u7302" class="ax_default box_2 transition">
  1720. <div id="u7302_div" class=""></div>
  1721. <div id="u7302_text" class="text " style="display:none; visibility: hidden">
  1722. <p></p>
  1723. </div>
  1724. </div>
  1725. <!-- Unnamed (Rectangle) -->
  1726. <div id="u7303" class="ax_default label transition">
  1727. <div id="u7303_div" class=""></div>
  1728. <div id="u7303_text" class="text ">
  1729. <p><span>智能设备</span></p>
  1730. </div>
  1731. </div>
  1732. <!-- Unnamed (Rectangle) -->
  1733. <div id="u7304" class="ax_default label transition">
  1734. <div id="u7304_div" class=""></div>
  1735. <div id="u7304_text" class="text ">
  1736. <p><span>设备清单</span></p>
  1737. </div>
  1738. </div>
  1739. <!-- Unnamed (Rectangle) -->
  1740. <div id="u7305" class="ax_default label transition">
  1741. <div id="u7305_div" class=""></div>
  1742. <div id="u7305_text" class="text ">
  1743. <p><span>设备信息</span></p>
  1744. </div>
  1745. </div>
  1746. <!-- Unnamed (Rectangle) -->
  1747. <div id="u7306" class="ax_default label transition">
  1748. <div id="u7306_div" class=""></div>
  1749. <div id="u7306_text" class="text ">
  1750. <p><span>设备监测</span></p>
  1751. </div>
  1752. </div>
  1753. <!-- Unnamed (Rectangle) -->
  1754. <div id="u7307" class="ax_default label transition">
  1755. <div id="u7307_div" class=""></div>
  1756. <div id="u7307_text" class="text ">
  1757. <p><span>设备监测</span></p>
  1758. </div>
  1759. </div>
  1760. <!-- Unnamed (Line) -->
  1761. <div id="u7308" class="ax_default line1 transition">
  1762. <svg data="images/项目列表/u4861.svg" id="u7308_img" class="img generatedImage">
  1763. <g transform="matrix(1 0 0 1 -1 -122 )">
  1764. <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" />
  1765. </g>
  1766. </svg>
  1767. <div id="u7308_text" class="text " style="display:none; visibility: hidden">
  1768. <p></p>
  1769. </div>
  1770. </div>
  1771. <!-- Unnamed (Rectangle) -->
  1772. <div id="u7309" class="ax_default label transition">
  1773. <div id="u7309_div" class=""></div>
  1774. <div id="u7309_text" class="text ">
  1775. <p><span>设备事件</span></p>
  1776. </div>
  1777. </div>
  1778. </div>
  1779. </div>
  1780. <!-- Unnamed (列表翻页) -->
  1781. <div id="u7310" class="nopointer ax_default">
  1782. <!-- Unnamed (Group) -->
  1783. <div id="u7311" class="ax_default" data-left="970" data-top="1189" data-width="600" data-height="30" layer-opacity="1">
  1784. <!-- Unnamed (Rectangle) -->
  1785. <div id="u7312" class="ax_default box_1 transition">
  1786. <div id="u7312_div" class=""></div>
  1787. <div id="u7312_text" class="text ">
  1788. <p><span>1</span></p>
  1789. </div>
  1790. </div>
  1791. <!-- Unnamed (Rectangle) -->
  1792. <div id="u7313" class="ax_default box_1 transition">
  1793. <div id="u7313_div" class=""></div>
  1794. <div id="u7313_text" class="text ">
  1795. <p><span>确定</span></p>
  1796. </div>
  1797. </div>
  1798. <!-- Unnamed (Group) -->
  1799. <div id="u7314" class="ax_default" data-left="1289" data-top="1189" data-width="96" data-height="30" layer-opacity="1">
  1800. <!-- Unnamed (Rectangle) -->
  1801. <div id="u7315" class="ax_default box_1 transition">
  1802. <div id="u7315_div" class=""></div>
  1803. <div id="u7315_text" class="text ">
  1804. <p><span>跳至</span></p>
  1805. </div>
  1806. </div>
  1807. <!-- Unnamed (Rectangle) -->
  1808. <div id="u7316" class="ax_default box_1 transition">
  1809. <div id="u7316_div" class=""></div>
  1810. <div id="u7316_text" class="text " style="display:none; visibility: hidden">
  1811. <p></p>
  1812. </div>
  1813. </div>
  1814. <!-- Unnamed (Rectangle) -->
  1815. <div id="u7317" class="ax_default box_1 transition">
  1816. <div id="u7317_div" class=""></div>
  1817. <div id="u7317_text" class="text ">
  1818. <p><span>页</span></p>
  1819. </div>
  1820. </div>
  1821. <!-- Unnamed (Text field) -->
  1822. <div id="u7318" class="ax_default text_field transition">
  1823. <div id="u7318_div" class=""></div>
  1824. <input id="u7318_input" type="text" value="" class="u7318_input"/>
  1825. </div>
  1826. </div>
  1827. <!-- Unnamed (Rectangle) -->
  1828. <div id="u7319" class="ax_default box_1 transition">
  1829. <div id="u7319_div" class=""></div>
  1830. <div id="u7319_text" class="text ">
  1831. <p><span>2</span></p>
  1832. </div>
  1833. </div>
  1834. <!-- Unnamed (Rectangle) -->
  1835. <div id="u7320" class="ax_default box_1 transition">
  1836. <div id="u7320_div" class=""></div>
  1837. <div id="u7320_text" class="text ">
  1838. <p><span>3</span></p>
  1839. </div>
  1840. </div>
  1841. <!-- Unnamed (Rectangle) -->
  1842. <div id="u7321" class="ax_default box_1 transition">
  1843. <div id="u7321_div" class=""></div>
  1844. <div id="u7321_text" class="text ">
  1845. <p><span>4</span></p>
  1846. </div>
  1847. </div>
  1848. <!-- Unnamed (Rectangle) -->
  1849. <div id="u7322" class="ax_default box_1 transition">
  1850. <div id="u7322_div" class=""></div>
  1851. <div id="u7322_text" class="text ">
  1852. <p><span>...</span></p>
  1853. </div>
  1854. </div>
  1855. <!-- Unnamed (Rectangle) -->
  1856. <div id="u7323" class="ax_default box_1 transition">
  1857. <div id="u7323_div" class=""></div>
  1858. <div id="u7323_text" class="text ">
  1859. <p><span>10</span></p>
  1860. </div>
  1861. </div>
  1862. <!-- Unnamed (Rectangle) -->
  1863. <div id="u7324" class="ax_default box_1 transition">
  1864. <div id="u7324_div" class=""></div>
  1865. <div id="u7324_text" class="text ">
  1866. <p><span>2/10</span></p>
  1867. </div>
  1868. </div>
  1869. <!-- 上一页 (Group) -->
  1870. <div id="u7325" class="ax_default" data-label="上一页" data-left="970" data-top="1189" data-width="31" data-height="30" layer-opacity="1">
  1871. <!-- Unnamed (Rectangle) -->
  1872. <div id="u7326" class="ax_default box_1 transition">
  1873. <div id="u7326_div" class=""></div>
  1874. <div id="u7326_text" class="text " style="display:none; visibility: hidden">
  1875. <p></p>
  1876. </div>
  1877. </div>
  1878. <!-- Unnamed (Shape) -->
  1879. <div id="u7327" class="ax_default icon transition">
  1880. <svg data="images/消息/u1268.svg" id="u7327_img" class="img generatedImage">
  1881. <defs>
  1882. <pattern id="u7327_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1883. <mask fill="white" id="u7327_img_cl216">
  1884. <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" />
  1885. </mask>
  1886. </defs>
  1887. <g transform="matrix(1 0 0 1 -659 -2248 )">
  1888. <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" />
  1889. <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(#u7327_img_cl216)" />
  1890. </g>
  1891. </svg>
  1892. <div id="u7327_text" class="text " style="display:none; visibility: hidden">
  1893. <p></p>
  1894. </div>
  1895. </div>
  1896. </div>
  1897. <!-- 下一页 (Group) -->
  1898. <div id="u7328" class="ax_default" data-label="下一页" data-left="1204" data-top="1189" data-width="31" data-height="30" layer-opacity="1">
  1899. <!-- Unnamed (Rectangle) -->
  1900. <div id="u7329" class="ax_default box_1 transition">
  1901. <div id="u7329_div" class=""></div>
  1902. <div id="u7329_text" class="text " style="display:none; visibility: hidden">
  1903. <p></p>
  1904. </div>
  1905. </div>
  1906. <!-- Unnamed (Shape) -->
  1907. <div id="u7330" class="ax_default icon transition">
  1908. <svg data="images/消息/u1271.svg" id="u7330_img" class="img generatedImage">
  1909. <defs>
  1910. <pattern id="u7330_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1911. <mask fill="white" id="u7330_img_cl217">
  1912. <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" />
  1913. </mask>
  1914. </defs>
  1915. <g transform="matrix(1 0 0 1 -894 -2248 )">
  1916. <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" />
  1917. <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(#u7330_img_cl217)" />
  1918. </g>
  1919. </svg>
  1920. <div id="u7330_text" class="text " style="display:none; visibility: hidden">
  1921. <p></p>
  1922. </div>
  1923. </div>
  1924. </div>
  1925. <!-- Unnamed (Group) -->
  1926. <div id="u7331" class="ax_default" data-left="1405" data-top="1189" data-width="96" data-height="30" layer-opacity="1">
  1927. <!-- Unnamed (Rectangle) -->
  1928. <div id="u7332" class="ax_default box_1 transition">
  1929. <div id="u7332_div" class=""></div>
  1930. <div id="u7332_text" class="text ">
  1931. <p><span>每页</span></p>
  1932. </div>
  1933. </div>
  1934. <!-- Unnamed (Rectangle) -->
  1935. <div id="u7333" class="ax_default box_1 transition">
  1936. <div id="u7333_div" class=""></div>
  1937. <div id="u7333_text" class="text " style="display:none; visibility: hidden">
  1938. <p></p>
  1939. </div>
  1940. </div>
  1941. <!-- Unnamed (Rectangle) -->
  1942. <div id="u7334" class="ax_default box_1 transition">
  1943. <div id="u7334_div" class=""></div>
  1944. <div id="u7334_text" class="text ">
  1945. <p><span>条</span></p>
  1946. </div>
  1947. </div>
  1948. <!-- Unnamed (Text field) -->
  1949. <div id="u7335" class="ax_default text_field transition">
  1950. <div id="u7335_div" class=""></div>
  1951. <input id="u7335_input" type="text" value="" class="u7335_input"/>
  1952. </div>
  1953. </div>
  1954. </div>
  1955. </div>
  1956. <!-- Unnamed (Rectangle) -->
  1957. <div id="u7336" class="ax_default box_2 transition">
  1958. <div id="u7336_div" class=""></div>
  1959. <div id="u7336_text" class="text " style="display:none; visibility: hidden">
  1960. <p></p>
  1961. </div>
  1962. </div>
  1963. <!-- Unnamed (Rectangle) -->
  1964. <div id="u7337" class="ax_default paragraph transition">
  1965. <div id="u7337_div" class=""></div>
  1966. <div id="u7337_text" class="text ">
  1967. <p><span>设备清单</span></p>
  1968. </div>
  1969. </div>
  1970. <!-- Unnamed (Rectangle) -->
  1971. <div id="u7338" class="ax_default paragraph transition">
  1972. <div id="u7338_div" class=""></div>
  1973. <div id="u7338_text" class="text ">
  1974. <p><span>硬件设备</span></p>
  1975. </div>
  1976. </div>
  1977. <!-- Unnamed (Rectangle) -->
  1978. <div id="u7339" class="ax_default paragraph transition">
  1979. <div id="u7339_div" class=""></div>
  1980. <div id="u7339_text" class="text ">
  1981. <p><span>监控设备</span></p>
  1982. </div>
  1983. </div>
  1984. <!-- Unnamed (Rectangle) -->
  1985. <div id="u7340" class="ax_default paragraph transition">
  1986. <div id="u7340_div" class=""></div>
  1987. <div id="u7340_text" class="text ">
  1988. <p><span>传感设备</span></p>
  1989. </div>
  1990. </div>
  1991. <!-- Unnamed (Rectangle) -->
  1992. <div id="u7341" class="ax_default paragraph transition">
  1993. <div id="u7341_div" class=""></div>
  1994. <div id="u7341_text" class="text ">
  1995. <p><span>汇总查看项目各个服务模块的添加的所有硬件设备信息、监控设备、传感设备</span></p>
  1996. </div>
  1997. </div>
  1998. <!-- Unnamed (Group) -->
  1999. <div id="u7342" class="ax_default" data-left="1106" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  2000. <!-- Unnamed (Rectangle) -->
  2001. <div id="u7343" class="ax_default box_1 transition">
  2002. <div id="u7343_div" class=""></div>
  2003. <div id="u7343_text" class="text " style="display:none; visibility: hidden">
  2004. <p></p>
  2005. </div>
  2006. </div>
  2007. <!-- Unnamed (Droplist) -->
  2008. <div id="u7344" class="ax_default droplist transition">
  2009. <div id="u7344_div" class=""></div>
  2010. <select id="u7344_input" class="u7344_input">
  2011. <option class="u7344_input_option" value="品牌型号">品牌型号</option>
  2012. </select>
  2013. </div>
  2014. </div>
  2015. <!-- Unnamed (Group) -->
  2016. <div id="u7345" class="ax_default" data-left="1406" data-top="210" data-width="140" data-height="30" layer-opacity="1">
  2017. <!-- Unnamed (Rectangle) -->
  2018. <div id="u7346" class="ax_default box_1 transition">
  2019. <div id="u7346_div" class=""></div>
  2020. <div id="u7346_text" class="text " style="display:none; visibility: hidden">
  2021. <p></p>
  2022. </div>
  2023. </div>
  2024. <!-- Unnamed (Droplist) -->
  2025. <div id="u7347" class="ax_default droplist transition">
  2026. <div id="u7347_div" class=""></div>
  2027. <select id="u7347_input" class="u7347_input">
  2028. <option class="u7347_input_option" value="设备更新起止时间">设备更新起止时间</option>
  2029. </select>
  2030. </div>
  2031. </div>
  2032. </div>
  2033. <script src="resources/scripts/axure/ios.js"></script>
  2034. </body>
  2035. </html>