装修工人.html 249 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>装修工人</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/装修工人/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/装修工人/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (客户管理端-一级) -->
  54. <div id="u14706" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u14707" class="ax_default box_2 transition">
  57. <div id="u14707_div" class=""></div>
  58. <div id="u14707_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u14708" class="ax_default label transition">
  64. <div id="u14708_div" class=""></div>
  65. <div id="u14708_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u14709" class="ax_default box_2 transition">
  71. <div id="u14709_div" class=""></div>
  72. <div id="u14709_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u14710" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u14711" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u14711_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u14711_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u14711_img_cl1">
  84. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
  85. </mask>
  86. </defs>
  87. <g transform="matrix(1 0 0 1 -19 -10 )">
  88. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
  89. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u14711_img_cl1)" />
  90. </g>
  91. </svg>
  92. <div id="u14711_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u14712" class="ax_default label transition">
  98. <div id="u14712_div" class=""></div>
  99. <div id="u14712_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u14713" class="ax_default box_2 transition">
  106. <div id="u14713_div" class=""></div>
  107. <div id="u14713_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u14714" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u14715" class="ax_default label transition">
  115. <div id="u14715_div" class=""></div>
  116. <div id="u14715_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u14716" class="ax_default placeholder transition">
  122. <svg data="images/装修工人/u14716.svg" id="u14716_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u14716_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u14716_img_cl1012">
  126. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  127. </mask>
  128. </defs>
  129. <g transform="matrix(1 0 0 1 -20 -175 )">
  130. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
  131. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u14716_img_cl1012)" />
  132. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
  133. </g>
  134. </svg>
  135. <div id="u14716_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u14717" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u14718" class="ax_default label transition">
  144. <div id="u14718_div" class=""></div>
  145. <div id="u14718_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u14719" class="ax_default placeholder transition">
  151. <svg data="images/装修工人/u14719.svg" id="u14719_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u14719_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u14719_img_cl1013">
  155. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  156. </mask>
  157. </defs>
  158. <g transform="matrix(1 0 0 1 -20 -385 )">
  159. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
  160. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u14719_img_cl1013)" />
  161. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
  162. </g>
  163. </svg>
  164. <div id="u14719_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u14720" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u14721" class="ax_default label transition">
  173. <div id="u14721_div" class=""></div>
  174. <div id="u14721_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u14722" class="ax_default placeholder transition">
  180. <svg data="images/装修工人/u14722.svg" id="u14722_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u14722_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u14722_img_cl1014">
  184. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  185. </mask>
  186. </defs>
  187. <g transform="matrix(1 0 0 1 -20 -137 )">
  188. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
  189. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u14722_img_cl1014)" />
  190. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
  191. </g>
  192. </svg>
  193. <div id="u14722_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u14723" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u14724" class="ax_default label transition">
  202. <div id="u14724_div" class=""></div>
  203. <div id="u14724_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u14725" class="ax_default placeholder transition">
  209. <svg data="images/装修工人/u14725.svg" id="u14725_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u14725_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u14725_img_cl1015">
  213. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  214. </mask>
  215. </defs>
  216. <g transform="matrix(1 0 0 1 -20 -427 )">
  217. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
  218. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u14725_img_cl1015)" />
  219. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
  220. </g>
  221. </svg>
  222. <div id="u14725_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u14726" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u14727" class="ax_default label transition">
  231. <div id="u14727_div" class=""></div>
  232. <div id="u14727_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u14728" class="ax_default placeholder transition">
  238. <svg data="images/装修工人/u14728.svg" id="u14728_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u14728_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u14728_img_cl1016">
  242. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  243. </mask>
  244. </defs>
  245. <g transform="matrix(1 0 0 1 -20 -301 )">
  246. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
  247. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u14728_img_cl1016)" />
  248. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
  249. </g>
  250. </svg>
  251. <div id="u14728_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u14729" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u14730" class="ax_default label transition">
  260. <div id="u14730_div" class=""></div>
  261. <div id="u14730_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u14731" class="ax_default placeholder transition">
  267. <svg data="images/装修工人/u14731.svg" id="u14731_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u14731_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u14731_img_cl1017">
  271. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  272. </mask>
  273. </defs>
  274. <g transform="matrix(1 0 0 1 -20 -217 )">
  275. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
  276. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u14731_img_cl1017)" />
  277. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
  278. </g>
  279. </svg>
  280. <div id="u14731_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u14732" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u14733" class="ax_default label transition">
  289. <div id="u14733_div" class=""></div>
  290. <div id="u14733_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u14734" class="ax_default placeholder transition">
  296. <svg data="images/装修工人/u14734.svg" id="u14734_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u14734_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u14734_img_cl1018">
  300. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  301. </mask>
  302. </defs>
  303. <g transform="matrix(1 0 0 1 -20 -343 )">
  304. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
  305. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u14734_img_cl1018)" />
  306. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
  307. </g>
  308. </svg>
  309. <div id="u14734_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u14735" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u14736" class="ax_default label transition">
  318. <div id="u14736_div" class=""></div>
  319. <div id="u14736_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u14737" class="ax_default placeholder transition">
  325. <svg data="images/装修工人/u14737.svg" id="u14737_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u14737_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u14737_img_cl1019">
  329. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  330. </mask>
  331. </defs>
  332. <g transform="matrix(1 0 0 1 -20 -469 )">
  333. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
  334. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u14737_img_cl1019)" />
  335. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
  336. </g>
  337. </svg>
  338. <div id="u14737_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u14738" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u14739" class="ax_default label transition">
  347. <div id="u14739_div" class=""></div>
  348. <div id="u14739_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u14740" class="ax_default placeholder transition">
  354. <svg data="images/装修工人/u14740.svg" id="u14740_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u14740_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u14740_img_cl1020">
  358. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  359. </mask>
  360. </defs>
  361. <g transform="matrix(1 0 0 1 -20 -1144 )">
  362. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
  363. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u14740_img_cl1020)" />
  364. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
  365. </g>
  366. </svg>
  367. <div id="u14740_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u14741" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u14742" class="ax_default label transition">
  376. <div id="u14742_div" class=""></div>
  377. <div id="u14742_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u14743" class="ax_default placeholder transition">
  383. <svg data="images/装修工人/u14743.svg" id="u14743_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u14743_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u14743_img_cl1021">
  387. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  388. </mask>
  389. </defs>
  390. <g transform="matrix(1 0 0 1 -20 -1186 )">
  391. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
  392. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u14743_img_cl1021)" />
  393. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
  394. </g>
  395. </svg>
  396. <div id="u14743_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u14744" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u14745" class="ax_default label transition">
  405. <div id="u14745_div" class=""></div>
  406. <div id="u14745_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u14746" class="ax_default placeholder transition">
  412. <svg data="images/装修工人/u14746.svg" id="u14746_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u14746_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u14746_img_cl1022">
  416. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  417. </mask>
  418. </defs>
  419. <g transform="matrix(1 0 0 1 -20 -259 )">
  420. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
  421. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u14746_img_cl1022)" />
  422. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
  423. </g>
  424. </svg>
  425. <div id="u14746_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u14747" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u14748" class="ax_default droplist transition">
  434. <div id="u14748_div" class=""></div>
  435. <select id="u14748_input" class="u14748_input">
  436. <option class="u14748_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u14749" class="ax_default placeholder transition">
  441. <svg data="images/装修工人/u14749.svg" id="u14749_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u14749_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u14749_img_cl1023">
  445. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  446. </mask>
  447. </defs>
  448. <g transform="matrix(1 0 0 1 -1194 -14 )">
  449. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
  450. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u14749_img_cl1023)" />
  451. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
  452. </g>
  453. </svg>
  454. <div id="u14749_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u14750" class="ax_default label transition">
  460. <div id="u14750_div" class=""></div>
  461. <div id="u14750_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u14751" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u14751_img" class="img generatedImage">
  468. <g transform="matrix(1 0 0 1 -1452 -19 )">
  469. <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
  470. </g>
  471. </svg>
  472. <div id="u14751_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u14752" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u14753" class="ax_default label transition">
  481. <div id="u14753_div" class=""></div>
  482. <div id="u14753_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u14754" class="ax_default placeholder transition">
  488. <svg data="images/装修工人/u14754.svg" id="u14754_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u14754_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u14754_img_cl1024">
  492. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  493. </mask>
  494. </defs>
  495. <g transform="matrix(1 0 0 1 -20 -1081 )">
  496. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
  497. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u14754_img_cl1024)" />
  498. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
  499. </g>
  500. </svg>
  501. <div id="u14754_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u14755" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u14755_img" class="img generatedImage">
  509. <g transform="matrix(1 0 0 1 -20 -1123 )">
  510. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  511. </g>
  512. </svg>
  513. <div id="u14755_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u14756" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u14756_img" class="img generatedImage">
  520. <g transform="matrix(1 0 0 1 -20 -1123 )">
  521. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  522. </g>
  523. </svg>
  524. <div id="u14756_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u14757" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u14757_img" class="img generatedImage">
  531. <g transform="matrix(1 0 0 1 -20 -112 )">
  532. <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
  533. </g>
  534. </svg>
  535. <div id="u14757_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u14758" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u14759" class="ax_default label transition">
  543. <div id="u14759_div" class=""></div>
  544. <div id="u14759_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u14760" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u14760_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u14760_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u14760_img_cl15">
  554. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
  555. </mask>
  556. </defs>
  557. <g transform="matrix(1 0 0 1 -20 -75 )">
  558. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
  559. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u14760_img_cl15)" />
  560. <path d="M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u14760_img_cl15)" />
  561. </g>
  562. </svg>
  563. <div id="u14760_text" class="text " style="display:none; visibility: hidden">
  564. <p></p>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <!-- Unnamed (Rectangle) -->
  570. <div id="u14761" class="ax_default box_2 transition">
  571. <div id="u14761_div" class=""></div>
  572. <div id="u14761_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Group) -->
  577. <div id="u14762" class="ax_default" data-left="350" data-top="234" data-width="130" data-height="30" layer-opacity="1">
  578. <!-- Unnamed (Rectangle) -->
  579. <div id="u14763" class="ax_default box_1 transition">
  580. <div id="u14763_div" class=""></div>
  581. <div id="u14763_text" class="text ">
  582. <p><span>搜索</span></p>
  583. </div>
  584. </div>
  585. <!-- Unnamed (Rectangle) -->
  586. <div id="u14764" class="ax_default box_1 transition">
  587. <div id="u14764_div" class=""></div>
  588. <div id="u14764_text" class="text ">
  589. <p><span>重置</span></p>
  590. </div>
  591. </div>
  592. </div>
  593. <!-- Unnamed (Group) -->
  594. <div id="u14765" class="ax_default" data-left="800" data-top="194" data-width="140" data-height="30" layer-opacity="1">
  595. <!-- Unnamed (Rectangle) -->
  596. <div id="u14766" class="ax_default box_1 transition">
  597. <div id="u14766_div" class=""></div>
  598. <div id="u14766_text" class="text " style="display:none; visibility: hidden">
  599. <p></p>
  600. </div>
  601. </div>
  602. <!-- Unnamed (Droplist) -->
  603. <div id="u14767" class="ax_default droplist transition">
  604. <div id="u14767_div" class=""></div>
  605. <select id="u14767_input" class="u14767_input">
  606. <option class="u14767_input_option" value="性别">性别</option>
  607. </select>
  608. </div>
  609. </div>
  610. <!-- Unnamed (Group) -->
  611. <div id="u14768" class="ax_default" data-left="950" data-top="194" data-width="140" data-height="30" layer-opacity="1">
  612. <!-- Unnamed (Rectangle) -->
  613. <div id="u14769" class="ax_default box_1 transition">
  614. <div id="u14769_div" class=""></div>
  615. <div id="u14769_text" class="text " style="display:none; visibility: hidden">
  616. <p></p>
  617. </div>
  618. </div>
  619. <!-- Unnamed (Droplist) -->
  620. <div id="u14770" class="ax_default droplist transition">
  621. <div id="u14770_div" class=""></div>
  622. <select id="u14770_input" class="u14770_input">
  623. <option class="u14770_input_option" value="授权状态">授权状态</option>
  624. </select>
  625. </div>
  626. </div>
  627. <!-- Unnamed (Group) -->
  628. <div id="u14771" class="ax_default" data-left="500" data-top="194" data-width="140" data-height="30" layer-opacity="1">
  629. <!-- Unnamed (Rectangle) -->
  630. <div id="u14772" class="ax_default shape transition">
  631. <div id="u14772_div" class=""></div>
  632. <div id="u14772_text" class="text " style="display:none; visibility: hidden">
  633. <p></p>
  634. </div>
  635. </div>
  636. <!-- 选项内容 (Text field) -->
  637. <div id="u14773" class="ax_default text_field transition" data-label="选项内容">
  638. <div id="u14773_div" class=""></div>
  639. <input id="u14773_input" type="text" value="" class="u14773_input"/>
  640. </div>
  641. </div>
  642. <!-- Unnamed (Group) -->
  643. <div id="u14774" class="ax_default" data-left="350" data-top="194" data-width="140" data-height="30" layer-opacity="1">
  644. <!-- Unnamed (Rectangle) -->
  645. <div id="u14775" class="ax_default box_1 transition">
  646. <div id="u14775_div" class=""></div>
  647. <div id="u14775_text" class="text " style="display:none; visibility: hidden">
  648. <p></p>
  649. </div>
  650. </div>
  651. <!-- Unnamed (Droplist) -->
  652. <div id="u14776" class="ax_default droplist transition">
  653. <div id="u14776_div" class=""></div>
  654. <select id="u14776_input" class="u14776_input">
  655. <option class="u14776_input_option" value="证件类型">证件类型</option>
  656. <option class="u14776_input_option" value="身份证">身份证</option>
  657. <option class="u14776_input_option" value="营业执照">营业执照</option>
  658. </select>
  659. </div>
  660. </div>
  661. <!-- Unnamed (Rectangle) -->
  662. <div id="u14777" class="ax_default box_1 transition">
  663. <div id="u14777_div" class=""></div>
  664. <div id="u14777_text" class="text ">
  665. <p><span>设置</span></p>
  666. </div>
  667. </div>
  668. <!-- Unnamed (Group) -->
  669. <div id="u14778" class="ax_default" data-left="1100" data-top="194" data-width="140" data-height="30" layer-opacity="1">
  670. <!-- Unnamed (Rectangle) -->
  671. <div id="u14779" class="ax_default box_1 transition">
  672. <div id="u14779_div" class=""></div>
  673. <div id="u14779_text" class="text " style="display:none; visibility: hidden">
  674. <p></p>
  675. </div>
  676. </div>
  677. <!-- Unnamed (Droplist) -->
  678. <div id="u14780" class="ax_default droplist transition">
  679. <div id="u14780_div" class=""></div>
  680. <select id="u14780_input" class="u14780_input">
  681. <option class="u14780_input_option" value="授权有效期间">授权有效期间</option>
  682. </select>
  683. </div>
  684. </div>
  685. <!-- Unnamed (客户-人员中心) -->
  686. <div id="u14781" class="nopointer ax_default">
  687. <!-- Unnamed (Group) -->
  688. <div id="u14782" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
  689. <!-- Unnamed (Rectangle) -->
  690. <div id="u14783" class="ax_default box_2 transition">
  691. <div id="u14783_div" class=""></div>
  692. <div id="u14783_text" class="text " style="display:none; visibility: hidden">
  693. <p></p>
  694. </div>
  695. </div>
  696. <!-- Unnamed (Rectangle) -->
  697. <div id="u14784" class="ax_default label transition">
  698. <div id="u14784_div" class=""></div>
  699. <div id="u14784_text" class="text ">
  700. <p><span>客户中心</span></p>
  701. </div>
  702. </div>
  703. <!-- Unnamed (Rectangle) -->
  704. <div id="u14785" class="ax_default label transition">
  705. <div id="u14785_div" class=""></div>
  706. <div id="u14785_text" class="text ">
  707. <p><span>入驻企业</span></p>
  708. </div>
  709. </div>
  710. <!-- Unnamed (Rectangle) -->
  711. <div id="u14786" class="ax_default label transition">
  712. <div id="u14786_div" class=""></div>
  713. <div id="u14786_text" class="text ">
  714. <p><span>入驻机构</span></p>
  715. </div>
  716. </div>
  717. <!-- Unnamed (Rectangle) -->
  718. <div id="u14787" class="ax_default label transition">
  719. <div id="u14787_div" class=""></div>
  720. <div id="u14787_text" class="text ">
  721. <p><span>人员登记</span></p>
  722. </div>
  723. </div>
  724. <!-- Unnamed (Rectangle) -->
  725. <div id="u14788" class="ax_default label transition">
  726. <div id="u14788_div" class=""></div>
  727. <div id="u14788_text" class="text ">
  728. <p><span>房屋住户</span></p>
  729. </div>
  730. </div>
  731. <!-- Unnamed (Line) -->
  732. <div id="u14789" class="ax_default line1 transition">
  733. <svg data="images/项目列表/u4863.svg" id="u14789_img" class="img generatedImage">
  734. <g transform="matrix(1 0 0 1 -1 -122 )">
  735. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  736. </g>
  737. </svg>
  738. <div id="u14789_text" class="text " style="display:none; visibility: hidden">
  739. <p></p>
  740. </div>
  741. </div>
  742. <!-- Unnamed (Rectangle) -->
  743. <div id="u14790" class="ax_default label transition">
  744. <div id="u14790_div" class=""></div>
  745. <div id="u14790_text" class="text ">
  746. <p><span>企业员工</span></p>
  747. </div>
  748. </div>
  749. <!-- Unnamed (Rectangle) -->
  750. <div id="u14791" class="ax_default label transition">
  751. <div id="u14791_div" class=""></div>
  752. <div id="u14791_text" class="text ">
  753. <p><span>业主管理</span></p>
  754. </div>
  755. </div>
  756. <!-- Unnamed (Line) -->
  757. <div id="u14792" class="ax_default line1 transition">
  758. <svg data="images/项目列表/u4863.svg" id="u14792_img" class="img generatedImage">
  759. <g transform="matrix(1 0 0 1 -1 -122 )">
  760. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  761. </g>
  762. </svg>
  763. <div id="u14792_text" class="text " style="display:none; visibility: hidden">
  764. <p></p>
  765. </div>
  766. </div>
  767. <!-- Unnamed (Rectangle) -->
  768. <div id="u14793" class="ax_default label transition">
  769. <div id="u14793_div" class=""></div>
  770. <div id="u14793_text" class="text ">
  771. <p><span>房屋业主</span></p>
  772. </div>
  773. </div>
  774. <!-- Unnamed (Rectangle) -->
  775. <div id="u14794" class="ax_default label transition">
  776. <div id="u14794_div" class=""></div>
  777. <div id="u14794_text" class="text ">
  778. <p><span>车位业主</span></p>
  779. </div>
  780. </div>
  781. <!-- Unnamed (Rectangle) -->
  782. <div id="u14795" class="ax_default label transition">
  783. <div id="u14795_div" class=""></div>
  784. <div id="u14795_text" class="text ">
  785. <p><span>认证设置</span></p>
  786. </div>
  787. </div>
  788. <!-- Unnamed (Rectangle) -->
  789. <div id="u14796" class="ax_default label transition">
  790. <div id="u14796_div" class=""></div>
  791. <div id="u14796_text" class="text ">
  792. <p><span>房屋业主认证</span></p>
  793. </div>
  794. </div>
  795. <!-- Unnamed (Rectangle) -->
  796. <div id="u14797" class="ax_default label transition">
  797. <div id="u14797_div" class=""></div>
  798. <div id="u14797_text" class="text ">
  799. <p><span>身份认证</span></p>
  800. </div>
  801. </div>
  802. <!-- Unnamed (Line) -->
  803. <div id="u14798" class="ax_default line1 transition">
  804. <svg data="images/项目列表/u4863.svg" id="u14798_img" class="img generatedImage">
  805. <g transform="matrix(1 0 0 1 -1 -122 )">
  806. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  807. </g>
  808. </svg>
  809. <div id="u14798_text" class="text " style="display:none; visibility: hidden">
  810. <p></p>
  811. </div>
  812. </div>
  813. <!-- Unnamed (Rectangle) -->
  814. <div id="u14799" class="ax_default label transition">
  815. <div id="u14799_div" class=""></div>
  816. <div id="u14799_text" class="text ">
  817. <p><span>房源住户认证</span></p>
  818. </div>
  819. </div>
  820. <!-- Unnamed (Rectangle) -->
  821. <div id="u14800" class="ax_default label transition">
  822. <div id="u14800_div" class=""></div>
  823. <div id="u14800_text" class="text ">
  824. <p><span>入驻企业认证</span></p>
  825. </div>
  826. </div>
  827. <!-- Unnamed (Rectangle) -->
  828. <div id="u14801" class="ax_default label transition">
  829. <div id="u14801_div" class=""></div>
  830. <div id="u14801_text" class="text ">
  831. <p><span>人员档案</span></p>
  832. </div>
  833. </div>
  834. <!-- Unnamed (Rectangle) -->
  835. <div id="u14802" class="ax_default label transition">
  836. <div id="u14802_div" class=""></div>
  837. <div id="u14802_text" class="text ">
  838. <p><span>客户档案</span></p>
  839. </div>
  840. </div>
  841. <!-- Unnamed (Line) -->
  842. <div id="u14803" class="ax_default line1 transition">
  843. <svg data="images/项目列表/u4863.svg" id="u14803_img" class="img generatedImage">
  844. <g transform="matrix(1 0 0 1 -1 -122 )">
  845. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  846. </g>
  847. </svg>
  848. <div id="u14803_text" class="text " style="display:none; visibility: hidden">
  849. <p></p>
  850. </div>
  851. </div>
  852. <!-- Unnamed (Rectangle) -->
  853. <div id="u14804" class="ax_default label transition">
  854. <div id="u14804_div" class=""></div>
  855. <div id="u14804_text" class="text ">
  856. <p><span>机构档案</span></p>
  857. </div>
  858. </div>
  859. <!-- Unnamed (Rectangle) -->
  860. <div id="u14805" class="ax_default label transition">
  861. <div id="u14805_div" class=""></div>
  862. <div id="u14805_text" class="text ">
  863. <p><span>物业人员认证</span></p>
  864. </div>
  865. </div>
  866. <!-- Unnamed (Rectangle) -->
  867. <div id="u14806" class="ax_default label transition">
  868. <div id="u14806_div" class=""></div>
  869. <div id="u14806_text" class="text ">
  870. <p><span>业主委员会</span></p>
  871. </div>
  872. </div>
  873. <!-- Unnamed (Rectangle) -->
  874. <div id="u14807" class="ax_default label transition">
  875. <div id="u14807_div" class=""></div>
  876. <div id="u14807_text" class="text ">
  877. <p><span>车位业主认证</span></p>
  878. </div>
  879. </div>
  880. <!-- Unnamed (Rectangle) -->
  881. <div id="u14808" class="ax_default label transition">
  882. <div id="u14808_div" class=""></div>
  883. <div id="u14808_text" class="text ">
  884. <p><span>物业员工</span></p>
  885. </div>
  886. </div>
  887. <!-- Unnamed (Rectangle) -->
  888. <div id="u14809" class="ax_default label transition">
  889. <div id="u14809_div" class=""></div>
  890. <div id="u14809_text" class="text ">
  891. <p><span>骑手快递员</span></p>
  892. </div>
  893. </div>
  894. <!-- Unnamed (Rectangle) -->
  895. <div id="u14810" class="ax_default label transition">
  896. <div id="u14810_div" class=""></div>
  897. <div id="u14810_text" class="text ">
  898. <p><span>装修工人</span></p>
  899. </div>
  900. </div>
  901. </div>
  902. </div>
  903. <!-- Unnamed (Rectangle) -->
  904. <div id="u14811" class="ax_default paragraph transition">
  905. <div id="u14811_div" class=""></div>
  906. <div id="u14811_text" class="text ">
  907. <p><span>通过确认的骑手快递员,默认授予相关门禁点的通行1个月的有效期;门禁点、有效期可前往「设置」进行修改。</span></p>
  908. </div>
  909. </div>
  910. <!-- Unnamed (Rectangle) -->
  911. <div id="u14812" class="ax_default paragraph transition">
  912. <div id="u14812_div" class=""></div>
  913. <div id="u14812_text" class="text ">
  914. <p><span>装修工人</span></p>
  915. </div>
  916. </div>
  917. <!-- Unnamed (Table) -->
  918. <div id="u14813" class="ax_default">
  919. <!-- Unnamed (Table cell) -->
  920. <div id="u14814" class="ax_default table_cell1 transition">
  921. <svg data="images/装修工人/u14814.svg" id="u14814_img" class="img generatedImage" viewbox="0 0 70 38">
  922. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  923. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  924. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  925. </svg>
  926. <div id="u14814_text" class="text ">
  927. <p><span>装修房屋</span></p>
  928. </div>
  929. </div>
  930. <!-- Unnamed (Table cell) -->
  931. <div id="u14815" class="ax_default table_cell1 transition">
  932. <svg data="images/装修工人/u14815.svg" id="u14815_img" class="img generatedImage" viewbox="70 0 60 38">
  933. <path d="M 1 1 L 60 1 L 60 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 70 0 )" class="fill" />
  934. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 0 )" class="stroke" />
  935. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 0 )" class="stroke" />
  936. </svg>
  937. <div id="u14815_text" class="text ">
  938. <p><span>业主</span></p>
  939. </div>
  940. </div>
  941. <!-- Unnamed (Table cell) -->
  942. <div id="u14816" class="ax_default table_cell1 transition">
  943. <svg data="images/装修工人/u14816.svg" id="u14816_img" class="img generatedImage" viewbox="130 0 70 38">
  944. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 130 0 )" class="fill" />
  945. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 0 )" class="stroke" />
  946. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 0 )" class="stroke" />
  947. </svg>
  948. <div id="u14816_text" class="text ">
  949. <p><span>业主手机号</span></p>
  950. </div>
  951. </div>
  952. <!-- Unnamed (Table cell) -->
  953. <div id="u14817" class="ax_default table_cell1 transition">
  954. <svg data="images/装修工人/u14817.svg" id="u14817_img" class="img generatedImage" viewbox="200 0 70 38">
  955. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 200 0 )" class="fill" />
  956. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 0 )" class="stroke" />
  957. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 0 )" class="stroke" />
  958. </svg>
  959. <div id="u14817_text" class="text ">
  960. <p><span>装修人员</span></p>
  961. </div>
  962. </div>
  963. <!-- Unnamed (Table cell) -->
  964. <div id="u14818" class="ax_default table_cell1 transition">
  965. <svg data="images/装修工人/u14818.svg" id="u14818_img" class="img generatedImage" viewbox="270 0 70 38">
  966. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 270 0 )" class="fill" />
  967. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 0 )" class="stroke" />
  968. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 0 )" class="stroke" />
  969. </svg>
  970. <div id="u14818_text" class="text ">
  971. <p><span>手机号码</span></p>
  972. </div>
  973. </div>
  974. <!-- Unnamed (Table cell) -->
  975. <div id="u14819" class="ax_default table_cell1 transition">
  976. <svg data="images/装修工人/u14819.svg" id="u14819_img" class="img generatedImage" viewbox="340 0 60 38">
  977. <path d="M 1 1 L 60 1 L 60 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 340 0 )" class="fill" />
  978. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 0 )" class="stroke" />
  979. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 0 )" class="stroke" />
  980. </svg>
  981. <div id="u14819_text" class="text ">
  982. <p><span>性别</span></p>
  983. </div>
  984. </div>
  985. <!-- Unnamed (Table cell) -->
  986. <div id="u14820" class="ax_default table_cell1 transition">
  987. <svg data="images/装修工人/u14820.svg" id="u14820_img" class="img generatedImage" viewbox="400 0 70 38">
  988. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 400 0 )" class="fill" />
  989. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 0 )" class="stroke" />
  990. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 0 )" class="stroke" />
  991. </svg>
  992. <div id="u14820_text" class="text ">
  993. <p><span>证件类型</span></p>
  994. </div>
  995. </div>
  996. <!-- Unnamed (Table cell) -->
  997. <div id="u14821" class="ax_default table_cell1 transition">
  998. <svg data="images/装修工人/u14821.svg" id="u14821_img" class="img generatedImage" viewbox="470 0 80 38">
  999. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 470 0 )" class="fill" />
  1000. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 0 )" class="stroke" />
  1001. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 0 )" class="stroke" />
  1002. </svg>
  1003. <div id="u14821_text" class="text ">
  1004. <p><span>证件号码</span></p>
  1005. </div>
  1006. </div>
  1007. <!-- Unnamed (Table cell) -->
  1008. <div id="u14822" class="ax_default table_cell1 transition">
  1009. <svg data="images/装修工人/u14822.svg" id="u14822_img" class="img generatedImage" viewbox="550 0 80 38">
  1010. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 550 0 )" class="fill" />
  1011. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 0 )" class="stroke" />
  1012. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 0 )" class="stroke" />
  1013. </svg>
  1014. <div id="u14822_text" class="text ">
  1015. <p><span>微信用户账号</span></p>
  1016. </div>
  1017. </div>
  1018. <!-- Unnamed (Table cell) -->
  1019. <div id="u14823" class="ax_default table_cell1 transition">
  1020. <svg data="images/装修工人/u14823.svg" id="u14823_img" class="img generatedImage" viewbox="630 0 80 38">
  1021. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 630 0 )" class="fill" />
  1022. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 0 )" class="stroke" />
  1023. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 0 )" class="stroke" />
  1024. </svg>
  1025. <div id="u14823_text" class="text ">
  1026. <p><span>登记车牌</span></p>
  1027. </div>
  1028. </div>
  1029. <!-- Unnamed (Table cell) -->
  1030. <div id="u14824" class="ax_default table_cell1 transition">
  1031. <svg data="images/装修工人/u14824.svg" id="u14824_img" class="img generatedImage" viewbox="710 0 80 38">
  1032. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 710 0 )" class="fill" />
  1033. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 0 )" class="stroke" />
  1034. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 0 )" class="stroke" />
  1035. </svg>
  1036. <div id="u14824_text" class="text ">
  1037. <p><span>授权范围</span></p>
  1038. </div>
  1039. </div>
  1040. <!-- Unnamed (Table cell) -->
  1041. <div id="u14825" class="ax_default table_cell1 transition">
  1042. <svg data="images/装修工人/u14825.svg" id="u14825_img" class="img generatedImage" viewbox="790 0 80 38">
  1043. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 790 0 )" class="fill" />
  1044. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 0 )" class="stroke" />
  1045. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 0 )" class="stroke" />
  1046. </svg>
  1047. <div id="u14825_text" class="text ">
  1048. <p><span>授权有效期</span></p>
  1049. </div>
  1050. </div>
  1051. <!-- Unnamed (Table cell) -->
  1052. <div id="u14826" class="ax_default table_cell1 transition">
  1053. <svg data="images/装修工人/u14826.svg" id="u14826_img" class="img generatedImage" viewbox="870 0 70 38">
  1054. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 870 0 )" class="fill" />
  1055. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 0 )" class="stroke" />
  1056. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 0 )" class="stroke" />
  1057. </svg>
  1058. <div id="u14826_text" class="text ">
  1059. <p><span>授权状态</span></p>
  1060. </div>
  1061. </div>
  1062. <!-- Unnamed (Table cell) -->
  1063. <div id="u14827" class="ax_default table_cell1 transition">
  1064. <svg data="images/装修工人/u14827.svg" id="u14827_img" class="img generatedImage" viewbox="940 0 72 38">
  1065. <path d="M 1 1 L 72 1 L 72 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 940 0 )" class="fill" />
  1066. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 0 )" class="stroke" />
  1067. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 0 )" class="stroke" />
  1068. </svg>
  1069. <div id="u14827_text" class="text ">
  1070. <p><span>登记时间</span></p>
  1071. </div>
  1072. </div>
  1073. <!-- Unnamed (Table cell) -->
  1074. <div id="u14828" class="ax_default table_cell1 transition">
  1075. <svg data="images/装修工人/u14828.svg" id="u14828_img" class="img generatedImage" viewbox="1012 0 70 38">
  1076. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1012 0 )" class="fill" />
  1077. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 0 )" class="stroke" />
  1078. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 0 )" class="stroke" />
  1079. </svg>
  1080. <div id="u14828_text" class="text ">
  1081. <p><span>确认人员</span></p>
  1082. </div>
  1083. </div>
  1084. <!-- Unnamed (Table cell) -->
  1085. <div id="u14829" class="ax_default table_cell1 transition">
  1086. <svg data="images/装修工人/u14829.svg" id="u14829_img" class="img generatedImage" viewbox="1082 0 70 38">
  1087. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1082 0 )" class="fill" />
  1088. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 0 )" class="stroke" />
  1089. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 0 )" class="stroke" />
  1090. </svg>
  1091. <div id="u14829_text" class="text ">
  1092. <p><span>确认时间</span></p>
  1093. </div>
  1094. </div>
  1095. <!-- Unnamed (Table cell) -->
  1096. <div id="u14830" class="ax_default table_cell1 transition">
  1097. <svg data="images/装修工人/u14830.svg" id="u14830_img" class="img generatedImage" viewbox="1152 0 66 38">
  1098. <path d="M 1 1 L 65 1 L 65 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1152 0 )" class="fill" />
  1099. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 0 )" class="stroke" />
  1100. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 0 )" class="stroke" />
  1101. <path d="M 65.5 1 L 65.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 0 )" class="stroke" />
  1102. </svg>
  1103. <div id="u14830_text" class="text ">
  1104. <p><span>操作</span></p>
  1105. </div>
  1106. </div>
  1107. <!-- Unnamed (Table cell) -->
  1108. <div id="u14831" class="ax_default table_cell1 transition">
  1109. <svg data="images/装修工人/u14831.svg" id="u14831_img" class="img generatedImage" viewbox="0 38 70 47">
  1110. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 38 )" class="fill" />
  1111. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 38 )" class="stroke" />
  1112. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 38 )" class="stroke" />
  1113. </svg>
  1114. <div id="u14831_text" class="text " style="display:none; visibility: hidden">
  1115. <p></p>
  1116. </div>
  1117. </div>
  1118. <!-- Unnamed (Table cell) -->
  1119. <div id="u14832" class="ax_default table_cell1 transition">
  1120. <svg data="images/装修工人/u14832.svg" id="u14832_img" class="img generatedImage" viewbox="70 38 60 47">
  1121. <path d="M 1 1 L 60 1 L 60 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 38 )" class="fill" />
  1122. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 38 )" class="stroke" />
  1123. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 38 )" class="stroke" />
  1124. </svg>
  1125. <div id="u14832_text" class="text " style="display:none; visibility: hidden">
  1126. <p></p>
  1127. </div>
  1128. </div>
  1129. <!-- Unnamed (Table cell) -->
  1130. <div id="u14833" class="ax_default table_cell1 transition">
  1131. <svg data="images/装修工人/u14833.svg" id="u14833_img" class="img generatedImage" viewbox="130 38 70 47">
  1132. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 38 )" class="fill" />
  1133. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 38 )" class="stroke" />
  1134. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 38 )" class="stroke" />
  1135. </svg>
  1136. <div id="u14833_text" class="text " style="display:none; visibility: hidden">
  1137. <p></p>
  1138. </div>
  1139. </div>
  1140. <!-- Unnamed (Table cell) -->
  1141. <div id="u14834" class="ax_default table_cell1 transition">
  1142. <svg data="images/装修工人/u14834.svg" id="u14834_img" class="img generatedImage" viewbox="200 38 70 47">
  1143. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 38 )" class="fill" />
  1144. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 38 )" class="stroke" />
  1145. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 38 )" class="stroke" />
  1146. </svg>
  1147. <div id="u14834_text" class="text " style="display:none; visibility: hidden">
  1148. <p></p>
  1149. </div>
  1150. </div>
  1151. <!-- Unnamed (Table cell) -->
  1152. <div id="u14835" class="ax_default table_cell1 transition">
  1153. <svg data="images/装修工人/u14835.svg" id="u14835_img" class="img generatedImage" viewbox="270 38 70 47">
  1154. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 38 )" class="fill" />
  1155. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 38 )" class="stroke" />
  1156. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 38 )" class="stroke" />
  1157. </svg>
  1158. <div id="u14835_text" class="text " style="display:none; visibility: hidden">
  1159. <p></p>
  1160. </div>
  1161. </div>
  1162. <!-- Unnamed (Table cell) -->
  1163. <div id="u14836" class="ax_default table_cell1 transition">
  1164. <svg data="images/装修工人/u14836.svg" id="u14836_img" class="img generatedImage" viewbox="340 38 60 47">
  1165. <path d="M 1 1 L 60 1 L 60 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 38 )" class="fill" />
  1166. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 38 )" class="stroke" />
  1167. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 38 )" class="stroke" />
  1168. </svg>
  1169. <div id="u14836_text" class="text " style="display:none; visibility: hidden">
  1170. <p></p>
  1171. </div>
  1172. </div>
  1173. <!-- Unnamed (Table cell) -->
  1174. <div id="u14837" class="ax_default table_cell1 transition">
  1175. <svg data="images/装修工人/u14837.svg" id="u14837_img" class="img generatedImage" viewbox="400 38 70 47">
  1176. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 38 )" class="fill" />
  1177. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 38 )" class="stroke" />
  1178. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 38 )" class="stroke" />
  1179. </svg>
  1180. <div id="u14837_text" class="text " style="display:none; visibility: hidden">
  1181. <p></p>
  1182. </div>
  1183. </div>
  1184. <!-- Unnamed (Table cell) -->
  1185. <div id="u14838" class="ax_default table_cell1 transition">
  1186. <svg data="images/装修工人/u14838.svg" id="u14838_img" class="img generatedImage" viewbox="470 38 80 47">
  1187. <path d="M 1 1 L 80 1 L 80 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 38 )" class="fill" />
  1188. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 38 )" class="stroke" />
  1189. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 38 )" class="stroke" />
  1190. </svg>
  1191. <div id="u14838_text" class="text " style="display:none; visibility: hidden">
  1192. <p></p>
  1193. </div>
  1194. </div>
  1195. <!-- Unnamed (Table cell) -->
  1196. <div id="u14839" class="ax_default table_cell1 transition">
  1197. <svg data="images/装修工人/u14839.svg" id="u14839_img" class="img generatedImage" viewbox="550 38 80 47">
  1198. <path d="M 1 1 L 80 1 L 80 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 38 )" class="fill" />
  1199. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 38 )" class="stroke" />
  1200. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 38 )" class="stroke" />
  1201. </svg>
  1202. <div id="u14839_text" class="text " style="display:none; visibility: hidden">
  1203. <p></p>
  1204. </div>
  1205. </div>
  1206. <!-- Unnamed (Table cell) -->
  1207. <div id="u14840" class="ax_default table_cell1 transition">
  1208. <svg data="images/装修工人/u14840.svg" id="u14840_img" class="img generatedImage" viewbox="630 38 80 47">
  1209. <path d="M 1 1 L 80 1 L 80 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 38 )" class="fill" />
  1210. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 38 )" class="stroke" />
  1211. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 38 )" class="stroke" />
  1212. </svg>
  1213. <div id="u14840_text" class="text " style="display:none; visibility: hidden">
  1214. <p></p>
  1215. </div>
  1216. </div>
  1217. <!-- Unnamed (Table cell) -->
  1218. <div id="u14841" class="ax_default table_cell1 transition">
  1219. <svg data="images/装修工人/u14841.svg" id="u14841_img" class="img generatedImage" viewbox="710 38 80 47">
  1220. <path d="M 1 1 L 80 1 L 80 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 38 )" class="fill" />
  1221. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 38 )" class="stroke" />
  1222. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 38 )" class="stroke" />
  1223. </svg>
  1224. <div id="u14841_text" class="text " style="display:none; visibility: hidden">
  1225. <p></p>
  1226. </div>
  1227. </div>
  1228. <!-- Unnamed (Table cell) -->
  1229. <div id="u14842" class="ax_default table_cell1 transition">
  1230. <svg data="images/装修工人/u14842.svg" id="u14842_img" class="img generatedImage" viewbox="790 38 80 47">
  1231. <path d="M 1 1 L 80 1 L 80 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 38 )" class="fill" />
  1232. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 38 )" class="stroke" />
  1233. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 38 )" class="stroke" />
  1234. </svg>
  1235. <div id="u14842_text" class="text " style="display:none; visibility: hidden">
  1236. <p></p>
  1237. </div>
  1238. </div>
  1239. <!-- Unnamed (Table cell) -->
  1240. <div id="u14843" class="ax_default table_cell1 transition">
  1241. <svg data="images/装修工人/u14843.svg" id="u14843_img" class="img generatedImage" viewbox="870 38 70 47">
  1242. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 38 )" class="fill" />
  1243. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 38 )" class="stroke" />
  1244. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 38 )" class="stroke" />
  1245. </svg>
  1246. <div id="u14843_text" class="text ">
  1247. <p><span>正常</span></p>
  1248. </div>
  1249. </div>
  1250. <!-- Unnamed (Table cell) -->
  1251. <div id="u14844" class="ax_default table_cell1 transition">
  1252. <svg data="images/装修工人/u14844.svg" id="u14844_img" class="img generatedImage" viewbox="940 38 72 47">
  1253. <path d="M 1 1 L 72 1 L 72 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 38 )" class="fill" />
  1254. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 38 )" class="stroke" />
  1255. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 38 )" class="stroke" />
  1256. </svg>
  1257. <div id="u14844_text" class="text " style="display:none; visibility: hidden">
  1258. <p></p>
  1259. </div>
  1260. </div>
  1261. <!-- Unnamed (Table cell) -->
  1262. <div id="u14845" class="ax_default table_cell1 transition">
  1263. <svg data="images/装修工人/u14845.svg" id="u14845_img" class="img generatedImage" viewbox="1012 38 70 47">
  1264. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 38 )" class="fill" />
  1265. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 38 )" class="stroke" />
  1266. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 38 )" class="stroke" />
  1267. </svg>
  1268. <div id="u14845_text" class="text " style="display:none; visibility: hidden">
  1269. <p></p>
  1270. </div>
  1271. </div>
  1272. <!-- Unnamed (Table cell) -->
  1273. <div id="u14846" class="ax_default table_cell1 transition">
  1274. <svg data="images/装修工人/u14846.svg" id="u14846_img" class="img generatedImage" viewbox="1082 38 70 47">
  1275. <path d="M 1 1 L 70 1 L 70 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 38 )" class="fill" />
  1276. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 38 )" class="stroke" />
  1277. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 38 )" class="stroke" />
  1278. </svg>
  1279. <div id="u14846_text" class="text " style="display:none; visibility: hidden">
  1280. <p></p>
  1281. </div>
  1282. </div>
  1283. <!-- Unnamed (Table cell) -->
  1284. <div id="u14847" class="ax_default table_cell1 transition">
  1285. <svg data="images/装修工人/u14847.svg" id="u14847_img" class="img generatedImage" viewbox="1152 38 66 47">
  1286. <path d="M 1 1 L 65 1 L 65 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 38 )" class="fill" />
  1287. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 38 )" class="stroke" />
  1288. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 38 )" class="stroke" />
  1289. <path d="M 65.5 1 L 65.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 38 )" class="stroke" />
  1290. </svg>
  1291. <div id="u14847_text" class="text ">
  1292. <p><span>通过&nbsp; 驳回</span></p>
  1293. </div>
  1294. </div>
  1295. <!-- Unnamed (Table cell) -->
  1296. <div id="u14848" class="ax_default table_cell1 transition">
  1297. <svg data="images/装修工人/u14848.svg" id="u14848_img" class="img generatedImage" viewbox="0 85 70 44">
  1298. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 85 )" class="fill" />
  1299. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 85 )" class="stroke" />
  1300. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 85 )" class="stroke" />
  1301. </svg>
  1302. <div id="u14848_text" class="text " style="display:none; visibility: hidden">
  1303. <p></p>
  1304. </div>
  1305. </div>
  1306. <!-- Unnamed (Table cell) -->
  1307. <div id="u14849" class="ax_default table_cell1 transition">
  1308. <svg data="images/装修工人/u14849.svg" id="u14849_img" class="img generatedImage" viewbox="70 85 60 44">
  1309. <path d="M 1 1 L 60 1 L 60 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 85 )" class="fill" />
  1310. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 85 )" class="stroke" />
  1311. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 85 )" class="stroke" />
  1312. </svg>
  1313. <div id="u14849_text" class="text " style="display:none; visibility: hidden">
  1314. <p></p>
  1315. </div>
  1316. </div>
  1317. <!-- Unnamed (Table cell) -->
  1318. <div id="u14850" class="ax_default table_cell1 transition">
  1319. <svg data="images/装修工人/u14850.svg" id="u14850_img" class="img generatedImage" viewbox="130 85 70 44">
  1320. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 85 )" class="fill" />
  1321. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 85 )" class="stroke" />
  1322. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 85 )" class="stroke" />
  1323. </svg>
  1324. <div id="u14850_text" class="text " style="display:none; visibility: hidden">
  1325. <p></p>
  1326. </div>
  1327. </div>
  1328. <!-- Unnamed (Table cell) -->
  1329. <div id="u14851" class="ax_default table_cell1 transition">
  1330. <svg data="images/装修工人/u14851.svg" id="u14851_img" class="img generatedImage" viewbox="200 85 70 44">
  1331. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 85 )" class="fill" />
  1332. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 85 )" class="stroke" />
  1333. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 85 )" class="stroke" />
  1334. </svg>
  1335. <div id="u14851_text" class="text " style="display:none; visibility: hidden">
  1336. <p></p>
  1337. </div>
  1338. </div>
  1339. <!-- Unnamed (Table cell) -->
  1340. <div id="u14852" class="ax_default table_cell1 transition">
  1341. <svg data="images/装修工人/u14852.svg" id="u14852_img" class="img generatedImage" viewbox="270 85 70 44">
  1342. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 85 )" class="fill" />
  1343. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 85 )" class="stroke" />
  1344. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 85 )" class="stroke" />
  1345. </svg>
  1346. <div id="u14852_text" class="text " style="display:none; visibility: hidden">
  1347. <p></p>
  1348. </div>
  1349. </div>
  1350. <!-- Unnamed (Table cell) -->
  1351. <div id="u14853" class="ax_default table_cell1 transition">
  1352. <svg data="images/装修工人/u14853.svg" id="u14853_img" class="img generatedImage" viewbox="340 85 60 44">
  1353. <path d="M 1 1 L 60 1 L 60 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 85 )" class="fill" />
  1354. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 85 )" class="stroke" />
  1355. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 85 )" class="stroke" />
  1356. </svg>
  1357. <div id="u14853_text" class="text " style="display:none; visibility: hidden">
  1358. <p></p>
  1359. </div>
  1360. </div>
  1361. <!-- Unnamed (Table cell) -->
  1362. <div id="u14854" class="ax_default table_cell1 transition">
  1363. <svg data="images/装修工人/u14854.svg" id="u14854_img" class="img generatedImage" viewbox="400 85 70 44">
  1364. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 85 )" class="fill" />
  1365. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 85 )" class="stroke" />
  1366. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 85 )" class="stroke" />
  1367. </svg>
  1368. <div id="u14854_text" class="text " style="display:none; visibility: hidden">
  1369. <p></p>
  1370. </div>
  1371. </div>
  1372. <!-- Unnamed (Table cell) -->
  1373. <div id="u14855" class="ax_default table_cell1 transition">
  1374. <svg data="images/装修工人/u14855.svg" id="u14855_img" class="img generatedImage" viewbox="470 85 80 44">
  1375. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 85 )" class="fill" />
  1376. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 85 )" class="stroke" />
  1377. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 85 )" class="stroke" />
  1378. </svg>
  1379. <div id="u14855_text" class="text " style="display:none; visibility: hidden">
  1380. <p></p>
  1381. </div>
  1382. </div>
  1383. <!-- Unnamed (Table cell) -->
  1384. <div id="u14856" class="ax_default table_cell1 transition">
  1385. <svg data="images/装修工人/u14856.svg" id="u14856_img" class="img generatedImage" viewbox="550 85 80 44">
  1386. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 85 )" class="fill" />
  1387. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 85 )" class="stroke" />
  1388. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 85 )" class="stroke" />
  1389. </svg>
  1390. <div id="u14856_text" class="text " style="display:none; visibility: hidden">
  1391. <p></p>
  1392. </div>
  1393. </div>
  1394. <!-- Unnamed (Table cell) -->
  1395. <div id="u14857" class="ax_default table_cell1 transition">
  1396. <svg data="images/装修工人/u14857.svg" id="u14857_img" class="img generatedImage" viewbox="630 85 80 44">
  1397. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 85 )" class="fill" />
  1398. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 85 )" class="stroke" />
  1399. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 85 )" class="stroke" />
  1400. </svg>
  1401. <div id="u14857_text" class="text " style="display:none; visibility: hidden">
  1402. <p></p>
  1403. </div>
  1404. </div>
  1405. <!-- Unnamed (Table cell) -->
  1406. <div id="u14858" class="ax_default table_cell1 transition">
  1407. <svg data="images/装修工人/u14858.svg" id="u14858_img" class="img generatedImage" viewbox="710 85 80 44">
  1408. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 85 )" class="fill" />
  1409. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 85 )" class="stroke" />
  1410. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 85 )" class="stroke" />
  1411. </svg>
  1412. <div id="u14858_text" class="text " style="display:none; visibility: hidden">
  1413. <p></p>
  1414. </div>
  1415. </div>
  1416. <!-- Unnamed (Table cell) -->
  1417. <div id="u14859" class="ax_default table_cell1 transition">
  1418. <svg data="images/装修工人/u14859.svg" id="u14859_img" class="img generatedImage" viewbox="790 85 80 44">
  1419. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 85 )" class="fill" />
  1420. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 85 )" class="stroke" />
  1421. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 85 )" class="stroke" />
  1422. </svg>
  1423. <div id="u14859_text" class="text " style="display:none; visibility: hidden">
  1424. <p></p>
  1425. </div>
  1426. </div>
  1427. <!-- Unnamed (Table cell) -->
  1428. <div id="u14860" class="ax_default table_cell1 transition">
  1429. <svg data="images/装修工人/u14860.svg" id="u14860_img" class="img generatedImage" viewbox="870 85 70 44">
  1430. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 85 )" class="fill" />
  1431. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 85 )" class="stroke" />
  1432. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 85 )" class="stroke" />
  1433. </svg>
  1434. <div id="u14860_text" class="text ">
  1435. <p><span>过期</span></p>
  1436. </div>
  1437. </div>
  1438. <!-- Unnamed (Table cell) -->
  1439. <div id="u14861" class="ax_default table_cell1 transition">
  1440. <svg data="images/装修工人/u14861.svg" id="u14861_img" class="img generatedImage" viewbox="940 85 72 44">
  1441. <path d="M 1 1 L 72 1 L 72 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 85 )" class="fill" />
  1442. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 85 )" class="stroke" />
  1443. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 85 )" class="stroke" />
  1444. </svg>
  1445. <div id="u14861_text" class="text " style="display:none; visibility: hidden">
  1446. <p></p>
  1447. </div>
  1448. </div>
  1449. <!-- Unnamed (Table cell) -->
  1450. <div id="u14862" class="ax_default table_cell1 transition">
  1451. <svg data="images/装修工人/u14862.svg" id="u14862_img" class="img generatedImage" viewbox="1012 85 70 44">
  1452. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 85 )" class="fill" />
  1453. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 85 )" class="stroke" />
  1454. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 85 )" class="stroke" />
  1455. </svg>
  1456. <div id="u14862_text" class="text " style="display:none; visibility: hidden">
  1457. <p></p>
  1458. </div>
  1459. </div>
  1460. <!-- Unnamed (Table cell) -->
  1461. <div id="u14863" class="ax_default table_cell1 transition">
  1462. <svg data="images/装修工人/u14863.svg" id="u14863_img" class="img generatedImage" viewbox="1082 85 70 44">
  1463. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 85 )" class="fill" />
  1464. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 85 )" class="stroke" />
  1465. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 85 )" class="stroke" />
  1466. </svg>
  1467. <div id="u14863_text" class="text " style="display:none; visibility: hidden">
  1468. <p></p>
  1469. </div>
  1470. </div>
  1471. <!-- Unnamed (Table cell) -->
  1472. <div id="u14864" class="ax_default table_cell1 transition">
  1473. <svg data="images/装修工人/u14864.svg" id="u14864_img" class="img generatedImage" viewbox="1152 85 66 44">
  1474. <path d="M 1 1 L 65 1 L 65 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 85 )" class="fill" />
  1475. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 85 )" class="stroke" />
  1476. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 85 )" class="stroke" />
  1477. <path d="M 65.5 1 L 65.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 85 )" class="stroke" />
  1478. </svg>
  1479. <div id="u14864_text" class="text ">
  1480. <p><span>通过&nbsp; 驳回</span></p>
  1481. </div>
  1482. </div>
  1483. <!-- Unnamed (Table cell) -->
  1484. <div id="u14865" class="ax_default table_cell1 transition">
  1485. <svg data="images/装修工人/u14865.svg" id="u14865_img" class="img generatedImage" viewbox="0 129 70 44">
  1486. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 129 )" class="fill" />
  1487. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 129 )" class="stroke" />
  1488. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 129 )" class="stroke" />
  1489. </svg>
  1490. <div id="u14865_text" class="text " style="display:none; visibility: hidden">
  1491. <p></p>
  1492. </div>
  1493. </div>
  1494. <!-- Unnamed (Table cell) -->
  1495. <div id="u14866" class="ax_default table_cell1 transition">
  1496. <svg data="images/装修工人/u14866.svg" id="u14866_img" class="img generatedImage" viewbox="70 129 60 44">
  1497. <path d="M 1 1 L 60 1 L 60 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 129 )" class="fill" />
  1498. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 129 )" class="stroke" />
  1499. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 129 )" class="stroke" />
  1500. </svg>
  1501. <div id="u14866_text" class="text " style="display:none; visibility: hidden">
  1502. <p></p>
  1503. </div>
  1504. </div>
  1505. <!-- Unnamed (Table cell) -->
  1506. <div id="u14867" class="ax_default table_cell1 transition">
  1507. <svg data="images/装修工人/u14867.svg" id="u14867_img" class="img generatedImage" viewbox="130 129 70 44">
  1508. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 129 )" class="fill" />
  1509. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 129 )" class="stroke" />
  1510. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 129 )" class="stroke" />
  1511. </svg>
  1512. <div id="u14867_text" class="text " style="display:none; visibility: hidden">
  1513. <p></p>
  1514. </div>
  1515. </div>
  1516. <!-- Unnamed (Table cell) -->
  1517. <div id="u14868" class="ax_default table_cell1 transition">
  1518. <svg data="images/装修工人/u14868.svg" id="u14868_img" class="img generatedImage" viewbox="200 129 70 44">
  1519. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 129 )" class="fill" />
  1520. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 129 )" class="stroke" />
  1521. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 129 )" class="stroke" />
  1522. </svg>
  1523. <div id="u14868_text" class="text " style="display:none; visibility: hidden">
  1524. <p></p>
  1525. </div>
  1526. </div>
  1527. <!-- Unnamed (Table cell) -->
  1528. <div id="u14869" class="ax_default table_cell1 transition">
  1529. <svg data="images/装修工人/u14869.svg" id="u14869_img" class="img generatedImage" viewbox="270 129 70 44">
  1530. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 129 )" class="fill" />
  1531. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 129 )" class="stroke" />
  1532. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 129 )" class="stroke" />
  1533. </svg>
  1534. <div id="u14869_text" class="text " style="display:none; visibility: hidden">
  1535. <p></p>
  1536. </div>
  1537. </div>
  1538. <!-- Unnamed (Table cell) -->
  1539. <div id="u14870" class="ax_default table_cell1 transition">
  1540. <svg data="images/装修工人/u14870.svg" id="u14870_img" class="img generatedImage" viewbox="340 129 60 44">
  1541. <path d="M 1 1 L 60 1 L 60 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 129 )" class="fill" />
  1542. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 129 )" class="stroke" />
  1543. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 129 )" class="stroke" />
  1544. </svg>
  1545. <div id="u14870_text" class="text " style="display:none; visibility: hidden">
  1546. <p></p>
  1547. </div>
  1548. </div>
  1549. <!-- Unnamed (Table cell) -->
  1550. <div id="u14871" class="ax_default table_cell1 transition">
  1551. <svg data="images/装修工人/u14871.svg" id="u14871_img" class="img generatedImage" viewbox="400 129 70 44">
  1552. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 129 )" class="fill" />
  1553. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 129 )" class="stroke" />
  1554. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 129 )" class="stroke" />
  1555. </svg>
  1556. <div id="u14871_text" class="text " style="display:none; visibility: hidden">
  1557. <p></p>
  1558. </div>
  1559. </div>
  1560. <!-- Unnamed (Table cell) -->
  1561. <div id="u14872" class="ax_default table_cell1 transition">
  1562. <svg data="images/装修工人/u14872.svg" id="u14872_img" class="img generatedImage" viewbox="470 129 80 44">
  1563. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 129 )" class="fill" />
  1564. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 129 )" class="stroke" />
  1565. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 129 )" class="stroke" />
  1566. </svg>
  1567. <div id="u14872_text" class="text " style="display:none; visibility: hidden">
  1568. <p></p>
  1569. </div>
  1570. </div>
  1571. <!-- Unnamed (Table cell) -->
  1572. <div id="u14873" class="ax_default table_cell1 transition">
  1573. <svg data="images/装修工人/u14873.svg" id="u14873_img" class="img generatedImage" viewbox="550 129 80 44">
  1574. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 129 )" class="fill" />
  1575. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 129 )" class="stroke" />
  1576. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 129 )" class="stroke" />
  1577. </svg>
  1578. <div id="u14873_text" class="text " style="display:none; visibility: hidden">
  1579. <p></p>
  1580. </div>
  1581. </div>
  1582. <!-- Unnamed (Table cell) -->
  1583. <div id="u14874" class="ax_default table_cell1 transition">
  1584. <svg data="images/装修工人/u14874.svg" id="u14874_img" class="img generatedImage" viewbox="630 129 80 44">
  1585. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 129 )" class="fill" />
  1586. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 129 )" class="stroke" />
  1587. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 129 )" class="stroke" />
  1588. </svg>
  1589. <div id="u14874_text" class="text " style="display:none; visibility: hidden">
  1590. <p></p>
  1591. </div>
  1592. </div>
  1593. <!-- Unnamed (Table cell) -->
  1594. <div id="u14875" class="ax_default table_cell1 transition">
  1595. <svg data="images/装修工人/u14875.svg" id="u14875_img" class="img generatedImage" viewbox="710 129 80 44">
  1596. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 129 )" class="fill" />
  1597. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 129 )" class="stroke" />
  1598. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 129 )" class="stroke" />
  1599. </svg>
  1600. <div id="u14875_text" class="text " style="display:none; visibility: hidden">
  1601. <p></p>
  1602. </div>
  1603. </div>
  1604. <!-- Unnamed (Table cell) -->
  1605. <div id="u14876" class="ax_default table_cell1 transition">
  1606. <svg data="images/装修工人/u14876.svg" id="u14876_img" class="img generatedImage" viewbox="790 129 80 44">
  1607. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 129 )" class="fill" />
  1608. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 129 )" class="stroke" />
  1609. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 129 )" class="stroke" />
  1610. </svg>
  1611. <div id="u14876_text" class="text " style="display:none; visibility: hidden">
  1612. <p></p>
  1613. </div>
  1614. </div>
  1615. <!-- Unnamed (Table cell) -->
  1616. <div id="u14877" class="ax_default table_cell1 transition">
  1617. <svg data="images/装修工人/u14877.svg" id="u14877_img" class="img generatedImage" viewbox="870 129 70 44">
  1618. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 129 )" class="fill" />
  1619. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 129 )" class="stroke" />
  1620. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 129 )" class="stroke" />
  1621. </svg>
  1622. <div id="u14877_text" class="text ">
  1623. <p><span>待确认</span></p>
  1624. </div>
  1625. </div>
  1626. <!-- Unnamed (Table cell) -->
  1627. <div id="u14878" class="ax_default table_cell1 transition">
  1628. <svg data="images/装修工人/u14878.svg" id="u14878_img" class="img generatedImage" viewbox="940 129 72 44">
  1629. <path d="M 1 1 L 72 1 L 72 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 129 )" class="fill" />
  1630. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 129 )" class="stroke" />
  1631. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 129 )" class="stroke" />
  1632. </svg>
  1633. <div id="u14878_text" class="text " style="display:none; visibility: hidden">
  1634. <p></p>
  1635. </div>
  1636. </div>
  1637. <!-- Unnamed (Table cell) -->
  1638. <div id="u14879" class="ax_default table_cell1 transition">
  1639. <svg data="images/装修工人/u14879.svg" id="u14879_img" class="img generatedImage" viewbox="1012 129 70 44">
  1640. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 129 )" class="fill" />
  1641. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 129 )" class="stroke" />
  1642. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 129 )" class="stroke" />
  1643. </svg>
  1644. <div id="u14879_text" class="text " style="display:none; visibility: hidden">
  1645. <p></p>
  1646. </div>
  1647. </div>
  1648. <!-- Unnamed (Table cell) -->
  1649. <div id="u14880" class="ax_default table_cell1 transition">
  1650. <svg data="images/装修工人/u14880.svg" id="u14880_img" class="img generatedImage" viewbox="1082 129 70 44">
  1651. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 129 )" class="fill" />
  1652. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 129 )" class="stroke" />
  1653. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 129 )" class="stroke" />
  1654. </svg>
  1655. <div id="u14880_text" class="text " style="display:none; visibility: hidden">
  1656. <p></p>
  1657. </div>
  1658. </div>
  1659. <!-- Unnamed (Table cell) -->
  1660. <div id="u14881" class="ax_default table_cell1 transition">
  1661. <svg data="images/装修工人/u14881.svg" id="u14881_img" class="img generatedImage" viewbox="1152 129 66 44">
  1662. <path d="M 1 1 L 65 1 L 65 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 129 )" class="fill" />
  1663. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 129 )" class="stroke" />
  1664. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 129 )" class="stroke" />
  1665. <path d="M 65.5 1 L 65.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 129 )" class="stroke" />
  1666. </svg>
  1667. <div id="u14881_text" class="text ">
  1668. <p><span style="color:#1890FF;">通过&nbsp; </span><span style="color:#D9001B;">驳回</span></p>
  1669. </div>
  1670. </div>
  1671. <!-- Unnamed (Table cell) -->
  1672. <div id="u14882" class="ax_default table_cell1 transition">
  1673. <svg data="images/装修工人/u14882.svg" id="u14882_img" class="img generatedImage" viewbox="0 173 70 44">
  1674. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 173 )" class="fill" />
  1675. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 173 )" class="stroke" />
  1676. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 173 )" class="stroke" />
  1677. </svg>
  1678. <div id="u14882_text" class="text " style="display:none; visibility: hidden">
  1679. <p></p>
  1680. </div>
  1681. </div>
  1682. <!-- Unnamed (Table cell) -->
  1683. <div id="u14883" class="ax_default table_cell1 transition">
  1684. <svg data="images/装修工人/u14883.svg" id="u14883_img" class="img generatedImage" viewbox="70 173 60 44">
  1685. <path d="M 1 1 L 60 1 L 60 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 173 )" class="fill" />
  1686. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 173 )" class="stroke" />
  1687. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 173 )" class="stroke" />
  1688. </svg>
  1689. <div id="u14883_text" class="text " style="display:none; visibility: hidden">
  1690. <p></p>
  1691. </div>
  1692. </div>
  1693. <!-- Unnamed (Table cell) -->
  1694. <div id="u14884" class="ax_default table_cell1 transition">
  1695. <svg data="images/装修工人/u14884.svg" id="u14884_img" class="img generatedImage" viewbox="130 173 70 44">
  1696. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 173 )" class="fill" />
  1697. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 173 )" class="stroke" />
  1698. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 173 )" class="stroke" />
  1699. </svg>
  1700. <div id="u14884_text" class="text " style="display:none; visibility: hidden">
  1701. <p></p>
  1702. </div>
  1703. </div>
  1704. <!-- Unnamed (Table cell) -->
  1705. <div id="u14885" class="ax_default table_cell1 transition">
  1706. <svg data="images/装修工人/u14885.svg" id="u14885_img" class="img generatedImage" viewbox="200 173 70 44">
  1707. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 173 )" class="fill" />
  1708. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 173 )" class="stroke" />
  1709. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 173 )" class="stroke" />
  1710. </svg>
  1711. <div id="u14885_text" class="text " style="display:none; visibility: hidden">
  1712. <p></p>
  1713. </div>
  1714. </div>
  1715. <!-- Unnamed (Table cell) -->
  1716. <div id="u14886" class="ax_default table_cell1 transition">
  1717. <svg data="images/装修工人/u14886.svg" id="u14886_img" class="img generatedImage" viewbox="270 173 70 44">
  1718. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 173 )" class="fill" />
  1719. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 173 )" class="stroke" />
  1720. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 173 )" class="stroke" />
  1721. </svg>
  1722. <div id="u14886_text" class="text " style="display:none; visibility: hidden">
  1723. <p></p>
  1724. </div>
  1725. </div>
  1726. <!-- Unnamed (Table cell) -->
  1727. <div id="u14887" class="ax_default table_cell1 transition">
  1728. <svg data="images/装修工人/u14887.svg" id="u14887_img" class="img generatedImage" viewbox="340 173 60 44">
  1729. <path d="M 1 1 L 60 1 L 60 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 173 )" class="fill" />
  1730. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 173 )" class="stroke" />
  1731. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 173 )" class="stroke" />
  1732. </svg>
  1733. <div id="u14887_text" class="text " style="display:none; visibility: hidden">
  1734. <p></p>
  1735. </div>
  1736. </div>
  1737. <!-- Unnamed (Table cell) -->
  1738. <div id="u14888" class="ax_default table_cell1 transition">
  1739. <svg data="images/装修工人/u14888.svg" id="u14888_img" class="img generatedImage" viewbox="400 173 70 44">
  1740. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 173 )" class="fill" />
  1741. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 173 )" class="stroke" />
  1742. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 173 )" class="stroke" />
  1743. </svg>
  1744. <div id="u14888_text" class="text " style="display:none; visibility: hidden">
  1745. <p></p>
  1746. </div>
  1747. </div>
  1748. <!-- Unnamed (Table cell) -->
  1749. <div id="u14889" class="ax_default table_cell1 transition">
  1750. <svg data="images/装修工人/u14889.svg" id="u14889_img" class="img generatedImage" viewbox="470 173 80 44">
  1751. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 173 )" class="fill" />
  1752. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 173 )" class="stroke" />
  1753. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 173 )" class="stroke" />
  1754. </svg>
  1755. <div id="u14889_text" class="text " style="display:none; visibility: hidden">
  1756. <p></p>
  1757. </div>
  1758. </div>
  1759. <!-- Unnamed (Table cell) -->
  1760. <div id="u14890" class="ax_default table_cell1 transition">
  1761. <svg data="images/装修工人/u14890.svg" id="u14890_img" class="img generatedImage" viewbox="550 173 80 44">
  1762. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 173 )" class="fill" />
  1763. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 173 )" class="stroke" />
  1764. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 173 )" class="stroke" />
  1765. </svg>
  1766. <div id="u14890_text" class="text " style="display:none; visibility: hidden">
  1767. <p></p>
  1768. </div>
  1769. </div>
  1770. <!-- Unnamed (Table cell) -->
  1771. <div id="u14891" class="ax_default table_cell1 transition">
  1772. <svg data="images/装修工人/u14891.svg" id="u14891_img" class="img generatedImage" viewbox="630 173 80 44">
  1773. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 173 )" class="fill" />
  1774. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 173 )" class="stroke" />
  1775. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 173 )" class="stroke" />
  1776. </svg>
  1777. <div id="u14891_text" class="text " style="display:none; visibility: hidden">
  1778. <p></p>
  1779. </div>
  1780. </div>
  1781. <!-- Unnamed (Table cell) -->
  1782. <div id="u14892" class="ax_default table_cell1 transition">
  1783. <svg data="images/装修工人/u14892.svg" id="u14892_img" class="img generatedImage" viewbox="710 173 80 44">
  1784. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 173 )" class="fill" />
  1785. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 173 )" class="stroke" />
  1786. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 173 )" class="stroke" />
  1787. </svg>
  1788. <div id="u14892_text" class="text " style="display:none; visibility: hidden">
  1789. <p></p>
  1790. </div>
  1791. </div>
  1792. <!-- Unnamed (Table cell) -->
  1793. <div id="u14893" class="ax_default table_cell1 transition">
  1794. <svg data="images/装修工人/u14893.svg" id="u14893_img" class="img generatedImage" viewbox="790 173 80 44">
  1795. <path d="M 1 1 L 80 1 L 80 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 173 )" class="fill" />
  1796. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 173 )" class="stroke" />
  1797. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 173 )" class="stroke" />
  1798. </svg>
  1799. <div id="u14893_text" class="text " style="display:none; visibility: hidden">
  1800. <p></p>
  1801. </div>
  1802. </div>
  1803. <!-- Unnamed (Table cell) -->
  1804. <div id="u14894" class="ax_default table_cell1 transition">
  1805. <svg data="images/装修工人/u14894.svg" id="u14894_img" class="img generatedImage" viewbox="870 173 70 44">
  1806. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 173 )" class="fill" />
  1807. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 173 )" class="stroke" />
  1808. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 173 )" class="stroke" />
  1809. </svg>
  1810. <div id="u14894_text" class="text ">
  1811. <p><span>驳回</span></p>
  1812. </div>
  1813. </div>
  1814. <!-- Unnamed (Table cell) -->
  1815. <div id="u14895" class="ax_default table_cell1 transition">
  1816. <svg data="images/装修工人/u14895.svg" id="u14895_img" class="img generatedImage" viewbox="940 173 72 44">
  1817. <path d="M 1 1 L 72 1 L 72 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 173 )" class="fill" />
  1818. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 173 )" class="stroke" />
  1819. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 173 )" class="stroke" />
  1820. </svg>
  1821. <div id="u14895_text" class="text " style="display:none; visibility: hidden">
  1822. <p></p>
  1823. </div>
  1824. </div>
  1825. <!-- Unnamed (Table cell) -->
  1826. <div id="u14896" class="ax_default table_cell1 transition">
  1827. <svg data="images/装修工人/u14896.svg" id="u14896_img" class="img generatedImage" viewbox="1012 173 70 44">
  1828. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 173 )" class="fill" />
  1829. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 173 )" class="stroke" />
  1830. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 173 )" class="stroke" />
  1831. </svg>
  1832. <div id="u14896_text" class="text " style="display:none; visibility: hidden">
  1833. <p></p>
  1834. </div>
  1835. </div>
  1836. <!-- Unnamed (Table cell) -->
  1837. <div id="u14897" class="ax_default table_cell1 transition">
  1838. <svg data="images/装修工人/u14897.svg" id="u14897_img" class="img generatedImage" viewbox="1082 173 70 44">
  1839. <path d="M 1 1 L 70 1 L 70 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 173 )" class="fill" />
  1840. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 173 )" class="stroke" />
  1841. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 173 )" class="stroke" />
  1842. </svg>
  1843. <div id="u14897_text" class="text " style="display:none; visibility: hidden">
  1844. <p></p>
  1845. </div>
  1846. </div>
  1847. <!-- Unnamed (Table cell) -->
  1848. <div id="u14898" class="ax_default table_cell1 transition">
  1849. <svg data="images/装修工人/u14898.svg" id="u14898_img" class="img generatedImage" viewbox="1152 173 66 44">
  1850. <path d="M 1 1 L 65 1 L 65 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 173 )" class="fill" />
  1851. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 173 )" class="stroke" />
  1852. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 173 )" class="stroke" />
  1853. <path d="M 65.5 1 L 65.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 173 )" class="stroke" />
  1854. </svg>
  1855. <div id="u14898_text" class="text ">
  1856. <p><span>通过&nbsp; 驳回</span></p>
  1857. </div>
  1858. </div>
  1859. <!-- Unnamed (Table cell) -->
  1860. <div id="u14899" class="ax_default table_cell1 transition">
  1861. <svg data="images/装修工人/u14899.svg" id="u14899_img" class="img generatedImage" viewbox="0 217 70 38">
  1862. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 217 )" class="fill" />
  1863. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 217 )" class="stroke" />
  1864. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 217 )" class="stroke" />
  1865. </svg>
  1866. <div id="u14899_text" class="text " style="display:none; visibility: hidden">
  1867. <p></p>
  1868. </div>
  1869. </div>
  1870. <!-- Unnamed (Table cell) -->
  1871. <div id="u14900" class="ax_default table_cell1 transition">
  1872. <svg data="images/装修工人/u14900.svg" id="u14900_img" class="img generatedImage" viewbox="70 217 60 38">
  1873. <path d="M 1 1 L 60 1 L 60 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 217 )" class="fill" />
  1874. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 217 )" class="stroke" />
  1875. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 217 )" class="stroke" />
  1876. </svg>
  1877. <div id="u14900_text" class="text " style="display:none; visibility: hidden">
  1878. <p></p>
  1879. </div>
  1880. </div>
  1881. <!-- Unnamed (Table cell) -->
  1882. <div id="u14901" class="ax_default table_cell1 transition">
  1883. <svg data="images/装修工人/u14901.svg" id="u14901_img" class="img generatedImage" viewbox="130 217 70 38">
  1884. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 217 )" class="fill" />
  1885. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 217 )" class="stroke" />
  1886. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 217 )" class="stroke" />
  1887. </svg>
  1888. <div id="u14901_text" class="text " style="display:none; visibility: hidden">
  1889. <p></p>
  1890. </div>
  1891. </div>
  1892. <!-- Unnamed (Table cell) -->
  1893. <div id="u14902" class="ax_default table_cell1 transition">
  1894. <svg data="images/装修工人/u14902.svg" id="u14902_img" class="img generatedImage" viewbox="200 217 70 38">
  1895. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 217 )" class="fill" />
  1896. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 217 )" class="stroke" />
  1897. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 217 )" class="stroke" />
  1898. </svg>
  1899. <div id="u14902_text" class="text " style="display:none; visibility: hidden">
  1900. <p></p>
  1901. </div>
  1902. </div>
  1903. <!-- Unnamed (Table cell) -->
  1904. <div id="u14903" class="ax_default table_cell1 transition">
  1905. <svg data="images/装修工人/u14903.svg" id="u14903_img" class="img generatedImage" viewbox="270 217 70 38">
  1906. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 217 )" class="fill" />
  1907. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 217 )" class="stroke" />
  1908. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 217 )" class="stroke" />
  1909. </svg>
  1910. <div id="u14903_text" class="text " style="display:none; visibility: hidden">
  1911. <p></p>
  1912. </div>
  1913. </div>
  1914. <!-- Unnamed (Table cell) -->
  1915. <div id="u14904" class="ax_default table_cell1 transition">
  1916. <svg data="images/装修工人/u14904.svg" id="u14904_img" class="img generatedImage" viewbox="340 217 60 38">
  1917. <path d="M 1 1 L 60 1 L 60 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 217 )" class="fill" />
  1918. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 217 )" class="stroke" />
  1919. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 217 )" class="stroke" />
  1920. </svg>
  1921. <div id="u14904_text" class="text " style="display:none; visibility: hidden">
  1922. <p></p>
  1923. </div>
  1924. </div>
  1925. <!-- Unnamed (Table cell) -->
  1926. <div id="u14905" class="ax_default table_cell1 transition">
  1927. <svg data="images/装修工人/u14905.svg" id="u14905_img" class="img generatedImage" viewbox="400 217 70 38">
  1928. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 217 )" class="fill" />
  1929. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 217 )" class="stroke" />
  1930. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 217 )" class="stroke" />
  1931. </svg>
  1932. <div id="u14905_text" class="text " style="display:none; visibility: hidden">
  1933. <p></p>
  1934. </div>
  1935. </div>
  1936. <!-- Unnamed (Table cell) -->
  1937. <div id="u14906" class="ax_default table_cell1 transition">
  1938. <svg data="images/装修工人/u14906.svg" id="u14906_img" class="img generatedImage" viewbox="470 217 80 38">
  1939. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 217 )" class="fill" />
  1940. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 217 )" class="stroke" />
  1941. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 217 )" class="stroke" />
  1942. </svg>
  1943. <div id="u14906_text" class="text " style="display:none; visibility: hidden">
  1944. <p></p>
  1945. </div>
  1946. </div>
  1947. <!-- Unnamed (Table cell) -->
  1948. <div id="u14907" class="ax_default table_cell1 transition">
  1949. <svg data="images/装修工人/u14907.svg" id="u14907_img" class="img generatedImage" viewbox="550 217 80 38">
  1950. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 217 )" class="fill" />
  1951. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 217 )" class="stroke" />
  1952. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 217 )" class="stroke" />
  1953. </svg>
  1954. <div id="u14907_text" class="text " style="display:none; visibility: hidden">
  1955. <p></p>
  1956. </div>
  1957. </div>
  1958. <!-- Unnamed (Table cell) -->
  1959. <div id="u14908" class="ax_default table_cell1 transition">
  1960. <svg data="images/装修工人/u14908.svg" id="u14908_img" class="img generatedImage" viewbox="630 217 80 38">
  1961. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 217 )" class="fill" />
  1962. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 217 )" class="stroke" />
  1963. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 217 )" class="stroke" />
  1964. </svg>
  1965. <div id="u14908_text" class="text " style="display:none; visibility: hidden">
  1966. <p></p>
  1967. </div>
  1968. </div>
  1969. <!-- Unnamed (Table cell) -->
  1970. <div id="u14909" class="ax_default table_cell1 transition">
  1971. <svg data="images/装修工人/u14909.svg" id="u14909_img" class="img generatedImage" viewbox="710 217 80 38">
  1972. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 217 )" class="fill" />
  1973. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 217 )" class="stroke" />
  1974. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 217 )" class="stroke" />
  1975. </svg>
  1976. <div id="u14909_text" class="text " style="display:none; visibility: hidden">
  1977. <p></p>
  1978. </div>
  1979. </div>
  1980. <!-- Unnamed (Table cell) -->
  1981. <div id="u14910" class="ax_default table_cell1 transition">
  1982. <svg data="images/装修工人/u14910.svg" id="u14910_img" class="img generatedImage" viewbox="790 217 80 38">
  1983. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 217 )" class="fill" />
  1984. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 217 )" class="stroke" />
  1985. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 217 )" class="stroke" />
  1986. </svg>
  1987. <div id="u14910_text" class="text " style="display:none; visibility: hidden">
  1988. <p></p>
  1989. </div>
  1990. </div>
  1991. <!-- Unnamed (Table cell) -->
  1992. <div id="u14911" class="ax_default table_cell1 transition">
  1993. <svg data="images/装修工人/u14911.svg" id="u14911_img" class="img generatedImage" viewbox="870 217 70 38">
  1994. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 217 )" class="fill" />
  1995. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 217 )" class="stroke" />
  1996. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 217 )" class="stroke" />
  1997. </svg>
  1998. <div id="u14911_text" class="text " style="display:none; visibility: hidden">
  1999. <p></p>
  2000. </div>
  2001. </div>
  2002. <!-- Unnamed (Table cell) -->
  2003. <div id="u14912" class="ax_default table_cell1 transition">
  2004. <svg data="images/装修工人/u14912.svg" id="u14912_img" class="img generatedImage" viewbox="940 217 72 38">
  2005. <path d="M 1 1 L 72 1 L 72 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 217 )" class="fill" />
  2006. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 217 )" class="stroke" />
  2007. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 217 )" class="stroke" />
  2008. </svg>
  2009. <div id="u14912_text" class="text " style="display:none; visibility: hidden">
  2010. <p></p>
  2011. </div>
  2012. </div>
  2013. <!-- Unnamed (Table cell) -->
  2014. <div id="u14913" class="ax_default table_cell1 transition">
  2015. <svg data="images/装修工人/u14913.svg" id="u14913_img" class="img generatedImage" viewbox="1012 217 70 38">
  2016. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 217 )" class="fill" />
  2017. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 217 )" class="stroke" />
  2018. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 217 )" class="stroke" />
  2019. </svg>
  2020. <div id="u14913_text" class="text " style="display:none; visibility: hidden">
  2021. <p></p>
  2022. </div>
  2023. </div>
  2024. <!-- Unnamed (Table cell) -->
  2025. <div id="u14914" class="ax_default table_cell1 transition">
  2026. <svg data="images/装修工人/u14914.svg" id="u14914_img" class="img generatedImage" viewbox="1082 217 70 38">
  2027. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 217 )" class="fill" />
  2028. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 217 )" class="stroke" />
  2029. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 217 )" class="stroke" />
  2030. </svg>
  2031. <div id="u14914_text" class="text " style="display:none; visibility: hidden">
  2032. <p></p>
  2033. </div>
  2034. </div>
  2035. <!-- Unnamed (Table cell) -->
  2036. <div id="u14915" class="ax_default table_cell1 transition">
  2037. <svg data="images/装修工人/u14915.svg" id="u14915_img" class="img generatedImage" viewbox="1152 217 66 38">
  2038. <path d="M 1 1 L 65 1 L 65 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 217 )" class="fill" />
  2039. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 217 )" class="stroke" />
  2040. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 217 )" class="stroke" />
  2041. <path d="M 65.5 1 L 65.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 217 )" class="stroke" />
  2042. </svg>
  2043. <div id="u14915_text" class="text " style="display:none; visibility: hidden">
  2044. <p></p>
  2045. </div>
  2046. </div>
  2047. <!-- Unnamed (Table cell) -->
  2048. <div id="u14916" class="ax_default table_cell1 transition">
  2049. <svg data="images/装修工人/u14916.svg" id="u14916_img" class="img generatedImage" viewbox="0 255 70 38">
  2050. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 255 )" class="fill" />
  2051. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 255 )" class="stroke" />
  2052. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 255 )" class="stroke" />
  2053. </svg>
  2054. <div id="u14916_text" class="text " style="display:none; visibility: hidden">
  2055. <p></p>
  2056. </div>
  2057. </div>
  2058. <!-- Unnamed (Table cell) -->
  2059. <div id="u14917" class="ax_default table_cell1 transition">
  2060. <svg data="images/装修工人/u14917.svg" id="u14917_img" class="img generatedImage" viewbox="70 255 60 38">
  2061. <path d="M 1 1 L 60 1 L 60 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 255 )" class="fill" />
  2062. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 255 )" class="stroke" />
  2063. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 255 )" class="stroke" />
  2064. </svg>
  2065. <div id="u14917_text" class="text " style="display:none; visibility: hidden">
  2066. <p></p>
  2067. </div>
  2068. </div>
  2069. <!-- Unnamed (Table cell) -->
  2070. <div id="u14918" class="ax_default table_cell1 transition">
  2071. <svg data="images/装修工人/u14918.svg" id="u14918_img" class="img generatedImage" viewbox="130 255 70 38">
  2072. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 255 )" class="fill" />
  2073. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 255 )" class="stroke" />
  2074. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 255 )" class="stroke" />
  2075. </svg>
  2076. <div id="u14918_text" class="text " style="display:none; visibility: hidden">
  2077. <p></p>
  2078. </div>
  2079. </div>
  2080. <!-- Unnamed (Table cell) -->
  2081. <div id="u14919" class="ax_default table_cell1 transition">
  2082. <svg data="images/装修工人/u14919.svg" id="u14919_img" class="img generatedImage" viewbox="200 255 70 38">
  2083. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 255 )" class="fill" />
  2084. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 255 )" class="stroke" />
  2085. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 255 )" class="stroke" />
  2086. </svg>
  2087. <div id="u14919_text" class="text " style="display:none; visibility: hidden">
  2088. <p></p>
  2089. </div>
  2090. </div>
  2091. <!-- Unnamed (Table cell) -->
  2092. <div id="u14920" class="ax_default table_cell1 transition">
  2093. <svg data="images/装修工人/u14920.svg" id="u14920_img" class="img generatedImage" viewbox="270 255 70 38">
  2094. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 255 )" class="fill" />
  2095. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 255 )" class="stroke" />
  2096. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 255 )" class="stroke" />
  2097. </svg>
  2098. <div id="u14920_text" class="text " style="display:none; visibility: hidden">
  2099. <p></p>
  2100. </div>
  2101. </div>
  2102. <!-- Unnamed (Table cell) -->
  2103. <div id="u14921" class="ax_default table_cell1 transition">
  2104. <svg data="images/装修工人/u14921.svg" id="u14921_img" class="img generatedImage" viewbox="340 255 60 38">
  2105. <path d="M 1 1 L 60 1 L 60 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 255 )" class="fill" />
  2106. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 255 )" class="stroke" />
  2107. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 255 )" class="stroke" />
  2108. </svg>
  2109. <div id="u14921_text" class="text " style="display:none; visibility: hidden">
  2110. <p></p>
  2111. </div>
  2112. </div>
  2113. <!-- Unnamed (Table cell) -->
  2114. <div id="u14922" class="ax_default table_cell1 transition">
  2115. <svg data="images/装修工人/u14922.svg" id="u14922_img" class="img generatedImage" viewbox="400 255 70 38">
  2116. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 255 )" class="fill" />
  2117. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 255 )" class="stroke" />
  2118. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 255 )" class="stroke" />
  2119. </svg>
  2120. <div id="u14922_text" class="text " style="display:none; visibility: hidden">
  2121. <p></p>
  2122. </div>
  2123. </div>
  2124. <!-- Unnamed (Table cell) -->
  2125. <div id="u14923" class="ax_default table_cell1 transition">
  2126. <svg data="images/装修工人/u14923.svg" id="u14923_img" class="img generatedImage" viewbox="470 255 80 38">
  2127. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 255 )" class="fill" />
  2128. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 255 )" class="stroke" />
  2129. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 255 )" class="stroke" />
  2130. </svg>
  2131. <div id="u14923_text" class="text " style="display:none; visibility: hidden">
  2132. <p></p>
  2133. </div>
  2134. </div>
  2135. <!-- Unnamed (Table cell) -->
  2136. <div id="u14924" class="ax_default table_cell1 transition">
  2137. <svg data="images/装修工人/u14924.svg" id="u14924_img" class="img generatedImage" viewbox="550 255 80 38">
  2138. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 255 )" class="fill" />
  2139. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 255 )" class="stroke" />
  2140. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 255 )" class="stroke" />
  2141. </svg>
  2142. <div id="u14924_text" class="text " style="display:none; visibility: hidden">
  2143. <p></p>
  2144. </div>
  2145. </div>
  2146. <!-- Unnamed (Table cell) -->
  2147. <div id="u14925" class="ax_default table_cell1 transition">
  2148. <svg data="images/装修工人/u14925.svg" id="u14925_img" class="img generatedImage" viewbox="630 255 80 38">
  2149. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 255 )" class="fill" />
  2150. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 255 )" class="stroke" />
  2151. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 255 )" class="stroke" />
  2152. </svg>
  2153. <div id="u14925_text" class="text " style="display:none; visibility: hidden">
  2154. <p></p>
  2155. </div>
  2156. </div>
  2157. <!-- Unnamed (Table cell) -->
  2158. <div id="u14926" class="ax_default table_cell1 transition">
  2159. <svg data="images/装修工人/u14926.svg" id="u14926_img" class="img generatedImage" viewbox="710 255 80 38">
  2160. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 255 )" class="fill" />
  2161. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 255 )" class="stroke" />
  2162. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 255 )" class="stroke" />
  2163. </svg>
  2164. <div id="u14926_text" class="text " style="display:none; visibility: hidden">
  2165. <p></p>
  2166. </div>
  2167. </div>
  2168. <!-- Unnamed (Table cell) -->
  2169. <div id="u14927" class="ax_default table_cell1 transition">
  2170. <svg data="images/装修工人/u14927.svg" id="u14927_img" class="img generatedImage" viewbox="790 255 80 38">
  2171. <path d="M 1 1 L 80 1 L 80 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 255 )" class="fill" />
  2172. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 255 )" class="stroke" />
  2173. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 255 )" class="stroke" />
  2174. </svg>
  2175. <div id="u14927_text" class="text " style="display:none; visibility: hidden">
  2176. <p></p>
  2177. </div>
  2178. </div>
  2179. <!-- Unnamed (Table cell) -->
  2180. <div id="u14928" class="ax_default table_cell1 transition">
  2181. <svg data="images/装修工人/u14928.svg" id="u14928_img" class="img generatedImage" viewbox="870 255 70 38">
  2182. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 255 )" class="fill" />
  2183. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 255 )" class="stroke" />
  2184. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 255 )" class="stroke" />
  2185. </svg>
  2186. <div id="u14928_text" class="text " style="display:none; visibility: hidden">
  2187. <p></p>
  2188. </div>
  2189. </div>
  2190. <!-- Unnamed (Table cell) -->
  2191. <div id="u14929" class="ax_default table_cell1 transition">
  2192. <svg data="images/装修工人/u14929.svg" id="u14929_img" class="img generatedImage" viewbox="940 255 72 38">
  2193. <path d="M 1 1 L 72 1 L 72 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 255 )" class="fill" />
  2194. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 255 )" class="stroke" />
  2195. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 255 )" class="stroke" />
  2196. </svg>
  2197. <div id="u14929_text" class="text " style="display:none; visibility: hidden">
  2198. <p></p>
  2199. </div>
  2200. </div>
  2201. <!-- Unnamed (Table cell) -->
  2202. <div id="u14930" class="ax_default table_cell1 transition">
  2203. <svg data="images/装修工人/u14930.svg" id="u14930_img" class="img generatedImage" viewbox="1012 255 70 38">
  2204. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 255 )" class="fill" />
  2205. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 255 )" class="stroke" />
  2206. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 255 )" class="stroke" />
  2207. </svg>
  2208. <div id="u14930_text" class="text " style="display:none; visibility: hidden">
  2209. <p></p>
  2210. </div>
  2211. </div>
  2212. <!-- Unnamed (Table cell) -->
  2213. <div id="u14931" class="ax_default table_cell1 transition">
  2214. <svg data="images/装修工人/u14931.svg" id="u14931_img" class="img generatedImage" viewbox="1082 255 70 38">
  2215. <path d="M 1 1 L 70 1 L 70 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 255 )" class="fill" />
  2216. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 255 )" class="stroke" />
  2217. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 255 )" class="stroke" />
  2218. </svg>
  2219. <div id="u14931_text" class="text " style="display:none; visibility: hidden">
  2220. <p></p>
  2221. </div>
  2222. </div>
  2223. <!-- Unnamed (Table cell) -->
  2224. <div id="u14932" class="ax_default table_cell1 transition">
  2225. <svg data="images/装修工人/u14932.svg" id="u14932_img" class="img generatedImage" viewbox="1152 255 66 38">
  2226. <path d="M 1 1 L 65 1 L 65 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 255 )" class="fill" />
  2227. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 255 )" class="stroke" />
  2228. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 255 )" class="stroke" />
  2229. <path d="M 65.5 1 L 65.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 255 )" class="stroke" />
  2230. </svg>
  2231. <div id="u14932_text" class="text " style="display:none; visibility: hidden">
  2232. <p></p>
  2233. </div>
  2234. </div>
  2235. <!-- Unnamed (Table cell) -->
  2236. <div id="u14933" class="ax_default table_cell1 transition">
  2237. <svg data="images/装修工人/u14933.svg" id="u14933_img" class="img generatedImage" viewbox="0 293 70 38">
  2238. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 293 )" class="fill" />
  2239. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 293 )" class="stroke" />
  2240. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 293 )" class="stroke" />
  2241. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 293 )" class="stroke" />
  2242. </svg>
  2243. <div id="u14933_text" class="text " style="display:none; visibility: hidden">
  2244. <p></p>
  2245. </div>
  2246. </div>
  2247. <!-- Unnamed (Table cell) -->
  2248. <div id="u14934" class="ax_default table_cell1 transition">
  2249. <svg data="images/装修工人/u14934.svg" id="u14934_img" class="img generatedImage" viewbox="70 293 60 38">
  2250. <path d="M 1 1 L 60 1 L 60 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 70 293 )" class="fill" />
  2251. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 293 )" class="stroke" />
  2252. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 293 )" class="stroke" />
  2253. <path d="M 0 37.5 L 60 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 70 293 )" class="stroke" />
  2254. </svg>
  2255. <div id="u14934_text" class="text " style="display:none; visibility: hidden">
  2256. <p></p>
  2257. </div>
  2258. </div>
  2259. <!-- Unnamed (Table cell) -->
  2260. <div id="u14935" class="ax_default table_cell1 transition">
  2261. <svg data="images/装修工人/u14935.svg" id="u14935_img" class="img generatedImage" viewbox="130 293 70 38">
  2262. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 130 293 )" class="fill" />
  2263. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 293 )" class="stroke" />
  2264. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 293 )" class="stroke" />
  2265. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 130 293 )" class="stroke" />
  2266. </svg>
  2267. <div id="u14935_text" class="text " style="display:none; visibility: hidden">
  2268. <p></p>
  2269. </div>
  2270. </div>
  2271. <!-- Unnamed (Table cell) -->
  2272. <div id="u14936" class="ax_default table_cell1 transition">
  2273. <svg data="images/装修工人/u14936.svg" id="u14936_img" class="img generatedImage" viewbox="200 293 70 38">
  2274. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 200 293 )" class="fill" />
  2275. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 293 )" class="stroke" />
  2276. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 293 )" class="stroke" />
  2277. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 200 293 )" class="stroke" />
  2278. </svg>
  2279. <div id="u14936_text" class="text " style="display:none; visibility: hidden">
  2280. <p></p>
  2281. </div>
  2282. </div>
  2283. <!-- Unnamed (Table cell) -->
  2284. <div id="u14937" class="ax_default table_cell1 transition">
  2285. <svg data="images/装修工人/u14937.svg" id="u14937_img" class="img generatedImage" viewbox="270 293 70 38">
  2286. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 270 293 )" class="fill" />
  2287. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 293 )" class="stroke" />
  2288. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 293 )" class="stroke" />
  2289. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 270 293 )" class="stroke" />
  2290. </svg>
  2291. <div id="u14937_text" class="text " style="display:none; visibility: hidden">
  2292. <p></p>
  2293. </div>
  2294. </div>
  2295. <!-- Unnamed (Table cell) -->
  2296. <div id="u14938" class="ax_default table_cell1 transition">
  2297. <svg data="images/装修工人/u14938.svg" id="u14938_img" class="img generatedImage" viewbox="340 293 60 38">
  2298. <path d="M 1 1 L 60 1 L 60 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 293 )" class="fill" />
  2299. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 293 )" class="stroke" />
  2300. <path d="M 0 0.5 L 60 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 293 )" class="stroke" />
  2301. <path d="M 0 37.5 L 60 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 293 )" class="stroke" />
  2302. </svg>
  2303. <div id="u14938_text" class="text " style="display:none; visibility: hidden">
  2304. <p></p>
  2305. </div>
  2306. </div>
  2307. <!-- Unnamed (Table cell) -->
  2308. <div id="u14939" class="ax_default table_cell1 transition">
  2309. <svg data="images/装修工人/u14939.svg" id="u14939_img" class="img generatedImage" viewbox="400 293 70 38">
  2310. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 400 293 )" class="fill" />
  2311. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 293 )" class="stroke" />
  2312. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 293 )" class="stroke" />
  2313. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 400 293 )" class="stroke" />
  2314. </svg>
  2315. <div id="u14939_text" class="text " style="display:none; visibility: hidden">
  2316. <p></p>
  2317. </div>
  2318. </div>
  2319. <!-- Unnamed (Table cell) -->
  2320. <div id="u14940" class="ax_default table_cell1 transition">
  2321. <svg data="images/装修工人/u14940.svg" id="u14940_img" class="img generatedImage" viewbox="470 293 80 38">
  2322. <path d="M 1 1 L 80 1 L 80 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 470 293 )" class="fill" />
  2323. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 293 )" class="stroke" />
  2324. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 293 )" class="stroke" />
  2325. <path d="M 0 37.5 L 80 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 470 293 )" class="stroke" />
  2326. </svg>
  2327. <div id="u14940_text" class="text " style="display:none; visibility: hidden">
  2328. <p></p>
  2329. </div>
  2330. </div>
  2331. <!-- Unnamed (Table cell) -->
  2332. <div id="u14941" class="ax_default table_cell1 transition">
  2333. <svg data="images/装修工人/u14941.svg" id="u14941_img" class="img generatedImage" viewbox="550 293 80 38">
  2334. <path d="M 1 1 L 80 1 L 80 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 550 293 )" class="fill" />
  2335. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 293 )" class="stroke" />
  2336. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 293 )" class="stroke" />
  2337. <path d="M 0 37.5 L 80 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 550 293 )" class="stroke" />
  2338. </svg>
  2339. <div id="u14941_text" class="text " style="display:none; visibility: hidden">
  2340. <p></p>
  2341. </div>
  2342. </div>
  2343. <!-- Unnamed (Table cell) -->
  2344. <div id="u14942" class="ax_default table_cell1 transition">
  2345. <svg data="images/装修工人/u14942.svg" id="u14942_img" class="img generatedImage" viewbox="630 293 80 38">
  2346. <path d="M 1 1 L 80 1 L 80 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 630 293 )" class="fill" />
  2347. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 293 )" class="stroke" />
  2348. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 293 )" class="stroke" />
  2349. <path d="M 0 37.5 L 80 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 630 293 )" class="stroke" />
  2350. </svg>
  2351. <div id="u14942_text" class="text " style="display:none; visibility: hidden">
  2352. <p></p>
  2353. </div>
  2354. </div>
  2355. <!-- Unnamed (Table cell) -->
  2356. <div id="u14943" class="ax_default table_cell1 transition">
  2357. <svg data="images/装修工人/u14943.svg" id="u14943_img" class="img generatedImage" viewbox="710 293 80 38">
  2358. <path d="M 1 1 L 80 1 L 80 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 710 293 )" class="fill" />
  2359. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 293 )" class="stroke" />
  2360. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 293 )" class="stroke" />
  2361. <path d="M 0 37.5 L 80 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 710 293 )" class="stroke" />
  2362. </svg>
  2363. <div id="u14943_text" class="text " style="display:none; visibility: hidden">
  2364. <p></p>
  2365. </div>
  2366. </div>
  2367. <!-- Unnamed (Table cell) -->
  2368. <div id="u14944" class="ax_default table_cell1 transition">
  2369. <svg data="images/装修工人/u14944.svg" id="u14944_img" class="img generatedImage" viewbox="790 293 80 38">
  2370. <path d="M 1 1 L 80 1 L 80 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 790 293 )" class="fill" />
  2371. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 293 )" class="stroke" />
  2372. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 293 )" class="stroke" />
  2373. <path d="M 0 37.5 L 80 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 790 293 )" class="stroke" />
  2374. </svg>
  2375. <div id="u14944_text" class="text " style="display:none; visibility: hidden">
  2376. <p></p>
  2377. </div>
  2378. </div>
  2379. <!-- Unnamed (Table cell) -->
  2380. <div id="u14945" class="ax_default table_cell1 transition">
  2381. <svg data="images/装修工人/u14945.svg" id="u14945_img" class="img generatedImage" viewbox="870 293 70 38">
  2382. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 870 293 )" class="fill" />
  2383. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 293 )" class="stroke" />
  2384. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 293 )" class="stroke" />
  2385. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 870 293 )" class="stroke" />
  2386. </svg>
  2387. <div id="u14945_text" class="text " style="display:none; visibility: hidden">
  2388. <p></p>
  2389. </div>
  2390. </div>
  2391. <!-- Unnamed (Table cell) -->
  2392. <div id="u14946" class="ax_default table_cell1 transition">
  2393. <svg data="images/装修工人/u14946.svg" id="u14946_img" class="img generatedImage" viewbox="940 293 72 38">
  2394. <path d="M 1 1 L 72 1 L 72 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 293 )" class="fill" />
  2395. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 293 )" class="stroke" />
  2396. <path d="M 0 0.5 L 72 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 293 )" class="stroke" />
  2397. <path d="M 0 37.5 L 72 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 293 )" class="stroke" />
  2398. </svg>
  2399. <div id="u14946_text" class="text " style="display:none; visibility: hidden">
  2400. <p></p>
  2401. </div>
  2402. </div>
  2403. <!-- Unnamed (Table cell) -->
  2404. <div id="u14947" class="ax_default table_cell1 transition">
  2405. <svg data="images/装修工人/u14947.svg" id="u14947_img" class="img generatedImage" viewbox="1012 293 70 38">
  2406. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1012 293 )" class="fill" />
  2407. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 293 )" class="stroke" />
  2408. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 293 )" class="stroke" />
  2409. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1012 293 )" class="stroke" />
  2410. </svg>
  2411. <div id="u14947_text" class="text " style="display:none; visibility: hidden">
  2412. <p></p>
  2413. </div>
  2414. </div>
  2415. <!-- Unnamed (Table cell) -->
  2416. <div id="u14948" class="ax_default table_cell1 transition">
  2417. <svg data="images/装修工人/u14948.svg" id="u14948_img" class="img generatedImage" viewbox="1082 293 70 38">
  2418. <path d="M 1 1 L 70 1 L 70 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1082 293 )" class="fill" />
  2419. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 293 )" class="stroke" />
  2420. <path d="M 0 0.5 L 70 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 293 )" class="stroke" />
  2421. <path d="M 0 37.5 L 70 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1082 293 )" class="stroke" />
  2422. </svg>
  2423. <div id="u14948_text" class="text " style="display:none; visibility: hidden">
  2424. <p></p>
  2425. </div>
  2426. </div>
  2427. <!-- Unnamed (Table cell) -->
  2428. <div id="u14949" class="ax_default table_cell1 transition">
  2429. <svg data="images/装修工人/u14949.svg" id="u14949_img" class="img generatedImage" viewbox="1152 293 66 38">
  2430. <path d="M 1 1 L 65 1 L 65 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1152 293 )" class="fill" />
  2431. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 293 )" class="stroke" />
  2432. <path d="M 0 0.5 L 66 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 293 )" class="stroke" />
  2433. <path d="M 65.5 1 L 65.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 293 )" class="stroke" />
  2434. <path d="M 0 37.5 L 66 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1152 293 )" class="stroke" />
  2435. </svg>
  2436. <div id="u14949_text" class="text " style="display:none; visibility: hidden">
  2437. <p></p>
  2438. </div>
  2439. </div>
  2440. </div>
  2441. <!-- Unnamed (Rectangle) -->
  2442. <div id="u14950" class="ax_default box_1 transition">
  2443. <div id="u14950_div" class=""></div>
  2444. <div id="u14950_text" class="text ">
  2445. <p><span>导出</span></p>
  2446. </div>
  2447. </div>
  2448. <!-- Unnamed (Group) -->
  2449. <div id="u14951" class="ax_default" data-left="350" data-top="154" data-width="140" data-height="30" layer-opacity="1">
  2450. <!-- Unnamed (Rectangle) -->
  2451. <div id="u14952" class="ax_default box_1 transition">
  2452. <div id="u14952_div" class=""></div>
  2453. <div id="u14952_text" class="text " style="display:none; visibility: hidden">
  2454. <p></p>
  2455. </div>
  2456. </div>
  2457. <!-- Unnamed (Droplist) -->
  2458. <div id="u14953" class="ax_default droplist transition">
  2459. <div id="u14953_div" class=""></div>
  2460. <select id="u14953_input" class="u14953_input">
  2461. <option class="u14953_input_option" value="项目">项目</option>
  2462. </select>
  2463. </div>
  2464. </div>
  2465. <!-- Unnamed (Group) -->
  2466. <div id="u14954" class="ax_default" data-left="500" data-top="154" data-width="140" data-height="30" layer-opacity="1">
  2467. <!-- Unnamed (Rectangle) -->
  2468. <div id="u14955" class="ax_default box_1 transition">
  2469. <div id="u14955_div" class=""></div>
  2470. <div id="u14955_text" class="text " style="display:none; visibility: hidden">
  2471. <p></p>
  2472. </div>
  2473. </div>
  2474. <!-- Unnamed (Droplist) -->
  2475. <div id="u14956" class="ax_default droplist transition">
  2476. <div id="u14956_div" class=""></div>
  2477. <select id="u14956_input" class="u14956_input">
  2478. <option class="u14956_input_option" value="楼栋">楼栋</option>
  2479. </select>
  2480. </div>
  2481. </div>
  2482. <!-- Unnamed (Group) -->
  2483. <div id="u14957" class="ax_default" data-left="650" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2484. <!-- Unnamed (Rectangle) -->
  2485. <div id="u14958" class="ax_default box_1 transition">
  2486. <div id="u14958_div" class=""></div>
  2487. <div id="u14958_text" class="text " style="display:none; visibility: hidden">
  2488. <p></p>
  2489. </div>
  2490. </div>
  2491. <!-- Unnamed (Droplist) -->
  2492. <div id="u14959" class="ax_default droplist transition">
  2493. <div id="u14959_div" class=""></div>
  2494. <select id="u14959_input" class="u14959_input">
  2495. <option class="u14959_input_option" value="单元">单元</option>
  2496. </select>
  2497. </div>
  2498. </div>
  2499. <!-- Unnamed (Group) -->
  2500. <div id="u14960" class="ax_default" data-left="800" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2501. <!-- Unnamed (Rectangle) -->
  2502. <div id="u14961" class="ax_default box_1 transition">
  2503. <div id="u14961_div" class=""></div>
  2504. <div id="u14961_text" class="text " style="display:none; visibility: hidden">
  2505. <p></p>
  2506. </div>
  2507. </div>
  2508. <!-- Unnamed (Droplist) -->
  2509. <div id="u14962" class="ax_default droplist transition">
  2510. <div id="u14962_div" class=""></div>
  2511. <select id="u14962_input" class="u14962_input">
  2512. <option class="u14962_input_option" value="装修房屋">装修房屋</option>
  2513. </select>
  2514. </div>
  2515. </div>
  2516. <!-- Unnamed (Group) -->
  2517. <div id="u14963" class="ax_default" data-left="950" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2518. <!-- Unnamed (Rectangle) -->
  2519. <div id="u14964" class="ax_default shape transition">
  2520. <div id="u14964_div" class=""></div>
  2521. <div id="u14964_text" class="text " style="display:none; visibility: hidden">
  2522. <p></p>
  2523. </div>
  2524. </div>
  2525. <!-- 选项内容 (Text field) -->
  2526. <div id="u14965" class="ax_default text_field transition" data-label="选项内容">
  2527. <div id="u14965_div" class=""></div>
  2528. <input id="u14965_input" type="text" value="" class="u14965_input"/>
  2529. </div>
  2530. </div>
  2531. <!-- Unnamed (Group) -->
  2532. <div id="u14966" class="ax_default" data-left="1100" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2533. <!-- Unnamed (Rectangle) -->
  2534. <div id="u14967" class="ax_default shape transition">
  2535. <div id="u14967_div" class=""></div>
  2536. <div id="u14967_text" class="text " style="display:none; visibility: hidden">
  2537. <p></p>
  2538. </div>
  2539. </div>
  2540. <!-- 选项内容 (Text field) -->
  2541. <div id="u14968" class="ax_default text_field transition" data-label="选项内容">
  2542. <div id="u14968_div" class=""></div>
  2543. <input id="u14968_input" type="text" value="" class="u14968_input"/>
  2544. </div>
  2545. </div>
  2546. <!-- Unnamed (Group) -->
  2547. <div id="u14969" class="ax_default" data-left="1250" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2548. <!-- Unnamed (Rectangle) -->
  2549. <div id="u14970" class="ax_default shape transition">
  2550. <div id="u14970_div" class=""></div>
  2551. <div id="u14970_text" class="text " style="display:none; visibility: hidden">
  2552. <p></p>
  2553. </div>
  2554. </div>
  2555. <!-- 选项内容 (Text field) -->
  2556. <div id="u14971" class="ax_default text_field transition" data-label="选项内容">
  2557. <div id="u14971_div" class=""></div>
  2558. <input id="u14971_input" type="text" value="" class="u14971_input"/>
  2559. </div>
  2560. </div>
  2561. <!-- Unnamed (Group) -->
  2562. <div id="u14972" class="ax_default" data-left="1400" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2563. <!-- Unnamed (Rectangle) -->
  2564. <div id="u14973" class="ax_default shape transition">
  2565. <div id="u14973_div" class=""></div>
  2566. <div id="u14973_text" class="text " style="display:none; visibility: hidden">
  2567. <p></p>
  2568. </div>
  2569. </div>
  2570. <!-- 选项内容 (Text field) -->
  2571. <div id="u14974" class="ax_default text_field transition" data-label="选项内容">
  2572. <div id="u14974_div" class=""></div>
  2573. <input id="u14974_input" type="text" value="" class="u14974_input"/>
  2574. </div>
  2575. </div>
  2576. <!-- Unnamed (Group) -->
  2577. <div id="u14975" class="ax_default" data-left="1250" data-top="194" data-width="140" data-height="30" layer-opacity="1">
  2578. <!-- Unnamed (Rectangle) -->
  2579. <div id="u14976" class="ax_default box_1 transition">
  2580. <div id="u14976_div" class=""></div>
  2581. <div id="u14976_text" class="text " style="display:none; visibility: hidden">
  2582. <p></p>
  2583. </div>
  2584. </div>
  2585. <!-- Unnamed (Droplist) -->
  2586. <div id="u14977" class="ax_default droplist transition">
  2587. <div id="u14977_div" class=""></div>
  2588. <select id="u14977_input" class="u14977_input">
  2589. <option class="u14977_input_option" value="登记起止时间">登记起止时间</option>
  2590. </select>
  2591. </div>
  2592. </div>
  2593. <!-- Unnamed (Group) -->
  2594. <div id="u14978" class="ax_default" data-left="1400" data-top="196" data-width="140" data-height="30" layer-opacity="1">
  2595. <!-- Unnamed (Rectangle) -->
  2596. <div id="u14979" class="ax_default box_1 transition">
  2597. <div id="u14979_div" class=""></div>
  2598. <div id="u14979_text" class="text " style="display:none; visibility: hidden">
  2599. <p></p>
  2600. </div>
  2601. </div>
  2602. <!-- Unnamed (Droplist) -->
  2603. <div id="u14980" class="ax_default droplist transition">
  2604. <div id="u14980_div" class=""></div>
  2605. <select id="u14980_input" class="u14980_input">
  2606. <option class="u14980_input_option" value="确认起止时间">确认起止时间</option>
  2607. </select>
  2608. </div>
  2609. </div>
  2610. <!-- Unnamed (Group) -->
  2611. <div id="u14981" class="ax_default" data-left="650" data-top="196" data-width="140" data-height="30" layer-opacity="1">
  2612. <!-- Unnamed (Rectangle) -->
  2613. <div id="u14982" class="ax_default shape transition">
  2614. <div id="u14982_div" class=""></div>
  2615. <div id="u14982_text" class="text " style="display:none; visibility: hidden">
  2616. <p></p>
  2617. </div>
  2618. </div>
  2619. <!-- 选项内容 (Text field) -->
  2620. <div id="u14983" class="ax_default text_field transition" data-label="选项内容">
  2621. <div id="u14983_div" class=""></div>
  2622. <input id="u14983_input" type="text" value="" class="u14983_input"/>
  2623. </div>
  2624. </div>
  2625. <!-- Unnamed (Group) -->
  2626. <div id="u14984" class="ax_default" data-left="808" data-top="906" data-width="380" data-height="160" layer-opacity="1">
  2627. <!-- Unnamed (Group) -->
  2628. <div id="u14985" class="ax_default" data-left="808" data-top="906" data-width="380" data-height="160" layer-opacity="1">
  2629. <!-- Unnamed (Rectangle) -->
  2630. <div id="u14986" class="ax_default shape transition">
  2631. <div id="u14986_div" class=""></div>
  2632. <div id="u14986_text" class="text " style="display:none; visibility: hidden">
  2633. <p></p>
  2634. </div>
  2635. </div>
  2636. <!-- Unnamed (Rectangle) -->
  2637. <div id="u14987" class="ax_default paragraph transition">
  2638. <div id="u14987_div" class=""></div>
  2639. <div id="u14987_text" class="text ">
  2640. <p><span>确定删除人员?</span></p>
  2641. </div>
  2642. </div>
  2643. <!-- Unnamed (Rectangle) -->
  2644. <div id="u14988" class="ax_default shape transition">
  2645. <div id="u14988_div" class=""></div>
  2646. <div id="u14988_text" class="text ">
  2647. <p><span>确定</span></p>
  2648. </div>
  2649. </div>
  2650. <!-- Unnamed (Shape) -->
  2651. <div id="u14989" class="ax_default icon transition">
  2652. <svg data="images/项目列表/u4793.svg" id="u14989_img" class="img generatedImage">
  2653. <defs>
  2654. <pattern id="u14989_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2655. <mask fill="white" id="u14989_img_cl398">
  2656. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2657. </mask>
  2658. </defs>
  2659. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2660. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2661. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u14989_img_cl398)" />
  2662. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u14989_img_cl398)" />
  2663. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u14989_img_cl398)" />
  2664. </g>
  2665. </svg>
  2666. <div id="u14989_text" class="text " style="display:none; visibility: hidden">
  2667. <p></p>
  2668. </div>
  2669. </div>
  2670. <!-- Unnamed (Rectangle) -->
  2671. <div id="u14990" class="ax_default paragraph transition">
  2672. <div id="u14990_div" class=""></div>
  2673. <div id="u14990_text" class="text ">
  2674. <p><span>删除之后,系统将同步清除人员相关的通行权限。</span></p>
  2675. </div>
  2676. </div>
  2677. <!-- Unnamed (Rectangle) -->
  2678. <div id="u14991" class="ax_default shape transition">
  2679. <div id="u14991_div" class=""></div>
  2680. <div id="u14991_text" class="text ">
  2681. <p><span>取 消</span></p>
  2682. </div>
  2683. </div>
  2684. </div>
  2685. </div>
  2686. <!-- Unnamed (Group) -->
  2687. <div id="u14992" class="ax_default" data-left="808" data-top="468" data-width="380" data-height="160" layer-opacity="1">
  2688. <!-- Unnamed (Group) -->
  2689. <div id="u14993" class="ax_default" data-left="808" data-top="468" data-width="380" data-height="160" layer-opacity="1">
  2690. <!-- Unnamed (Rectangle) -->
  2691. <div id="u14994" class="ax_default shape transition">
  2692. <div id="u14994_div" class=""></div>
  2693. <div id="u14994_text" class="text " style="display:none; visibility: hidden">
  2694. <p></p>
  2695. </div>
  2696. </div>
  2697. <!-- Unnamed (Rectangle) -->
  2698. <div id="u14995" class="ax_default paragraph transition">
  2699. <div id="u14995_div" class=""></div>
  2700. <div id="u14995_text" class="text ">
  2701. <p><span>确定批量通过?</span></p>
  2702. </div>
  2703. </div>
  2704. <!-- Unnamed (Rectangle) -->
  2705. <div id="u14996" class="ax_default shape transition">
  2706. <div id="u14996_div" class=""></div>
  2707. <div id="u14996_text" class="text ">
  2708. <p><span>确定</span></p>
  2709. </div>
  2710. </div>
  2711. <!-- Unnamed (Shape) -->
  2712. <div id="u14997" class="ax_default icon transition">
  2713. <svg data="images/项目列表/u4793.svg" id="u14997_img" class="img generatedImage">
  2714. <defs>
  2715. <pattern id="u14997_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2716. <mask fill="white" id="u14997_img_cl398">
  2717. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2718. </mask>
  2719. </defs>
  2720. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2721. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2722. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u14997_img_cl398)" />
  2723. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u14997_img_cl398)" />
  2724. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u14997_img_cl398)" />
  2725. </g>
  2726. </svg>
  2727. <div id="u14997_text" class="text " style="display:none; visibility: hidden">
  2728. <p></p>
  2729. </div>
  2730. </div>
  2731. <!-- Unnamed (Rectangle) -->
  2732. <div id="u14998" class="ax_default paragraph transition">
  2733. <div id="u14998_div" class=""></div>
  2734. <div id="u14998_text" class="text ">
  2735. <p><span>通过之后,相关人员身份以及相关通行权限将生效。</span></p>
  2736. </div>
  2737. </div>
  2738. <!-- Unnamed (Rectangle) -->
  2739. <div id="u14999" class="ax_default shape transition">
  2740. <div id="u14999_div" class=""></div>
  2741. <div id="u14999_text" class="text ">
  2742. <p><span>取 消</span></p>
  2743. </div>
  2744. </div>
  2745. </div>
  2746. </div>
  2747. <!-- Unnamed (Group) -->
  2748. <div id="u15000" class="ax_default" data-left="808" data-top="646" data-width="380" data-height="240" layer-opacity="1">
  2749. <!-- Unnamed (Group) -->
  2750. <div id="u15001" class="ax_default" data-left="808" data-top="646" data-width="380" data-height="240" layer-opacity="1">
  2751. <!-- Unnamed (Rectangle) -->
  2752. <div id="u15002" class="ax_default shape transition">
  2753. <div id="u15002_div" class=""></div>
  2754. <div id="u15002_text" class="text " style="display:none; visibility: hidden">
  2755. <p></p>
  2756. </div>
  2757. </div>
  2758. <!-- Unnamed (Rectangle) -->
  2759. <div id="u15003" class="ax_default paragraph transition">
  2760. <div id="u15003_div" class=""></div>
  2761. <div id="u15003_text" class="text ">
  2762. <p><span>确定批量驳回?</span></p>
  2763. </div>
  2764. </div>
  2765. <!-- Unnamed (Rectangle) -->
  2766. <div id="u15004" class="ax_default shape transition">
  2767. <div id="u15004_div" class=""></div>
  2768. <div id="u15004_text" class="text ">
  2769. <p><span>确定</span></p>
  2770. </div>
  2771. </div>
  2772. <!-- Unnamed (Shape) -->
  2773. <div id="u15005" class="ax_default icon transition">
  2774. <svg data="images/项目列表/u4793.svg" id="u15005_img" class="img generatedImage">
  2775. <defs>
  2776. <pattern id="u15005_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2777. <mask fill="white" id="u15005_img_cl398">
  2778. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2779. </mask>
  2780. </defs>
  2781. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2782. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2783. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u15005_img_cl398)" />
  2784. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u15005_img_cl398)" />
  2785. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u15005_img_cl398)" />
  2786. </g>
  2787. </svg>
  2788. <div id="u15005_text" class="text " style="display:none; visibility: hidden">
  2789. <p></p>
  2790. </div>
  2791. </div>
  2792. <!-- Unnamed (Rectangle) -->
  2793. <div id="u15006" class="ax_default paragraph transition">
  2794. <div id="u15006_div" class=""></div>
  2795. <div id="u15006_text" class="text ">
  2796. <p><span>驳回之后,相关人员将无法获取相关通行权限。</span></p>
  2797. </div>
  2798. </div>
  2799. <!-- Unnamed (Rectangle) -->
  2800. <div id="u15007" class="ax_default shape transition">
  2801. <div id="u15007_div" class=""></div>
  2802. <div id="u15007_text" class="text ">
  2803. <p><span>取 消</span></p>
  2804. </div>
  2805. </div>
  2806. <!-- Unnamed (Group) -->
  2807. <div id="u15008" class="ax_default" data-left="868" data-top="746" data-width="300" data-height="80" layer-opacity="1">
  2808. <!-- Unnamed (Rectangle) -->
  2809. <div id="u15009" class="ax_default shape transition">
  2810. <div id="u15009_div" class=""></div>
  2811. <div id="u15009_text" class="text " style="display:none; visibility: hidden">
  2812. <p></p>
  2813. </div>
  2814. </div>
  2815. <!-- Unnamed (Text area) -->
  2816. <div id="u15010" class="ax_default text_area transition">
  2817. <div id="u15010_div" class=""></div>
  2818. <textarea id="u15010_input" class="u15010_input"></textarea>
  2819. </div>
  2820. </div>
  2821. </div>
  2822. </div>
  2823. <!-- Unnamed (Group) -->
  2824. <div id="u15011" class="ax_default" data-left="1266" data-top="475" data-width="145" data-height="46" layer-opacity="1">
  2825. <!-- Unnamed (Shape) -->
  2826. <div id="u15012" class="ax_default icon transition">
  2827. <svg data="images/骑手快递员/u14704.svg" id="u15012_img" class="img generatedImage">
  2828. <defs>
  2829. <pattern id="u15012_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2830. <mask fill="white" id="u15012_img_cl1011">
  2831. <path d="M 6.608072916666666 8.274739583333334 C 6.647135416666666 8.235677083333334 6.666666666666666 8.18576388888889 6.666666666666666 8.125 L 6.666666666666666 7.083333333333332 C 6.666666666666666 7.022569444444445 6.647135416666666 6.97265625 6.608072916666666 6.93359375 C 6.569010416666666 6.89453125 6.519097222222222 6.875 6.458333333333334 6.875 L 5.833333333333334 6.875 L 5.833333333333334 3.541666666666666 C 5.833333333333334 3.4809027777777777 5.813802083333334 3.430989583333334 5.774739583333334 3.391927083333334 C 5.735677083333334 3.352864583333334 5.685763888888889 3.333333333333334 5.625 3.333333333333334 L 3.541666666666667 3.333333333333334 C 3.4809027777777786 3.333333333333334 3.430989583333333 3.352864583333334 3.391927083333333 3.391927083333334 C 3.352864583333333 3.430989583333334 3.333333333333333 3.4809027777777777 3.333333333333333 3.541666666666666 L 3.333333333333333 4.583333333333334 C 3.333333333333333 4.644097222222222 3.352864583333333 4.694010416666666 3.391927083333333 4.733072916666666 C 3.430989583333333 4.772135416666666 3.4809027777777786 4.791666666666666 3.541666666666667 4.791666666666666 L 4.166666666666667 4.791666666666666 L 4.166666666666667 6.875 L 3.541666666666667 6.875 C 3.4809027777777786 6.875 3.430989583333333 6.89453125 3.391927083333333 6.93359375 C 3.352864583333333 6.97265625 3.333333333333333 7.022569444444445 3.333333333333333 7.083333333333332 L 3.333333333333333 8.125 C 3.333333333333333 8.18576388888889 3.352864583333333 8.235677083333334 3.391927083333333 8.274739583333334 C 3.430989583333333 8.313802083333334 3.4809027777777786 8.333333333333334 3.541666666666667 8.333333333333334 L 6.458333333333334 8.333333333333334 C 6.519097222222222 8.333333333333334 6.569010416666666 8.313802083333334 6.608072916666666 8.274739583333334 Z M 5.774739583333334 2.44140625 C 5.813802083333334 2.40234375 5.833333333333334 2.3524305555555545 5.833333333333334 2.291666666666666 L 5.833333333333334 1.25 C 5.833333333333334 1.1892361111111105 5.813802083333334 1.1393229166666663 5.774739583333334 1.1002604166666663 C 5.735677083333334 1.0611979166666663 5.685763888888889 1.0416666666666663 5.625 1.0416666666666663 L 4.375 1.0416666666666663 C 4.314236111111112 1.0416666666666663 4.264322916666667 1.0611979166666663 4.225260416666667 1.1002604166666663 C 4.186197916666667 1.1393229166666663 4.166666666666667 1.1892361111111105 4.166666666666667 1.25 L 4.166666666666667 2.291666666666666 C 4.166666666666667 2.3524305555555545 4.186197916666667 2.40234375 4.225260416666667 2.44140625 C 4.264322916666667 2.48046875 4.314236111111112 2.5 4.375 2.5 L 5.625 2.5 C 5.685763888888889 2.5 5.735677083333334 2.48046875 5.774739583333334 2.44140625 Z M 9.329427083333334 2.490234375 C 9.776475694444443 3.256293402777777 10 4.092881944444443 10 5 C 10 5.907118055555555 9.776475694444443 6.743706597222221 9.329427083333334 7.509765625 C 8.882378472222223 8.275824652777779 8.275824652777779 8.882378472222221 7.509765625 9.329427083333334 C 6.743706597222223 9.776475694444445 5.907118055555555 10 5 10 C 4.092881944444445 10 3.2562934027777777 9.776475694444445 2.490234375 9.329427083333334 C 1.7241753472222223 8.882378472222221 1.117621527777778 8.275824652777779 0.6705729166666667 7.509765625 C 0.22352430555555552 6.743706597222221 0 5.907118055555555 0 5 C 0 4.092881944444443 0.22352430555555552 3.256293402777777 0.6705729166666667 2.490234375 C 1.117621527777778 1.724175347222222 1.7241753472222223 1.1176215277777768 2.490234375 0.6705729166666663 C 3.2562934027777777 0.2235243055555547 4.092881944444445 0 5 0 C 5.907118055555555 0 6.743706597222223 0.2235243055555547 7.509765625 0.6705729166666663 C 8.275824652777779 1.1176215277777768 8.882378472222223 1.724175347222222 9.329427083333334 2.490234375 Z " fill-rule="evenodd" />
  2832. </mask>
  2833. </defs>
  2834. <g transform="matrix(1 0 0 1 -1220 -472 )">
  2835. <path d="M 6.608072916666666 8.274739583333334 C 6.647135416666666 8.235677083333334 6.666666666666666 8.18576388888889 6.666666666666666 8.125 L 6.666666666666666 7.083333333333332 C 6.666666666666666 7.022569444444445 6.647135416666666 6.97265625 6.608072916666666 6.93359375 C 6.569010416666666 6.89453125 6.519097222222222 6.875 6.458333333333334 6.875 L 5.833333333333334 6.875 L 5.833333333333334 3.541666666666666 C 5.833333333333334 3.4809027777777777 5.813802083333334 3.430989583333334 5.774739583333334 3.391927083333334 C 5.735677083333334 3.352864583333334 5.685763888888889 3.333333333333334 5.625 3.333333333333334 L 3.541666666666667 3.333333333333334 C 3.4809027777777786 3.333333333333334 3.430989583333333 3.352864583333334 3.391927083333333 3.391927083333334 C 3.352864583333333 3.430989583333334 3.333333333333333 3.4809027777777777 3.333333333333333 3.541666666666666 L 3.333333333333333 4.583333333333334 C 3.333333333333333 4.644097222222222 3.352864583333333 4.694010416666666 3.391927083333333 4.733072916666666 C 3.430989583333333 4.772135416666666 3.4809027777777786 4.791666666666666 3.541666666666667 4.791666666666666 L 4.166666666666667 4.791666666666666 L 4.166666666666667 6.875 L 3.541666666666667 6.875 C 3.4809027777777786 6.875 3.430989583333333 6.89453125 3.391927083333333 6.93359375 C 3.352864583333333 6.97265625 3.333333333333333 7.022569444444445 3.333333333333333 7.083333333333332 L 3.333333333333333 8.125 C 3.333333333333333 8.18576388888889 3.352864583333333 8.235677083333334 3.391927083333333 8.274739583333334 C 3.430989583333333 8.313802083333334 3.4809027777777786 8.333333333333334 3.541666666666667 8.333333333333334 L 6.458333333333334 8.333333333333334 C 6.519097222222222 8.333333333333334 6.569010416666666 8.313802083333334 6.608072916666666 8.274739583333334 Z M 5.774739583333334 2.44140625 C 5.813802083333334 2.40234375 5.833333333333334 2.3524305555555545 5.833333333333334 2.291666666666666 L 5.833333333333334 1.25 C 5.833333333333334 1.1892361111111105 5.813802083333334 1.1393229166666663 5.774739583333334 1.1002604166666663 C 5.735677083333334 1.0611979166666663 5.685763888888889 1.0416666666666663 5.625 1.0416666666666663 L 4.375 1.0416666666666663 C 4.314236111111112 1.0416666666666663 4.264322916666667 1.0611979166666663 4.225260416666667 1.1002604166666663 C 4.186197916666667 1.1393229166666663 4.166666666666667 1.1892361111111105 4.166666666666667 1.25 L 4.166666666666667 2.291666666666666 C 4.166666666666667 2.3524305555555545 4.186197916666667 2.40234375 4.225260416666667 2.44140625 C 4.264322916666667 2.48046875 4.314236111111112 2.5 4.375 2.5 L 5.625 2.5 C 5.685763888888889 2.5 5.735677083333334 2.48046875 5.774739583333334 2.44140625 Z M 9.329427083333334 2.490234375 C 9.776475694444443 3.256293402777777 10 4.092881944444443 10 5 C 10 5.907118055555555 9.776475694444443 6.743706597222221 9.329427083333334 7.509765625 C 8.882378472222223 8.275824652777779 8.275824652777779 8.882378472222221 7.509765625 9.329427083333334 C 6.743706597222223 9.776475694444445 5.907118055555555 10 5 10 C 4.092881944444445 10 3.2562934027777777 9.776475694444445 2.490234375 9.329427083333334 C 1.7241753472222223 8.882378472222221 1.117621527777778 8.275824652777779 0.6705729166666667 7.509765625 C 0.22352430555555552 6.743706597222221 0 5.907118055555555 0 5 C 0 4.092881944444443 0.22352430555555552 3.256293402777777 0.6705729166666667 2.490234375 C 1.117621527777778 1.724175347222222 1.7241753472222223 1.1176215277777768 2.490234375 0.6705729166666663 C 3.2562934027777777 0.2235243055555547 4.092881944444445 0 5 0 C 5.907118055555555 0 6.743706597222223 0.2235243055555547 7.509765625 0.6705729166666663 C 8.275824652777779 1.1176215277777768 8.882378472222223 1.724175347222222 9.329427083333334 2.490234375 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1220 472 )" class="fill" />
  2836. <path d="M 6.608072916666666 8.274739583333334 C 6.647135416666666 8.235677083333334 6.666666666666666 8.18576388888889 6.666666666666666 8.125 L 6.666666666666666 7.083333333333332 C 6.666666666666666 7.022569444444445 6.647135416666666 6.97265625 6.608072916666666 6.93359375 C 6.569010416666666 6.89453125 6.519097222222222 6.875 6.458333333333334 6.875 L 5.833333333333334 6.875 L 5.833333333333334 3.541666666666666 C 5.833333333333334 3.4809027777777777 5.813802083333334 3.430989583333334 5.774739583333334 3.391927083333334 C 5.735677083333334 3.352864583333334 5.685763888888889 3.333333333333334 5.625 3.333333333333334 L 3.541666666666667 3.333333333333334 C 3.4809027777777786 3.333333333333334 3.430989583333333 3.352864583333334 3.391927083333333 3.391927083333334 C 3.352864583333333 3.430989583333334 3.333333333333333 3.4809027777777777 3.333333333333333 3.541666666666666 L 3.333333333333333 4.583333333333334 C 3.333333333333333 4.644097222222222 3.352864583333333 4.694010416666666 3.391927083333333 4.733072916666666 C 3.430989583333333 4.772135416666666 3.4809027777777786 4.791666666666666 3.541666666666667 4.791666666666666 L 4.166666666666667 4.791666666666666 L 4.166666666666667 6.875 L 3.541666666666667 6.875 C 3.4809027777777786 6.875 3.430989583333333 6.89453125 3.391927083333333 6.93359375 C 3.352864583333333 6.97265625 3.333333333333333 7.022569444444445 3.333333333333333 7.083333333333332 L 3.333333333333333 8.125 C 3.333333333333333 8.18576388888889 3.352864583333333 8.235677083333334 3.391927083333333 8.274739583333334 C 3.430989583333333 8.313802083333334 3.4809027777777786 8.333333333333334 3.541666666666667 8.333333333333334 L 6.458333333333334 8.333333333333334 C 6.519097222222222 8.333333333333334 6.569010416666666 8.313802083333334 6.608072916666666 8.274739583333334 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1220 472 )" class="stroke" mask="url(#u15012_img_cl1011)" />
  2837. <path d="M 5.774739583333334 2.44140625 C 5.813802083333334 2.40234375 5.833333333333334 2.3524305555555545 5.833333333333334 2.291666666666666 L 5.833333333333334 1.25 C 5.833333333333334 1.1892361111111105 5.813802083333334 1.1393229166666663 5.774739583333334 1.1002604166666663 C 5.735677083333334 1.0611979166666663 5.685763888888889 1.0416666666666663 5.625 1.0416666666666663 L 4.375 1.0416666666666663 C 4.314236111111112 1.0416666666666663 4.264322916666667 1.0611979166666663 4.225260416666667 1.1002604166666663 C 4.186197916666667 1.1393229166666663 4.166666666666667 1.1892361111111105 4.166666666666667 1.25 L 4.166666666666667 2.291666666666666 C 4.166666666666667 2.3524305555555545 4.186197916666667 2.40234375 4.225260416666667 2.44140625 C 4.264322916666667 2.48046875 4.314236111111112 2.5 4.375 2.5 L 5.625 2.5 C 5.685763888888889 2.5 5.735677083333334 2.48046875 5.774739583333334 2.44140625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1220 472 )" class="stroke" mask="url(#u15012_img_cl1011)" />
  2838. <path d="M 9.329427083333334 2.490234375 C 9.776475694444443 3.256293402777777 10 4.092881944444443 10 5 C 10 5.907118055555555 9.776475694444443 6.743706597222221 9.329427083333334 7.509765625 C 8.882378472222223 8.275824652777779 8.275824652777779 8.882378472222221 7.509765625 9.329427083333334 C 6.743706597222223 9.776475694444445 5.907118055555555 10 5 10 C 4.092881944444445 10 3.2562934027777777 9.776475694444445 2.490234375 9.329427083333334 C 1.7241753472222223 8.882378472222221 1.117621527777778 8.275824652777779 0.6705729166666667 7.509765625 C 0.22352430555555552 6.743706597222221 0 5.907118055555555 0 5 C 0 4.092881944444443 0.22352430555555552 3.256293402777777 0.6705729166666667 2.490234375 C 1.117621527777778 1.724175347222222 1.7241753472222223 1.1176215277777768 2.490234375 0.6705729166666663 C 3.2562934027777777 0.2235243055555547 4.092881944444445 0 5 0 C 5.907118055555555 0 6.743706597222223 0.2235243055555547 7.509765625 0.6705729166666663 C 8.275824652777779 1.1176215277777768 8.882378472222223 1.724175347222222 9.329427083333334 2.490234375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1220 472 )" class="stroke" mask="url(#u15012_img_cl1011)" />
  2839. </g>
  2840. </svg>
  2841. <div id="u15012_text" class="text " style="display:none; visibility: hidden">
  2842. <p></p>
  2843. </div>
  2844. </div>
  2845. <!-- Unnamed (Rectangle) -->
  2846. <div id="u15013" class="ax_default shape transition">
  2847. <div id="u15013_div" class=""></div>
  2848. <div id="u15013_text" class="text ">
  2849. <p><span>显示驳回备注信息</span></p>
  2850. </div>
  2851. </div>
  2852. </div>
  2853. </div>
  2854. <script src="resources/scripts/axure/ios.js"></script>
  2855. </body>
  2856. </html>