123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>智慧人员</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
- <link href="data/styles.css" type="text/css" rel="stylesheet"/>
- <link href="files/智慧人员/styles.css" type="text/css" rel="stylesheet"/>
- <link href="https://fonts.googleapis.com" rel="preconnect"/>
- <link href="https://fonts.gstatic.com" rel="preconnect"/>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
- <script src="resources/scripts/jquery-3.7.1.min.js"></script>
- <script src="resources/scripts/axure/axQuery.js"></script>
- <script src="resources/scripts/axure/globals.js"></script>
- <script src="resources/scripts/axutils.js"></script>
- <script src="resources/scripts/axure/annotation.js"></script>
- <script src="resources/scripts/axure/axQuery.std.js"></script>
- <script src="resources/scripts/axure/doc.js"></script>
- <script src="resources/scripts/messagecenter.js"></script>
- <script src="resources/scripts/axure/events.js"></script>
- <script src="resources/scripts/axure/recording.js"></script>
- <script src="resources/scripts/axure/action.js"></script>
- <script src="resources/scripts/axure/expr.js"></script>
- <script src="resources/scripts/axure/geometry.js"></script>
- <script src="resources/scripts/axure/flyout.js"></script>
- <script src="resources/scripts/axure/model.js"></script>
- <script src="resources/scripts/axure/repeater.js"></script>
- <script src="resources/scripts/axure/sto.js"></script>
- <script src="resources/scripts/axure/utils.temp.js"></script>
- <script src="resources/scripts/axure/variables.js"></script>
- <script src="resources/scripts/axure/drag.js"></script>
- <script src="resources/scripts/axure/move.js"></script>
- <script src="resources/scripts/axure/visibility.js"></script>
- <script src="resources/scripts/axure/style.js"></script>
- <script src="resources/scripts/axure/adaptive.js"></script>
- <script src="resources/scripts/axure/tree.js"></script>
- <script src="resources/scripts/axure/init.temp.js"></script>
- <script src="resources/scripts/axure/legacy.js"></script>
- <script src="resources/scripts/axure/viewer.js"></script>
- <script src="resources/scripts/axure/math.js"></script>
- <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
- <script src="data/document.js"></script>
- <script src="files/智慧人员/data.js"></script>
- <script type="text/javascript">
- $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
- $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
- $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
- </script>
- </head>
- <body>
- <div id="base" class="">
- <!-- Unnamed (Image) -->
- <div id="u1679" class="ax_default image1 transition">
- <img id="u1679_img" class="img " src="images/智慧人员/u1679.png"/>
- <div id="u1679_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1680" class="ax_default box_2 transition">
- <div id="u1680_div" class=""></div>
- <div id="u1680_text" class="text ">
- <p><span>今日人流量</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1681" class="ax_default box_2 transition">
- <div id="u1681_div" class=""></div>
- <div id="u1681_text" class="text ">
- <p><span>今日访客</span></p>
- </div>
- </div>
- <!-- Unnamed (Ellipse) -->
- <div id="u1682" class="ax_default ellipse transition">
- <svg data="images/智慧人员/u1682.svg" id="u1682_img" class="img generatedImage">
- <defs>
- <pattern id="u1682_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1682_img_cl2814">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -41 -157 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1682_text" class="text ">
- <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>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1683" class="ax_default box_2 transition">
- <div id="u1683_div" class=""></div>
- <div id="u1683_text" class="text ">
- <p><span>住户:5829</span></p><p><span>访客:5000</span></p><p><span>其他:4000</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1684" class="ax_default box_2 transition">
- <div id="u1684_div" class=""></div>
- <div id="u1684_text" class="text ">
- <ul><li style=""><span>进:8829</span></li></ul>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1685" class="ax_default box_2 transition">
- <div id="u1685_div" class=""></div>
- <div id="u1685_text" class="text ">
- <ul><li style=""><span>出:6000</span></li></ul>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1686" class="ax_default box_2 transition">
- <div id="u1686_div" class=""></div>
- <div id="u1686_text" class="text ">
- <p><span>住户统计分析</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1687" class="ax_default box_2 transition">
- <div id="u1687_div" class=""></div>
- <div id="u1687_text" class="text ">
- <p><span>中年</span></p><p><span>青年</span></p><p><span>老年</span></p><p><span>儿童</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1688" class="ax_default" data-left="1207" data-top="-325" data-width="234" data-height="165" layer-opacity="1">
- <!-- Unnamed (Image) -->
- <div id="u1689" class="ax_default image1 transition">
- <img id="u1689_img" class="img " src="images/智慧人员/u1689.png"/>
- <div id="u1689_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1690" class="ax_default image1 transition">
- <img id="u1690_img" class="img " src="images/智慧人员/u1689.png"/>
- <div id="u1690_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1691" class="ax_default image1 transition">
- <img id="u1691_img" class="img " src="images/智慧人员/u1689.png"/>
- <div id="u1691_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1692" class="ax_default image1 transition">
- <img id="u1692_img" class="img " src="images/智慧人员/u1689.png"/>
- <div id="u1692_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1693" class="ax_default box_1 transition">
- <div id="u1693_div" class=""></div>
- <div id="u1693_text" class="text ">
- <p><span>离线</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1694" class="ax_default box_2 transition">
- <div id="u1694_div" class=""></div>
- <div id="u1694_text" class="text ">
- <p><span>异常人员出入记录</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1695" class="ax_default box_2 transition">
- <div id="u1695_div" class=""></div>
- <div id="u1695_text" class="text ">
- <p><span>更多</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1696" class="ax_default box_2 transition">
- <div id="u1696_div" class=""></div>
- <div id="u1696_text" class="text ">
- <p><span>住户总人数</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1697" class="ax_default box_2 transition">
- <div id="u1697_div" class=""></div>
- <div id="u1697_text" class="text ">
- <p><span>38290</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1698" class="ax_default box_2 transition">
- <div id="u1698_div" class=""></div>
- <div id="u1698_text" class="text ">
- <p><span>530</span></p><p><span>209</span></p><p><span>231</span></p><p><span>123</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1699" class="ax_default box_2 transition">
- <div id="u1699_div" class=""></div>
- <div id="u1699_text" class="text ">
- <p><span>52%</span></p><p><span>33%</span></p><p><span>11%</span></p><p><span>4%</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1700" class="ax_default box_2 transition">
- <div id="u1700_div" class=""></div>
- <div id="u1700_text" class="text ">
- <p><span>年龄段分布</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1701" class="ax_default box_2 transition">
- <div id="u1701_div" class=""></div>
- <div id="u1701_text" class="text ">
- <p><span>性别分布</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1702" class="ax_default box_2 transition">
- <div id="u1702_div" class=""></div>
- <div id="u1702_text" class="text ">
- <p><span>人流量统计</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1703" class="ax_default" data-left="27" data-top="642" data-width="241" data-height="122" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1704" class="ax_default label transition">
- <div id="u1704_div" class=""></div>
- <div id="u1704_text" class="text ">
- <p><span>0时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1705" class="ax_default label transition">
- <div id="u1705_div" class=""></div>
- <div id="u1705_text" class="text ">
- <p><span>2时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1706" class="ax_default label transition">
- <div id="u1706_div" class=""></div>
- <div id="u1706_text" class="text ">
- <p><span>4时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1707" class="ax_default label transition">
- <div id="u1707_div" class=""></div>
- <div id="u1707_text" class="text ">
- <p><span>6时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1708" class="ax_default label transition">
- <div id="u1708_div" class=""></div>
- <div id="u1708_text" class="text ">
- <p><span>8时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1709" class="ax_default label transition">
- <div id="u1709_div" class=""></div>
- <div id="u1709_text" class="text ">
- <p><span>10时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1710" class="ax_default label transition">
- <div id="u1710_div" class=""></div>
- <div id="u1710_text" class="text ">
- <p><span>12时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1711" class="ax_default label transition">
- <div id="u1711_div" class=""></div>
- <div id="u1711_text" class="text ">
- <p><span>14时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1712" class="ax_default label transition">
- <div id="u1712_div" class=""></div>
- <div id="u1712_text" class="text ">
- <p><span>16时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1713" class="ax_default label transition">
- <div id="u1713_div" class=""></div>
- <div id="u1713_text" class="text ">
- <p><span>18时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1714" class="ax_default label transition">
- <div id="u1714_div" class=""></div>
- <div id="u1714_text" class="text ">
- <p><span>20时</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1715" class="ax_default label transition">
- <div id="u1715_div" class=""></div>
- <div id="u1715_text" class="text ">
- <p><span>22时</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1716" class="ax_default" data-left="28" data-top="642" data-width="239" data-height="84" layer-opacity="1">
- <!-- Unnamed (Shape) -->
- <div id="u1717" class="ax_default shape1 transition">
- <svg data="images/智慧人员/u1717.svg" id="u1717_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -28 -642 )">
- <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" />
- </g>
- </svg>
- <div id="u1717_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1718" class="ax_default shape transition">
- <svg data="images/智慧人员/u1718.svg" id="u1718_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -27 -657 )">
- <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" />
- </g>
- </svg>
- <div id="u1718_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1719" class="ax_default shape transition">
- <svg data="images/智慧人员/u1719.svg" id="u1719_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -27 -747 )">
- <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" />
- </g>
- </svg>
- <div id="u1719_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1720" class="ax_default" data-left="181" data-top="615" data-width="86" data-height="18" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u1721" class="ax_default" data-left="181" data-top="615" data-width="28" data-height="18" layer-opacity="1">
- <!-- Unnamed (Line) -->
- <div id="u1722" class="ax_default line1 transition">
- <svg data="images/智慧人员/u1722.svg" id="u1722_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -181 -624 )">
- <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" />
- </g>
- </svg>
- <div id="u1722_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1723" class="ax_default box_2 transition">
- <div id="u1723_div" class=""></div>
- <div id="u1723_text" class="text ">
- <p><span>进</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1724" class="ax_default" data-left="239" data-top="615" data-width="28" data-height="18" layer-opacity="1">
- <!-- Unnamed (Line) -->
- <div id="u1725" class="ax_default line1 transition">
- <svg data="images/智慧人员/u1725.svg" id="u1725_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -239 -624 )">
- <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" />
- </g>
- </svg>
- <div id="u1725_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1726" class="ax_default box_2 transition">
- <div id="u1726_div" class=""></div>
- <div id="u1726_text" class="text ">
- <p><span>出</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1727" class="ax_default" data-left="1249" data-top="157" data-width="41" data-height="50" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1728" class="ax_default box_2 transition">
- <div id="u1728_div" class=""></div>
- <div id="u1728_text" class="text ">
- <p><span>预约数</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1729" class="ax_default box_2 transition">
- <div id="u1729_div" class=""></div>
- <div id="u1729_text" class="text ">
- <p><span>231</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1730" class="ax_default" data-left="1312" data-top="157" data-width="41" data-height="50" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1731" class="ax_default box_2 transition">
- <div id="u1731_div" class=""></div>
- <div id="u1731_text" class="text ">
- <p><span>未到访</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1732" class="ax_default box_2 transition">
- <div id="u1732_div" class=""></div>
- <div id="u1732_text" class="text ">
- <p><span>153</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1733" class="ax_default" data-left="1438" data-top="157" data-width="29" data-height="50" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1734" class="ax_default box_2 transition">
- <div id="u1734_div" class=""></div>
- <div id="u1734_text" class="text ">
- <p><span>其他</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1735" class="ax_default box_2 transition">
- <div id="u1735_div" class=""></div>
- <div id="u1735_text" class="text ">
- <p><span>28</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1736" class="ax_default" data-left="1242" data-top="232" data-width="240" data-height="34" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1737" class="ax_default box_2 transition">
- <div id="u1737_div" class=""></div>
- <div id="u1737_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1738" class="ax_default paragraph transition">
- <div id="u1738_div" class=""></div>
- <div id="u1738_text" class="text ">
- <p><span>门禁实时记录</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1739" class="ax_default box_2 transition">
- <div id="u1739_div" class=""></div>
- <div id="u1739_text" class="text ">
- <p><span>更多</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1740" class="ax_default" data-left="1236" data-top="542" data-width="240" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1741" class="ax_default box_2 transition">
- <div id="u1741_div" class=""></div>
- <div id="u1741_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1742" class="ax_default image1 transition">
- <img id="u1742_img" class="img " src="images/智慧人员/u1742.svg"/>
- <div id="u1742_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1743" class="ax_default box_2 transition">
- <div id="u1743_div" class=""></div>
- <div id="u1743_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1744" class="ax_default box_2 transition">
- <div id="u1744_div" class=""></div>
- <div id="u1744_text" class="text ">
- <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1745" class="ax_default box_2 transition">
- <div id="u1745_div" class=""></div>
- <div id="u1745_text" class="text ">
- <p><span>陌生人</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1746" class="ax_default" data-left="1236" data-top="612" data-width="240" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1747" class="ax_default box_2 transition">
- <div id="u1747_div" class=""></div>
- <div id="u1747_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1748" class="ax_default image1 transition">
- <img id="u1748_img" class="img " src="images/智慧人员/u1742.svg"/>
- <div id="u1748_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1749" class="ax_default box_2 transition">
- <div id="u1749_div" class=""></div>
- <div id="u1749_text" class="text ">
- <p><span>登记姓名</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1750" class="ax_default box_2 transition">
- <div id="u1750_div" class=""></div>
- <div id="u1750_text" class="text ">
- <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1751" class="ax_default box_2 transition">
- <div id="u1751_div" class=""></div>
- <div id="u1751_text" class="text ">
- <p><span>敏感人员</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1752" class="ax_default" data-left="1375" data-top="157" data-width="41" data-height="50" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1753" class="ax_default box_2 transition">
- <div id="u1753_div" class=""></div>
- <div id="u1753_text" class="text ">
- <p><span>已到访</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1754" class="ax_default box_2 transition">
- <div id="u1754_div" class=""></div>
- <div id="u1754_text" class="text ">
- <p><span>50</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1755" class="ax_default box_3 transition">
- <div id="u1755_div" class=""></div>
- <div id="u1755_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1756" class="ax_default box_2 transition">
- <div id="u1756_div" class=""></div>
- <div id="u1756_text" class="text ">
- <p><span>人员通行实时动态</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1757" class="ax_default" data-left="348" data-top="179" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1758" class="ax_default box_1 transition">
- <div id="u1758_div" class=""></div>
- <div id="u1758_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1759" class="ax_default box_2 transition">
- <div id="u1759_div" class=""></div>
- <div id="u1759_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1760" class="ax_default box_2 transition">
- <div id="u1760_div" class=""></div>
- <div id="u1760_text" class="text ">
- <p><span>住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1761" class="ax_default box_2 transition">
- <div id="u1761_div" class=""></div>
- <div id="u1761_text" class="text ">
- <p><span>(门禁)门禁点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1762" class="ax_default box_2 transition">
- <div id="u1762_div" class=""></div>
- <div id="u1762_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1763" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1763.svg" id="u1763_img" class="img generatedImage">
- <defs>
- <pattern id="u1763_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1763_img_cl2815">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1763_img_cl2816">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -356 -190 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1763_text" class="text ">
- <p><span>人脸</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1764" class="ax_default" data-left="612" data-top="179" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1765" class="ax_default box_1 transition">
- <div id="u1765_div" class=""></div>
- <div id="u1765_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1766" class="ax_default box_2 transition">
- <div id="u1766_div" class=""></div>
- <div id="u1766_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1767" class="ax_default box_2 transition">
- <div id="u1767_div" class=""></div>
- <div id="u1767_text" class="text ">
- <p><span>(电梯)电梯点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1768" class="ax_default box_2 transition">
- <div id="u1768_div" class=""></div>
- <div id="u1768_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1769" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1769.svg" id="u1769_img" class="img generatedImage">
- <defs>
- <pattern id="u1769_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1769_img_cl2817">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1769_img_cl2818">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -620 -190 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1769_text" class="text ">
- <p><span>二维码</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1770" class="ax_default" data-left="876" data-top="179" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1771" class="ax_default box_1 transition">
- <div id="u1771_div" class=""></div>
- <div id="u1771_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1772" class="ax_default box_2 transition">
- <div id="u1772_div" class=""></div>
- <div id="u1772_text" class="text ">
- <p><span>李四</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1773" class="ax_default box_2 transition">
- <div id="u1773_div" class=""></div>
- <div id="u1773_text" class="text ">
- <p><span>物业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1774" class="ax_default box_2 transition">
- <div id="u1774_div" class=""></div>
- <div id="u1774_text" class="text ">
- <p><span>(监控)监控点</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1775" class="ax_default box_2 transition">
- <div id="u1775_div" class=""></div>
- <div id="u1775_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1776" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1776.svg" id="u1776_img" class="img generatedImage">
- <defs>
- <pattern id="u1776_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1776_img_cl2819">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1776_img_cl2820">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -884 -190 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1776_text" class="text ">
- <p><span>刷卡</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1777" class="ax_default" data-left="1030" data-top="689" data-width="116" data-height="30" layer-opacity="1">
- <!-- 上一页 (Group) -->
- <div id="u1778" class="ax_default" data-label="上一页" data-left="1030" data-top="689" data-width="31" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1779" class="ax_default box_1 transition">
- <div id="u1779_div" class=""></div>
- <div id="u1779_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1780" class="ax_default icon transition">
- <svg data="images/消息/u1268.svg" id="u1780_img" class="img generatedImage">
- <defs>
- <pattern id="u1780_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1780_img_cl2741">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -659 -2248 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1780_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- 下一页 (Group) -->
- <div id="u1781" class="ax_default" data-label="下一页" data-left="1115" data-top="689" data-width="31" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1782" class="ax_default box_1 transition">
- <div id="u1782_div" class=""></div>
- <div id="u1782_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1783" class="ax_default icon transition">
- <svg data="images/消息/u1271.svg" id="u1783_img" class="img generatedImage">
- <defs>
- <pattern id="u1783_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1783_img_cl2742">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -894 -2248 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1783_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1784" class="ax_default box_1 transition">
- <div id="u1784_div" class=""></div>
- <div id="u1784_text" class="text ">
- <p><span>2/10</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1785" class="ax_default box_2 transition">
- <div id="u1785_div" class=""></div>
- <div id="u1785_text" class="text ">
- <p><span>敏感人员提醒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1786" class="ax_default box_2 transition">
- <div id="u1786_div" class=""></div>
- <div id="u1786_text" class="text ">
- <p><span>敏感人员轨迹</span></p>
- </div>
- </div>
- <!-- Unnamed (可视化底部菜单) -->
- <div id="u1787" class="nopointer ax_default">
- <!-- Unnamed (Group) -->
- <div id="u1788" class="ax_default" data-left="335" data-top="783" data-width="840" data-height="61" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u1789" class="ax_default" data-left="412" data-top="783" data-width="57" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1790" class="ax_default paragraph transition">
- <div id="u1790_div" class=""></div>
- <div id="u1790_text" class="text ">
- <p><span>智慧停车</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1791" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1791_img" class="img generatedImage">
- <defs>
- <pattern id="u1791_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1791_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1791_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1792" class="ax_default" data-left="486" data-top="783" data-width="57" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1793" class="ax_default paragraph transition">
- <div id="u1793_div" class=""></div>
- <div id="u1793_text" class="text ">
- <p><span>智慧安防</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1794" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1794_img" class="img generatedImage">
- <defs>
- <pattern id="u1794_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1794_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1794_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1795" class="ax_default" data-left="335" data-top="783" data-width="59" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1796" class="ax_default paragraph transition">
- <div id="u1796_div" class=""></div>
- <div id="u1796_text" class="text ">
- <p><span>车辆通行</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1797" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1797_img" class="img generatedImage">
- <defs>
- <pattern id="u1797_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1797_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1797_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1798" class="ax_default paragraph transition">
- <div id="u1798_div" class=""></div>
- <div id="u1798_text" class="text ">
- <p><span>智慧人员</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1799" class="ax_default" data-left="561" data-top="783" data-width="57" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1800" class="ax_default paragraph transition">
- <div id="u1800_div" class=""></div>
- <div id="u1800_text" class="text ">
- <p><span>智慧消防</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1801" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1801_img" class="img generatedImage">
- <defs>
- <pattern id="u1801_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1801_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1801_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1802" class="ax_default" data-left="636" data-top="783" data-width="57" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1803" class="ax_default paragraph transition">
- <div id="u1803_div" class=""></div>
- <div id="u1803_text" class="text ">
- <p><span>智慧梯控</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1804" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1804_img" class="img generatedImage">
- <defs>
- <pattern id="u1804_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1804_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1804_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1805" class="ax_default" data-left="787" data-top="783" data-width="56" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1806" class="ax_default paragraph transition">
- <div id="u1806_div" class=""></div>
- <div id="u1806_text" class="text ">
- <p><span>AI机器人</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1807" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1807_img" class="img generatedImage">
- <defs>
- <pattern id="u1807_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1807_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1807_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1808" class="ax_default" data-left="711" data-top="783" data-width="59" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1809" class="ax_default paragraph transition">
- <div id="u1809_div" class=""></div>
- <div id="u1809_text" class="text ">
- <p><span>项目总览</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1810" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1810_img" class="img generatedImage">
- <defs>
- <pattern id="u1810_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1810_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1810_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1811" class="ax_default" data-left="861" data-top="783" data-width="57" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1812" class="ax_default paragraph transition">
- <div id="u1812_div" class=""></div>
- <div id="u1812_text" class="text ">
- <p><span>智慧浇灌</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1813" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1813_img" class="img generatedImage">
- <defs>
- <pattern id="u1813_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1813_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1813_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1814" class="ax_default" data-left="936" data-top="783" data-width="68" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1815" class="ax_default paragraph transition">
- <div id="u1815_div" class=""></div>
- <div id="u1815_text" class="text ">
- <p><span>环境监测</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1816" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1816_img" class="img generatedImage">
- <defs>
- <pattern id="u1816_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1816_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1816_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1817" class="ax_default" data-left="1021" data-top="783" data-width="68" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1818" class="ax_default paragraph transition">
- <div id="u1818_div" class=""></div>
- <div id="u1818_text" class="text ">
- <p><span>楼宇自控</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1819" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1819_img" class="img generatedImage">
- <defs>
- <pattern id="u1819_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1819_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1819_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1820" class="ax_default" data-left="1107" data-top="783" data-width="68" data-height="61" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1821" class="ax_default paragraph transition">
- <div id="u1821_div" class=""></div>
- <div id="u1821_text" class="text ">
- <p><span>智慧物联</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1822" class="ax_default box_1 transition">
- <svg data="images/智慧人员/u1791.svg" id="u1822_img" class="img generatedImage">
- <defs>
- <pattern id="u1822_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1822_img_cl2821">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -89 0 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1822_text" class="text ">
- <p><span>ICO</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1823" class="ax_default" data-left="216" data-top="887" data-width="1000" data-height="589" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1824" class="ax_default box_1 transition">
- <div id="u1824_div" class=""></div>
- <div id="u1824_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1825" class="ax_default box_2 transition">
- <div id="u1825_div" class=""></div>
- <div id="u1825_text" class="text ">
- <p><span>敏感人员提示</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1826" class="ax_default box_2 transition">
- <div id="u1826_div" class=""></div>
- <div id="u1826_text" class="text ">
- <p><span>全部</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1827" class="ax_default box_2 transition">
- <div id="u1827_div" class=""></div>
- <div id="u1827_text" class="text ">
- <p><span>待处理</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1828" class="ax_default box_2 transition">
- <div id="u1828_div" class=""></div>
- <div id="u1828_text" class="text ">
- <p><span>已处理</span></p>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u1829" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u1830" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1830.svg" id="u1830_img" class="img generatedImage" viewbox="0 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1830_text" class="text ">
- <p><span>登记照片</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1831" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1831.svg" id="u1831_img" class="img generatedImage" viewbox="118 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1831_text" class="text ">
- <p><span>姓名</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1832" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1832.svg" id="u1832_img" class="img generatedImage" viewbox="236 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1832_text" class="text ">
- <p><span>性别</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1833" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1833.svg" id="u1833_img" class="img generatedImage" viewbox="354 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1833_text" class="text ">
- <p><span>状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1834" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1834.svg" id="u1834_img" class="img generatedImage" viewbox="472 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1834_text" class="text ">
- <p><span>备注</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1835" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1835.svg" id="u1835_img" class="img generatedImage" viewbox="590 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1835_text" class="text ">
- <p><span>上报时间</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1836" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1836.svg" id="u1836_img" class="img generatedImage" viewbox="708 0 118 39">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1836_text" class="text ">
- <p><span>上报设备</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1837" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1837.svg" id="u1837_img" class="img generatedImage" viewbox="826 0 118 39">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1837_text" class="text ">
- <p><span>上报地址</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1838" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1838.svg" id="u1838_img" class="img generatedImage" viewbox="0 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1838_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1839" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1839.svg" id="u1839_img" class="img generatedImage" viewbox="118 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1839_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1840" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1840.svg" id="u1840_img" class="img generatedImage" viewbox="236 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1840_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1841" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1841.svg" id="u1841_img" class="img generatedImage" viewbox="354 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1841_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1842" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1842.svg" id="u1842_img" class="img generatedImage" viewbox="472 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1842_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1843" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1843.svg" id="u1843_img" class="img generatedImage" viewbox="590 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1843_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1844" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1844.svg" id="u1844_img" class="img generatedImage" viewbox="708 39 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1844_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1845" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1845.svg" id="u1845_img" class="img generatedImage" viewbox="826 39 118 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1845_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1846" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1846.svg" id="u1846_img" class="img generatedImage" viewbox="0 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1846_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1847" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1847.svg" id="u1847_img" class="img generatedImage" viewbox="118 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1847_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1848" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1848.svg" id="u1848_img" class="img generatedImage" viewbox="236 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1848_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1849" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1849.svg" id="u1849_img" class="img generatedImage" viewbox="354 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1849_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1850" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1850.svg" id="u1850_img" class="img generatedImage" viewbox="472 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1850_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1851" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1851.svg" id="u1851_img" class="img generatedImage" viewbox="590 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1851_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1852" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1852.svg" id="u1852_img" class="img generatedImage" viewbox="708 77 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1852_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1853" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1853.svg" id="u1853_img" class="img generatedImage" viewbox="826 77 118 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1853_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1854" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1854.svg" id="u1854_img" class="img generatedImage" viewbox="0 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1854_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1855" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1855.svg" id="u1855_img" class="img generatedImage" viewbox="118 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1855_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1856" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1856.svg" id="u1856_img" class="img generatedImage" viewbox="236 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1856_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1857" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1857.svg" id="u1857_img" class="img generatedImage" viewbox="354 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1857_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1858" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1858.svg" id="u1858_img" class="img generatedImage" viewbox="472 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1858_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1859" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1859.svg" id="u1859_img" class="img generatedImage" viewbox="590 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1859_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1860" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1860.svg" id="u1860_img" class="img generatedImage" viewbox="708 115 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1860_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1861" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1861.svg" id="u1861_img" class="img generatedImage" viewbox="826 115 118 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1861_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1862" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1862.svg" id="u1862_img" class="img generatedImage" viewbox="0 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1862_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1863" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1863.svg" id="u1863_img" class="img generatedImage" viewbox="118 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1863_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1864" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1864.svg" id="u1864_img" class="img generatedImage" viewbox="236 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1864_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1865" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1865.svg" id="u1865_img" class="img generatedImage" viewbox="354 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1865_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1866" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1866.svg" id="u1866_img" class="img generatedImage" viewbox="472 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1866_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1867" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1867.svg" id="u1867_img" class="img generatedImage" viewbox="590 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1867_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1868" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1868.svg" id="u1868_img" class="img generatedImage" viewbox="708 153 118 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1868_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1869" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1869.svg" id="u1869_img" class="img generatedImage" viewbox="826 153 118 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1869_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1870" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1870.svg" id="u1870_img" class="img generatedImage" viewbox="0 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1870_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1871" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1871.svg" id="u1871_img" class="img generatedImage" viewbox="118 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1871_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1872" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1872.svg" id="u1872_img" class="img generatedImage" viewbox="236 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1872_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1873" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1873.svg" id="u1873_img" class="img generatedImage" viewbox="354 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1873_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1874" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1874.svg" id="u1874_img" class="img generatedImage" viewbox="472 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1874_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1875" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1875.svg" id="u1875_img" class="img generatedImage" viewbox="590 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1875_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1876" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1876.svg" id="u1876_img" class="img generatedImage" viewbox="708 191 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1876_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1877" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1877.svg" id="u1877_img" class="img generatedImage" viewbox="826 191 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1877_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1878" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1878.svg" id="u1878_img" class="img generatedImage" viewbox="0 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1878_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1879" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1879.svg" id="u1879_img" class="img generatedImage" viewbox="118 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1879_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1880" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1880.svg" id="u1880_img" class="img generatedImage" viewbox="236 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1880_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1881" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1881.svg" id="u1881_img" class="img generatedImage" viewbox="354 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1881_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1882" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1882.svg" id="u1882_img" class="img generatedImage" viewbox="472 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1882_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1883" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1883.svg" id="u1883_img" class="img generatedImage" viewbox="590 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1883_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1884" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1884.svg" id="u1884_img" class="img generatedImage" viewbox="708 226 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1884_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1885" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1885.svg" id="u1885_img" class="img generatedImage" viewbox="826 226 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1885_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1886" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1886.svg" id="u1886_img" class="img generatedImage" viewbox="0 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1886_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1887" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1887.svg" id="u1887_img" class="img generatedImage" viewbox="118 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1887_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1888" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1888.svg" id="u1888_img" class="img generatedImage" viewbox="236 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1888_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1889" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1889.svg" id="u1889_img" class="img generatedImage" viewbox="354 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1889_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1890" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1890.svg" id="u1890_img" class="img generatedImage" viewbox="472 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1890_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1891" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1891.svg" id="u1891_img" class="img generatedImage" viewbox="590 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1891_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1892" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1892.svg" id="u1892_img" class="img generatedImage" viewbox="708 261 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1892_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1893" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1893.svg" id="u1893_img" class="img generatedImage" viewbox="826 261 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1893_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1894" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1894.svg" id="u1894_img" class="img generatedImage" viewbox="0 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1894_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1895" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1895.svg" id="u1895_img" class="img generatedImage" viewbox="118 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1895_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1896" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1896.svg" id="u1896_img" class="img generatedImage" viewbox="236 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1896_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1897" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1897.svg" id="u1897_img" class="img generatedImage" viewbox="354 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1897_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1898" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1898.svg" id="u1898_img" class="img generatedImage" viewbox="472 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1898_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1899" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1899.svg" id="u1899_img" class="img generatedImage" viewbox="590 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1899_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1900" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1900.svg" id="u1900_img" class="img generatedImage" viewbox="708 296 118 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1900_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1901" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1901.svg" id="u1901_img" class="img generatedImage" viewbox="826 296 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1901_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1902" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1902.svg" id="u1902_img" class="img generatedImage" viewbox="0 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1902_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1903" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1903.svg" id="u1903_img" class="img generatedImage" viewbox="118 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1903_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1904" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1904.svg" id="u1904_img" class="img generatedImage" viewbox="236 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1904_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1905" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1905.svg" id="u1905_img" class="img generatedImage" viewbox="354 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1905_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1906" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1906.svg" id="u1906_img" class="img generatedImage" viewbox="472 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1906_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1907" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1907.svg" id="u1907_img" class="img generatedImage" viewbox="590 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1907_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1908" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1908.svg" id="u1908_img" class="img generatedImage" viewbox="708 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1908_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u1909" class="ax_default table_cell1 transition">
- <svg data="images/智慧人员/u1909.svg" id="u1909_img" class="img generatedImage" viewbox="826 331 118 35">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u1909_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1910" class="ax_default" data-left="1155" data-top="888" data-width="51" data-height="40" layer-opacity="1">
- <!-- Unnamed (Shape) -->
- <div id="u1911" class="ax_default icon transition">
- <svg data="images/智慧人员/u1911.svg" id="u1911_img" class="img generatedImage">
- <defs>
- <pattern id="u1911_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1911_img_cl2822">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1155 -903 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1911_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1912" class="ax_default box_2 transition">
- <div id="u1912_div" class=""></div>
- <div id="u1912_text" class="text ">
- <p><span>关闭</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1913" class="ax_default" data-left="1069" data-top="1422" data-width="116" data-height="30" layer-opacity="1">
- <!-- 上一页 (Group) -->
- <div id="u1914" class="ax_default" data-label="上一页" data-left="1069" data-top="1422" data-width="31" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1915" class="ax_default box_1 transition">
- <div id="u1915_div" class=""></div>
- <div id="u1915_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1916" class="ax_default icon transition">
- <svg data="images/智慧人员/u1916.svg" id="u1916_img" class="img generatedImage">
- <defs>
- <pattern id="u1916_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1916_img_cl2823">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1081 -1430 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1916_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- 下一页 (Group) -->
- <div id="u1917" class="ax_default" data-label="下一页" data-left="1154" data-top="1422" data-width="31" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1918" class="ax_default box_1 transition">
- <div id="u1918_div" class=""></div>
- <div id="u1918_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u1919" class="ax_default icon transition">
- <svg data="images/智慧人员/u1919.svg" id="u1919_img" class="img generatedImage">
- <defs>
- <pattern id="u1919_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1919_img_cl2824">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1167 -1430 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u1919_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1920" class="ax_default box_1 transition">
- <div id="u1920_div" class=""></div>
- <div id="u1920_text" class="text ">
- <p><span style="color:rgba(245, 154, 35, 0.996078431372549);">10</span><span style="color:#FFFFFF;">/10</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1921" class="ax_default" data-left="1236" data-top="682" data-width="240" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1922" class="ax_default box_2 transition">
- <div id="u1922_div" class=""></div>
- <div id="u1922_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1923" class="ax_default image1 transition">
- <img id="u1923_img" class="img " src="images/智慧人员/u1742.svg"/>
- <div id="u1923_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1924" class="ax_default box_2 transition">
- <div id="u1924_div" class=""></div>
- <div id="u1924_text" class="text ">
- <p><span>登记姓名</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1925" class="ax_default box_2 transition">
- <div id="u1925_div" class=""></div>
- <div id="u1925_text" class="text ">
- <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1926" class="ax_default box_2 transition">
- <div id="u1926_div" class=""></div>
- <div id="u1926_text" class="text ">
- <p><span>敏感人员</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1927" class="ax_default" data-left="1242" data-top="272" data-width="240" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1928" class="ax_default box_2 transition">
- <div id="u1928_div" class=""></div>
- <div id="u1928_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1929" class="ax_default image1 transition">
- <img id="u1929_img" class="img " src="images/智慧人员/u1742.svg"/>
- <div id="u1929_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1930" class="ax_default box_2 transition">
- <div id="u1930_div" class=""></div>
- <div id="u1930_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1931" class="ax_default box_2 transition">
- <div id="u1931_div" class=""></div>
- <div id="u1931_text" class="text ">
- <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1932" class="ax_default box_2 transition">
- <div id="u1932_div" class=""></div>
- <div id="u1932_text" class="text ">
- <p><span>陌生人</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1933" class="ax_default box_2 transition">
- <div id="u1933_div" class=""></div>
- <div id="u1933_text" class="text ">
- <p><span>出</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1934" class="ax_default" data-left="1242" data-top="342" data-width="240" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1935" class="ax_default box_2 transition">
- <div id="u1935_div" class=""></div>
- <div id="u1935_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1936" class="ax_default image1 transition">
- <img id="u1936_img" class="img " src="images/智慧人员/u1742.svg"/>
- <div id="u1936_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1937" class="ax_default box_2 transition">
- <div id="u1937_div" class=""></div>
- <div id="u1937_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1938" class="ax_default box_2 transition">
- <div id="u1938_div" class=""></div>
- <div id="u1938_text" class="text ">
- <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1939" class="ax_default box_2 transition">
- <div id="u1939_div" class=""></div>
- <div id="u1939_text" class="text ">
- <p><span>陌生人</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1940" class="ax_default box_2 transition">
- <div id="u1940_div" class=""></div>
- <div id="u1940_text" class="text ">
- <p><span>出</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1941" class="ax_default" data-left="1242" data-top="412" data-width="240" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1942" class="ax_default box_2 transition">
- <div id="u1942_div" class=""></div>
- <div id="u1942_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u1943" class="ax_default image1 transition">
- <img id="u1943_img" class="img " src="images/智慧人员/u1742.svg"/>
- <div id="u1943_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1944" class="ax_default box_2 transition">
- <div id="u1944_div" class=""></div>
- <div id="u1944_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1945" class="ax_default box_2 transition">
- <div id="u1945_div" class=""></div>
- <div id="u1945_text" class="text ">
- <p><span>地点</span></p><p><span>日期时间时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1946" class="ax_default box_2 transition">
- <div id="u1946_div" class=""></div>
- <div id="u1946_text" class="text ">
- <p><span>陌生人</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1947" class="ax_default box_2 transition">
- <div id="u1947_div" class=""></div>
- <div id="u1947_text" class="text ">
- <p><span>出</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1948" class="ax_default" data-left="348" data-top="271" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1949" class="ax_default box_1 transition">
- <div id="u1949_div" class=""></div>
- <div id="u1949_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1950" class="ax_default box_2 transition">
- <div id="u1950_div" class=""></div>
- <div id="u1950_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1951" class="ax_default box_2 transition">
- <div id="u1951_div" class=""></div>
- <div id="u1951_text" class="text ">
- <p><span>住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1952" class="ax_default box_2 transition">
- <div id="u1952_div" class=""></div>
- <div id="u1952_text" class="text ">
- <p><span>(门禁)门禁点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1953" class="ax_default box_2 transition">
- <div id="u1953_div" class=""></div>
- <div id="u1953_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1954" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1954.svg" id="u1954_img" class="img generatedImage">
- <defs>
- <pattern id="u1954_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1954_img_cl2825">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1954_img_cl2826">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -356 -282 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1954_text" class="text ">
- <p><span>人脸</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1955" class="ax_default" data-left="612" data-top="271" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1956" class="ax_default box_1 transition">
- <div id="u1956_div" class=""></div>
- <div id="u1956_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1957" class="ax_default box_2 transition">
- <div id="u1957_div" class=""></div>
- <div id="u1957_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1958" class="ax_default box_2 transition">
- <div id="u1958_div" class=""></div>
- <div id="u1958_text" class="text ">
- <p><span>(电梯)电梯点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1959" class="ax_default box_2 transition">
- <div id="u1959_div" class=""></div>
- <div id="u1959_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1960" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1960.svg" id="u1960_img" class="img generatedImage">
- <defs>
- <pattern id="u1960_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1960_img_cl2827">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1960_img_cl2828">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -620 -282 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1960_text" class="text ">
- <p><span>二维码</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1961" class="ax_default" data-left="876" data-top="271" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1962" class="ax_default box_1 transition">
- <div id="u1962_div" class=""></div>
- <div id="u1962_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1963" class="ax_default box_2 transition">
- <div id="u1963_div" class=""></div>
- <div id="u1963_text" class="text ">
- <p><span>李四</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1964" class="ax_default box_2 transition">
- <div id="u1964_div" class=""></div>
- <div id="u1964_text" class="text ">
- <p><span>物业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1965" class="ax_default box_2 transition">
- <div id="u1965_div" class=""></div>
- <div id="u1965_text" class="text ">
- <p><span>(监控)监控点</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1966" class="ax_default box_2 transition">
- <div id="u1966_div" class=""></div>
- <div id="u1966_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1967" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1967.svg" id="u1967_img" class="img generatedImage">
- <defs>
- <pattern id="u1967_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1967_img_cl2829">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1967_img_cl2830">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -884 -282 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1967_text" class="text ">
- <p><span>刷卡</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1968" class="ax_default" data-left="348" data-top="363" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1969" class="ax_default box_1 transition">
- <div id="u1969_div" class=""></div>
- <div id="u1969_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1970" class="ax_default box_2 transition">
- <div id="u1970_div" class=""></div>
- <div id="u1970_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1971" class="ax_default box_2 transition">
- <div id="u1971_div" class=""></div>
- <div id="u1971_text" class="text ">
- <p><span>住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1972" class="ax_default box_2 transition">
- <div id="u1972_div" class=""></div>
- <div id="u1972_text" class="text ">
- <p><span>(门禁)门禁点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1973" class="ax_default box_2 transition">
- <div id="u1973_div" class=""></div>
- <div id="u1973_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1974" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1974.svg" id="u1974_img" class="img generatedImage">
- <defs>
- <pattern id="u1974_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1974_img_cl2831">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1974_img_cl2832">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -356 -374 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1974_text" class="text ">
- <p><span>人脸</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1975" class="ax_default" data-left="612" data-top="363" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1976" class="ax_default box_1 transition">
- <div id="u1976_div" class=""></div>
- <div id="u1976_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1977" class="ax_default box_2 transition">
- <div id="u1977_div" class=""></div>
- <div id="u1977_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1978" class="ax_default box_2 transition">
- <div id="u1978_div" class=""></div>
- <div id="u1978_text" class="text ">
- <p><span>(电梯)电梯点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1979" class="ax_default box_2 transition">
- <div id="u1979_div" class=""></div>
- <div id="u1979_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1980" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1980.svg" id="u1980_img" class="img generatedImage">
- <defs>
- <pattern id="u1980_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1980_img_cl2833">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1980_img_cl2834">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -620 -374 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1980_text" class="text ">
- <p><span>二维码</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1981" class="ax_default" data-left="876" data-top="363" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1982" class="ax_default box_1 transition">
- <div id="u1982_div" class=""></div>
- <div id="u1982_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1983" class="ax_default box_2 transition">
- <div id="u1983_div" class=""></div>
- <div id="u1983_text" class="text ">
- <p><span>李四</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1984" class="ax_default box_2 transition">
- <div id="u1984_div" class=""></div>
- <div id="u1984_text" class="text ">
- <p><span>物业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1985" class="ax_default box_2 transition">
- <div id="u1985_div" class=""></div>
- <div id="u1985_text" class="text ">
- <p><span>(监控)监控点</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1986" class="ax_default box_2 transition">
- <div id="u1986_div" class=""></div>
- <div id="u1986_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1987" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1987.svg" id="u1987_img" class="img generatedImage">
- <defs>
- <pattern id="u1987_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1987_img_cl2835">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1987_img_cl2836">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -884 -374 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1987_text" class="text ">
- <p><span>刷卡</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1988" class="ax_default" data-left="348" data-top="455" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1989" class="ax_default box_1 transition">
- <div id="u1989_div" class=""></div>
- <div id="u1989_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1990" class="ax_default box_2 transition">
- <div id="u1990_div" class=""></div>
- <div id="u1990_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1991" class="ax_default box_2 transition">
- <div id="u1991_div" class=""></div>
- <div id="u1991_text" class="text ">
- <p><span>住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1992" class="ax_default box_2 transition">
- <div id="u1992_div" class=""></div>
- <div id="u1992_text" class="text ">
- <p><span>(门禁)门禁点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1993" class="ax_default box_2 transition">
- <div id="u1993_div" class=""></div>
- <div id="u1993_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u1994" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u1994.svg" id="u1994_img" class="img generatedImage">
- <defs>
- <pattern id="u1994_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u1994_img_cl2837">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u1994_img_cl2838">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -356 -466 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u1994_text" class="text ">
- <p><span>人脸</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u1995" class="ax_default" data-left="612" data-top="455" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u1996" class="ax_default box_1 transition">
- <div id="u1996_div" class=""></div>
- <div id="u1996_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1997" class="ax_default box_2 transition">
- <div id="u1997_div" class=""></div>
- <div id="u1997_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1998" class="ax_default box_2 transition">
- <div id="u1998_div" class=""></div>
- <div id="u1998_text" class="text ">
- <p><span>(电梯)电梯点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u1999" class="ax_default box_2 transition">
- <div id="u1999_div" class=""></div>
- <div id="u1999_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u2000" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u2000.svg" id="u2000_img" class="img generatedImage">
- <defs>
- <pattern id="u2000_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u2000_img_cl2839">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u2000_img_cl2840">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -620 -466 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u2000_text" class="text ">
- <p><span>二维码</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u2001" class="ax_default" data-left="876" data-top="455" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u2002" class="ax_default box_1 transition">
- <div id="u2002_div" class=""></div>
- <div id="u2002_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2003" class="ax_default box_2 transition">
- <div id="u2003_div" class=""></div>
- <div id="u2003_text" class="text ">
- <p><span>李四</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2004" class="ax_default box_2 transition">
- <div id="u2004_div" class=""></div>
- <div id="u2004_text" class="text ">
- <p><span>物业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2005" class="ax_default box_2 transition">
- <div id="u2005_div" class=""></div>
- <div id="u2005_text" class="text ">
- <p><span>(监控)监控点</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2006" class="ax_default box_2 transition">
- <div id="u2006_div" class=""></div>
- <div id="u2006_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u2007" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u2007.svg" id="u2007_img" class="img generatedImage">
- <defs>
- <pattern id="u2007_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u2007_img_cl2841">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u2007_img_cl2842">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -884 -466 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u2007_text" class="text ">
- <p><span>刷卡</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u2008" class="ax_default" data-left="348" data-top="547" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u2009" class="ax_default box_1 transition">
- <div id="u2009_div" class=""></div>
- <div id="u2009_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2010" class="ax_default box_2 transition">
- <div id="u2010_div" class=""></div>
- <div id="u2010_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2011" class="ax_default box_2 transition">
- <div id="u2011_div" class=""></div>
- <div id="u2011_text" class="text ">
- <p><span>住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2012" class="ax_default box_2 transition">
- <div id="u2012_div" class=""></div>
- <div id="u2012_text" class="text ">
- <p><span>(门禁)门禁点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2013" class="ax_default box_2 transition">
- <div id="u2013_div" class=""></div>
- <div id="u2013_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u2014" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u2014.svg" id="u2014_img" class="img generatedImage">
- <defs>
- <pattern id="u2014_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u2014_img_cl2843">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u2014_img_cl2844">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -356 -558 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u2014_text" class="text ">
- <p><span>人脸</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u2015" class="ax_default" data-left="612" data-top="547" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u2016" class="ax_default box_1 transition">
- <div id="u2016_div" class=""></div>
- <div id="u2016_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2017" class="ax_default box_2 transition">
- <div id="u2017_div" class=""></div>
- <div id="u2017_text" class="text ">
- <p><span>未登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2018" class="ax_default box_2 transition">
- <div id="u2018_div" class=""></div>
- <div id="u2018_text" class="text ">
- <p><span>(电梯)电梯点名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2019" class="ax_default box_2 transition">
- <div id="u2019_div" class=""></div>
- <div id="u2019_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u2020" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u2020.svg" id="u2020_img" class="img generatedImage">
- <defs>
- <pattern id="u2020_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u2020_img_cl2845">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u2020_img_cl2846">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -620 -558 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u2020_text" class="text ">
- <p><span>二维码</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u2021" class="ax_default" data-left="876" data-top="547" data-width="254" data-height="82" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u2022" class="ax_default box_1 transition">
- <div id="u2022_div" class=""></div>
- <div id="u2022_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2023" class="ax_default box_2 transition">
- <div id="u2023_div" class=""></div>
- <div id="u2023_text" class="text ">
- <p><span>李四</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2024" class="ax_default box_2 transition">
- <div id="u2024_div" class=""></div>
- <div id="u2024_text" class="text ">
- <p><span>物业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2025" class="ax_default box_2 transition">
- <div id="u2025_div" class=""></div>
- <div id="u2025_text" class="text ">
- <p><span>(监控)监控点</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u2026" class="ax_default box_2 transition">
- <div id="u2026_div" class=""></div>
- <div id="u2026_text" class="text ">
- <p><span>通行时间年月日时分秒</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u2027" class="ax_default placeholder transition">
- <svg data="images/智慧人员/u2027.svg" id="u2027_img" class="img generatedImage">
- <defs>
- <pattern id="u2027_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u2027_img_cl2847">
- <path d="M 0 59 L 0 0 L 50 0 L 50 59 L 0 59 Z " fill-rule="evenodd" />
- </mask>
- <mask fill="white" id="u2027_img_cl2848">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -884 -558 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u2027_text" class="text ">
- <p><span>刷卡</span></p>
- </div>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|