智慧人员.html 204 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519
  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 (Image) -->
  54. <div id="u1679" class="ax_default image1 transition">
  55. <img id="u1679_img" class="img " src="images/智慧人员/u1679.png"/>
  56. <div id="u1679_text" class="text " style="display:none; visibility: hidden">
  57. <p></p>
  58. </div>
  59. </div>
  60. <!-- Unnamed (Rectangle) -->
  61. <div id="u1680" class="ax_default box_2 transition">
  62. <div id="u1680_div" class=""></div>
  63. <div id="u1680_text" class="text ">
  64. <p><span>今日人流量</span></p>
  65. </div>
  66. </div>
  67. <!-- Unnamed (Rectangle) -->
  68. <div id="u1681" class="ax_default box_2 transition">
  69. <div id="u1681_div" class=""></div>
  70. <div id="u1681_text" class="text ">
  71. <p><span>今日访客</span></p>
  72. </div>
  73. </div>
  74. <!-- Unnamed (Ellipse) -->
  75. <div id="u1682" class="ax_default ellipse transition">
  76. <svg data="images/智慧人员/u1682.svg" id="u1682_img" class="img generatedImage">
  77. <defs>
  78. <pattern id="u1682_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  79. <mask fill="white" id="u1682_img_cl2814">
  80. <path d="M 0 48 C 0 21.119999999999997 21.119999999999997 0 48 0 C 74.88 0 96 21.119999999999997 96 48 C 96 74.88 74.88 96 48 96 C 21.119999999999997 96 0 74.88 0 48 Z " fill-rule="evenodd" />
  81. </mask>
  82. </defs>
  83. <g transform="matrix(1 0 0 1 -41 -157 )">
  84. <path d="M 0 48 C 0 21.119999999999997 21.119999999999997 0 48 0 C 74.88 0 96 21.119999999999997 96 48 C 96 74.88 74.88 96 48 96 C 21.119999999999997 96 0 74.88 0 48 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0)" stroke="none" transform="matrix(1 0 0 1 41 157 )" class="fill" />
  85. <path d="M 0 48 C 0 21.119999999999997 21.119999999999997 0 48 0 C 74.88 0 96 21.119999999999997 96 48 C 96 74.88 74.88 96 48 96 C 21.119999999999997 96 0 74.88 0 48 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 41 157 )" class="stroke" mask="url(#u1682_img_cl2814)" />
  86. </g>
  87. </svg>
  88. <div id="u1682_text" class="text ">
  89. <p style="font-size:12px;"><span style="font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;font-weight:500;font-size:18px;">14829</span></p><p style="font-size:12px;"><span style="font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;font-weight:400;">进出人员</span></p>
  90. </div>
  91. </div>
  92. <!-- Unnamed (Rectangle) -->
  93. <div id="u1683" class="ax_default box_2 transition">
  94. <div id="u1683_div" class=""></div>
  95. <div id="u1683_text" class="text ">
  96. <p><span>住户:5829</span></p><p><span>访客:5000</span></p><p><span>其他:4000</span></p>
  97. </div>
  98. </div>
  99. <!-- Unnamed (Rectangle) -->
  100. <div id="u1684" class="ax_default box_2 transition">
  101. <div id="u1684_div" class=""></div>
  102. <div id="u1684_text" class="text ">
  103. <ul><li style=""><span>进:8829</span></li></ul>
  104. </div>
  105. </div>
  106. <!-- Unnamed (Rectangle) -->
  107. <div id="u1685" class="ax_default box_2 transition">
  108. <div id="u1685_div" class=""></div>
  109. <div id="u1685_text" class="text ">
  110. <ul><li style=""><span>出:6000</span></li></ul>
  111. </div>
  112. </div>
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u1686" class="ax_default box_2 transition">
  115. <div id="u1686_div" class=""></div>
  116. <div id="u1686_text" class="text ">
  117. <p><span>住户统计分析</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Rectangle) -->
  121. <div id="u1687" class="ax_default box_2 transition">
  122. <div id="u1687_div" class=""></div>
  123. <div id="u1687_text" class="text ">
  124. <p><span>中年</span></p><p><span>青年</span></p><p><span>老年</span></p><p><span>儿童</span></p>
  125. </div>
  126. </div>
  127. <!-- Unnamed (Group) -->
  128. <div id="u1688" class="ax_default" data-left="1207" data-top="-325" data-width="234" data-height="165" layer-opacity="1">
  129. <!-- Unnamed (Image) -->
  130. <div id="u1689" class="ax_default image1 transition">
  131. <img id="u1689_img" class="img " src="images/智慧人员/u1689.png"/>
  132. <div id="u1689_text" class="text " style="display:none; visibility: hidden">
  133. <p></p>
  134. </div>
  135. </div>
  136. <!-- Unnamed (Image) -->
  137. <div id="u1690" class="ax_default image1 transition">
  138. <img id="u1690_img" class="img " src="images/智慧人员/u1689.png"/>
  139. <div id="u1690_text" class="text " style="display:none; visibility: hidden">
  140. <p></p>
  141. </div>
  142. </div>
  143. <!-- Unnamed (Image) -->
  144. <div id="u1691" class="ax_default image1 transition">
  145. <img id="u1691_img" class="img " src="images/智慧人员/u1689.png"/>
  146. <div id="u1691_text" class="text " style="display:none; visibility: hidden">
  147. <p></p>
  148. </div>
  149. </div>
  150. <!-- Unnamed (Image) -->
  151. <div id="u1692" class="ax_default image1 transition">
  152. <img id="u1692_img" class="img " src="images/智慧人员/u1689.png"/>
  153. <div id="u1692_text" class="text " style="display:none; visibility: hidden">
  154. <p></p>
  155. </div>
  156. </div>
  157. <!-- Unnamed (Rectangle) -->
  158. <div id="u1693" class="ax_default box_1 transition">
  159. <div id="u1693_div" class=""></div>
  160. <div id="u1693_text" class="text ">
  161. <p><span>离线</span></p>
  162. </div>
  163. </div>
  164. </div>
  165. <!-- Unnamed (Rectangle) -->
  166. <div id="u1694" class="ax_default box_2 transition">
  167. <div id="u1694_div" class=""></div>
  168. <div id="u1694_text" class="text ">
  169. <p><span>异常人员出入记录</span></p>
  170. </div>
  171. </div>
  172. <!-- Unnamed (Rectangle) -->
  173. <div id="u1695" class="ax_default box_2 transition">
  174. <div id="u1695_div" class=""></div>
  175. <div id="u1695_text" class="text ">
  176. <p><span>更多</span></p>
  177. </div>
  178. </div>
  179. <!-- Unnamed (Rectangle) -->
  180. <div id="u1696" class="ax_default box_2 transition">
  181. <div id="u1696_div" class=""></div>
  182. <div id="u1696_text" class="text ">
  183. <p><span>住户总人数</span></p>
  184. </div>
  185. </div>
  186. <!-- Unnamed (Rectangle) -->
  187. <div id="u1697" class="ax_default box_2 transition">
  188. <div id="u1697_div" class=""></div>
  189. <div id="u1697_text" class="text ">
  190. <p><span>38290</span></p>
  191. </div>
  192. </div>
  193. <!-- Unnamed (Rectangle) -->
  194. <div id="u1698" class="ax_default box_2 transition">
  195. <div id="u1698_div" class=""></div>
  196. <div id="u1698_text" class="text ">
  197. <p><span>530</span></p><p><span>209</span></p><p><span>231</span></p><p><span>123</span></p>
  198. </div>
  199. </div>
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u1699" class="ax_default box_2 transition">
  202. <div id="u1699_div" class=""></div>
  203. <div id="u1699_text" class="text ">
  204. <p><span>52%</span></p><p><span>33%</span></p><p><span>11%</span></p><p><span>4%</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Rectangle) -->
  208. <div id="u1700" class="ax_default box_2 transition">
  209. <div id="u1700_div" class=""></div>
  210. <div id="u1700_text" class="text ">
  211. <p><span>年龄段分布</span></p>
  212. </div>
  213. </div>
  214. <!-- Unnamed (Rectangle) -->
  215. <div id="u1701" class="ax_default box_2 transition">
  216. <div id="u1701_div" class=""></div>
  217. <div id="u1701_text" class="text ">
  218. <p><span>性别分布</span></p>
  219. </div>
  220. </div>
  221. <!-- Unnamed (Rectangle) -->
  222. <div id="u1702" class="ax_default box_2 transition">
  223. <div id="u1702_div" class=""></div>
  224. <div id="u1702_text" class="text ">
  225. <p><span>人流量统计</span></p>
  226. </div>
  227. </div>
  228. <!-- Unnamed (Group) -->
  229. <div id="u1703" class="ax_default" data-left="27" data-top="642" data-width="241" data-height="122" layer-opacity="1">
  230. <!-- Unnamed (Rectangle) -->
  231. <div id="u1704" class="ax_default label transition">
  232. <div id="u1704_div" class=""></div>
  233. <div id="u1704_text" class="text ">
  234. <p><span>0时</span></p>
  235. </div>
  236. </div>
  237. <!-- Unnamed (Rectangle) -->
  238. <div id="u1705" class="ax_default label transition">
  239. <div id="u1705_div" class=""></div>
  240. <div id="u1705_text" class="text ">
  241. <p><span>2时</span></p>
  242. </div>
  243. </div>
  244. <!-- Unnamed (Rectangle) -->
  245. <div id="u1706" class="ax_default label transition">
  246. <div id="u1706_div" class=""></div>
  247. <div id="u1706_text" class="text ">
  248. <p><span>4时</span></p>
  249. </div>
  250. </div>
  251. <!-- Unnamed (Rectangle) -->
  252. <div id="u1707" class="ax_default label transition">
  253. <div id="u1707_div" class=""></div>
  254. <div id="u1707_text" class="text ">
  255. <p><span>6时</span></p>
  256. </div>
  257. </div>
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u1708" class="ax_default label transition">
  260. <div id="u1708_div" class=""></div>
  261. <div id="u1708_text" class="text ">
  262. <p><span>8时</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Rectangle) -->
  266. <div id="u1709" class="ax_default label transition">
  267. <div id="u1709_div" class=""></div>
  268. <div id="u1709_text" class="text ">
  269. <p><span>10时</span></p>
  270. </div>
  271. </div>
  272. <!-- Unnamed (Rectangle) -->
  273. <div id="u1710" class="ax_default label transition">
  274. <div id="u1710_div" class=""></div>
  275. <div id="u1710_text" class="text ">
  276. <p><span>12时</span></p>
  277. </div>
  278. </div>
  279. <!-- Unnamed (Rectangle) -->
  280. <div id="u1711" class="ax_default label transition">
  281. <div id="u1711_div" class=""></div>
  282. <div id="u1711_text" class="text ">
  283. <p><span>14时</span></p>
  284. </div>
  285. </div>
  286. <!-- Unnamed (Rectangle) -->
  287. <div id="u1712" class="ax_default label transition">
  288. <div id="u1712_div" class=""></div>
  289. <div id="u1712_text" class="text ">
  290. <p><span>16时</span></p>
  291. </div>
  292. </div>
  293. <!-- Unnamed (Rectangle) -->
  294. <div id="u1713" class="ax_default label transition">
  295. <div id="u1713_div" class=""></div>
  296. <div id="u1713_text" class="text ">
  297. <p><span>18时</span></p>
  298. </div>
  299. </div>
  300. <!-- Unnamed (Rectangle) -->
  301. <div id="u1714" class="ax_default label transition">
  302. <div id="u1714_div" class=""></div>
  303. <div id="u1714_text" class="text ">
  304. <p><span>20时</span></p>
  305. </div>
  306. </div>
  307. <!-- Unnamed (Rectangle) -->
  308. <div id="u1715" class="ax_default label transition">
  309. <div id="u1715_div" class=""></div>
  310. <div id="u1715_text" class="text ">
  311. <p><span>22时</span></p>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u1716" class="ax_default" data-left="28" data-top="642" data-width="239" data-height="84" layer-opacity="1">
  316. <!-- Unnamed (Shape) -->
  317. <div id="u1717" class="ax_default shape1 transition">
  318. <svg data="images/智慧人员/u1717.svg" id="u1717_img" class="img generatedImage">
  319. <g transform="matrix(1 0 0 1 -28 -642 )">
  320. <path d="M 0.33865655637255176 22.600390815828273 L 22.35102763091946 0.6401011778757978 L 64.06185567010309 11.059110893991196 L 88.70103092783505 33.03370786516854 L 132.59777113970588 0.6401011778757978 L 155.70879289215682 22.600390815828273 L 175.38748468137257 11.059110893991196 L 198.04086243872553 47.54019939156085 L 219.77895220588235 22.600390815828273 L 239 83.26135808500227 " stroke-width="1" stroke-dasharray="0" stroke="rgba(0, 204, 153, 1)" fill="none" transform="matrix(1 0 0 1 28 642 )" class="stroke" />
  321. </g>
  322. </svg>
  323. <div id="u1717_text" class="text " style="display:none; visibility: hidden">
  324. <p></p>
  325. </div>
  326. </div>
  327. </div>
  328. <!-- Unnamed (Shape) -->
  329. <div id="u1718" class="ax_default shape transition">
  330. <svg data="images/智慧人员/u1718.svg" id="u1718_img" class="img generatedImage">
  331. <g transform="matrix(1 0 0 1 -27 -657 )">
  332. <path d="M 0.32147947488186795 90.58291666666668 L 22.595414520262818 46.0308333333335 L 44.410093172955705 63.0933333333335 L 67.14328461102507 45.5 L 88.95796326371796 24.22875000000004 L 110.77264191641083 45.5 L 133.04657696179197 11.905833333333497 L 156.46865298889367 33.70791666666677 L 177.1351906598658 0.5308333333334971 L 199.1794975089028 58.35374999999995 L 220.99417616159568 11.905833333333497 L 237.49789029535864 45.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 27 657 )" class="stroke" />
  333. </g>
  334. </svg>
  335. <div id="u1718_text" class="text " style="display:none; visibility: hidden">
  336. <p></p>
  337. </div>
  338. </div>
  339. <!-- Unnamed (Shape) -->
  340. <div id="u1719" class="ax_default shape transition">
  341. <svg data="images/智慧人员/u1719.svg" id="u1719_img" class="img generatedImage">
  342. <g transform="matrix(1 0 0 1 -27 -747 )">
  343. <path d="M 0.0979539077524497 1.5550458715595994 L 238.95479050411421 0 " stroke-width="1" stroke-dasharray="0" stroke="rgba(217, 0, 27, 1)" fill="none" transform="matrix(1 0 0 1 27 747 )" class="stroke" />
  344. </g>
  345. </svg>
  346. <div id="u1719_text" class="text " style="display:none; visibility: hidden">
  347. <p></p>
  348. </div>
  349. </div>
  350. </div>
  351. <!-- Unnamed (Group) -->
  352. <div id="u1720" class="ax_default" data-left="181" data-top="615" data-width="86" data-height="18" layer-opacity="1">
  353. <!-- Unnamed (Group) -->
  354. <div id="u1721" class="ax_default" data-left="181" data-top="615" data-width="28" data-height="18" layer-opacity="1">
  355. <!-- Unnamed (Line) -->
  356. <div id="u1722" class="ax_default line1 transition">
  357. <svg data="images/智慧人员/u1722.svg" id="u1722_img" class="img generatedImage">
  358. <g transform="matrix(1 0 0 1 -181 -624 )">
  359. <path d="M 0 0.5 L 10 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(0, 204, 153, 1)" fill="none" transform="matrix(1 0 0 1 181 624 )" class="stroke" />
  360. </g>
  361. </svg>
  362. <div id="u1722_text" class="text " style="display:none; visibility: hidden">
  363. <p></p>
  364. </div>
  365. </div>
  366. <!-- Unnamed (Rectangle) -->
  367. <div id="u1723" class="ax_default box_2 transition">
  368. <div id="u1723_div" class=""></div>
  369. <div id="u1723_text" class="text ">
  370. <p><span>进</span></p>
  371. </div>
  372. </div>
  373. </div>
  374. <!-- Unnamed (Group) -->
  375. <div id="u1724" class="ax_default" data-left="239" data-top="615" data-width="28" data-height="18" layer-opacity="1">
  376. <!-- Unnamed (Line) -->
  377. <div id="u1725" class="ax_default line1 transition">
  378. <svg data="images/智慧人员/u1725.svg" id="u1725_img" class="img generatedImage">
  379. <g transform="matrix(1 0 0 1 -239 -624 )">
  380. <path d="M 0 0.5 L 10 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 239 624 )" class="stroke" />
  381. </g>
  382. </svg>
  383. <div id="u1725_text" class="text " style="display:none; visibility: hidden">
  384. <p></p>
  385. </div>
  386. </div>
  387. <!-- Unnamed (Rectangle) -->
  388. <div id="u1726" class="ax_default box_2 transition">
  389. <div id="u1726_div" class=""></div>
  390. <div id="u1726_text" class="text ">
  391. <p><span>出</span></p>
  392. </div>
  393. </div>
  394. </div>
  395. </div>
  396. <!-- Unnamed (Group) -->
  397. <div id="u1727" class="ax_default" data-left="1249" data-top="157" data-width="41" data-height="50" layer-opacity="1">
  398. <!-- Unnamed (Rectangle) -->
  399. <div id="u1728" class="ax_default box_2 transition">
  400. <div id="u1728_div" class=""></div>
  401. <div id="u1728_text" class="text ">
  402. <p><span>预约数</span></p>
  403. </div>
  404. </div>
  405. <!-- Unnamed (Rectangle) -->
  406. <div id="u1729" class="ax_default box_2 transition">
  407. <div id="u1729_div" class=""></div>
  408. <div id="u1729_text" class="text ">
  409. <p><span>231</span></p>
  410. </div>
  411. </div>
  412. </div>
  413. <!-- Unnamed (Group) -->
  414. <div id="u1730" class="ax_default" data-left="1312" data-top="157" data-width="41" data-height="50" layer-opacity="1">
  415. <!-- Unnamed (Rectangle) -->
  416. <div id="u1731" class="ax_default box_2 transition">
  417. <div id="u1731_div" class=""></div>
  418. <div id="u1731_text" class="text ">
  419. <p><span>未到访</span></p>
  420. </div>
  421. </div>
  422. <!-- Unnamed (Rectangle) -->
  423. <div id="u1732" class="ax_default box_2 transition">
  424. <div id="u1732_div" class=""></div>
  425. <div id="u1732_text" class="text ">
  426. <p><span>153</span></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u1733" class="ax_default" data-left="1438" data-top="157" data-width="29" data-height="50" layer-opacity="1">
  432. <!-- Unnamed (Rectangle) -->
  433. <div id="u1734" class="ax_default box_2 transition">
  434. <div id="u1734_div" class=""></div>
  435. <div id="u1734_text" class="text ">
  436. <p><span>其他</span></p>
  437. </div>
  438. </div>
  439. <!-- Unnamed (Rectangle) -->
  440. <div id="u1735" class="ax_default box_2 transition">
  441. <div id="u1735_div" class=""></div>
  442. <div id="u1735_text" class="text ">
  443. <p><span>28</span></p>
  444. </div>
  445. </div>
  446. </div>
  447. <!-- Unnamed (Group) -->
  448. <div id="u1736" class="ax_default" data-left="1242" data-top="232" data-width="240" data-height="34" layer-opacity="1">
  449. <!-- Unnamed (Rectangle) -->
  450. <div id="u1737" class="ax_default box_2 transition">
  451. <div id="u1737_div" class=""></div>
  452. <div id="u1737_text" class="text " style="display:none; visibility: hidden">
  453. <p></p>
  454. </div>
  455. </div>
  456. <!-- Unnamed (Rectangle) -->
  457. <div id="u1738" class="ax_default paragraph transition">
  458. <div id="u1738_div" class=""></div>
  459. <div id="u1738_text" class="text ">
  460. <p><span>门禁实时记录</span></p>
  461. </div>
  462. </div>
  463. <!-- Unnamed (Rectangle) -->
  464. <div id="u1739" class="ax_default box_2 transition">
  465. <div id="u1739_div" class=""></div>
  466. <div id="u1739_text" class="text ">
  467. <p><span>更多</span></p>
  468. </div>
  469. </div>
  470. </div>
  471. <!-- Unnamed (Group) -->
  472. <div id="u1740" class="ax_default" data-left="1236" data-top="542" data-width="240" data-height="60" layer-opacity="1">
  473. <!-- Unnamed (Rectangle) -->
  474. <div id="u1741" class="ax_default box_2 transition">
  475. <div id="u1741_div" class=""></div>
  476. <div id="u1741_text" class="text " style="display:none; visibility: hidden">
  477. <p></p>
  478. </div>
  479. </div>
  480. <!-- Unnamed (Image) -->
  481. <div id="u1742" class="ax_default image1 transition">
  482. <img id="u1742_img" class="img " src="images/智慧人员/u1742.svg"/>
  483. <div id="u1742_text" class="text " style="display:none; visibility: hidden">
  484. <p></p>
  485. </div>
  486. </div>
  487. <!-- Unnamed (Rectangle) -->
  488. <div id="u1743" class="ax_default box_2 transition">
  489. <div id="u1743_div" class=""></div>
  490. <div id="u1743_text" class="text ">
  491. <p><span>未登记</span></p>
  492. </div>
  493. </div>
  494. <!-- Unnamed (Rectangle) -->
  495. <div id="u1744" class="ax_default box_2 transition">
  496. <div id="u1744_div" class=""></div>
  497. <div id="u1744_text" class="text ">
  498. <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
  499. </div>
  500. </div>
  501. <!-- Unnamed (Rectangle) -->
  502. <div id="u1745" class="ax_default box_2 transition">
  503. <div id="u1745_div" class=""></div>
  504. <div id="u1745_text" class="text ">
  505. <p><span>陌生人</span></p>
  506. </div>
  507. </div>
  508. </div>
  509. <!-- Unnamed (Group) -->
  510. <div id="u1746" class="ax_default" data-left="1236" data-top="612" data-width="240" data-height="60" layer-opacity="1">
  511. <!-- Unnamed (Rectangle) -->
  512. <div id="u1747" class="ax_default box_2 transition">
  513. <div id="u1747_div" class=""></div>
  514. <div id="u1747_text" class="text " style="display:none; visibility: hidden">
  515. <p></p>
  516. </div>
  517. </div>
  518. <!-- Unnamed (Image) -->
  519. <div id="u1748" class="ax_default image1 transition">
  520. <img id="u1748_img" class="img " src="images/智慧人员/u1742.svg"/>
  521. <div id="u1748_text" class="text " style="display:none; visibility: hidden">
  522. <p></p>
  523. </div>
  524. </div>
  525. <!-- Unnamed (Rectangle) -->
  526. <div id="u1749" class="ax_default box_2 transition">
  527. <div id="u1749_div" class=""></div>
  528. <div id="u1749_text" class="text ">
  529. <p><span>登记姓名</span></p>
  530. </div>
  531. </div>
  532. <!-- Unnamed (Rectangle) -->
  533. <div id="u1750" class="ax_default box_2 transition">
  534. <div id="u1750_div" class=""></div>
  535. <div id="u1750_text" class="text ">
  536. <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Rectangle) -->
  540. <div id="u1751" class="ax_default box_2 transition">
  541. <div id="u1751_div" class=""></div>
  542. <div id="u1751_text" class="text ">
  543. <p><span>敏感人员</span></p>
  544. </div>
  545. </div>
  546. </div>
  547. <!-- Unnamed (Group) -->
  548. <div id="u1752" class="ax_default" data-left="1375" data-top="157" data-width="41" data-height="50" layer-opacity="1">
  549. <!-- Unnamed (Rectangle) -->
  550. <div id="u1753" class="ax_default box_2 transition">
  551. <div id="u1753_div" class=""></div>
  552. <div id="u1753_text" class="text ">
  553. <p><span>已到访</span></p>
  554. </div>
  555. </div>
  556. <!-- Unnamed (Rectangle) -->
  557. <div id="u1754" class="ax_default box_2 transition">
  558. <div id="u1754_div" class=""></div>
  559. <div id="u1754_text" class="text ">
  560. <p><span>50</span></p>
  561. </div>
  562. </div>
  563. </div>
  564. <!-- Unnamed (Rectangle) -->
  565. <div id="u1755" class="ax_default box_3 transition">
  566. <div id="u1755_div" class=""></div>
  567. <div id="u1755_text" class="text " style="display:none; visibility: hidden">
  568. <p></p>
  569. </div>
  570. </div>
  571. <!-- Unnamed (Rectangle) -->
  572. <div id="u1756" class="ax_default box_2 transition">
  573. <div id="u1756_div" class=""></div>
  574. <div id="u1756_text" class="text ">
  575. <p><span>人员通行实时动态</span></p>
  576. </div>
  577. </div>
  578. <!-- Unnamed (Group) -->
  579. <div id="u1757" class="ax_default" data-left="348" data-top="179" data-width="254" data-height="82" layer-opacity="1">
  580. <!-- Unnamed (Rectangle) -->
  581. <div id="u1758" class="ax_default box_1 transition">
  582. <div id="u1758_div" class=""></div>
  583. <div id="u1758_text" class="text " style="display:none; visibility: hidden">
  584. <p></p>
  585. </div>
  586. </div>
  587. <!-- Unnamed (Rectangle) -->
  588. <div id="u1759" class="ax_default box_2 transition">
  589. <div id="u1759_div" class=""></div>
  590. <div id="u1759_text" class="text ">
  591. <p><span>张三</span></p>
  592. </div>
  593. </div>
  594. <!-- Unnamed (Rectangle) -->
  595. <div id="u1760" class="ax_default box_2 transition">
  596. <div id="u1760_div" class=""></div>
  597. <div id="u1760_text" class="text ">
  598. <p><span>住户</span></p>
  599. </div>
  600. </div>
  601. <!-- Unnamed (Rectangle) -->
  602. <div id="u1761" class="ax_default box_2 transition">
  603. <div id="u1761_div" class=""></div>
  604. <div id="u1761_text" class="text ">
  605. <p><span>(门禁)门禁点名称</span></p>
  606. </div>
  607. </div>
  608. <!-- Unnamed (Rectangle) -->
  609. <div id="u1762" class="ax_default box_2 transition">
  610. <div id="u1762_div" class=""></div>
  611. <div id="u1762_text" class="text ">
  612. <p><span>通行时间年月日时分秒</span></p>
  613. </div>
  614. </div>
  615. <!-- Unnamed (Placeholder) -->
  616. <div id="u1763" class="ax_default placeholder transition">
  617. <svg data="images/智慧人员/u1763.svg" id="u1763_img" class="img generatedImage">
  618. <defs>
  619. <pattern id="u1763_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  620. <mask fill="white" id="u1763_img_cl2815">
  621. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  622. </mask>
  623. <mask fill="white" id="u1763_img_cl2816">
  624. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  625. </mask>
  626. </defs>
  627. <g transform="matrix(1 0 0 1 -356 -190 )">
  628. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 356 190 )" class="fill" />
  629. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 190 )" class="stroke" mask="url(#u1763_img_cl2815)" />
  630. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 190 )" class="stroke" mask="url(#u1763_img_cl2816)" />
  631. </g>
  632. </svg>
  633. <div id="u1763_text" class="text ">
  634. <p><span>人脸</span></p>
  635. </div>
  636. </div>
  637. </div>
  638. <!-- Unnamed (Group) -->
  639. <div id="u1764" class="ax_default" data-left="612" data-top="179" data-width="254" data-height="82" layer-opacity="1">
  640. <!-- Unnamed (Rectangle) -->
  641. <div id="u1765" class="ax_default box_1 transition">
  642. <div id="u1765_div" class=""></div>
  643. <div id="u1765_text" class="text " style="display:none; visibility: hidden">
  644. <p></p>
  645. </div>
  646. </div>
  647. <!-- Unnamed (Rectangle) -->
  648. <div id="u1766" class="ax_default box_2 transition">
  649. <div id="u1766_div" class=""></div>
  650. <div id="u1766_text" class="text ">
  651. <p><span>未登记</span></p>
  652. </div>
  653. </div>
  654. <!-- Unnamed (Rectangle) -->
  655. <div id="u1767" class="ax_default box_2 transition">
  656. <div id="u1767_div" class=""></div>
  657. <div id="u1767_text" class="text ">
  658. <p><span>(电梯)电梯点名称</span></p>
  659. </div>
  660. </div>
  661. <!-- Unnamed (Rectangle) -->
  662. <div id="u1768" class="ax_default box_2 transition">
  663. <div id="u1768_div" class=""></div>
  664. <div id="u1768_text" class="text ">
  665. <p><span>通行时间年月日时分秒</span></p>
  666. </div>
  667. </div>
  668. <!-- Unnamed (Placeholder) -->
  669. <div id="u1769" class="ax_default placeholder transition">
  670. <svg data="images/智慧人员/u1769.svg" id="u1769_img" class="img generatedImage">
  671. <defs>
  672. <pattern id="u1769_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  673. <mask fill="white" id="u1769_img_cl2817">
  674. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  675. </mask>
  676. <mask fill="white" id="u1769_img_cl2818">
  677. <path d="M 6 19 L 46 19 L 46 41 L 6 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  678. </mask>
  679. </defs>
  680. <g transform="matrix(1 0 0 1 -620 -190 )">
  681. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 620 190 )" class="fill" />
  682. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 190 )" class="stroke" mask="url(#u1769_img_cl2817)" />
  683. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 190 )" class="stroke" mask="url(#u1769_img_cl2818)" />
  684. </g>
  685. </svg>
  686. <div id="u1769_text" class="text ">
  687. <p><span>二维码</span></p>
  688. </div>
  689. </div>
  690. </div>
  691. <!-- Unnamed (Group) -->
  692. <div id="u1770" class="ax_default" data-left="876" data-top="179" data-width="254" data-height="82" layer-opacity="1">
  693. <!-- Unnamed (Rectangle) -->
  694. <div id="u1771" class="ax_default box_1 transition">
  695. <div id="u1771_div" class=""></div>
  696. <div id="u1771_text" class="text " style="display:none; visibility: hidden">
  697. <p></p>
  698. </div>
  699. </div>
  700. <!-- Unnamed (Rectangle) -->
  701. <div id="u1772" class="ax_default box_2 transition">
  702. <div id="u1772_div" class=""></div>
  703. <div id="u1772_text" class="text ">
  704. <p><span>李四</span></p>
  705. </div>
  706. </div>
  707. <!-- Unnamed (Rectangle) -->
  708. <div id="u1773" class="ax_default box_2 transition">
  709. <div id="u1773_div" class=""></div>
  710. <div id="u1773_text" class="text ">
  711. <p><span>物业</span></p>
  712. </div>
  713. </div>
  714. <!-- Unnamed (Rectangle) -->
  715. <div id="u1774" class="ax_default box_2 transition">
  716. <div id="u1774_div" class=""></div>
  717. <div id="u1774_text" class="text ">
  718. <p><span>(监控)监控点</span></p>
  719. </div>
  720. </div>
  721. <!-- Unnamed (Rectangle) -->
  722. <div id="u1775" class="ax_default box_2 transition">
  723. <div id="u1775_div" class=""></div>
  724. <div id="u1775_text" class="text ">
  725. <p><span>通行时间年月日时分秒</span></p>
  726. </div>
  727. </div>
  728. <!-- Unnamed (Placeholder) -->
  729. <div id="u1776" class="ax_default placeholder transition">
  730. <svg data="images/智慧人员/u1776.svg" id="u1776_img" class="img generatedImage">
  731. <defs>
  732. <pattern id="u1776_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  733. <mask fill="white" id="u1776_img_cl2819">
  734. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  735. </mask>
  736. <mask fill="white" id="u1776_img_cl2820">
  737. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  738. </mask>
  739. </defs>
  740. <g transform="matrix(1 0 0 1 -884 -190 )">
  741. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 884 190 )" class="fill" />
  742. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 190 )" class="stroke" mask="url(#u1776_img_cl2819)" />
  743. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 190 )" class="stroke" mask="url(#u1776_img_cl2820)" />
  744. </g>
  745. </svg>
  746. <div id="u1776_text" class="text ">
  747. <p><span>刷卡</span></p>
  748. </div>
  749. </div>
  750. </div>
  751. <!-- Unnamed (Group) -->
  752. <div id="u1777" class="ax_default" data-left="1030" data-top="689" data-width="116" data-height="30" layer-opacity="1">
  753. <!-- 上一页 (Group) -->
  754. <div id="u1778" class="ax_default" data-label="上一页" data-left="1030" data-top="689" data-width="31" data-height="30" layer-opacity="1">
  755. <!-- Unnamed (Rectangle) -->
  756. <div id="u1779" class="ax_default box_1 transition">
  757. <div id="u1779_div" class=""></div>
  758. <div id="u1779_text" class="text " style="display:none; visibility: hidden">
  759. <p></p>
  760. </div>
  761. </div>
  762. <!-- Unnamed (Shape) -->
  763. <div id="u1780" class="ax_default icon transition">
  764. <svg data="images/消息/u1268.svg" id="u1780_img" class="img generatedImage">
  765. <defs>
  766. <pattern id="u1780_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  767. <mask fill="white" id="u1780_img_cl2741">
  768. <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" />
  769. </mask>
  770. </defs>
  771. <g transform="matrix(1 0 0 1 -659 -2248 )">
  772. <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" />
  773. <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(#u1780_img_cl2741)" />
  774. </g>
  775. </svg>
  776. <div id="u1780_text" class="text " style="display:none; visibility: hidden">
  777. <p></p>
  778. </div>
  779. </div>
  780. </div>
  781. <!-- 下一页 (Group) -->
  782. <div id="u1781" class="ax_default" data-label="下一页" data-left="1115" data-top="689" data-width="31" data-height="30" layer-opacity="1">
  783. <!-- Unnamed (Rectangle) -->
  784. <div id="u1782" class="ax_default box_1 transition">
  785. <div id="u1782_div" class=""></div>
  786. <div id="u1782_text" class="text " style="display:none; visibility: hidden">
  787. <p></p>
  788. </div>
  789. </div>
  790. <!-- Unnamed (Shape) -->
  791. <div id="u1783" class="ax_default icon transition">
  792. <svg data="images/消息/u1271.svg" id="u1783_img" class="img generatedImage">
  793. <defs>
  794. <pattern id="u1783_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  795. <mask fill="white" id="u1783_img_cl2742">
  796. <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" />
  797. </mask>
  798. </defs>
  799. <g transform="matrix(1 0 0 1 -894 -2248 )">
  800. <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" />
  801. <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(#u1783_img_cl2742)" />
  802. </g>
  803. </svg>
  804. <div id="u1783_text" class="text " style="display:none; visibility: hidden">
  805. <p></p>
  806. </div>
  807. </div>
  808. </div>
  809. <!-- Unnamed (Rectangle) -->
  810. <div id="u1784" class="ax_default box_1 transition">
  811. <div id="u1784_div" class=""></div>
  812. <div id="u1784_text" class="text ">
  813. <p><span>2/10</span></p>
  814. </div>
  815. </div>
  816. </div>
  817. <!-- Unnamed (Rectangle) -->
  818. <div id="u1785" class="ax_default box_2 transition">
  819. <div id="u1785_div" class=""></div>
  820. <div id="u1785_text" class="text ">
  821. <p><span>敏感人员提醒</span></p>
  822. </div>
  823. </div>
  824. <!-- Unnamed (Rectangle) -->
  825. <div id="u1786" class="ax_default box_2 transition">
  826. <div id="u1786_div" class=""></div>
  827. <div id="u1786_text" class="text ">
  828. <p><span>敏感人员轨迹</span></p>
  829. </div>
  830. </div>
  831. <!-- Unnamed (可视化底部菜单) -->
  832. <div id="u1787" class="nopointer ax_default">
  833. <!-- Unnamed (Group) -->
  834. <div id="u1788" class="ax_default" data-left="335" data-top="783" data-width="840" data-height="61" layer-opacity="1">
  835. <!-- Unnamed (Group) -->
  836. <div id="u1789" class="ax_default" data-left="412" data-top="783" data-width="57" data-height="61" layer-opacity="1">
  837. <!-- Unnamed (Rectangle) -->
  838. <div id="u1790" class="ax_default paragraph transition">
  839. <div id="u1790_div" class=""></div>
  840. <div id="u1790_text" class="text ">
  841. <p><span>智慧停车</span></p>
  842. </div>
  843. </div>
  844. <!-- Unnamed (Shape) -->
  845. <div id="u1791" class="ax_default box_1 transition">
  846. <svg data="images/智慧人员/u1791.svg" id="u1791_img" class="img generatedImage">
  847. <defs>
  848. <pattern id="u1791_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  849. <mask fill="white" id="u1791_img_cl2821">
  850. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  851. </mask>
  852. </defs>
  853. <g transform="matrix(1 0 0 1 -89 0 )">
  854. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  855. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1791_img_cl2821)" />
  856. </g>
  857. </svg>
  858. <div id="u1791_text" class="text ">
  859. <p><span>ICO</span></p>
  860. </div>
  861. </div>
  862. </div>
  863. <!-- Unnamed (Group) -->
  864. <div id="u1792" class="ax_default" data-left="486" data-top="783" data-width="57" data-height="61" layer-opacity="1">
  865. <!-- Unnamed (Rectangle) -->
  866. <div id="u1793" class="ax_default paragraph transition">
  867. <div id="u1793_div" class=""></div>
  868. <div id="u1793_text" class="text ">
  869. <p><span>智慧安防</span></p>
  870. </div>
  871. </div>
  872. <!-- Unnamed (Shape) -->
  873. <div id="u1794" class="ax_default box_1 transition">
  874. <svg data="images/智慧人员/u1791.svg" id="u1794_img" class="img generatedImage">
  875. <defs>
  876. <pattern id="u1794_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  877. <mask fill="white" id="u1794_img_cl2821">
  878. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  879. </mask>
  880. </defs>
  881. <g transform="matrix(1 0 0 1 -89 0 )">
  882. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  883. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1794_img_cl2821)" />
  884. </g>
  885. </svg>
  886. <div id="u1794_text" class="text ">
  887. <p><span>ICO</span></p>
  888. </div>
  889. </div>
  890. </div>
  891. <!-- Unnamed (Group) -->
  892. <div id="u1795" class="ax_default" data-left="335" data-top="783" data-width="59" data-height="61" layer-opacity="1">
  893. <!-- Unnamed (Rectangle) -->
  894. <div id="u1796" class="ax_default paragraph transition">
  895. <div id="u1796_div" class=""></div>
  896. <div id="u1796_text" class="text ">
  897. <p><span>车辆通行</span></p>
  898. </div>
  899. </div>
  900. <!-- Unnamed (Shape) -->
  901. <div id="u1797" class="ax_default box_1 transition">
  902. <svg data="images/智慧人员/u1791.svg" id="u1797_img" class="img generatedImage">
  903. <defs>
  904. <pattern id="u1797_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  905. <mask fill="white" id="u1797_img_cl2821">
  906. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  907. </mask>
  908. </defs>
  909. <g transform="matrix(1 0 0 1 -89 0 )">
  910. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  911. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1797_img_cl2821)" />
  912. </g>
  913. </svg>
  914. <div id="u1797_text" class="text ">
  915. <p><span>ICO</span></p>
  916. </div>
  917. </div>
  918. <!-- Unnamed (Rectangle) -->
  919. <div id="u1798" class="ax_default paragraph transition">
  920. <div id="u1798_div" class=""></div>
  921. <div id="u1798_text" class="text ">
  922. <p><span>智慧人员</span></p>
  923. </div>
  924. </div>
  925. </div>
  926. <!-- Unnamed (Group) -->
  927. <div id="u1799" class="ax_default" data-left="561" data-top="783" data-width="57" data-height="61" layer-opacity="1">
  928. <!-- Unnamed (Rectangle) -->
  929. <div id="u1800" class="ax_default paragraph transition">
  930. <div id="u1800_div" class=""></div>
  931. <div id="u1800_text" class="text ">
  932. <p><span>智慧消防</span></p>
  933. </div>
  934. </div>
  935. <!-- Unnamed (Shape) -->
  936. <div id="u1801" class="ax_default box_1 transition">
  937. <svg data="images/智慧人员/u1791.svg" id="u1801_img" class="img generatedImage">
  938. <defs>
  939. <pattern id="u1801_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  940. <mask fill="white" id="u1801_img_cl2821">
  941. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  942. </mask>
  943. </defs>
  944. <g transform="matrix(1 0 0 1 -89 0 )">
  945. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  946. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1801_img_cl2821)" />
  947. </g>
  948. </svg>
  949. <div id="u1801_text" class="text ">
  950. <p><span>ICO</span></p>
  951. </div>
  952. </div>
  953. </div>
  954. <!-- Unnamed (Group) -->
  955. <div id="u1802" class="ax_default" data-left="636" data-top="783" data-width="57" data-height="61" layer-opacity="1">
  956. <!-- Unnamed (Rectangle) -->
  957. <div id="u1803" class="ax_default paragraph transition">
  958. <div id="u1803_div" class=""></div>
  959. <div id="u1803_text" class="text ">
  960. <p><span>智慧梯控</span></p>
  961. </div>
  962. </div>
  963. <!-- Unnamed (Shape) -->
  964. <div id="u1804" class="ax_default box_1 transition">
  965. <svg data="images/智慧人员/u1791.svg" id="u1804_img" class="img generatedImage">
  966. <defs>
  967. <pattern id="u1804_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  968. <mask fill="white" id="u1804_img_cl2821">
  969. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  970. </mask>
  971. </defs>
  972. <g transform="matrix(1 0 0 1 -89 0 )">
  973. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  974. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1804_img_cl2821)" />
  975. </g>
  976. </svg>
  977. <div id="u1804_text" class="text ">
  978. <p><span>ICO</span></p>
  979. </div>
  980. </div>
  981. </div>
  982. <!-- Unnamed (Group) -->
  983. <div id="u1805" class="ax_default" data-left="787" data-top="783" data-width="56" data-height="61" layer-opacity="1">
  984. <!-- Unnamed (Rectangle) -->
  985. <div id="u1806" class="ax_default paragraph transition">
  986. <div id="u1806_div" class=""></div>
  987. <div id="u1806_text" class="text ">
  988. <p><span>AI机器人</span></p>
  989. </div>
  990. </div>
  991. <!-- Unnamed (Shape) -->
  992. <div id="u1807" class="ax_default box_1 transition">
  993. <svg data="images/智慧人员/u1791.svg" id="u1807_img" class="img generatedImage">
  994. <defs>
  995. <pattern id="u1807_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  996. <mask fill="white" id="u1807_img_cl2821">
  997. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  998. </mask>
  999. </defs>
  1000. <g transform="matrix(1 0 0 1 -89 0 )">
  1001. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  1002. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1807_img_cl2821)" />
  1003. </g>
  1004. </svg>
  1005. <div id="u1807_text" class="text ">
  1006. <p><span>ICO</span></p>
  1007. </div>
  1008. </div>
  1009. </div>
  1010. <!-- Unnamed (Group) -->
  1011. <div id="u1808" class="ax_default" data-left="711" data-top="783" data-width="59" data-height="61" layer-opacity="1">
  1012. <!-- Unnamed (Rectangle) -->
  1013. <div id="u1809" class="ax_default paragraph transition">
  1014. <div id="u1809_div" class=""></div>
  1015. <div id="u1809_text" class="text ">
  1016. <p><span>项目总览</span></p>
  1017. </div>
  1018. </div>
  1019. <!-- Unnamed (Shape) -->
  1020. <div id="u1810" class="ax_default box_1 transition">
  1021. <svg data="images/智慧人员/u1791.svg" id="u1810_img" class="img generatedImage">
  1022. <defs>
  1023. <pattern id="u1810_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1024. <mask fill="white" id="u1810_img_cl2821">
  1025. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  1026. </mask>
  1027. </defs>
  1028. <g transform="matrix(1 0 0 1 -89 0 )">
  1029. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  1030. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1810_img_cl2821)" />
  1031. </g>
  1032. </svg>
  1033. <div id="u1810_text" class="text ">
  1034. <p><span>ICO</span></p>
  1035. </div>
  1036. </div>
  1037. </div>
  1038. <!-- Unnamed (Group) -->
  1039. <div id="u1811" class="ax_default" data-left="861" data-top="783" data-width="57" data-height="61" layer-opacity="1">
  1040. <!-- Unnamed (Rectangle) -->
  1041. <div id="u1812" class="ax_default paragraph transition">
  1042. <div id="u1812_div" class=""></div>
  1043. <div id="u1812_text" class="text ">
  1044. <p><span>智慧浇灌</span></p>
  1045. </div>
  1046. </div>
  1047. <!-- Unnamed (Shape) -->
  1048. <div id="u1813" class="ax_default box_1 transition">
  1049. <svg data="images/智慧人员/u1791.svg" id="u1813_img" class="img generatedImage">
  1050. <defs>
  1051. <pattern id="u1813_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1052. <mask fill="white" id="u1813_img_cl2821">
  1053. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  1054. </mask>
  1055. </defs>
  1056. <g transform="matrix(1 0 0 1 -89 0 )">
  1057. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  1058. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1813_img_cl2821)" />
  1059. </g>
  1060. </svg>
  1061. <div id="u1813_text" class="text ">
  1062. <p><span>ICO</span></p>
  1063. </div>
  1064. </div>
  1065. </div>
  1066. <!-- Unnamed (Group) -->
  1067. <div id="u1814" class="ax_default" data-left="936" data-top="783" data-width="68" data-height="61" layer-opacity="1">
  1068. <!-- Unnamed (Rectangle) -->
  1069. <div id="u1815" class="ax_default paragraph transition">
  1070. <div id="u1815_div" class=""></div>
  1071. <div id="u1815_text" class="text ">
  1072. <p><span>环境监测</span></p>
  1073. </div>
  1074. </div>
  1075. <!-- Unnamed (Shape) -->
  1076. <div id="u1816" class="ax_default box_1 transition">
  1077. <svg data="images/智慧人员/u1791.svg" id="u1816_img" class="img generatedImage">
  1078. <defs>
  1079. <pattern id="u1816_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1080. <mask fill="white" id="u1816_img_cl2821">
  1081. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  1082. </mask>
  1083. </defs>
  1084. <g transform="matrix(1 0 0 1 -89 0 )">
  1085. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  1086. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1816_img_cl2821)" />
  1087. </g>
  1088. </svg>
  1089. <div id="u1816_text" class="text ">
  1090. <p><span>ICO</span></p>
  1091. </div>
  1092. </div>
  1093. </div>
  1094. <!-- Unnamed (Group) -->
  1095. <div id="u1817" class="ax_default" data-left="1021" data-top="783" data-width="68" data-height="61" layer-opacity="1">
  1096. <!-- Unnamed (Rectangle) -->
  1097. <div id="u1818" class="ax_default paragraph transition">
  1098. <div id="u1818_div" class=""></div>
  1099. <div id="u1818_text" class="text ">
  1100. <p><span>楼宇自控</span></p>
  1101. </div>
  1102. </div>
  1103. <!-- Unnamed (Shape) -->
  1104. <div id="u1819" class="ax_default box_1 transition">
  1105. <svg data="images/智慧人员/u1791.svg" id="u1819_img" class="img generatedImage">
  1106. <defs>
  1107. <pattern id="u1819_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1108. <mask fill="white" id="u1819_img_cl2821">
  1109. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  1110. </mask>
  1111. </defs>
  1112. <g transform="matrix(1 0 0 1 -89 0 )">
  1113. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  1114. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1819_img_cl2821)" />
  1115. </g>
  1116. </svg>
  1117. <div id="u1819_text" class="text ">
  1118. <p><span>ICO</span></p>
  1119. </div>
  1120. </div>
  1121. </div>
  1122. <!-- Unnamed (Group) -->
  1123. <div id="u1820" class="ax_default" data-left="1107" data-top="783" data-width="68" data-height="61" layer-opacity="1">
  1124. <!-- Unnamed (Rectangle) -->
  1125. <div id="u1821" class="ax_default paragraph transition">
  1126. <div id="u1821_div" class=""></div>
  1127. <div id="u1821_text" class="text ">
  1128. <p><span>智慧物联</span></p>
  1129. </div>
  1130. </div>
  1131. <!-- Unnamed (Shape) -->
  1132. <div id="u1822" class="ax_default box_1 transition">
  1133. <svg data="images/智慧人员/u1791.svg" id="u1822_img" class="img generatedImage">
  1134. <defs>
  1135. <pattern id="u1822_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1136. <mask fill="white" id="u1822_img_cl2821">
  1137. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="evenodd" />
  1138. </mask>
  1139. </defs>
  1140. <g transform="matrix(1 0 0 1 -89 0 )">
  1141. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " fill-rule="nonzero" fill="rgba(70, 65, 58, 1)" stroke="none" transform="matrix(1 0 0 1 89 0 )" class="fill" />
  1142. <path d="M 0 10.818181818181758 L 16.77272727272731 0.8181818181817561 L 32.68181818181813 10.818181818181758 L 32.68181818181813 28.545454545454504 L 16.77272727272731 38.77272727272725 L 0 28.545454545454504 L 0 10.818181818181758 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 89 0 )" class="stroke" mask="url(#u1822_img_cl2821)" />
  1143. </g>
  1144. </svg>
  1145. <div id="u1822_text" class="text ">
  1146. <p><span>ICO</span></p>
  1147. </div>
  1148. </div>
  1149. </div>
  1150. </div>
  1151. </div>
  1152. <!-- Unnamed (Group) -->
  1153. <div id="u1823" class="ax_default" data-left="216" data-top="887" data-width="1000" data-height="589" layer-opacity="1">
  1154. <!-- Unnamed (Rectangle) -->
  1155. <div id="u1824" class="ax_default box_1 transition">
  1156. <div id="u1824_div" class=""></div>
  1157. <div id="u1824_text" class="text " style="display:none; visibility: hidden">
  1158. <p></p>
  1159. </div>
  1160. </div>
  1161. <!-- Unnamed (Rectangle) -->
  1162. <div id="u1825" class="ax_default box_2 transition">
  1163. <div id="u1825_div" class=""></div>
  1164. <div id="u1825_text" class="text ">
  1165. <p><span>敏感人员提示</span></p>
  1166. </div>
  1167. </div>
  1168. <!-- Unnamed (Rectangle) -->
  1169. <div id="u1826" class="ax_default box_2 transition">
  1170. <div id="u1826_div" class=""></div>
  1171. <div id="u1826_text" class="text ">
  1172. <p><span>全部</span></p>
  1173. </div>
  1174. </div>
  1175. <!-- Unnamed (Rectangle) -->
  1176. <div id="u1827" class="ax_default box_2 transition">
  1177. <div id="u1827_div" class=""></div>
  1178. <div id="u1827_text" class="text ">
  1179. <p><span>待处理</span></p>
  1180. </div>
  1181. </div>
  1182. <!-- Unnamed (Rectangle) -->
  1183. <div id="u1828" class="ax_default box_2 transition">
  1184. <div id="u1828_div" class=""></div>
  1185. <div id="u1828_text" class="text ">
  1186. <p><span>已处理</span></p>
  1187. </div>
  1188. </div>
  1189. <!-- Unnamed (Table) -->
  1190. <div id="u1829" class="ax_default">
  1191. <!-- Unnamed (Table cell) -->
  1192. <div id="u1830" class="ax_default table_cell1 transition">
  1193. <svg data="images/智慧人员/u1830.svg" id="u1830_img" class="img generatedImage" viewbox="0 0 118 39">
  1194. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" class="fill" />
  1195. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" class="stroke" />
  1196. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" class="stroke" />
  1197. </svg>
  1198. <div id="u1830_text" class="text ">
  1199. <p><span>登记照片</span></p>
  1200. </div>
  1201. </div>
  1202. <!-- Unnamed (Table cell) -->
  1203. <div id="u1831" class="ax_default table_cell1 transition">
  1204. <svg data="images/智慧人员/u1831.svg" id="u1831_img" class="img generatedImage" viewbox="118 0 118 39">
  1205. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 0 )" class="fill" />
  1206. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 0 )" class="stroke" />
  1207. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 0 )" class="stroke" />
  1208. </svg>
  1209. <div id="u1831_text" class="text ">
  1210. <p><span>姓名</span></p>
  1211. </div>
  1212. </div>
  1213. <!-- Unnamed (Table cell) -->
  1214. <div id="u1832" class="ax_default table_cell1 transition">
  1215. <svg data="images/智慧人员/u1832.svg" id="u1832_img" class="img generatedImage" viewbox="236 0 118 39">
  1216. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 0 )" class="fill" />
  1217. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 0 )" class="stroke" />
  1218. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 0 )" class="stroke" />
  1219. </svg>
  1220. <div id="u1832_text" class="text ">
  1221. <p><span>性别</span></p>
  1222. </div>
  1223. </div>
  1224. <!-- Unnamed (Table cell) -->
  1225. <div id="u1833" class="ax_default table_cell1 transition">
  1226. <svg data="images/智慧人员/u1833.svg" id="u1833_img" class="img generatedImage" viewbox="354 0 118 39">
  1227. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 0 )" class="fill" />
  1228. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 0 )" class="stroke" />
  1229. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 0 )" class="stroke" />
  1230. </svg>
  1231. <div id="u1833_text" class="text ">
  1232. <p><span>状态</span></p>
  1233. </div>
  1234. </div>
  1235. <!-- Unnamed (Table cell) -->
  1236. <div id="u1834" class="ax_default table_cell1 transition">
  1237. <svg data="images/智慧人员/u1834.svg" id="u1834_img" class="img generatedImage" viewbox="472 0 118 39">
  1238. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 0 )" class="fill" />
  1239. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 0 )" class="stroke" />
  1240. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 0 )" class="stroke" />
  1241. </svg>
  1242. <div id="u1834_text" class="text ">
  1243. <p><span>备注</span></p>
  1244. </div>
  1245. </div>
  1246. <!-- Unnamed (Table cell) -->
  1247. <div id="u1835" class="ax_default table_cell1 transition">
  1248. <svg data="images/智慧人员/u1835.svg" id="u1835_img" class="img generatedImage" viewbox="590 0 118 39">
  1249. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 0 )" class="fill" />
  1250. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 0 )" class="stroke" />
  1251. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 0 )" class="stroke" />
  1252. </svg>
  1253. <div id="u1835_text" class="text ">
  1254. <p><span>上报时间</span></p>
  1255. </div>
  1256. </div>
  1257. <!-- Unnamed (Table cell) -->
  1258. <div id="u1836" class="ax_default table_cell1 transition">
  1259. <svg data="images/智慧人员/u1836.svg" id="u1836_img" class="img generatedImage" viewbox="708 0 118 39">
  1260. <path d="M 1 1 L 118 1 L 118 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 0 )" class="fill" />
  1261. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 0 )" class="stroke" />
  1262. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 0 )" class="stroke" />
  1263. </svg>
  1264. <div id="u1836_text" class="text ">
  1265. <p><span>上报设备</span></p>
  1266. </div>
  1267. </div>
  1268. <!-- Unnamed (Table cell) -->
  1269. <div id="u1837" class="ax_default table_cell1 transition">
  1270. <svg data="images/智慧人员/u1837.svg" id="u1837_img" class="img generatedImage" viewbox="826 0 118 39">
  1271. <path d="M 1 1 L 117 1 L 117 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 0 )" class="fill" />
  1272. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 0 )" class="stroke" />
  1273. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 0 )" class="stroke" />
  1274. <path d="M 117.5 1 L 117.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 0 )" class="stroke" />
  1275. </svg>
  1276. <div id="u1837_text" class="text ">
  1277. <p><span>上报地址</span></p>
  1278. </div>
  1279. </div>
  1280. <!-- Unnamed (Table cell) -->
  1281. <div id="u1838" class="ax_default table_cell1 transition">
  1282. <svg data="images/智慧人员/u1838.svg" id="u1838_img" class="img generatedImage" viewbox="0 39 118 38">
  1283. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 39 )" class="fill" />
  1284. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 39 )" class="stroke" />
  1285. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 39 )" class="stroke" />
  1286. </svg>
  1287. <div id="u1838_text" class="text " style="display:none; visibility: hidden">
  1288. <p></p>
  1289. </div>
  1290. </div>
  1291. <!-- Unnamed (Table cell) -->
  1292. <div id="u1839" class="ax_default table_cell1 transition">
  1293. <svg data="images/智慧人员/u1839.svg" id="u1839_img" class="img generatedImage" viewbox="118 39 118 38">
  1294. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 39 )" class="fill" />
  1295. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 39 )" class="stroke" />
  1296. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 39 )" class="stroke" />
  1297. </svg>
  1298. <div id="u1839_text" class="text " style="display:none; visibility: hidden">
  1299. <p></p>
  1300. </div>
  1301. </div>
  1302. <!-- Unnamed (Table cell) -->
  1303. <div id="u1840" class="ax_default table_cell1 transition">
  1304. <svg data="images/智慧人员/u1840.svg" id="u1840_img" class="img generatedImage" viewbox="236 39 118 38">
  1305. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 39 )" class="fill" />
  1306. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 39 )" class="stroke" />
  1307. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 39 )" class="stroke" />
  1308. </svg>
  1309. <div id="u1840_text" class="text " style="display:none; visibility: hidden">
  1310. <p></p>
  1311. </div>
  1312. </div>
  1313. <!-- Unnamed (Table cell) -->
  1314. <div id="u1841" class="ax_default table_cell1 transition">
  1315. <svg data="images/智慧人员/u1841.svg" id="u1841_img" class="img generatedImage" viewbox="354 39 118 38">
  1316. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 39 )" class="fill" />
  1317. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 39 )" class="stroke" />
  1318. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 39 )" class="stroke" />
  1319. </svg>
  1320. <div id="u1841_text" class="text " style="display:none; visibility: hidden">
  1321. <p></p>
  1322. </div>
  1323. </div>
  1324. <!-- Unnamed (Table cell) -->
  1325. <div id="u1842" class="ax_default table_cell1 transition">
  1326. <svg data="images/智慧人员/u1842.svg" id="u1842_img" class="img generatedImage" viewbox="472 39 118 38">
  1327. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 39 )" class="fill" />
  1328. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 39 )" class="stroke" />
  1329. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 39 )" class="stroke" />
  1330. </svg>
  1331. <div id="u1842_text" class="text " style="display:none; visibility: hidden">
  1332. <p></p>
  1333. </div>
  1334. </div>
  1335. <!-- Unnamed (Table cell) -->
  1336. <div id="u1843" class="ax_default table_cell1 transition">
  1337. <svg data="images/智慧人员/u1843.svg" id="u1843_img" class="img generatedImage" viewbox="590 39 118 38">
  1338. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 39 )" class="fill" />
  1339. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 39 )" class="stroke" />
  1340. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 39 )" class="stroke" />
  1341. </svg>
  1342. <div id="u1843_text" class="text " style="display:none; visibility: hidden">
  1343. <p></p>
  1344. </div>
  1345. </div>
  1346. <!-- Unnamed (Table cell) -->
  1347. <div id="u1844" class="ax_default table_cell1 transition">
  1348. <svg data="images/智慧人员/u1844.svg" id="u1844_img" class="img generatedImage" viewbox="708 39 118 38">
  1349. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 39 )" class="fill" />
  1350. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 39 )" class="stroke" />
  1351. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 39 )" class="stroke" />
  1352. </svg>
  1353. <div id="u1844_text" class="text " style="display:none; visibility: hidden">
  1354. <p></p>
  1355. </div>
  1356. </div>
  1357. <!-- Unnamed (Table cell) -->
  1358. <div id="u1845" class="ax_default table_cell1 transition">
  1359. <svg data="images/智慧人员/u1845.svg" id="u1845_img" class="img generatedImage" viewbox="826 39 118 38">
  1360. <path d="M 1 1 L 117 1 L 117 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 39 )" class="fill" />
  1361. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 39 )" class="stroke" />
  1362. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 39 )" class="stroke" />
  1363. <path d="M 117.5 1 L 117.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 39 )" class="stroke" />
  1364. </svg>
  1365. <div id="u1845_text" class="text " style="display:none; visibility: hidden">
  1366. <p></p>
  1367. </div>
  1368. </div>
  1369. <!-- Unnamed (Table cell) -->
  1370. <div id="u1846" class="ax_default table_cell1 transition">
  1371. <svg data="images/智慧人员/u1846.svg" id="u1846_img" class="img generatedImage" viewbox="0 77 118 38">
  1372. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 77 )" class="fill" />
  1373. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 77 )" class="stroke" />
  1374. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 77 )" class="stroke" />
  1375. </svg>
  1376. <div id="u1846_text" class="text " style="display:none; visibility: hidden">
  1377. <p></p>
  1378. </div>
  1379. </div>
  1380. <!-- Unnamed (Table cell) -->
  1381. <div id="u1847" class="ax_default table_cell1 transition">
  1382. <svg data="images/智慧人员/u1847.svg" id="u1847_img" class="img generatedImage" viewbox="118 77 118 38">
  1383. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 77 )" class="fill" />
  1384. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 77 )" class="stroke" />
  1385. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 77 )" class="stroke" />
  1386. </svg>
  1387. <div id="u1847_text" class="text " style="display:none; visibility: hidden">
  1388. <p></p>
  1389. </div>
  1390. </div>
  1391. <!-- Unnamed (Table cell) -->
  1392. <div id="u1848" class="ax_default table_cell1 transition">
  1393. <svg data="images/智慧人员/u1848.svg" id="u1848_img" class="img generatedImage" viewbox="236 77 118 38">
  1394. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 77 )" class="fill" />
  1395. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 77 )" class="stroke" />
  1396. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 77 )" class="stroke" />
  1397. </svg>
  1398. <div id="u1848_text" class="text " style="display:none; visibility: hidden">
  1399. <p></p>
  1400. </div>
  1401. </div>
  1402. <!-- Unnamed (Table cell) -->
  1403. <div id="u1849" class="ax_default table_cell1 transition">
  1404. <svg data="images/智慧人员/u1849.svg" id="u1849_img" class="img generatedImage" viewbox="354 77 118 38">
  1405. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 77 )" class="fill" />
  1406. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 77 )" class="stroke" />
  1407. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 77 )" class="stroke" />
  1408. </svg>
  1409. <div id="u1849_text" class="text " style="display:none; visibility: hidden">
  1410. <p></p>
  1411. </div>
  1412. </div>
  1413. <!-- Unnamed (Table cell) -->
  1414. <div id="u1850" class="ax_default table_cell1 transition">
  1415. <svg data="images/智慧人员/u1850.svg" id="u1850_img" class="img generatedImage" viewbox="472 77 118 38">
  1416. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 77 )" class="fill" />
  1417. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 77 )" class="stroke" />
  1418. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 77 )" class="stroke" />
  1419. </svg>
  1420. <div id="u1850_text" class="text " style="display:none; visibility: hidden">
  1421. <p></p>
  1422. </div>
  1423. </div>
  1424. <!-- Unnamed (Table cell) -->
  1425. <div id="u1851" class="ax_default table_cell1 transition">
  1426. <svg data="images/智慧人员/u1851.svg" id="u1851_img" class="img generatedImage" viewbox="590 77 118 38">
  1427. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 77 )" class="fill" />
  1428. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 77 )" class="stroke" />
  1429. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 77 )" class="stroke" />
  1430. </svg>
  1431. <div id="u1851_text" class="text " style="display:none; visibility: hidden">
  1432. <p></p>
  1433. </div>
  1434. </div>
  1435. <!-- Unnamed (Table cell) -->
  1436. <div id="u1852" class="ax_default table_cell1 transition">
  1437. <svg data="images/智慧人员/u1852.svg" id="u1852_img" class="img generatedImage" viewbox="708 77 118 38">
  1438. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 77 )" class="fill" />
  1439. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 77 )" class="stroke" />
  1440. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 77 )" class="stroke" />
  1441. </svg>
  1442. <div id="u1852_text" class="text " style="display:none; visibility: hidden">
  1443. <p></p>
  1444. </div>
  1445. </div>
  1446. <!-- Unnamed (Table cell) -->
  1447. <div id="u1853" class="ax_default table_cell1 transition">
  1448. <svg data="images/智慧人员/u1853.svg" id="u1853_img" class="img generatedImage" viewbox="826 77 118 38">
  1449. <path d="M 1 1 L 117 1 L 117 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 77 )" class="fill" />
  1450. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 77 )" class="stroke" />
  1451. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 77 )" class="stroke" />
  1452. <path d="M 117.5 1 L 117.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 77 )" class="stroke" />
  1453. </svg>
  1454. <div id="u1853_text" class="text " style="display:none; visibility: hidden">
  1455. <p></p>
  1456. </div>
  1457. </div>
  1458. <!-- Unnamed (Table cell) -->
  1459. <div id="u1854" class="ax_default table_cell1 transition">
  1460. <svg data="images/智慧人员/u1854.svg" id="u1854_img" class="img generatedImage" viewbox="0 115 118 38">
  1461. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 115 )" class="fill" />
  1462. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 115 )" class="stroke" />
  1463. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 115 )" class="stroke" />
  1464. </svg>
  1465. <div id="u1854_text" class="text " style="display:none; visibility: hidden">
  1466. <p></p>
  1467. </div>
  1468. </div>
  1469. <!-- Unnamed (Table cell) -->
  1470. <div id="u1855" class="ax_default table_cell1 transition">
  1471. <svg data="images/智慧人员/u1855.svg" id="u1855_img" class="img generatedImage" viewbox="118 115 118 38">
  1472. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 115 )" class="fill" />
  1473. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 115 )" class="stroke" />
  1474. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 115 )" class="stroke" />
  1475. </svg>
  1476. <div id="u1855_text" class="text " style="display:none; visibility: hidden">
  1477. <p></p>
  1478. </div>
  1479. </div>
  1480. <!-- Unnamed (Table cell) -->
  1481. <div id="u1856" class="ax_default table_cell1 transition">
  1482. <svg data="images/智慧人员/u1856.svg" id="u1856_img" class="img generatedImage" viewbox="236 115 118 38">
  1483. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 115 )" class="fill" />
  1484. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 115 )" class="stroke" />
  1485. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 115 )" class="stroke" />
  1486. </svg>
  1487. <div id="u1856_text" class="text " style="display:none; visibility: hidden">
  1488. <p></p>
  1489. </div>
  1490. </div>
  1491. <!-- Unnamed (Table cell) -->
  1492. <div id="u1857" class="ax_default table_cell1 transition">
  1493. <svg data="images/智慧人员/u1857.svg" id="u1857_img" class="img generatedImage" viewbox="354 115 118 38">
  1494. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 115 )" class="fill" />
  1495. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 115 )" class="stroke" />
  1496. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 115 )" class="stroke" />
  1497. </svg>
  1498. <div id="u1857_text" class="text " style="display:none; visibility: hidden">
  1499. <p></p>
  1500. </div>
  1501. </div>
  1502. <!-- Unnamed (Table cell) -->
  1503. <div id="u1858" class="ax_default table_cell1 transition">
  1504. <svg data="images/智慧人员/u1858.svg" id="u1858_img" class="img generatedImage" viewbox="472 115 118 38">
  1505. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 115 )" class="fill" />
  1506. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 115 )" class="stroke" />
  1507. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 115 )" class="stroke" />
  1508. </svg>
  1509. <div id="u1858_text" class="text " style="display:none; visibility: hidden">
  1510. <p></p>
  1511. </div>
  1512. </div>
  1513. <!-- Unnamed (Table cell) -->
  1514. <div id="u1859" class="ax_default table_cell1 transition">
  1515. <svg data="images/智慧人员/u1859.svg" id="u1859_img" class="img generatedImage" viewbox="590 115 118 38">
  1516. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 115 )" class="fill" />
  1517. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 115 )" class="stroke" />
  1518. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 115 )" class="stroke" />
  1519. </svg>
  1520. <div id="u1859_text" class="text " style="display:none; visibility: hidden">
  1521. <p></p>
  1522. </div>
  1523. </div>
  1524. <!-- Unnamed (Table cell) -->
  1525. <div id="u1860" class="ax_default table_cell1 transition">
  1526. <svg data="images/智慧人员/u1860.svg" id="u1860_img" class="img generatedImage" viewbox="708 115 118 38">
  1527. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 115 )" class="fill" />
  1528. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 115 )" class="stroke" />
  1529. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 115 )" class="stroke" />
  1530. </svg>
  1531. <div id="u1860_text" class="text " style="display:none; visibility: hidden">
  1532. <p></p>
  1533. </div>
  1534. </div>
  1535. <!-- Unnamed (Table cell) -->
  1536. <div id="u1861" class="ax_default table_cell1 transition">
  1537. <svg data="images/智慧人员/u1861.svg" id="u1861_img" class="img generatedImage" viewbox="826 115 118 38">
  1538. <path d="M 1 1 L 117 1 L 117 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 115 )" class="fill" />
  1539. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 115 )" class="stroke" />
  1540. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 115 )" class="stroke" />
  1541. <path d="M 117.5 1 L 117.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 115 )" class="stroke" />
  1542. </svg>
  1543. <div id="u1861_text" class="text " style="display:none; visibility: hidden">
  1544. <p></p>
  1545. </div>
  1546. </div>
  1547. <!-- Unnamed (Table cell) -->
  1548. <div id="u1862" class="ax_default table_cell1 transition">
  1549. <svg data="images/智慧人员/u1862.svg" id="u1862_img" class="img generatedImage" viewbox="0 153 118 38">
  1550. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 153 )" class="fill" />
  1551. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 153 )" class="stroke" />
  1552. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 153 )" class="stroke" />
  1553. </svg>
  1554. <div id="u1862_text" class="text " style="display:none; visibility: hidden">
  1555. <p></p>
  1556. </div>
  1557. </div>
  1558. <!-- Unnamed (Table cell) -->
  1559. <div id="u1863" class="ax_default table_cell1 transition">
  1560. <svg data="images/智慧人员/u1863.svg" id="u1863_img" class="img generatedImage" viewbox="118 153 118 38">
  1561. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 153 )" class="fill" />
  1562. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 153 )" class="stroke" />
  1563. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 153 )" class="stroke" />
  1564. </svg>
  1565. <div id="u1863_text" class="text " style="display:none; visibility: hidden">
  1566. <p></p>
  1567. </div>
  1568. </div>
  1569. <!-- Unnamed (Table cell) -->
  1570. <div id="u1864" class="ax_default table_cell1 transition">
  1571. <svg data="images/智慧人员/u1864.svg" id="u1864_img" class="img generatedImage" viewbox="236 153 118 38">
  1572. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 153 )" class="fill" />
  1573. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 153 )" class="stroke" />
  1574. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 153 )" class="stroke" />
  1575. </svg>
  1576. <div id="u1864_text" class="text " style="display:none; visibility: hidden">
  1577. <p></p>
  1578. </div>
  1579. </div>
  1580. <!-- Unnamed (Table cell) -->
  1581. <div id="u1865" class="ax_default table_cell1 transition">
  1582. <svg data="images/智慧人员/u1865.svg" id="u1865_img" class="img generatedImage" viewbox="354 153 118 38">
  1583. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 153 )" class="fill" />
  1584. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 153 )" class="stroke" />
  1585. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 153 )" class="stroke" />
  1586. </svg>
  1587. <div id="u1865_text" class="text " style="display:none; visibility: hidden">
  1588. <p></p>
  1589. </div>
  1590. </div>
  1591. <!-- Unnamed (Table cell) -->
  1592. <div id="u1866" class="ax_default table_cell1 transition">
  1593. <svg data="images/智慧人员/u1866.svg" id="u1866_img" class="img generatedImage" viewbox="472 153 118 38">
  1594. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 153 )" class="fill" />
  1595. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 153 )" class="stroke" />
  1596. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 153 )" class="stroke" />
  1597. </svg>
  1598. <div id="u1866_text" class="text " style="display:none; visibility: hidden">
  1599. <p></p>
  1600. </div>
  1601. </div>
  1602. <!-- Unnamed (Table cell) -->
  1603. <div id="u1867" class="ax_default table_cell1 transition">
  1604. <svg data="images/智慧人员/u1867.svg" id="u1867_img" class="img generatedImage" viewbox="590 153 118 38">
  1605. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 153 )" class="fill" />
  1606. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 153 )" class="stroke" />
  1607. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 153 )" class="stroke" />
  1608. </svg>
  1609. <div id="u1867_text" class="text " style="display:none; visibility: hidden">
  1610. <p></p>
  1611. </div>
  1612. </div>
  1613. <!-- Unnamed (Table cell) -->
  1614. <div id="u1868" class="ax_default table_cell1 transition">
  1615. <svg data="images/智慧人员/u1868.svg" id="u1868_img" class="img generatedImage" viewbox="708 153 118 38">
  1616. <path d="M 1 1 L 118 1 L 118 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 153 )" class="fill" />
  1617. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 153 )" class="stroke" />
  1618. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 153 )" class="stroke" />
  1619. </svg>
  1620. <div id="u1868_text" class="text " style="display:none; visibility: hidden">
  1621. <p></p>
  1622. </div>
  1623. </div>
  1624. <!-- Unnamed (Table cell) -->
  1625. <div id="u1869" class="ax_default table_cell1 transition">
  1626. <svg data="images/智慧人员/u1869.svg" id="u1869_img" class="img generatedImage" viewbox="826 153 118 38">
  1627. <path d="M 1 1 L 117 1 L 117 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 153 )" class="fill" />
  1628. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 153 )" class="stroke" />
  1629. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 153 )" class="stroke" />
  1630. <path d="M 117.5 1 L 117.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 153 )" class="stroke" />
  1631. </svg>
  1632. <div id="u1869_text" class="text " style="display:none; visibility: hidden">
  1633. <p></p>
  1634. </div>
  1635. </div>
  1636. <!-- Unnamed (Table cell) -->
  1637. <div id="u1870" class="ax_default table_cell1 transition">
  1638. <svg data="images/智慧人员/u1870.svg" id="u1870_img" class="img generatedImage" viewbox="0 191 118 35">
  1639. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 191 )" class="fill" />
  1640. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 191 )" class="stroke" />
  1641. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 191 )" class="stroke" />
  1642. </svg>
  1643. <div id="u1870_text" class="text " style="display:none; visibility: hidden">
  1644. <p></p>
  1645. </div>
  1646. </div>
  1647. <!-- Unnamed (Table cell) -->
  1648. <div id="u1871" class="ax_default table_cell1 transition">
  1649. <svg data="images/智慧人员/u1871.svg" id="u1871_img" class="img generatedImage" viewbox="118 191 118 35">
  1650. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 191 )" class="fill" />
  1651. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 191 )" class="stroke" />
  1652. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 191 )" class="stroke" />
  1653. </svg>
  1654. <div id="u1871_text" class="text " style="display:none; visibility: hidden">
  1655. <p></p>
  1656. </div>
  1657. </div>
  1658. <!-- Unnamed (Table cell) -->
  1659. <div id="u1872" class="ax_default table_cell1 transition">
  1660. <svg data="images/智慧人员/u1872.svg" id="u1872_img" class="img generatedImage" viewbox="236 191 118 35">
  1661. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 191 )" class="fill" />
  1662. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 191 )" class="stroke" />
  1663. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 191 )" class="stroke" />
  1664. </svg>
  1665. <div id="u1872_text" class="text " style="display:none; visibility: hidden">
  1666. <p></p>
  1667. </div>
  1668. </div>
  1669. <!-- Unnamed (Table cell) -->
  1670. <div id="u1873" class="ax_default table_cell1 transition">
  1671. <svg data="images/智慧人员/u1873.svg" id="u1873_img" class="img generatedImage" viewbox="354 191 118 35">
  1672. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 191 )" class="fill" />
  1673. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 191 )" class="stroke" />
  1674. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 191 )" class="stroke" />
  1675. </svg>
  1676. <div id="u1873_text" class="text " style="display:none; visibility: hidden">
  1677. <p></p>
  1678. </div>
  1679. </div>
  1680. <!-- Unnamed (Table cell) -->
  1681. <div id="u1874" class="ax_default table_cell1 transition">
  1682. <svg data="images/智慧人员/u1874.svg" id="u1874_img" class="img generatedImage" viewbox="472 191 118 35">
  1683. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 191 )" class="fill" />
  1684. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 191 )" class="stroke" />
  1685. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 191 )" class="stroke" />
  1686. </svg>
  1687. <div id="u1874_text" class="text " style="display:none; visibility: hidden">
  1688. <p></p>
  1689. </div>
  1690. </div>
  1691. <!-- Unnamed (Table cell) -->
  1692. <div id="u1875" class="ax_default table_cell1 transition">
  1693. <svg data="images/智慧人员/u1875.svg" id="u1875_img" class="img generatedImage" viewbox="590 191 118 35">
  1694. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 191 )" class="fill" />
  1695. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 191 )" class="stroke" />
  1696. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 191 )" class="stroke" />
  1697. </svg>
  1698. <div id="u1875_text" class="text " style="display:none; visibility: hidden">
  1699. <p></p>
  1700. </div>
  1701. </div>
  1702. <!-- Unnamed (Table cell) -->
  1703. <div id="u1876" class="ax_default table_cell1 transition">
  1704. <svg data="images/智慧人员/u1876.svg" id="u1876_img" class="img generatedImage" viewbox="708 191 118 35">
  1705. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 191 )" class="fill" />
  1706. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 191 )" class="stroke" />
  1707. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 191 )" class="stroke" />
  1708. </svg>
  1709. <div id="u1876_text" class="text " style="display:none; visibility: hidden">
  1710. <p></p>
  1711. </div>
  1712. </div>
  1713. <!-- Unnamed (Table cell) -->
  1714. <div id="u1877" class="ax_default table_cell1 transition">
  1715. <svg data="images/智慧人员/u1877.svg" id="u1877_img" class="img generatedImage" viewbox="826 191 118 35">
  1716. <path d="M 1 1 L 117 1 L 117 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 191 )" class="fill" />
  1717. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 191 )" class="stroke" />
  1718. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 191 )" class="stroke" />
  1719. <path d="M 117.5 1 L 117.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 191 )" class="stroke" />
  1720. </svg>
  1721. <div id="u1877_text" class="text " style="display:none; visibility: hidden">
  1722. <p></p>
  1723. </div>
  1724. </div>
  1725. <!-- Unnamed (Table cell) -->
  1726. <div id="u1878" class="ax_default table_cell1 transition">
  1727. <svg data="images/智慧人员/u1878.svg" id="u1878_img" class="img generatedImage" viewbox="0 226 118 35">
  1728. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 226 )" class="fill" />
  1729. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 226 )" class="stroke" />
  1730. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 226 )" class="stroke" />
  1731. </svg>
  1732. <div id="u1878_text" class="text " style="display:none; visibility: hidden">
  1733. <p></p>
  1734. </div>
  1735. </div>
  1736. <!-- Unnamed (Table cell) -->
  1737. <div id="u1879" class="ax_default table_cell1 transition">
  1738. <svg data="images/智慧人员/u1879.svg" id="u1879_img" class="img generatedImage" viewbox="118 226 118 35">
  1739. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 226 )" class="fill" />
  1740. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 226 )" class="stroke" />
  1741. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 226 )" class="stroke" />
  1742. </svg>
  1743. <div id="u1879_text" class="text " style="display:none; visibility: hidden">
  1744. <p></p>
  1745. </div>
  1746. </div>
  1747. <!-- Unnamed (Table cell) -->
  1748. <div id="u1880" class="ax_default table_cell1 transition">
  1749. <svg data="images/智慧人员/u1880.svg" id="u1880_img" class="img generatedImage" viewbox="236 226 118 35">
  1750. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 226 )" class="fill" />
  1751. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 226 )" class="stroke" />
  1752. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 226 )" class="stroke" />
  1753. </svg>
  1754. <div id="u1880_text" class="text " style="display:none; visibility: hidden">
  1755. <p></p>
  1756. </div>
  1757. </div>
  1758. <!-- Unnamed (Table cell) -->
  1759. <div id="u1881" class="ax_default table_cell1 transition">
  1760. <svg data="images/智慧人员/u1881.svg" id="u1881_img" class="img generatedImage" viewbox="354 226 118 35">
  1761. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 226 )" class="fill" />
  1762. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 226 )" class="stroke" />
  1763. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 226 )" class="stroke" />
  1764. </svg>
  1765. <div id="u1881_text" class="text " style="display:none; visibility: hidden">
  1766. <p></p>
  1767. </div>
  1768. </div>
  1769. <!-- Unnamed (Table cell) -->
  1770. <div id="u1882" class="ax_default table_cell1 transition">
  1771. <svg data="images/智慧人员/u1882.svg" id="u1882_img" class="img generatedImage" viewbox="472 226 118 35">
  1772. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 226 )" class="fill" />
  1773. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 226 )" class="stroke" />
  1774. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 226 )" class="stroke" />
  1775. </svg>
  1776. <div id="u1882_text" class="text " style="display:none; visibility: hidden">
  1777. <p></p>
  1778. </div>
  1779. </div>
  1780. <!-- Unnamed (Table cell) -->
  1781. <div id="u1883" class="ax_default table_cell1 transition">
  1782. <svg data="images/智慧人员/u1883.svg" id="u1883_img" class="img generatedImage" viewbox="590 226 118 35">
  1783. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 226 )" class="fill" />
  1784. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 226 )" class="stroke" />
  1785. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 226 )" class="stroke" />
  1786. </svg>
  1787. <div id="u1883_text" class="text " style="display:none; visibility: hidden">
  1788. <p></p>
  1789. </div>
  1790. </div>
  1791. <!-- Unnamed (Table cell) -->
  1792. <div id="u1884" class="ax_default table_cell1 transition">
  1793. <svg data="images/智慧人员/u1884.svg" id="u1884_img" class="img generatedImage" viewbox="708 226 118 35">
  1794. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 226 )" class="fill" />
  1795. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 226 )" class="stroke" />
  1796. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 226 )" class="stroke" />
  1797. </svg>
  1798. <div id="u1884_text" class="text " style="display:none; visibility: hidden">
  1799. <p></p>
  1800. </div>
  1801. </div>
  1802. <!-- Unnamed (Table cell) -->
  1803. <div id="u1885" class="ax_default table_cell1 transition">
  1804. <svg data="images/智慧人员/u1885.svg" id="u1885_img" class="img generatedImage" viewbox="826 226 118 35">
  1805. <path d="M 1 1 L 117 1 L 117 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 226 )" class="fill" />
  1806. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 226 )" class="stroke" />
  1807. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 226 )" class="stroke" />
  1808. <path d="M 117.5 1 L 117.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 226 )" class="stroke" />
  1809. </svg>
  1810. <div id="u1885_text" class="text " style="display:none; visibility: hidden">
  1811. <p></p>
  1812. </div>
  1813. </div>
  1814. <!-- Unnamed (Table cell) -->
  1815. <div id="u1886" class="ax_default table_cell1 transition">
  1816. <svg data="images/智慧人员/u1886.svg" id="u1886_img" class="img generatedImage" viewbox="0 261 118 35">
  1817. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 261 )" class="fill" />
  1818. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 261 )" class="stroke" />
  1819. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 261 )" class="stroke" />
  1820. </svg>
  1821. <div id="u1886_text" class="text " style="display:none; visibility: hidden">
  1822. <p></p>
  1823. </div>
  1824. </div>
  1825. <!-- Unnamed (Table cell) -->
  1826. <div id="u1887" class="ax_default table_cell1 transition">
  1827. <svg data="images/智慧人员/u1887.svg" id="u1887_img" class="img generatedImage" viewbox="118 261 118 35">
  1828. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 261 )" class="fill" />
  1829. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 261 )" class="stroke" />
  1830. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 261 )" class="stroke" />
  1831. </svg>
  1832. <div id="u1887_text" class="text " style="display:none; visibility: hidden">
  1833. <p></p>
  1834. </div>
  1835. </div>
  1836. <!-- Unnamed (Table cell) -->
  1837. <div id="u1888" class="ax_default table_cell1 transition">
  1838. <svg data="images/智慧人员/u1888.svg" id="u1888_img" class="img generatedImage" viewbox="236 261 118 35">
  1839. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 261 )" class="fill" />
  1840. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 261 )" class="stroke" />
  1841. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 261 )" class="stroke" />
  1842. </svg>
  1843. <div id="u1888_text" class="text " style="display:none; visibility: hidden">
  1844. <p></p>
  1845. </div>
  1846. </div>
  1847. <!-- Unnamed (Table cell) -->
  1848. <div id="u1889" class="ax_default table_cell1 transition">
  1849. <svg data="images/智慧人员/u1889.svg" id="u1889_img" class="img generatedImage" viewbox="354 261 118 35">
  1850. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 261 )" class="fill" />
  1851. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 261 )" class="stroke" />
  1852. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 261 )" class="stroke" />
  1853. </svg>
  1854. <div id="u1889_text" class="text " style="display:none; visibility: hidden">
  1855. <p></p>
  1856. </div>
  1857. </div>
  1858. <!-- Unnamed (Table cell) -->
  1859. <div id="u1890" class="ax_default table_cell1 transition">
  1860. <svg data="images/智慧人员/u1890.svg" id="u1890_img" class="img generatedImage" viewbox="472 261 118 35">
  1861. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 261 )" class="fill" />
  1862. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 261 )" class="stroke" />
  1863. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 261 )" class="stroke" />
  1864. </svg>
  1865. <div id="u1890_text" class="text " style="display:none; visibility: hidden">
  1866. <p></p>
  1867. </div>
  1868. </div>
  1869. <!-- Unnamed (Table cell) -->
  1870. <div id="u1891" class="ax_default table_cell1 transition">
  1871. <svg data="images/智慧人员/u1891.svg" id="u1891_img" class="img generatedImage" viewbox="590 261 118 35">
  1872. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 261 )" class="fill" />
  1873. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 261 )" class="stroke" />
  1874. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 261 )" class="stroke" />
  1875. </svg>
  1876. <div id="u1891_text" class="text " style="display:none; visibility: hidden">
  1877. <p></p>
  1878. </div>
  1879. </div>
  1880. <!-- Unnamed (Table cell) -->
  1881. <div id="u1892" class="ax_default table_cell1 transition">
  1882. <svg data="images/智慧人员/u1892.svg" id="u1892_img" class="img generatedImage" viewbox="708 261 118 35">
  1883. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 261 )" class="fill" />
  1884. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 261 )" class="stroke" />
  1885. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 261 )" class="stroke" />
  1886. </svg>
  1887. <div id="u1892_text" class="text " style="display:none; visibility: hidden">
  1888. <p></p>
  1889. </div>
  1890. </div>
  1891. <!-- Unnamed (Table cell) -->
  1892. <div id="u1893" class="ax_default table_cell1 transition">
  1893. <svg data="images/智慧人员/u1893.svg" id="u1893_img" class="img generatedImage" viewbox="826 261 118 35">
  1894. <path d="M 1 1 L 117 1 L 117 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 261 )" class="fill" />
  1895. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 261 )" class="stroke" />
  1896. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 261 )" class="stroke" />
  1897. <path d="M 117.5 1 L 117.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 261 )" class="stroke" />
  1898. </svg>
  1899. <div id="u1893_text" class="text " style="display:none; visibility: hidden">
  1900. <p></p>
  1901. </div>
  1902. </div>
  1903. <!-- Unnamed (Table cell) -->
  1904. <div id="u1894" class="ax_default table_cell1 transition">
  1905. <svg data="images/智慧人员/u1894.svg" id="u1894_img" class="img generatedImage" viewbox="0 296 118 35">
  1906. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 296 )" class="fill" />
  1907. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 296 )" class="stroke" />
  1908. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 296 )" class="stroke" />
  1909. </svg>
  1910. <div id="u1894_text" class="text " style="display:none; visibility: hidden">
  1911. <p></p>
  1912. </div>
  1913. </div>
  1914. <!-- Unnamed (Table cell) -->
  1915. <div id="u1895" class="ax_default table_cell1 transition">
  1916. <svg data="images/智慧人员/u1895.svg" id="u1895_img" class="img generatedImage" viewbox="118 296 118 35">
  1917. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 296 )" class="fill" />
  1918. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 296 )" class="stroke" />
  1919. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 296 )" class="stroke" />
  1920. </svg>
  1921. <div id="u1895_text" class="text " style="display:none; visibility: hidden">
  1922. <p></p>
  1923. </div>
  1924. </div>
  1925. <!-- Unnamed (Table cell) -->
  1926. <div id="u1896" class="ax_default table_cell1 transition">
  1927. <svg data="images/智慧人员/u1896.svg" id="u1896_img" class="img generatedImage" viewbox="236 296 118 35">
  1928. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 296 )" class="fill" />
  1929. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 296 )" class="stroke" />
  1930. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 296 )" class="stroke" />
  1931. </svg>
  1932. <div id="u1896_text" class="text " style="display:none; visibility: hidden">
  1933. <p></p>
  1934. </div>
  1935. </div>
  1936. <!-- Unnamed (Table cell) -->
  1937. <div id="u1897" class="ax_default table_cell1 transition">
  1938. <svg data="images/智慧人员/u1897.svg" id="u1897_img" class="img generatedImage" viewbox="354 296 118 35">
  1939. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 296 )" class="fill" />
  1940. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 296 )" class="stroke" />
  1941. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 296 )" class="stroke" />
  1942. </svg>
  1943. <div id="u1897_text" class="text " style="display:none; visibility: hidden">
  1944. <p></p>
  1945. </div>
  1946. </div>
  1947. <!-- Unnamed (Table cell) -->
  1948. <div id="u1898" class="ax_default table_cell1 transition">
  1949. <svg data="images/智慧人员/u1898.svg" id="u1898_img" class="img generatedImage" viewbox="472 296 118 35">
  1950. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 296 )" class="fill" />
  1951. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 296 )" class="stroke" />
  1952. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 296 )" class="stroke" />
  1953. </svg>
  1954. <div id="u1898_text" class="text " style="display:none; visibility: hidden">
  1955. <p></p>
  1956. </div>
  1957. </div>
  1958. <!-- Unnamed (Table cell) -->
  1959. <div id="u1899" class="ax_default table_cell1 transition">
  1960. <svg data="images/智慧人员/u1899.svg" id="u1899_img" class="img generatedImage" viewbox="590 296 118 35">
  1961. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 296 )" class="fill" />
  1962. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 296 )" class="stroke" />
  1963. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 296 )" class="stroke" />
  1964. </svg>
  1965. <div id="u1899_text" class="text " style="display:none; visibility: hidden">
  1966. <p></p>
  1967. </div>
  1968. </div>
  1969. <!-- Unnamed (Table cell) -->
  1970. <div id="u1900" class="ax_default table_cell1 transition">
  1971. <svg data="images/智慧人员/u1900.svg" id="u1900_img" class="img generatedImage" viewbox="708 296 118 35">
  1972. <path d="M 1 1 L 118 1 L 118 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 296 )" class="fill" />
  1973. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 296 )" class="stroke" />
  1974. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 296 )" class="stroke" />
  1975. </svg>
  1976. <div id="u1900_text" class="text " style="display:none; visibility: hidden">
  1977. <p></p>
  1978. </div>
  1979. </div>
  1980. <!-- Unnamed (Table cell) -->
  1981. <div id="u1901" class="ax_default table_cell1 transition">
  1982. <svg data="images/智慧人员/u1901.svg" id="u1901_img" class="img generatedImage" viewbox="826 296 118 35">
  1983. <path d="M 1 1 L 117 1 L 117 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 296 )" class="fill" />
  1984. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 296 )" class="stroke" />
  1985. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 296 )" class="stroke" />
  1986. <path d="M 117.5 1 L 117.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 296 )" class="stroke" />
  1987. </svg>
  1988. <div id="u1901_text" class="text " style="display:none; visibility: hidden">
  1989. <p></p>
  1990. </div>
  1991. </div>
  1992. <!-- Unnamed (Table cell) -->
  1993. <div id="u1902" class="ax_default table_cell1 transition">
  1994. <svg data="images/智慧人员/u1902.svg" id="u1902_img" class="img generatedImage" viewbox="0 331 118 35">
  1995. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 0 331 )" class="fill" />
  1996. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 331 )" class="stroke" />
  1997. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 331 )" class="stroke" />
  1998. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 0 331 )" class="stroke" />
  1999. </svg>
  2000. <div id="u1902_text" class="text " style="display:none; visibility: hidden">
  2001. <p></p>
  2002. </div>
  2003. </div>
  2004. <!-- Unnamed (Table cell) -->
  2005. <div id="u1903" class="ax_default table_cell1 transition">
  2006. <svg data="images/智慧人员/u1903.svg" id="u1903_img" class="img generatedImage" viewbox="118 331 118 35">
  2007. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 118 331 )" class="fill" />
  2008. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 331 )" class="stroke" />
  2009. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 331 )" class="stroke" />
  2010. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 118 331 )" class="stroke" />
  2011. </svg>
  2012. <div id="u1903_text" class="text " style="display:none; visibility: hidden">
  2013. <p></p>
  2014. </div>
  2015. </div>
  2016. <!-- Unnamed (Table cell) -->
  2017. <div id="u1904" class="ax_default table_cell1 transition">
  2018. <svg data="images/智慧人员/u1904.svg" id="u1904_img" class="img generatedImage" viewbox="236 331 118 35">
  2019. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 236 331 )" class="fill" />
  2020. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 331 )" class="stroke" />
  2021. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 331 )" class="stroke" />
  2022. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 236 331 )" class="stroke" />
  2023. </svg>
  2024. <div id="u1904_text" class="text " style="display:none; visibility: hidden">
  2025. <p></p>
  2026. </div>
  2027. </div>
  2028. <!-- Unnamed (Table cell) -->
  2029. <div id="u1905" class="ax_default table_cell1 transition">
  2030. <svg data="images/智慧人员/u1905.svg" id="u1905_img" class="img generatedImage" viewbox="354 331 118 35">
  2031. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 354 331 )" class="fill" />
  2032. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 331 )" class="stroke" />
  2033. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 331 )" class="stroke" />
  2034. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 354 331 )" class="stroke" />
  2035. </svg>
  2036. <div id="u1905_text" class="text " style="display:none; visibility: hidden">
  2037. <p></p>
  2038. </div>
  2039. </div>
  2040. <!-- Unnamed (Table cell) -->
  2041. <div id="u1906" class="ax_default table_cell1 transition">
  2042. <svg data="images/智慧人员/u1906.svg" id="u1906_img" class="img generatedImage" viewbox="472 331 118 35">
  2043. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 472 331 )" class="fill" />
  2044. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 331 )" class="stroke" />
  2045. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 331 )" class="stroke" />
  2046. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 472 331 )" class="stroke" />
  2047. </svg>
  2048. <div id="u1906_text" class="text " style="display:none; visibility: hidden">
  2049. <p></p>
  2050. </div>
  2051. </div>
  2052. <!-- Unnamed (Table cell) -->
  2053. <div id="u1907" class="ax_default table_cell1 transition">
  2054. <svg data="images/智慧人员/u1907.svg" id="u1907_img" class="img generatedImage" viewbox="590 331 118 35">
  2055. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 590 331 )" class="fill" />
  2056. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 331 )" class="stroke" />
  2057. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 331 )" class="stroke" />
  2058. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 590 331 )" class="stroke" />
  2059. </svg>
  2060. <div id="u1907_text" class="text " style="display:none; visibility: hidden">
  2061. <p></p>
  2062. </div>
  2063. </div>
  2064. <!-- Unnamed (Table cell) -->
  2065. <div id="u1908" class="ax_default table_cell1 transition">
  2066. <svg data="images/智慧人员/u1908.svg" id="u1908_img" class="img generatedImage" viewbox="708 331 118 35">
  2067. <path d="M 1 1 L 118 1 L 118 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 708 331 )" class="fill" />
  2068. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 331 )" class="stroke" />
  2069. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 331 )" class="stroke" />
  2070. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 708 331 )" class="stroke" />
  2071. </svg>
  2072. <div id="u1908_text" class="text " style="display:none; visibility: hidden">
  2073. <p></p>
  2074. </div>
  2075. </div>
  2076. <!-- Unnamed (Table cell) -->
  2077. <div id="u1909" class="ax_default table_cell1 transition">
  2078. <svg data="images/智慧人员/u1909.svg" id="u1909_img" class="img generatedImage" viewbox="826 331 118 35">
  2079. <path d="M 1 1 L 117 1 L 117 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 0)" stroke="none" transform="matrix(1 0 0 1 826 331 )" class="fill" />
  2080. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 331 )" class="stroke" />
  2081. <path d="M 0 0.5 L 118 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 331 )" class="stroke" />
  2082. <path d="M 117.5 1 L 117.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 331 )" class="stroke" />
  2083. <path d="M 0 34.5 L 118 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 826 331 )" class="stroke" />
  2084. </svg>
  2085. <div id="u1909_text" class="text " style="display:none; visibility: hidden">
  2086. <p></p>
  2087. </div>
  2088. </div>
  2089. </div>
  2090. <!-- Unnamed (Group) -->
  2091. <div id="u1910" class="ax_default" data-left="1155" data-top="888" data-width="51" data-height="40" layer-opacity="1">
  2092. <!-- Unnamed (Shape) -->
  2093. <div id="u1911" class="ax_default icon transition">
  2094. <svg data="images/智慧人员/u1911.svg" id="u1911_img" class="img generatedImage">
  2095. <defs>
  2096. <pattern id="u1911_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2097. <mask fill="white" id="u1911_img_cl2822">
  2098. <path d="M 9.764309764309765 7.474747474747474 C 9.921436588103255 7.631874298540964 10 7.822671156004488 10 8.047138047138047 C 10 8.271604938271606 9.921436588103255 8.46240179573513 9.764309764309765 8.61952861952862 L 8.61952861952862 9.764309764309765 C 8.462401795735131 9.921436588103255 8.271604938271604 10 8.047138047138047 10 C 7.822671156004491 10 7.631874298540966 9.921436588103255 7.474747474747475 9.764309764309765 L 5 7.289562289562291 L 2.5252525252525255 9.764309764309765 C 2.368125701459035 9.921436588103255 2.177328843995511 10 1.9528619528619529 10 C 1.7283950617283952 10 1.5375982042648713 9.921436588103255 1.3804713804713806 9.764309764309765 L 0.2356902356902357 8.61952861952862 C 0.0785634118967453 8.46240179573513 0 8.271604938271606 0 8.047138047138047 C 0 7.822671156004488 0.0785634118967453 7.631874298540964 0.2356902356902357 7.474747474747474 L 2.71043771043771 5 L 0.2356902356902357 2.525252525252525 C 0.0785634118967453 2.368125701459034 0 2.177328843995511 0 1.9528619528619529 C 0 1.728395061728395 0.0785634118967453 1.5375982042648695 0.2356902356902357 1.3804713804713808 L 1.3804713804713806 0.23569023569023573 C 1.5375982042648713 0.07856341189674487 1.7283950617283952 0 1.9528619528619529 0 C 2.177328843995511 0 2.368125701459035 0.07856341189674487 2.5252525252525255 0.23569023569023573 L 5 2.710437710437711 L 7.474747474747475 0.23569023569023573 C 7.631874298540966 0.07856341189674487 7.822671156004491 0 8.047138047138047 0 C 8.271604938271604 0 8.462401795735131 0.07856341189674487 8.61952861952862 0.23569023569023573 L 9.764309764309765 1.3804713804713808 C 9.921436588103255 1.5375982042648695 10 1.728395061728395 10 1.9528619528619529 C 10 2.177328843995511 9.921436588103255 2.368125701459034 9.764309764309765 2.525252525252525 L 7.289562289562289 5 L 9.764309764309765 7.474747474747474 Z " fill-rule="evenodd" />
  2099. </mask>
  2100. </defs>
  2101. <g transform="matrix(1 0 0 1 -1155 -903 )">
  2102. <path d="M 9.764309764309765 7.474747474747474 C 9.921436588103255 7.631874298540964 10 7.822671156004488 10 8.047138047138047 C 10 8.271604938271606 9.921436588103255 8.46240179573513 9.764309764309765 8.61952861952862 L 8.61952861952862 9.764309764309765 C 8.462401795735131 9.921436588103255 8.271604938271604 10 8.047138047138047 10 C 7.822671156004491 10 7.631874298540966 9.921436588103255 7.474747474747475 9.764309764309765 L 5 7.289562289562291 L 2.5252525252525255 9.764309764309765 C 2.368125701459035 9.921436588103255 2.177328843995511 10 1.9528619528619529 10 C 1.7283950617283952 10 1.5375982042648713 9.921436588103255 1.3804713804713806 9.764309764309765 L 0.2356902356902357 8.61952861952862 C 0.0785634118967453 8.46240179573513 0 8.271604938271606 0 8.047138047138047 C 0 7.822671156004488 0.0785634118967453 7.631874298540964 0.2356902356902357 7.474747474747474 L 2.71043771043771 5 L 0.2356902356902357 2.525252525252525 C 0.0785634118967453 2.368125701459034 0 2.177328843995511 0 1.9528619528619529 C 0 1.728395061728395 0.0785634118967453 1.5375982042648695 0.2356902356902357 1.3804713804713808 L 1.3804713804713806 0.23569023569023573 C 1.5375982042648713 0.07856341189674487 1.7283950617283952 0 1.9528619528619529 0 C 2.177328843995511 0 2.368125701459035 0.07856341189674487 2.5252525252525255 0.23569023569023573 L 5 2.710437710437711 L 7.474747474747475 0.23569023569023573 C 7.631874298540966 0.07856341189674487 7.822671156004491 0 8.047138047138047 0 C 8.271604938271604 0 8.462401795735131 0.07856341189674487 8.61952861952862 0.23569023569023573 L 9.764309764309765 1.3804713804713808 C 9.921436588103255 1.5375982042648695 10 1.728395061728395 10 1.9528619528619529 C 10 2.177328843995511 9.921436588103255 2.368125701459034 9.764309764309765 2.525252525252525 L 7.289562289562289 5 L 9.764309764309765 7.474747474747474 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1155 903 )" class="fill" />
  2103. <path d="M 9.764309764309765 7.474747474747474 C 9.921436588103255 7.631874298540964 10 7.822671156004488 10 8.047138047138047 C 10 8.271604938271606 9.921436588103255 8.46240179573513 9.764309764309765 8.61952861952862 L 8.61952861952862 9.764309764309765 C 8.462401795735131 9.921436588103255 8.271604938271604 10 8.047138047138047 10 C 7.822671156004491 10 7.631874298540966 9.921436588103255 7.474747474747475 9.764309764309765 L 5 7.289562289562291 L 2.5252525252525255 9.764309764309765 C 2.368125701459035 9.921436588103255 2.177328843995511 10 1.9528619528619529 10 C 1.7283950617283952 10 1.5375982042648713 9.921436588103255 1.3804713804713806 9.764309764309765 L 0.2356902356902357 8.61952861952862 C 0.0785634118967453 8.46240179573513 0 8.271604938271606 0 8.047138047138047 C 0 7.822671156004488 0.0785634118967453 7.631874298540964 0.2356902356902357 7.474747474747474 L 2.71043771043771 5 L 0.2356902356902357 2.525252525252525 C 0.0785634118967453 2.368125701459034 0 2.177328843995511 0 1.9528619528619529 C 0 1.728395061728395 0.0785634118967453 1.5375982042648695 0.2356902356902357 1.3804713804713808 L 1.3804713804713806 0.23569023569023573 C 1.5375982042648713 0.07856341189674487 1.7283950617283952 0 1.9528619528619529 0 C 2.177328843995511 0 2.368125701459035 0.07856341189674487 2.5252525252525255 0.23569023569023573 L 5 2.710437710437711 L 7.474747474747475 0.23569023569023573 C 7.631874298540966 0.07856341189674487 7.822671156004491 0 8.047138047138047 0 C 8.271604938271604 0 8.462401795735131 0.07856341189674487 8.61952861952862 0.23569023569023573 L 9.764309764309765 1.3804713804713808 C 9.921436588103255 1.5375982042648695 10 1.728395061728395 10 1.9528619528619529 C 10 2.177328843995511 9.921436588103255 2.368125701459034 9.764309764309765 2.525252525252525 L 7.289562289562289 5 L 9.764309764309765 7.474747474747474 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1155 903 )" class="stroke" mask="url(#u1911_img_cl2822)" />
  2104. </g>
  2105. </svg>
  2106. <div id="u1911_text" class="text " style="display:none; visibility: hidden">
  2107. <p></p>
  2108. </div>
  2109. </div>
  2110. <!-- Unnamed (Rectangle) -->
  2111. <div id="u1912" class="ax_default box_2 transition">
  2112. <div id="u1912_div" class=""></div>
  2113. <div id="u1912_text" class="text ">
  2114. <p><span>关闭</span></p>
  2115. </div>
  2116. </div>
  2117. </div>
  2118. <!-- Unnamed (Group) -->
  2119. <div id="u1913" class="ax_default" data-left="1069" data-top="1422" data-width="116" data-height="30" layer-opacity="1">
  2120. <!-- 上一页 (Group) -->
  2121. <div id="u1914" class="ax_default" data-label="上一页" data-left="1069" data-top="1422" data-width="31" data-height="30" layer-opacity="1">
  2122. <!-- Unnamed (Rectangle) -->
  2123. <div id="u1915" class="ax_default box_1 transition">
  2124. <div id="u1915_div" class=""></div>
  2125. <div id="u1915_text" class="text " style="display:none; visibility: hidden">
  2126. <p></p>
  2127. </div>
  2128. </div>
  2129. <!-- Unnamed (Shape) -->
  2130. <div id="u1916" class="ax_default icon transition">
  2131. <svg data="images/智慧人员/u1916.svg" id="u1916_img" class="img generatedImage">
  2132. <defs>
  2133. <pattern id="u1916_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2134. <mask fill="white" id="u1916_img_cl2823">
  2135. <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" />
  2136. </mask>
  2137. </defs>
  2138. <g transform="matrix(1 0 0 1 -1081 -1430 )">
  2139. <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(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1081 1430 )" class="fill" />
  2140. <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 1081 1430 )" class="stroke" mask="url(#u1916_img_cl2823)" />
  2141. </g>
  2142. </svg>
  2143. <div id="u1916_text" class="text " style="display:none; visibility: hidden">
  2144. <p></p>
  2145. </div>
  2146. </div>
  2147. </div>
  2148. <!-- 下一页 (Group) -->
  2149. <div id="u1917" class="ax_default" data-label="下一页" data-left="1154" data-top="1422" data-width="31" data-height="30" layer-opacity="1">
  2150. <!-- Unnamed (Rectangle) -->
  2151. <div id="u1918" class="ax_default box_1 transition">
  2152. <div id="u1918_div" class=""></div>
  2153. <div id="u1918_text" class="text " style="display:none; visibility: hidden">
  2154. <p></p>
  2155. </div>
  2156. </div>
  2157. <!-- Unnamed (Shape) -->
  2158. <div id="u1919" class="ax_default icon transition">
  2159. <svg data="images/智慧人员/u1919.svg" id="u1919_img" class="img generatedImage">
  2160. <defs>
  2161. <pattern id="u1919_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2162. <mask fill="white" id="u1919_img_cl2824">
  2163. <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" />
  2164. </mask>
  2165. </defs>
  2166. <g transform="matrix(1 0 0 1 -1167 -1430 )">
  2167. <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(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1167 1430 )" class="fill" />
  2168. <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(245, 154, 35, 1)" fill="none" transform="matrix(1 0 0 1 1167 1430 )" class="stroke" mask="url(#u1919_img_cl2824)" />
  2169. </g>
  2170. </svg>
  2171. <div id="u1919_text" class="text " style="display:none; visibility: hidden">
  2172. <p></p>
  2173. </div>
  2174. </div>
  2175. </div>
  2176. <!-- Unnamed (Rectangle) -->
  2177. <div id="u1920" class="ax_default box_1 transition">
  2178. <div id="u1920_div" class=""></div>
  2179. <div id="u1920_text" class="text ">
  2180. <p><span style="color:rgba(245, 154, 35, 0.996078431372549);">10</span><span style="color:#FFFFFF;">/10</span></p>
  2181. </div>
  2182. </div>
  2183. </div>
  2184. </div>
  2185. <!-- Unnamed (Group) -->
  2186. <div id="u1921" class="ax_default" data-left="1236" data-top="682" data-width="240" data-height="60" layer-opacity="1">
  2187. <!-- Unnamed (Rectangle) -->
  2188. <div id="u1922" class="ax_default box_2 transition">
  2189. <div id="u1922_div" class=""></div>
  2190. <div id="u1922_text" class="text " style="display:none; visibility: hidden">
  2191. <p></p>
  2192. </div>
  2193. </div>
  2194. <!-- Unnamed (Image) -->
  2195. <div id="u1923" class="ax_default image1 transition">
  2196. <img id="u1923_img" class="img " src="images/智慧人员/u1742.svg"/>
  2197. <div id="u1923_text" class="text " style="display:none; visibility: hidden">
  2198. <p></p>
  2199. </div>
  2200. </div>
  2201. <!-- Unnamed (Rectangle) -->
  2202. <div id="u1924" class="ax_default box_2 transition">
  2203. <div id="u1924_div" class=""></div>
  2204. <div id="u1924_text" class="text ">
  2205. <p><span>登记姓名</span></p>
  2206. </div>
  2207. </div>
  2208. <!-- Unnamed (Rectangle) -->
  2209. <div id="u1925" class="ax_default box_2 transition">
  2210. <div id="u1925_div" class=""></div>
  2211. <div id="u1925_text" class="text ">
  2212. <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
  2213. </div>
  2214. </div>
  2215. <!-- Unnamed (Rectangle) -->
  2216. <div id="u1926" class="ax_default box_2 transition">
  2217. <div id="u1926_div" class=""></div>
  2218. <div id="u1926_text" class="text ">
  2219. <p><span>敏感人员</span></p>
  2220. </div>
  2221. </div>
  2222. </div>
  2223. <!-- Unnamed (Group) -->
  2224. <div id="u1927" class="ax_default" data-left="1242" data-top="272" data-width="240" data-height="60" layer-opacity="1">
  2225. <!-- Unnamed (Rectangle) -->
  2226. <div id="u1928" class="ax_default box_2 transition">
  2227. <div id="u1928_div" class=""></div>
  2228. <div id="u1928_text" class="text " style="display:none; visibility: hidden">
  2229. <p></p>
  2230. </div>
  2231. </div>
  2232. <!-- Unnamed (Image) -->
  2233. <div id="u1929" class="ax_default image1 transition">
  2234. <img id="u1929_img" class="img " src="images/智慧人员/u1742.svg"/>
  2235. <div id="u1929_text" class="text " style="display:none; visibility: hidden">
  2236. <p></p>
  2237. </div>
  2238. </div>
  2239. <!-- Unnamed (Rectangle) -->
  2240. <div id="u1930" class="ax_default box_2 transition">
  2241. <div id="u1930_div" class=""></div>
  2242. <div id="u1930_text" class="text ">
  2243. <p><span>未登记</span></p>
  2244. </div>
  2245. </div>
  2246. <!-- Unnamed (Rectangle) -->
  2247. <div id="u1931" class="ax_default box_2 transition">
  2248. <div id="u1931_div" class=""></div>
  2249. <div id="u1931_text" class="text ">
  2250. <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
  2251. </div>
  2252. </div>
  2253. <!-- Unnamed (Rectangle) -->
  2254. <div id="u1932" class="ax_default box_2 transition">
  2255. <div id="u1932_div" class=""></div>
  2256. <div id="u1932_text" class="text ">
  2257. <p><span>陌生人</span></p>
  2258. </div>
  2259. </div>
  2260. <!-- Unnamed (Rectangle) -->
  2261. <div id="u1933" class="ax_default box_2 transition">
  2262. <div id="u1933_div" class=""></div>
  2263. <div id="u1933_text" class="text ">
  2264. <p><span>出</span></p>
  2265. </div>
  2266. </div>
  2267. </div>
  2268. <!-- Unnamed (Group) -->
  2269. <div id="u1934" class="ax_default" data-left="1242" data-top="342" data-width="240" data-height="60" layer-opacity="1">
  2270. <!-- Unnamed (Rectangle) -->
  2271. <div id="u1935" class="ax_default box_2 transition">
  2272. <div id="u1935_div" class=""></div>
  2273. <div id="u1935_text" class="text " style="display:none; visibility: hidden">
  2274. <p></p>
  2275. </div>
  2276. </div>
  2277. <!-- Unnamed (Image) -->
  2278. <div id="u1936" class="ax_default image1 transition">
  2279. <img id="u1936_img" class="img " src="images/智慧人员/u1742.svg"/>
  2280. <div id="u1936_text" class="text " style="display:none; visibility: hidden">
  2281. <p></p>
  2282. </div>
  2283. </div>
  2284. <!-- Unnamed (Rectangle) -->
  2285. <div id="u1937" class="ax_default box_2 transition">
  2286. <div id="u1937_div" class=""></div>
  2287. <div id="u1937_text" class="text ">
  2288. <p><span>未登记</span></p>
  2289. </div>
  2290. </div>
  2291. <!-- Unnamed (Rectangle) -->
  2292. <div id="u1938" class="ax_default box_2 transition">
  2293. <div id="u1938_div" class=""></div>
  2294. <div id="u1938_text" class="text ">
  2295. <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
  2296. </div>
  2297. </div>
  2298. <!-- Unnamed (Rectangle) -->
  2299. <div id="u1939" class="ax_default box_2 transition">
  2300. <div id="u1939_div" class=""></div>
  2301. <div id="u1939_text" class="text ">
  2302. <p><span>陌生人</span></p>
  2303. </div>
  2304. </div>
  2305. <!-- Unnamed (Rectangle) -->
  2306. <div id="u1940" class="ax_default box_2 transition">
  2307. <div id="u1940_div" class=""></div>
  2308. <div id="u1940_text" class="text ">
  2309. <p><span>出</span></p>
  2310. </div>
  2311. </div>
  2312. </div>
  2313. <!-- Unnamed (Group) -->
  2314. <div id="u1941" class="ax_default" data-left="1242" data-top="412" data-width="240" data-height="60" layer-opacity="1">
  2315. <!-- Unnamed (Rectangle) -->
  2316. <div id="u1942" class="ax_default box_2 transition">
  2317. <div id="u1942_div" class=""></div>
  2318. <div id="u1942_text" class="text " style="display:none; visibility: hidden">
  2319. <p></p>
  2320. </div>
  2321. </div>
  2322. <!-- Unnamed (Image) -->
  2323. <div id="u1943" class="ax_default image1 transition">
  2324. <img id="u1943_img" class="img " src="images/智慧人员/u1742.svg"/>
  2325. <div id="u1943_text" class="text " style="display:none; visibility: hidden">
  2326. <p></p>
  2327. </div>
  2328. </div>
  2329. <!-- Unnamed (Rectangle) -->
  2330. <div id="u1944" class="ax_default box_2 transition">
  2331. <div id="u1944_div" class=""></div>
  2332. <div id="u1944_text" class="text ">
  2333. <p><span>未登记</span></p>
  2334. </div>
  2335. </div>
  2336. <!-- Unnamed (Rectangle) -->
  2337. <div id="u1945" class="ax_default box_2 transition">
  2338. <div id="u1945_div" class=""></div>
  2339. <div id="u1945_text" class="text ">
  2340. <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
  2341. </div>
  2342. </div>
  2343. <!-- Unnamed (Rectangle) -->
  2344. <div id="u1946" class="ax_default box_2 transition">
  2345. <div id="u1946_div" class=""></div>
  2346. <div id="u1946_text" class="text ">
  2347. <p><span>陌生人</span></p>
  2348. </div>
  2349. </div>
  2350. <!-- Unnamed (Rectangle) -->
  2351. <div id="u1947" class="ax_default box_2 transition">
  2352. <div id="u1947_div" class=""></div>
  2353. <div id="u1947_text" class="text ">
  2354. <p><span>出</span></p>
  2355. </div>
  2356. </div>
  2357. </div>
  2358. <!-- Unnamed (Group) -->
  2359. <div id="u1948" class="ax_default" data-left="348" data-top="271" data-width="254" data-height="82" layer-opacity="1">
  2360. <!-- Unnamed (Rectangle) -->
  2361. <div id="u1949" class="ax_default box_1 transition">
  2362. <div id="u1949_div" class=""></div>
  2363. <div id="u1949_text" class="text " style="display:none; visibility: hidden">
  2364. <p></p>
  2365. </div>
  2366. </div>
  2367. <!-- Unnamed (Rectangle) -->
  2368. <div id="u1950" class="ax_default box_2 transition">
  2369. <div id="u1950_div" class=""></div>
  2370. <div id="u1950_text" class="text ">
  2371. <p><span>张三</span></p>
  2372. </div>
  2373. </div>
  2374. <!-- Unnamed (Rectangle) -->
  2375. <div id="u1951" class="ax_default box_2 transition">
  2376. <div id="u1951_div" class=""></div>
  2377. <div id="u1951_text" class="text ">
  2378. <p><span>住户</span></p>
  2379. </div>
  2380. </div>
  2381. <!-- Unnamed (Rectangle) -->
  2382. <div id="u1952" class="ax_default box_2 transition">
  2383. <div id="u1952_div" class=""></div>
  2384. <div id="u1952_text" class="text ">
  2385. <p><span>(门禁)门禁点名称</span></p>
  2386. </div>
  2387. </div>
  2388. <!-- Unnamed (Rectangle) -->
  2389. <div id="u1953" class="ax_default box_2 transition">
  2390. <div id="u1953_div" class=""></div>
  2391. <div id="u1953_text" class="text ">
  2392. <p><span>通行时间年月日时分秒</span></p>
  2393. </div>
  2394. </div>
  2395. <!-- Unnamed (Placeholder) -->
  2396. <div id="u1954" class="ax_default placeholder transition">
  2397. <svg data="images/智慧人员/u1954.svg" id="u1954_img" class="img generatedImage">
  2398. <defs>
  2399. <pattern id="u1954_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2400. <mask fill="white" id="u1954_img_cl2825">
  2401. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2402. </mask>
  2403. <mask fill="white" id="u1954_img_cl2826">
  2404. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2405. </mask>
  2406. </defs>
  2407. <g transform="matrix(1 0 0 1 -356 -282 )">
  2408. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 356 282 )" class="fill" />
  2409. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 282 )" class="stroke" mask="url(#u1954_img_cl2825)" />
  2410. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 282 )" class="stroke" mask="url(#u1954_img_cl2826)" />
  2411. </g>
  2412. </svg>
  2413. <div id="u1954_text" class="text ">
  2414. <p><span>人脸</span></p>
  2415. </div>
  2416. </div>
  2417. </div>
  2418. <!-- Unnamed (Group) -->
  2419. <div id="u1955" class="ax_default" data-left="612" data-top="271" data-width="254" data-height="82" layer-opacity="1">
  2420. <!-- Unnamed (Rectangle) -->
  2421. <div id="u1956" class="ax_default box_1 transition">
  2422. <div id="u1956_div" class=""></div>
  2423. <div id="u1956_text" class="text " style="display:none; visibility: hidden">
  2424. <p></p>
  2425. </div>
  2426. </div>
  2427. <!-- Unnamed (Rectangle) -->
  2428. <div id="u1957" class="ax_default box_2 transition">
  2429. <div id="u1957_div" class=""></div>
  2430. <div id="u1957_text" class="text ">
  2431. <p><span>未登记</span></p>
  2432. </div>
  2433. </div>
  2434. <!-- Unnamed (Rectangle) -->
  2435. <div id="u1958" class="ax_default box_2 transition">
  2436. <div id="u1958_div" class=""></div>
  2437. <div id="u1958_text" class="text ">
  2438. <p><span>(电梯)电梯点名称</span></p>
  2439. </div>
  2440. </div>
  2441. <!-- Unnamed (Rectangle) -->
  2442. <div id="u1959" class="ax_default box_2 transition">
  2443. <div id="u1959_div" class=""></div>
  2444. <div id="u1959_text" class="text ">
  2445. <p><span>通行时间年月日时分秒</span></p>
  2446. </div>
  2447. </div>
  2448. <!-- Unnamed (Placeholder) -->
  2449. <div id="u1960" class="ax_default placeholder transition">
  2450. <svg data="images/智慧人员/u1960.svg" id="u1960_img" class="img generatedImage">
  2451. <defs>
  2452. <pattern id="u1960_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2453. <mask fill="white" id="u1960_img_cl2827">
  2454. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2455. </mask>
  2456. <mask fill="white" id="u1960_img_cl2828">
  2457. <path d="M 6 19 L 46 19 L 46 41 L 6 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2458. </mask>
  2459. </defs>
  2460. <g transform="matrix(1 0 0 1 -620 -282 )">
  2461. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 620 282 )" class="fill" />
  2462. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 282 )" class="stroke" mask="url(#u1960_img_cl2827)" />
  2463. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 282 )" class="stroke" mask="url(#u1960_img_cl2828)" />
  2464. </g>
  2465. </svg>
  2466. <div id="u1960_text" class="text ">
  2467. <p><span>二维码</span></p>
  2468. </div>
  2469. </div>
  2470. </div>
  2471. <!-- Unnamed (Group) -->
  2472. <div id="u1961" class="ax_default" data-left="876" data-top="271" data-width="254" data-height="82" layer-opacity="1">
  2473. <!-- Unnamed (Rectangle) -->
  2474. <div id="u1962" class="ax_default box_1 transition">
  2475. <div id="u1962_div" class=""></div>
  2476. <div id="u1962_text" class="text " style="display:none; visibility: hidden">
  2477. <p></p>
  2478. </div>
  2479. </div>
  2480. <!-- Unnamed (Rectangle) -->
  2481. <div id="u1963" class="ax_default box_2 transition">
  2482. <div id="u1963_div" class=""></div>
  2483. <div id="u1963_text" class="text ">
  2484. <p><span>李四</span></p>
  2485. </div>
  2486. </div>
  2487. <!-- Unnamed (Rectangle) -->
  2488. <div id="u1964" class="ax_default box_2 transition">
  2489. <div id="u1964_div" class=""></div>
  2490. <div id="u1964_text" class="text ">
  2491. <p><span>物业</span></p>
  2492. </div>
  2493. </div>
  2494. <!-- Unnamed (Rectangle) -->
  2495. <div id="u1965" class="ax_default box_2 transition">
  2496. <div id="u1965_div" class=""></div>
  2497. <div id="u1965_text" class="text ">
  2498. <p><span>(监控)监控点</span></p>
  2499. </div>
  2500. </div>
  2501. <!-- Unnamed (Rectangle) -->
  2502. <div id="u1966" class="ax_default box_2 transition">
  2503. <div id="u1966_div" class=""></div>
  2504. <div id="u1966_text" class="text ">
  2505. <p><span>通行时间年月日时分秒</span></p>
  2506. </div>
  2507. </div>
  2508. <!-- Unnamed (Placeholder) -->
  2509. <div id="u1967" class="ax_default placeholder transition">
  2510. <svg data="images/智慧人员/u1967.svg" id="u1967_img" class="img generatedImage">
  2511. <defs>
  2512. <pattern id="u1967_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2513. <mask fill="white" id="u1967_img_cl2829">
  2514. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2515. </mask>
  2516. <mask fill="white" id="u1967_img_cl2830">
  2517. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2518. </mask>
  2519. </defs>
  2520. <g transform="matrix(1 0 0 1 -884 -282 )">
  2521. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 884 282 )" class="fill" />
  2522. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 282 )" class="stroke" mask="url(#u1967_img_cl2829)" />
  2523. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 282 )" class="stroke" mask="url(#u1967_img_cl2830)" />
  2524. </g>
  2525. </svg>
  2526. <div id="u1967_text" class="text ">
  2527. <p><span>刷卡</span></p>
  2528. </div>
  2529. </div>
  2530. </div>
  2531. <!-- Unnamed (Group) -->
  2532. <div id="u1968" class="ax_default" data-left="348" data-top="363" data-width="254" data-height="82" layer-opacity="1">
  2533. <!-- Unnamed (Rectangle) -->
  2534. <div id="u1969" class="ax_default box_1 transition">
  2535. <div id="u1969_div" class=""></div>
  2536. <div id="u1969_text" class="text " style="display:none; visibility: hidden">
  2537. <p></p>
  2538. </div>
  2539. </div>
  2540. <!-- Unnamed (Rectangle) -->
  2541. <div id="u1970" class="ax_default box_2 transition">
  2542. <div id="u1970_div" class=""></div>
  2543. <div id="u1970_text" class="text ">
  2544. <p><span>张三</span></p>
  2545. </div>
  2546. </div>
  2547. <!-- Unnamed (Rectangle) -->
  2548. <div id="u1971" class="ax_default box_2 transition">
  2549. <div id="u1971_div" class=""></div>
  2550. <div id="u1971_text" class="text ">
  2551. <p><span>住户</span></p>
  2552. </div>
  2553. </div>
  2554. <!-- Unnamed (Rectangle) -->
  2555. <div id="u1972" class="ax_default box_2 transition">
  2556. <div id="u1972_div" class=""></div>
  2557. <div id="u1972_text" class="text ">
  2558. <p><span>(门禁)门禁点名称</span></p>
  2559. </div>
  2560. </div>
  2561. <!-- Unnamed (Rectangle) -->
  2562. <div id="u1973" class="ax_default box_2 transition">
  2563. <div id="u1973_div" class=""></div>
  2564. <div id="u1973_text" class="text ">
  2565. <p><span>通行时间年月日时分秒</span></p>
  2566. </div>
  2567. </div>
  2568. <!-- Unnamed (Placeholder) -->
  2569. <div id="u1974" class="ax_default placeholder transition">
  2570. <svg data="images/智慧人员/u1974.svg" id="u1974_img" class="img generatedImage">
  2571. <defs>
  2572. <pattern id="u1974_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2573. <mask fill="white" id="u1974_img_cl2831">
  2574. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2575. </mask>
  2576. <mask fill="white" id="u1974_img_cl2832">
  2577. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2578. </mask>
  2579. </defs>
  2580. <g transform="matrix(1 0 0 1 -356 -374 )">
  2581. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 356 374 )" class="fill" />
  2582. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 374 )" class="stroke" mask="url(#u1974_img_cl2831)" />
  2583. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 374 )" class="stroke" mask="url(#u1974_img_cl2832)" />
  2584. </g>
  2585. </svg>
  2586. <div id="u1974_text" class="text ">
  2587. <p><span>人脸</span></p>
  2588. </div>
  2589. </div>
  2590. </div>
  2591. <!-- Unnamed (Group) -->
  2592. <div id="u1975" class="ax_default" data-left="612" data-top="363" data-width="254" data-height="82" layer-opacity="1">
  2593. <!-- Unnamed (Rectangle) -->
  2594. <div id="u1976" class="ax_default box_1 transition">
  2595. <div id="u1976_div" class=""></div>
  2596. <div id="u1976_text" class="text " style="display:none; visibility: hidden">
  2597. <p></p>
  2598. </div>
  2599. </div>
  2600. <!-- Unnamed (Rectangle) -->
  2601. <div id="u1977" class="ax_default box_2 transition">
  2602. <div id="u1977_div" class=""></div>
  2603. <div id="u1977_text" class="text ">
  2604. <p><span>未登记</span></p>
  2605. </div>
  2606. </div>
  2607. <!-- Unnamed (Rectangle) -->
  2608. <div id="u1978" class="ax_default box_2 transition">
  2609. <div id="u1978_div" class=""></div>
  2610. <div id="u1978_text" class="text ">
  2611. <p><span>(电梯)电梯点名称</span></p>
  2612. </div>
  2613. </div>
  2614. <!-- Unnamed (Rectangle) -->
  2615. <div id="u1979" class="ax_default box_2 transition">
  2616. <div id="u1979_div" class=""></div>
  2617. <div id="u1979_text" class="text ">
  2618. <p><span>通行时间年月日时分秒</span></p>
  2619. </div>
  2620. </div>
  2621. <!-- Unnamed (Placeholder) -->
  2622. <div id="u1980" class="ax_default placeholder transition">
  2623. <svg data="images/智慧人员/u1980.svg" id="u1980_img" class="img generatedImage">
  2624. <defs>
  2625. <pattern id="u1980_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2626. <mask fill="white" id="u1980_img_cl2833">
  2627. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2628. </mask>
  2629. <mask fill="white" id="u1980_img_cl2834">
  2630. <path d="M 6 19 L 46 19 L 46 41 L 6 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2631. </mask>
  2632. </defs>
  2633. <g transform="matrix(1 0 0 1 -620 -374 )">
  2634. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 620 374 )" class="fill" />
  2635. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 374 )" class="stroke" mask="url(#u1980_img_cl2833)" />
  2636. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 374 )" class="stroke" mask="url(#u1980_img_cl2834)" />
  2637. </g>
  2638. </svg>
  2639. <div id="u1980_text" class="text ">
  2640. <p><span>二维码</span></p>
  2641. </div>
  2642. </div>
  2643. </div>
  2644. <!-- Unnamed (Group) -->
  2645. <div id="u1981" class="ax_default" data-left="876" data-top="363" data-width="254" data-height="82" layer-opacity="1">
  2646. <!-- Unnamed (Rectangle) -->
  2647. <div id="u1982" class="ax_default box_1 transition">
  2648. <div id="u1982_div" class=""></div>
  2649. <div id="u1982_text" class="text " style="display:none; visibility: hidden">
  2650. <p></p>
  2651. </div>
  2652. </div>
  2653. <!-- Unnamed (Rectangle) -->
  2654. <div id="u1983" class="ax_default box_2 transition">
  2655. <div id="u1983_div" class=""></div>
  2656. <div id="u1983_text" class="text ">
  2657. <p><span>李四</span></p>
  2658. </div>
  2659. </div>
  2660. <!-- Unnamed (Rectangle) -->
  2661. <div id="u1984" class="ax_default box_2 transition">
  2662. <div id="u1984_div" class=""></div>
  2663. <div id="u1984_text" class="text ">
  2664. <p><span>物业</span></p>
  2665. </div>
  2666. </div>
  2667. <!-- Unnamed (Rectangle) -->
  2668. <div id="u1985" class="ax_default box_2 transition">
  2669. <div id="u1985_div" class=""></div>
  2670. <div id="u1985_text" class="text ">
  2671. <p><span>(监控)监控点</span></p>
  2672. </div>
  2673. </div>
  2674. <!-- Unnamed (Rectangle) -->
  2675. <div id="u1986" class="ax_default box_2 transition">
  2676. <div id="u1986_div" class=""></div>
  2677. <div id="u1986_text" class="text ">
  2678. <p><span>通行时间年月日时分秒</span></p>
  2679. </div>
  2680. </div>
  2681. <!-- Unnamed (Placeholder) -->
  2682. <div id="u1987" class="ax_default placeholder transition">
  2683. <svg data="images/智慧人员/u1987.svg" id="u1987_img" class="img generatedImage">
  2684. <defs>
  2685. <pattern id="u1987_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2686. <mask fill="white" id="u1987_img_cl2835">
  2687. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2688. </mask>
  2689. <mask fill="white" id="u1987_img_cl2836">
  2690. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2691. </mask>
  2692. </defs>
  2693. <g transform="matrix(1 0 0 1 -884 -374 )">
  2694. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 884 374 )" class="fill" />
  2695. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 374 )" class="stroke" mask="url(#u1987_img_cl2835)" />
  2696. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 374 )" class="stroke" mask="url(#u1987_img_cl2836)" />
  2697. </g>
  2698. </svg>
  2699. <div id="u1987_text" class="text ">
  2700. <p><span>刷卡</span></p>
  2701. </div>
  2702. </div>
  2703. </div>
  2704. <!-- Unnamed (Group) -->
  2705. <div id="u1988" class="ax_default" data-left="348" data-top="455" data-width="254" data-height="82" layer-opacity="1">
  2706. <!-- Unnamed (Rectangle) -->
  2707. <div id="u1989" class="ax_default box_1 transition">
  2708. <div id="u1989_div" class=""></div>
  2709. <div id="u1989_text" class="text " style="display:none; visibility: hidden">
  2710. <p></p>
  2711. </div>
  2712. </div>
  2713. <!-- Unnamed (Rectangle) -->
  2714. <div id="u1990" class="ax_default box_2 transition">
  2715. <div id="u1990_div" class=""></div>
  2716. <div id="u1990_text" class="text ">
  2717. <p><span>张三</span></p>
  2718. </div>
  2719. </div>
  2720. <!-- Unnamed (Rectangle) -->
  2721. <div id="u1991" class="ax_default box_2 transition">
  2722. <div id="u1991_div" class=""></div>
  2723. <div id="u1991_text" class="text ">
  2724. <p><span>住户</span></p>
  2725. </div>
  2726. </div>
  2727. <!-- Unnamed (Rectangle) -->
  2728. <div id="u1992" class="ax_default box_2 transition">
  2729. <div id="u1992_div" class=""></div>
  2730. <div id="u1992_text" class="text ">
  2731. <p><span>(门禁)门禁点名称</span></p>
  2732. </div>
  2733. </div>
  2734. <!-- Unnamed (Rectangle) -->
  2735. <div id="u1993" class="ax_default box_2 transition">
  2736. <div id="u1993_div" class=""></div>
  2737. <div id="u1993_text" class="text ">
  2738. <p><span>通行时间年月日时分秒</span></p>
  2739. </div>
  2740. </div>
  2741. <!-- Unnamed (Placeholder) -->
  2742. <div id="u1994" class="ax_default placeholder transition">
  2743. <svg data="images/智慧人员/u1994.svg" id="u1994_img" class="img generatedImage">
  2744. <defs>
  2745. <pattern id="u1994_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2746. <mask fill="white" id="u1994_img_cl2837">
  2747. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2748. </mask>
  2749. <mask fill="white" id="u1994_img_cl2838">
  2750. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2751. </mask>
  2752. </defs>
  2753. <g transform="matrix(1 0 0 1 -356 -466 )">
  2754. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 356 466 )" class="fill" />
  2755. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 466 )" class="stroke" mask="url(#u1994_img_cl2837)" />
  2756. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 466 )" class="stroke" mask="url(#u1994_img_cl2838)" />
  2757. </g>
  2758. </svg>
  2759. <div id="u1994_text" class="text ">
  2760. <p><span>人脸</span></p>
  2761. </div>
  2762. </div>
  2763. </div>
  2764. <!-- Unnamed (Group) -->
  2765. <div id="u1995" class="ax_default" data-left="612" data-top="455" data-width="254" data-height="82" layer-opacity="1">
  2766. <!-- Unnamed (Rectangle) -->
  2767. <div id="u1996" class="ax_default box_1 transition">
  2768. <div id="u1996_div" class=""></div>
  2769. <div id="u1996_text" class="text " style="display:none; visibility: hidden">
  2770. <p></p>
  2771. </div>
  2772. </div>
  2773. <!-- Unnamed (Rectangle) -->
  2774. <div id="u1997" class="ax_default box_2 transition">
  2775. <div id="u1997_div" class=""></div>
  2776. <div id="u1997_text" class="text ">
  2777. <p><span>未登记</span></p>
  2778. </div>
  2779. </div>
  2780. <!-- Unnamed (Rectangle) -->
  2781. <div id="u1998" class="ax_default box_2 transition">
  2782. <div id="u1998_div" class=""></div>
  2783. <div id="u1998_text" class="text ">
  2784. <p><span>(电梯)电梯点名称</span></p>
  2785. </div>
  2786. </div>
  2787. <!-- Unnamed (Rectangle) -->
  2788. <div id="u1999" class="ax_default box_2 transition">
  2789. <div id="u1999_div" class=""></div>
  2790. <div id="u1999_text" class="text ">
  2791. <p><span>通行时间年月日时分秒</span></p>
  2792. </div>
  2793. </div>
  2794. <!-- Unnamed (Placeholder) -->
  2795. <div id="u2000" class="ax_default placeholder transition">
  2796. <svg data="images/智慧人员/u2000.svg" id="u2000_img" class="img generatedImage">
  2797. <defs>
  2798. <pattern id="u2000_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2799. <mask fill="white" id="u2000_img_cl2839">
  2800. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2801. </mask>
  2802. <mask fill="white" id="u2000_img_cl2840">
  2803. <path d="M 6 19 L 46 19 L 46 41 L 6 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2804. </mask>
  2805. </defs>
  2806. <g transform="matrix(1 0 0 1 -620 -466 )">
  2807. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 620 466 )" class="fill" />
  2808. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 466 )" class="stroke" mask="url(#u2000_img_cl2839)" />
  2809. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 466 )" class="stroke" mask="url(#u2000_img_cl2840)" />
  2810. </g>
  2811. </svg>
  2812. <div id="u2000_text" class="text ">
  2813. <p><span>二维码</span></p>
  2814. </div>
  2815. </div>
  2816. </div>
  2817. <!-- Unnamed (Group) -->
  2818. <div id="u2001" class="ax_default" data-left="876" data-top="455" data-width="254" data-height="82" layer-opacity="1">
  2819. <!-- Unnamed (Rectangle) -->
  2820. <div id="u2002" class="ax_default box_1 transition">
  2821. <div id="u2002_div" class=""></div>
  2822. <div id="u2002_text" class="text " style="display:none; visibility: hidden">
  2823. <p></p>
  2824. </div>
  2825. </div>
  2826. <!-- Unnamed (Rectangle) -->
  2827. <div id="u2003" class="ax_default box_2 transition">
  2828. <div id="u2003_div" class=""></div>
  2829. <div id="u2003_text" class="text ">
  2830. <p><span>李四</span></p>
  2831. </div>
  2832. </div>
  2833. <!-- Unnamed (Rectangle) -->
  2834. <div id="u2004" class="ax_default box_2 transition">
  2835. <div id="u2004_div" class=""></div>
  2836. <div id="u2004_text" class="text ">
  2837. <p><span>物业</span></p>
  2838. </div>
  2839. </div>
  2840. <!-- Unnamed (Rectangle) -->
  2841. <div id="u2005" class="ax_default box_2 transition">
  2842. <div id="u2005_div" class=""></div>
  2843. <div id="u2005_text" class="text ">
  2844. <p><span>(监控)监控点</span></p>
  2845. </div>
  2846. </div>
  2847. <!-- Unnamed (Rectangle) -->
  2848. <div id="u2006" class="ax_default box_2 transition">
  2849. <div id="u2006_div" class=""></div>
  2850. <div id="u2006_text" class="text ">
  2851. <p><span>通行时间年月日时分秒</span></p>
  2852. </div>
  2853. </div>
  2854. <!-- Unnamed (Placeholder) -->
  2855. <div id="u2007" class="ax_default placeholder transition">
  2856. <svg data="images/智慧人员/u2007.svg" id="u2007_img" class="img generatedImage">
  2857. <defs>
  2858. <pattern id="u2007_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2859. <mask fill="white" id="u2007_img_cl2841">
  2860. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2861. </mask>
  2862. <mask fill="white" id="u2007_img_cl2842">
  2863. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2864. </mask>
  2865. </defs>
  2866. <g transform="matrix(1 0 0 1 -884 -466 )">
  2867. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 884 466 )" class="fill" />
  2868. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 466 )" class="stroke" mask="url(#u2007_img_cl2841)" />
  2869. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 466 )" class="stroke" mask="url(#u2007_img_cl2842)" />
  2870. </g>
  2871. </svg>
  2872. <div id="u2007_text" class="text ">
  2873. <p><span>刷卡</span></p>
  2874. </div>
  2875. </div>
  2876. </div>
  2877. <!-- Unnamed (Group) -->
  2878. <div id="u2008" class="ax_default" data-left="348" data-top="547" data-width="254" data-height="82" layer-opacity="1">
  2879. <!-- Unnamed (Rectangle) -->
  2880. <div id="u2009" class="ax_default box_1 transition">
  2881. <div id="u2009_div" class=""></div>
  2882. <div id="u2009_text" class="text " style="display:none; visibility: hidden">
  2883. <p></p>
  2884. </div>
  2885. </div>
  2886. <!-- Unnamed (Rectangle) -->
  2887. <div id="u2010" class="ax_default box_2 transition">
  2888. <div id="u2010_div" class=""></div>
  2889. <div id="u2010_text" class="text ">
  2890. <p><span>张三</span></p>
  2891. </div>
  2892. </div>
  2893. <!-- Unnamed (Rectangle) -->
  2894. <div id="u2011" class="ax_default box_2 transition">
  2895. <div id="u2011_div" class=""></div>
  2896. <div id="u2011_text" class="text ">
  2897. <p><span>住户</span></p>
  2898. </div>
  2899. </div>
  2900. <!-- Unnamed (Rectangle) -->
  2901. <div id="u2012" class="ax_default box_2 transition">
  2902. <div id="u2012_div" class=""></div>
  2903. <div id="u2012_text" class="text ">
  2904. <p><span>(门禁)门禁点名称</span></p>
  2905. </div>
  2906. </div>
  2907. <!-- Unnamed (Rectangle) -->
  2908. <div id="u2013" class="ax_default box_2 transition">
  2909. <div id="u2013_div" class=""></div>
  2910. <div id="u2013_text" class="text ">
  2911. <p><span>通行时间年月日时分秒</span></p>
  2912. </div>
  2913. </div>
  2914. <!-- Unnamed (Placeholder) -->
  2915. <div id="u2014" class="ax_default placeholder transition">
  2916. <svg data="images/智慧人员/u2014.svg" id="u2014_img" class="img generatedImage">
  2917. <defs>
  2918. <pattern id="u2014_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2919. <mask fill="white" id="u2014_img_cl2843">
  2920. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2921. </mask>
  2922. <mask fill="white" id="u2014_img_cl2844">
  2923. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2924. </mask>
  2925. </defs>
  2926. <g transform="matrix(1 0 0 1 -356 -558 )">
  2927. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 356 558 )" class="fill" />
  2928. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 558 )" class="stroke" mask="url(#u2014_img_cl2843)" />
  2929. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 356 558 )" class="stroke" mask="url(#u2014_img_cl2844)" />
  2930. </g>
  2931. </svg>
  2932. <div id="u2014_text" class="text ">
  2933. <p><span>人脸</span></p>
  2934. </div>
  2935. </div>
  2936. </div>
  2937. <!-- Unnamed (Group) -->
  2938. <div id="u2015" class="ax_default" data-left="612" data-top="547" data-width="254" data-height="82" layer-opacity="1">
  2939. <!-- Unnamed (Rectangle) -->
  2940. <div id="u2016" class="ax_default box_1 transition">
  2941. <div id="u2016_div" class=""></div>
  2942. <div id="u2016_text" class="text " style="display:none; visibility: hidden">
  2943. <p></p>
  2944. </div>
  2945. </div>
  2946. <!-- Unnamed (Rectangle) -->
  2947. <div id="u2017" class="ax_default box_2 transition">
  2948. <div id="u2017_div" class=""></div>
  2949. <div id="u2017_text" class="text ">
  2950. <p><span>未登记</span></p>
  2951. </div>
  2952. </div>
  2953. <!-- Unnamed (Rectangle) -->
  2954. <div id="u2018" class="ax_default box_2 transition">
  2955. <div id="u2018_div" class=""></div>
  2956. <div id="u2018_text" class="text ">
  2957. <p><span>(电梯)电梯点名称</span></p>
  2958. </div>
  2959. </div>
  2960. <!-- Unnamed (Rectangle) -->
  2961. <div id="u2019" class="ax_default box_2 transition">
  2962. <div id="u2019_div" class=""></div>
  2963. <div id="u2019_text" class="text ">
  2964. <p><span>通行时间年月日时分秒</span></p>
  2965. </div>
  2966. </div>
  2967. <!-- Unnamed (Placeholder) -->
  2968. <div id="u2020" class="ax_default placeholder transition">
  2969. <svg data="images/智慧人员/u2020.svg" id="u2020_img" class="img generatedImage">
  2970. <defs>
  2971. <pattern id="u2020_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2972. <mask fill="white" id="u2020_img_cl2845">
  2973. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2974. </mask>
  2975. <mask fill="white" id="u2020_img_cl2846">
  2976. <path d="M 6 19 L 46 19 L 46 41 L 6 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  2977. </mask>
  2978. </defs>
  2979. <g transform="matrix(1 0 0 1 -620 -558 )">
  2980. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 620 558 )" class="fill" />
  2981. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 558 )" class="stroke" mask="url(#u2020_img_cl2845)" />
  2982. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 620 558 )" class="stroke" mask="url(#u2020_img_cl2846)" />
  2983. </g>
  2984. </svg>
  2985. <div id="u2020_text" class="text ">
  2986. <p><span>二维码</span></p>
  2987. </div>
  2988. </div>
  2989. </div>
  2990. <!-- Unnamed (Group) -->
  2991. <div id="u2021" class="ax_default" data-left="876" data-top="547" data-width="254" data-height="82" layer-opacity="1">
  2992. <!-- Unnamed (Rectangle) -->
  2993. <div id="u2022" class="ax_default box_1 transition">
  2994. <div id="u2022_div" class=""></div>
  2995. <div id="u2022_text" class="text " style="display:none; visibility: hidden">
  2996. <p></p>
  2997. </div>
  2998. </div>
  2999. <!-- Unnamed (Rectangle) -->
  3000. <div id="u2023" class="ax_default box_2 transition">
  3001. <div id="u2023_div" class=""></div>
  3002. <div id="u2023_text" class="text ">
  3003. <p><span>李四</span></p>
  3004. </div>
  3005. </div>
  3006. <!-- Unnamed (Rectangle) -->
  3007. <div id="u2024" class="ax_default box_2 transition">
  3008. <div id="u2024_div" class=""></div>
  3009. <div id="u2024_text" class="text ">
  3010. <p><span>物业</span></p>
  3011. </div>
  3012. </div>
  3013. <!-- Unnamed (Rectangle) -->
  3014. <div id="u2025" class="ax_default box_2 transition">
  3015. <div id="u2025_div" class=""></div>
  3016. <div id="u2025_text" class="text ">
  3017. <p><span>(监控)监控点</span></p>
  3018. </div>
  3019. </div>
  3020. <!-- Unnamed (Rectangle) -->
  3021. <div id="u2026" class="ax_default box_2 transition">
  3022. <div id="u2026_div" class=""></div>
  3023. <div id="u2026_text" class="text ">
  3024. <p><span>通行时间年月日时分秒</span></p>
  3025. </div>
  3026. </div>
  3027. <!-- Unnamed (Placeholder) -->
  3028. <div id="u2027" class="ax_default placeholder transition">
  3029. <svg data="images/智慧人员/u2027.svg" id="u2027_img" class="img generatedImage">
  3030. <defs>
  3031. <pattern id="u2027_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3032. <mask fill="white" id="u2027_img_cl2847">
  3033. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  3034. </mask>
  3035. <mask fill="white" id="u2027_img_cl2848">
  3036. <path d="M 12.5 19 L 39.5 19 L 39.5 41 L 12.5 41 Z M 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
  3037. </mask>
  3038. </defs>
  3039. <g transform="matrix(1 0 0 1 -884 -558 )">
  3040. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 0)" stroke="none" transform="matrix(1 0 0 1 884 558 )" class="fill" />
  3041. <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 558 )" class="stroke" mask="url(#u2027_img_cl2847)" />
  3042. <path d="M 49.618552199713044 0.45010840433860455 L 0.381447800286953 58.54989159566139 M 0.381447800286953 0.45010840433860455 L 49.618552199713044 58.54989159566139 " stroke-width="1" stroke-dasharray="0" stroke="rgba(245, 154, 35, 0.2)" fill="none" transform="matrix(1 0 0 1 884 558 )" class="stroke" mask="url(#u2027_img_cl2848)" />
  3043. </g>
  3044. </svg>
  3045. <div id="u2027_text" class="text ">
  3046. <p><span>刷卡</span></p>
  3047. </div>
  3048. </div>
  3049. </div>
  3050. </div>
  3051. <script src="resources/scripts/axure/ios.js"></script>
  3052. </body>
  3053. </html>