车位业主认证.html 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  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="u18350" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u18351" class="ax_default box_2 transition">
  57. <div id="u18351_div" class=""></div>
  58. <div id="u18351_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u18352" class="ax_default label transition">
  64. <div id="u18352_div" class=""></div>
  65. <div id="u18352_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u18353" class="ax_default box_2 transition">
  71. <div id="u18353_div" class=""></div>
  72. <div id="u18353_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u18354" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u18355" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u18355_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u18355_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u18355_img_cl5095">
  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(#u18355_img_cl5095)" />
  90. </g>
  91. </svg>
  92. <div id="u18355_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u18356" class="ax_default label transition">
  98. <div id="u18356_div" class=""></div>
  99. <div id="u18356_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u18357" class="ax_default box_2 transition">
  106. <div id="u18357_div" class=""></div>
  107. <div id="u18357_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u18358" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u18359" class="ax_default label transition">
  115. <div id="u18359_div" class=""></div>
  116. <div id="u18359_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u18360" class="ax_default placeholder transition">
  122. <svg data="images/车位业主认证/u18360.svg" id="u18360_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u18360_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u18360_img_cl6228">
  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(#u18360_img_cl6228)" />
  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="u18360_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u18361" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u18362" class="ax_default label transition">
  144. <div id="u18362_div" class=""></div>
  145. <div id="u18362_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u18363" class="ax_default placeholder transition">
  151. <svg data="images/车位业主认证/u18363.svg" id="u18363_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u18363_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u18363_img_cl6229">
  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(#u18363_img_cl6229)" />
  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="u18363_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u18364" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u18365" class="ax_default label transition">
  173. <div id="u18365_div" class=""></div>
  174. <div id="u18365_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u18366" class="ax_default placeholder transition">
  180. <svg data="images/车位业主认证/u18366.svg" id="u18366_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u18366_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u18366_img_cl6230">
  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(#u18366_img_cl6230)" />
  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="u18366_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u18367" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u18368" class="ax_default label transition">
  202. <div id="u18368_div" class=""></div>
  203. <div id="u18368_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u18369" class="ax_default placeholder transition">
  209. <svg data="images/车位业主认证/u18369.svg" id="u18369_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u18369_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u18369_img_cl6231">
  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(#u18369_img_cl6231)" />
  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="u18369_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u18370" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u18371" class="ax_default label transition">
  231. <div id="u18371_div" class=""></div>
  232. <div id="u18371_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u18372" class="ax_default placeholder transition">
  238. <svg data="images/车位业主认证/u18372.svg" id="u18372_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u18372_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u18372_img_cl6232">
  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(#u18372_img_cl6232)" />
  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="u18372_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u18373" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u18374" class="ax_default label transition">
  260. <div id="u18374_div" class=""></div>
  261. <div id="u18374_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u18375" class="ax_default placeholder transition">
  267. <svg data="images/车位业主认证/u18375.svg" id="u18375_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u18375_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u18375_img_cl6233">
  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(#u18375_img_cl6233)" />
  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="u18375_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u18376" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u18377" class="ax_default label transition">
  289. <div id="u18377_div" class=""></div>
  290. <div id="u18377_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u18378" class="ax_default placeholder transition">
  296. <svg data="images/车位业主认证/u18378.svg" id="u18378_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u18378_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u18378_img_cl6234">
  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(#u18378_img_cl6234)" />
  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="u18378_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u18379" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u18380" class="ax_default label transition">
  318. <div id="u18380_div" class=""></div>
  319. <div id="u18380_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u18381" class="ax_default placeholder transition">
  325. <svg data="images/车位业主认证/u18381.svg" id="u18381_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u18381_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u18381_img_cl6235">
  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(#u18381_img_cl6235)" />
  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="u18381_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u18382" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u18383" class="ax_default label transition">
  347. <div id="u18383_div" class=""></div>
  348. <div id="u18383_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u18384" class="ax_default placeholder transition">
  354. <svg data="images/车位业主认证/u18384.svg" id="u18384_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u18384_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u18384_img_cl6236">
  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(#u18384_img_cl6236)" />
  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="u18384_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u18385" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u18386" class="ax_default label transition">
  376. <div id="u18386_div" class=""></div>
  377. <div id="u18386_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u18387" class="ax_default placeholder transition">
  383. <svg data="images/车位业主认证/u18387.svg" id="u18387_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u18387_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u18387_img_cl6237">
  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(#u18387_img_cl6237)" />
  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="u18387_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u18388" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u18389" class="ax_default label transition">
  405. <div id="u18389_div" class=""></div>
  406. <div id="u18389_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u18390" class="ax_default placeholder transition">
  412. <svg data="images/车位业主认证/u18390.svg" id="u18390_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u18390_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u18390_img_cl6238">
  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(#u18390_img_cl6238)" />
  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="u18390_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u18391" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u18392" class="ax_default droplist transition">
  434. <div id="u18392_div" class=""></div>
  435. <select id="u18392_input" class="u18392_input">
  436. <option class="u18392_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u18393" class="ax_default placeholder transition">
  441. <svg data="images/车位业主认证/u18393.svg" id="u18393_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u18393_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u18393_img_cl6239">
  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(#u18393_img_cl6239)" />
  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="u18393_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u18394" class="ax_default label transition">
  460. <div id="u18394_div" class=""></div>
  461. <div id="u18394_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u18395" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u18395_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="u18395_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u18396" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u18397" class="ax_default label transition">
  481. <div id="u18397_div" class=""></div>
  482. <div id="u18397_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u18398" class="ax_default placeholder transition">
  488. <svg data="images/车位业主认证/u18398.svg" id="u18398_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u18398_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u18398_img_cl6240">
  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(#u18398_img_cl6240)" />
  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="u18398_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u18399" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u18399_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="u18399_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u18400" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u18400_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="u18400_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u18401" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u18401_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="u18401_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u18402" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u18403" class="ax_default label transition">
  543. <div id="u18403_div" class=""></div>
  544. <div id="u18403_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u18404" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u18404_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u18404_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u18404_img_cl5109">
  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(#u18404_img_cl5109)" />
  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(#u18404_img_cl5109)" />
  561. </g>
  562. </svg>
  563. <div id="u18404_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="u18405" class="ax_default box_2 transition">
  571. <div id="u18405_div" class=""></div>
  572. <div id="u18405_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Table) -->
  577. <div id="u18406" class="ax_default">
  578. <!-- Unnamed (Table cell) -->
  579. <div id="u18407" class="ax_default table_cell1 transition">
  580. <svg data="images/车位业主认证/u18407.svg" id="u18407_img" class="img generatedImage" viewbox="0 0 69 38">
  581. <path d="M 1 1 L 69 1 L 69 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  582. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  583. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  584. </svg>
  585. <div id="u18407_text" class="text ">
  586. <p><span>项目</span></p>
  587. </div>
  588. </div>
  589. <!-- Unnamed (Table cell) -->
  590. <div id="u18408" class="ax_default table_cell1 transition">
  591. <svg data="images/车位业主认证/u18408.svg" id="u18408_img" class="img generatedImage" viewbox="69 0 69 38">
  592. <path d="M 1 1 L 69 1 L 69 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 69 0 )" class="fill" />
  593. <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 69 0 )" class="stroke" />
  594. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 0 )" class="stroke" />
  595. </svg>
  596. <div id="u18408_text" class="text ">
  597. <p><span>车场</span></p>
  598. </div>
  599. </div>
  600. <!-- Unnamed (Table cell) -->
  601. <div id="u18409" class="ax_default table_cell1 transition">
  602. <svg data="images/车位业主认证/u18409.svg" id="u18409_img" class="img generatedImage" viewbox="139 0 69 38">
  603. <path d="M 1 1 L 69 1 L 69 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 139 0 )" class="fill" />
  604. <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 139 0 )" class="stroke" />
  605. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 0 )" class="stroke" />
  606. </svg>
  607. <div id="u18409_text" class="text ">
  608. <p><span>车位号</span></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u18410" class="ax_default table_cell1 transition">
  613. <svg data="images/车位业主认证/u18410.svg" id="u18410_img" class="img generatedImage" viewbox="208 0 91 38">
  614. <path d="M 1 1 L 91 1 L 91 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 208 0 )" class="fill" />
  615. <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 208 0 )" class="stroke" />
  616. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 0 )" class="stroke" />
  617. </svg>
  618. <div id="u18410_text" class="text ">
  619. <p><span>业主类型</span></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Table cell) -->
  623. <div id="u18411" class="ax_default table_cell1 transition">
  624. <svg data="images/车位业主认证/u18411.svg" id="u18411_img" class="img generatedImage" viewbox="300 0 91 38">
  625. <path d="M 1 1 L 91 1 L 91 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 300 0 )" class="fill" />
  626. <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 300 0 )" class="stroke" />
  627. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 0 )" class="stroke" />
  628. </svg>
  629. <div id="u18411_text" class="text ">
  630. <p><span>业主名称</span></p>
  631. </div>
  632. </div>
  633. <!-- Unnamed (Table cell) -->
  634. <div id="u18412" class="ax_default table_cell1 transition">
  635. <svg data="images/车位业主认证/u18412.svg" id="u18412_img" class="img generatedImage" viewbox="391 0 91 38">
  636. <path d="M 1 1 L 91 1 L 91 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 391 0 )" class="fill" />
  637. <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 391 0 )" class="stroke" />
  638. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 0 )" class="stroke" />
  639. </svg>
  640. <div id="u18412_text" class="text ">
  641. <p><span>证件类型</span></p>
  642. </div>
  643. </div>
  644. <!-- Unnamed (Table cell) -->
  645. <div id="u18413" class="ax_default table_cell1 transition">
  646. <svg data="images/车位业主认证/u18413.svg" id="u18413_img" class="img generatedImage" viewbox="482 0 91 38">
  647. <path d="M 1 1 L 91 1 L 91 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 482 0 )" class="fill" />
  648. <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 482 0 )" class="stroke" />
  649. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 0 )" class="stroke" />
  650. </svg>
  651. <div id="u18413_text" class="text ">
  652. <p><span>证件号码</span></p>
  653. </div>
  654. </div>
  655. <!-- Unnamed (Table cell) -->
  656. <div id="u18414" class="ax_default table_cell1 transition">
  657. <svg data="images/车位业主认证/u18414.svg" id="u18414_img" class="img generatedImage" viewbox="574 0 91 38">
  658. <path d="M 1 1 L 91 1 L 91 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 574 0 )" class="fill" />
  659. <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 574 0 )" class="stroke" />
  660. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 0 )" class="stroke" />
  661. </svg>
  662. <div id="u18414_text" class="text ">
  663. <p><span>联系人</span></p>
  664. </div>
  665. </div>
  666. <!-- Unnamed (Table cell) -->
  667. <div id="u18415" class="ax_default table_cell1 transition">
  668. <svg data="images/车位业主认证/u18415.svg" id="u18415_img" class="img generatedImage" viewbox="665 0 91 38">
  669. <path d="M 1 1 L 91 1 L 91 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 665 0 )" class="fill" />
  670. <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 665 0 )" class="stroke" />
  671. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 0 )" class="stroke" />
  672. </svg>
  673. <div id="u18415_text" class="text ">
  674. <p><span>联系方式</span></p>
  675. </div>
  676. </div>
  677. <!-- Unnamed (Table cell) -->
  678. <div id="u18416" class="ax_default table_cell1 transition">
  679. <svg data="images/车位业主认证/u18416.svg" id="u18416_img" class="img generatedImage" viewbox="756 0 99 38">
  680. <path d="M 1 1 L 99 1 L 99 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 756 0 )" class="fill" />
  681. <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 756 0 )" class="stroke" />
  682. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 0 )" class="stroke" />
  683. </svg>
  684. <div id="u18416_text" class="text ">
  685. <p><span>申请时间</span></p>
  686. </div>
  687. </div>
  688. <!-- Unnamed (Table cell) -->
  689. <div id="u18417" class="ax_default table_cell1 transition">
  690. <svg data="images/车位业主认证/u18417.svg" id="u18417_img" class="img generatedImage" viewbox="856 0 93 38">
  691. <path d="M 1 1 L 93 1 L 93 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 856 0 )" class="fill" />
  692. <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 856 0 )" class="stroke" />
  693. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 0 )" class="stroke" />
  694. </svg>
  695. <div id="u18417_text" class="text ">
  696. <p><span>认证状态</span></p>
  697. </div>
  698. </div>
  699. <!-- Unnamed (Table cell) -->
  700. <div id="u18418" class="ax_default table_cell1 transition">
  701. <svg data="images/车位业主认证/u18418.svg" id="u18418_img" class="img generatedImage" viewbox="948 0 91 38">
  702. <path d="M 1 1 L 91 1 L 91 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 948 0 )" class="fill" />
  703. <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 948 0 )" class="stroke" />
  704. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 0 )" class="stroke" />
  705. </svg>
  706. <div id="u18418_text" class="text ">
  707. <p><span>审批人员</span></p>
  708. </div>
  709. </div>
  710. <!-- Unnamed (Table cell) -->
  711. <div id="u18419" class="ax_default table_cell1 transition">
  712. <svg data="images/车位业主认证/u18419.svg" id="u18419_img" class="img generatedImage" viewbox="1040 0 91 38">
  713. <path d="M 1 1 L 91 1 L 91 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 1040 0 )" class="fill" />
  714. <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 1040 0 )" class="stroke" />
  715. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 0 )" class="stroke" />
  716. </svg>
  717. <div id="u18419_text" class="text ">
  718. <p><span>审批时间</span></p>
  719. </div>
  720. </div>
  721. <!-- Unnamed (Table cell) -->
  722. <div id="u18420" class="ax_default table_cell1 transition">
  723. <svg data="images/车位业主认证/u18420.svg" id="u18420_img" class="img generatedImage" viewbox="1131 0 88 38">
  724. <path d="M 1 1 L 87 1 L 87 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 1131 0 )" class="fill" />
  725. <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 1131 0 )" class="stroke" />
  726. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 0 )" class="stroke" />
  727. <path d="M 87.5 1 L 87.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 0 )" class="stroke" />
  728. </svg>
  729. <div id="u18420_text" class="text ">
  730. <p><span>操作</span></p>
  731. </div>
  732. </div>
  733. <!-- Unnamed (Table cell) -->
  734. <div id="u18421" class="ax_default table_cell1 transition">
  735. <svg data="images/车位业主认证/u18421.svg" id="u18421_img" class="img generatedImage" viewbox="0 38 69 44">
  736. <path d="M 1 1 L 69 1 L 69 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 38 )" class="fill" />
  737. <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 38 )" class="stroke" />
  738. <path d="M 0 0.5 L 69 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" />
  739. </svg>
  740. <div id="u18421_text" class="text " style="display:none; visibility: hidden">
  741. <p></p>
  742. </div>
  743. </div>
  744. <!-- Unnamed (Table cell) -->
  745. <div id="u18422" class="ax_default table_cell1 transition">
  746. <svg data="images/车位业主认证/u18422.svg" id="u18422_img" class="img generatedImage" viewbox="69 38 69 44">
  747. <path d="M 1 1 L 69 1 L 69 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 69 38 )" class="fill" />
  748. <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 69 38 )" class="stroke" />
  749. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 38 )" class="stroke" />
  750. </svg>
  751. <div id="u18422_text" class="text " style="display:none; visibility: hidden">
  752. <p></p>
  753. </div>
  754. </div>
  755. <!-- Unnamed (Table cell) -->
  756. <div id="u18423" class="ax_default table_cell1 transition">
  757. <svg data="images/车位业主认证/u18423.svg" id="u18423_img" class="img generatedImage" viewbox="139 38 69 44">
  758. <path d="M 1 1 L 69 1 L 69 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 139 38 )" class="fill" />
  759. <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 139 38 )" class="stroke" />
  760. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 38 )" class="stroke" />
  761. </svg>
  762. <div id="u18423_text" class="text " style="display:none; visibility: hidden">
  763. <p></p>
  764. </div>
  765. </div>
  766. <!-- Unnamed (Table cell) -->
  767. <div id="u18424" class="ax_default table_cell1 transition">
  768. <svg data="images/车位业主认证/u18424.svg" id="u18424_img" class="img generatedImage" viewbox="208 38 91 44">
  769. <path d="M 1 1 L 91 1 L 91 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 208 38 )" class="fill" />
  770. <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 208 38 )" class="stroke" />
  771. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 38 )" class="stroke" />
  772. </svg>
  773. <div id="u18424_text" class="text ">
  774. <p><span>个人</span></p>
  775. </div>
  776. </div>
  777. <!-- Unnamed (Table cell) -->
  778. <div id="u18425" class="ax_default table_cell1 transition">
  779. <svg data="images/车位业主认证/u18425.svg" id="u18425_img" class="img generatedImage" viewbox="300 38 91 44">
  780. <path d="M 1 1 L 91 1 L 91 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 300 38 )" class="fill" />
  781. <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 300 38 )" class="stroke" />
  782. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 38 )" class="stroke" />
  783. </svg>
  784. <div id="u18425_text" class="text ">
  785. <p><span>张三</span></p>
  786. </div>
  787. </div>
  788. <!-- Unnamed (Table cell) -->
  789. <div id="u18426" class="ax_default table_cell1 transition">
  790. <svg data="images/车位业主认证/u18426.svg" id="u18426_img" class="img generatedImage" viewbox="391 38 91 44">
  791. <path d="M 1 1 L 91 1 L 91 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 391 38 )" class="fill" />
  792. <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 391 38 )" class="stroke" />
  793. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 38 )" class="stroke" />
  794. </svg>
  795. <div id="u18426_text" class="text ">
  796. <p><span>身份证</span></p>
  797. </div>
  798. </div>
  799. <!-- Unnamed (Table cell) -->
  800. <div id="u18427" class="ax_default table_cell1 transition">
  801. <svg data="images/车位业主认证/u18427.svg" id="u18427_img" class="img generatedImage" viewbox="482 38 91 44">
  802. <path d="M 1 1 L 91 1 L 91 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 482 38 )" class="fill" />
  803. <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 482 38 )" class="stroke" />
  804. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 38 )" class="stroke" />
  805. </svg>
  806. <div id="u18427_text" class="text " style="display:none; visibility: hidden">
  807. <p></p>
  808. </div>
  809. </div>
  810. <!-- Unnamed (Table cell) -->
  811. <div id="u18428" class="ax_default table_cell1 transition">
  812. <svg data="images/车位业主认证/u18428.svg" id="u18428_img" class="img generatedImage" viewbox="574 38 91 44">
  813. <path d="M 1 1 L 91 1 L 91 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 574 38 )" class="fill" />
  814. <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 574 38 )" class="stroke" />
  815. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 38 )" class="stroke" />
  816. </svg>
  817. <div id="u18428_text" class="text " style="display:none; visibility: hidden">
  818. <p></p>
  819. </div>
  820. </div>
  821. <!-- Unnamed (Table cell) -->
  822. <div id="u18429" class="ax_default table_cell1 transition">
  823. <svg data="images/车位业主认证/u18429.svg" id="u18429_img" class="img generatedImage" viewbox="665 38 91 44">
  824. <path d="M 1 1 L 91 1 L 91 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 665 38 )" class="fill" />
  825. <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 665 38 )" class="stroke" />
  826. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 38 )" class="stroke" />
  827. </svg>
  828. <div id="u18429_text" class="text " style="display:none; visibility: hidden">
  829. <p></p>
  830. </div>
  831. </div>
  832. <!-- Unnamed (Table cell) -->
  833. <div id="u18430" class="ax_default table_cell1 transition">
  834. <svg data="images/车位业主认证/u18430.svg" id="u18430_img" class="img generatedImage" viewbox="756 38 99 44">
  835. <path d="M 1 1 L 99 1 L 99 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 756 38 )" class="fill" />
  836. <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 756 38 )" class="stroke" />
  837. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 38 )" class="stroke" />
  838. </svg>
  839. <div id="u18430_text" class="text ">
  840. <p><span>2024/04/23 </span></p><p><span>23:33:22</span></p>
  841. </div>
  842. </div>
  843. <!-- Unnamed (Table cell) -->
  844. <div id="u18431" class="ax_default table_cell1 transition">
  845. <svg data="images/车位业主认证/u18431.svg" id="u18431_img" class="img generatedImage" viewbox="856 38 93 44">
  846. <path d="M 1 1 L 93 1 L 93 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 856 38 )" class="fill" />
  847. <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 856 38 )" class="stroke" />
  848. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 38 )" class="stroke" />
  849. </svg>
  850. <div id="u18431_text" class="text ">
  851. <p><span>待确认</span></p>
  852. </div>
  853. </div>
  854. <!-- Unnamed (Table cell) -->
  855. <div id="u18432" class="ax_default table_cell1 transition">
  856. <svg data="images/车位业主认证/u18432.svg" id="u18432_img" class="img generatedImage" viewbox="948 38 91 44">
  857. <path d="M 1 1 L 91 1 L 91 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 948 38 )" class="fill" />
  858. <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 948 38 )" class="stroke" />
  859. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 38 )" class="stroke" />
  860. </svg>
  861. <div id="u18432_text" class="text " style="display:none; visibility: hidden">
  862. <p></p>
  863. </div>
  864. </div>
  865. <!-- Unnamed (Table cell) -->
  866. <div id="u18433" class="ax_default table_cell1 transition">
  867. <svg data="images/车位业主认证/u18433.svg" id="u18433_img" class="img generatedImage" viewbox="1040 38 91 44">
  868. <path d="M 1 1 L 91 1 L 91 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 1040 38 )" class="fill" />
  869. <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 1040 38 )" class="stroke" />
  870. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 38 )" class="stroke" />
  871. </svg>
  872. <div id="u18433_text" class="text " style="display:none; visibility: hidden">
  873. <p></p>
  874. </div>
  875. </div>
  876. <!-- Unnamed (Table cell) -->
  877. <div id="u18434" class="ax_default table_cell1 transition">
  878. <svg data="images/车位业主认证/u18434.svg" id="u18434_img" class="img generatedImage" viewbox="1131 38 88 44">
  879. <path d="M 1 1 L 87 1 L 87 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 1131 38 )" class="fill" />
  880. <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 1131 38 )" class="stroke" />
  881. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 38 )" class="stroke" />
  882. <path d="M 87.5 1 L 87.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 38 )" class="stroke" />
  883. </svg>
  884. <div id="u18434_text" class="text ">
  885. <p><span>审批&nbsp; 详情</span></p>
  886. </div>
  887. </div>
  888. <!-- Unnamed (Table cell) -->
  889. <div id="u18435" class="ax_default table_cell1 transition">
  890. <svg data="images/车位业主认证/u18435.svg" id="u18435_img" class="img generatedImage" viewbox="0 82 69 44">
  891. <path d="M 1 1 L 69 1 L 69 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 82 )" class="fill" />
  892. <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 82 )" class="stroke" />
  893. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 82 )" class="stroke" />
  894. </svg>
  895. <div id="u18435_text" class="text " style="display:none; visibility: hidden">
  896. <p></p>
  897. </div>
  898. </div>
  899. <!-- Unnamed (Table cell) -->
  900. <div id="u18436" class="ax_default table_cell1 transition">
  901. <svg data="images/车位业主认证/u18436.svg" id="u18436_img" class="img generatedImage" viewbox="69 82 69 44">
  902. <path d="M 1 1 L 69 1 L 69 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 69 82 )" class="fill" />
  903. <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 69 82 )" class="stroke" />
  904. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 82 )" class="stroke" />
  905. </svg>
  906. <div id="u18436_text" class="text " style="display:none; visibility: hidden">
  907. <p></p>
  908. </div>
  909. </div>
  910. <!-- Unnamed (Table cell) -->
  911. <div id="u18437" class="ax_default table_cell1 transition">
  912. <svg data="images/车位业主认证/u18437.svg" id="u18437_img" class="img generatedImage" viewbox="139 82 69 44">
  913. <path d="M 1 1 L 69 1 L 69 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 139 82 )" class="fill" />
  914. <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 139 82 )" class="stroke" />
  915. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 82 )" class="stroke" />
  916. </svg>
  917. <div id="u18437_text" class="text " style="display:none; visibility: hidden">
  918. <p></p>
  919. </div>
  920. </div>
  921. <!-- Unnamed (Table cell) -->
  922. <div id="u18438" class="ax_default table_cell1 transition">
  923. <svg data="images/车位业主认证/u18438.svg" id="u18438_img" class="img generatedImage" viewbox="208 82 91 44">
  924. <path d="M 1 1 L 91 1 L 91 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 208 82 )" class="fill" />
  925. <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 208 82 )" class="stroke" />
  926. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 82 )" class="stroke" />
  927. </svg>
  928. <div id="u18438_text" class="text ">
  929. <p><span>机构</span></p>
  930. </div>
  931. </div>
  932. <!-- Unnamed (Table cell) -->
  933. <div id="u18439" class="ax_default table_cell1 transition">
  934. <svg data="images/车位业主认证/u18439.svg" id="u18439_img" class="img generatedImage" viewbox="300 82 91 44">
  935. <path d="M 1 1 L 91 1 L 91 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 300 82 )" class="fill" />
  936. <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 300 82 )" class="stroke" />
  937. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 82 )" class="stroke" />
  938. </svg>
  939. <div id="u18439_text" class="text " style="display:none; visibility: hidden">
  940. <p></p>
  941. </div>
  942. </div>
  943. <!-- Unnamed (Table cell) -->
  944. <div id="u18440" class="ax_default table_cell1 transition">
  945. <svg data="images/车位业主认证/u18440.svg" id="u18440_img" class="img generatedImage" viewbox="391 82 91 44">
  946. <path d="M 1 1 L 91 1 L 91 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 391 82 )" class="fill" />
  947. <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 391 82 )" class="stroke" />
  948. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 82 )" class="stroke" />
  949. </svg>
  950. <div id="u18440_text" class="text ">
  951. <p><span>营业执照</span></p>
  952. </div>
  953. </div>
  954. <!-- Unnamed (Table cell) -->
  955. <div id="u18441" class="ax_default table_cell1 transition">
  956. <svg data="images/车位业主认证/u18441.svg" id="u18441_img" class="img generatedImage" viewbox="482 82 91 44">
  957. <path d="M 1 1 L 91 1 L 91 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 482 82 )" class="fill" />
  958. <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 482 82 )" class="stroke" />
  959. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 82 )" class="stroke" />
  960. </svg>
  961. <div id="u18441_text" class="text " style="display:none; visibility: hidden">
  962. <p></p>
  963. </div>
  964. </div>
  965. <!-- Unnamed (Table cell) -->
  966. <div id="u18442" class="ax_default table_cell1 transition">
  967. <svg data="images/车位业主认证/u18442.svg" id="u18442_img" class="img generatedImage" viewbox="574 82 91 44">
  968. <path d="M 1 1 L 91 1 L 91 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 574 82 )" class="fill" />
  969. <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 574 82 )" class="stroke" />
  970. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 82 )" class="stroke" />
  971. </svg>
  972. <div id="u18442_text" class="text " style="display:none; visibility: hidden">
  973. <p></p>
  974. </div>
  975. </div>
  976. <!-- Unnamed (Table cell) -->
  977. <div id="u18443" class="ax_default table_cell1 transition">
  978. <svg data="images/车位业主认证/u18443.svg" id="u18443_img" class="img generatedImage" viewbox="665 82 91 44">
  979. <path d="M 1 1 L 91 1 L 91 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 665 82 )" class="fill" />
  980. <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 665 82 )" class="stroke" />
  981. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 82 )" class="stroke" />
  982. </svg>
  983. <div id="u18443_text" class="text " style="display:none; visibility: hidden">
  984. <p></p>
  985. </div>
  986. </div>
  987. <!-- Unnamed (Table cell) -->
  988. <div id="u18444" class="ax_default table_cell1 transition">
  989. <svg data="images/车位业主认证/u18444.svg" id="u18444_img" class="img generatedImage" viewbox="756 82 99 44">
  990. <path d="M 1 1 L 99 1 L 99 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 756 82 )" class="fill" />
  991. <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 756 82 )" class="stroke" />
  992. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 82 )" class="stroke" />
  993. </svg>
  994. <div id="u18444_text" class="text " style="display:none; visibility: hidden">
  995. <p></p>
  996. </div>
  997. </div>
  998. <!-- Unnamed (Table cell) -->
  999. <div id="u18445" class="ax_default table_cell1 transition">
  1000. <svg data="images/车位业主认证/u18445.svg" id="u18445_img" class="img generatedImage" viewbox="856 82 93 44">
  1001. <path d="M 1 1 L 93 1 L 93 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 856 82 )" class="fill" />
  1002. <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 856 82 )" class="stroke" />
  1003. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 82 )" class="stroke" />
  1004. </svg>
  1005. <div id="u18445_text" class="text ">
  1006. <p><span>已通过</span></p>
  1007. </div>
  1008. </div>
  1009. <!-- Unnamed (Table cell) -->
  1010. <div id="u18446" class="ax_default table_cell1 transition">
  1011. <svg data="images/车位业主认证/u18446.svg" id="u18446_img" class="img generatedImage" viewbox="948 82 91 44">
  1012. <path d="M 1 1 L 91 1 L 91 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 948 82 )" class="fill" />
  1013. <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 948 82 )" class="stroke" />
  1014. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 82 )" class="stroke" />
  1015. </svg>
  1016. <div id="u18446_text" class="text " style="display:none; visibility: hidden">
  1017. <p></p>
  1018. </div>
  1019. </div>
  1020. <!-- Unnamed (Table cell) -->
  1021. <div id="u18447" class="ax_default table_cell1 transition">
  1022. <svg data="images/车位业主认证/u18447.svg" id="u18447_img" class="img generatedImage" viewbox="1040 82 91 44">
  1023. <path d="M 1 1 L 91 1 L 91 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 1040 82 )" class="fill" />
  1024. <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 1040 82 )" class="stroke" />
  1025. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 82 )" class="stroke" />
  1026. </svg>
  1027. <div id="u18447_text" class="text " style="display:none; visibility: hidden">
  1028. <p></p>
  1029. </div>
  1030. </div>
  1031. <!-- Unnamed (Table cell) -->
  1032. <div id="u18448" class="ax_default table_cell1 transition">
  1033. <svg data="images/车位业主认证/u18448.svg" id="u18448_img" class="img generatedImage" viewbox="1131 82 88 44">
  1034. <path d="M 1 1 L 87 1 L 87 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 1131 82 )" class="fill" />
  1035. <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 1131 82 )" class="stroke" />
  1036. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 82 )" class="stroke" />
  1037. <path d="M 87.5 1 L 87.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 82 )" class="stroke" />
  1038. </svg>
  1039. <div id="u18448_text" class="text " style="display:none; visibility: hidden">
  1040. <p></p>
  1041. </div>
  1042. </div>
  1043. <!-- Unnamed (Table cell) -->
  1044. <div id="u18449" class="ax_default table_cell1 transition">
  1045. <svg data="images/车位业主认证/u18449.svg" id="u18449_img" class="img generatedImage" viewbox="0 126 69 38">
  1046. <path d="M 1 1 L 69 1 L 69 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 126 )" class="fill" />
  1047. <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 126 )" class="stroke" />
  1048. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 126 )" class="stroke" />
  1049. </svg>
  1050. <div id="u18449_text" class="text " style="display:none; visibility: hidden">
  1051. <p></p>
  1052. </div>
  1053. </div>
  1054. <!-- Unnamed (Table cell) -->
  1055. <div id="u18450" class="ax_default table_cell1 transition">
  1056. <svg data="images/车位业主认证/u18450.svg" id="u18450_img" class="img generatedImage" viewbox="69 126 69 38">
  1057. <path d="M 1 1 L 69 1 L 69 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 69 126 )" class="fill" />
  1058. <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 69 126 )" class="stroke" />
  1059. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 126 )" class="stroke" />
  1060. </svg>
  1061. <div id="u18450_text" class="text " style="display:none; visibility: hidden">
  1062. <p></p>
  1063. </div>
  1064. </div>
  1065. <!-- Unnamed (Table cell) -->
  1066. <div id="u18451" class="ax_default table_cell1 transition">
  1067. <svg data="images/车位业主认证/u18451.svg" id="u18451_img" class="img generatedImage" viewbox="139 126 69 38">
  1068. <path d="M 1 1 L 69 1 L 69 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 139 126 )" class="fill" />
  1069. <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 139 126 )" class="stroke" />
  1070. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 126 )" class="stroke" />
  1071. </svg>
  1072. <div id="u18451_text" class="text " style="display:none; visibility: hidden">
  1073. <p></p>
  1074. </div>
  1075. </div>
  1076. <!-- Unnamed (Table cell) -->
  1077. <div id="u18452" class="ax_default table_cell1 transition">
  1078. <svg data="images/车位业主认证/u18452.svg" id="u18452_img" class="img generatedImage" viewbox="208 126 91 38">
  1079. <path d="M 1 1 L 91 1 L 91 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 208 126 )" class="fill" />
  1080. <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 208 126 )" class="stroke" />
  1081. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 126 )" class="stroke" />
  1082. </svg>
  1083. <div id="u18452_text" class="text " style="display:none; visibility: hidden">
  1084. <p></p>
  1085. </div>
  1086. </div>
  1087. <!-- Unnamed (Table cell) -->
  1088. <div id="u18453" class="ax_default table_cell1 transition">
  1089. <svg data="images/车位业主认证/u18453.svg" id="u18453_img" class="img generatedImage" viewbox="300 126 91 38">
  1090. <path d="M 1 1 L 91 1 L 91 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 300 126 )" class="fill" />
  1091. <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 300 126 )" class="stroke" />
  1092. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 126 )" class="stroke" />
  1093. </svg>
  1094. <div id="u18453_text" class="text " style="display:none; visibility: hidden">
  1095. <p></p>
  1096. </div>
  1097. </div>
  1098. <!-- Unnamed (Table cell) -->
  1099. <div id="u18454" class="ax_default table_cell1 transition">
  1100. <svg data="images/车位业主认证/u18454.svg" id="u18454_img" class="img generatedImage" viewbox="391 126 91 38">
  1101. <path d="M 1 1 L 91 1 L 91 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 391 126 )" class="fill" />
  1102. <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 391 126 )" class="stroke" />
  1103. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 126 )" class="stroke" />
  1104. </svg>
  1105. <div id="u18454_text" class="text " style="display:none; visibility: hidden">
  1106. <p></p>
  1107. </div>
  1108. </div>
  1109. <!-- Unnamed (Table cell) -->
  1110. <div id="u18455" class="ax_default table_cell1 transition">
  1111. <svg data="images/车位业主认证/u18455.svg" id="u18455_img" class="img generatedImage" viewbox="482 126 91 38">
  1112. <path d="M 1 1 L 91 1 L 91 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 482 126 )" class="fill" />
  1113. <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 482 126 )" class="stroke" />
  1114. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 126 )" class="stroke" />
  1115. </svg>
  1116. <div id="u18455_text" class="text " style="display:none; visibility: hidden">
  1117. <p></p>
  1118. </div>
  1119. </div>
  1120. <!-- Unnamed (Table cell) -->
  1121. <div id="u18456" class="ax_default table_cell1 transition">
  1122. <svg data="images/车位业主认证/u18456.svg" id="u18456_img" class="img generatedImage" viewbox="574 126 91 38">
  1123. <path d="M 1 1 L 91 1 L 91 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 574 126 )" class="fill" />
  1124. <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 574 126 )" class="stroke" />
  1125. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 126 )" class="stroke" />
  1126. </svg>
  1127. <div id="u18456_text" class="text " style="display:none; visibility: hidden">
  1128. <p></p>
  1129. </div>
  1130. </div>
  1131. <!-- Unnamed (Table cell) -->
  1132. <div id="u18457" class="ax_default table_cell1 transition">
  1133. <svg data="images/车位业主认证/u18457.svg" id="u18457_img" class="img generatedImage" viewbox="665 126 91 38">
  1134. <path d="M 1 1 L 91 1 L 91 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 665 126 )" class="fill" />
  1135. <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 665 126 )" class="stroke" />
  1136. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 126 )" class="stroke" />
  1137. </svg>
  1138. <div id="u18457_text" class="text " style="display:none; visibility: hidden">
  1139. <p></p>
  1140. </div>
  1141. </div>
  1142. <!-- Unnamed (Table cell) -->
  1143. <div id="u18458" class="ax_default table_cell1 transition">
  1144. <svg data="images/车位业主认证/u18458.svg" id="u18458_img" class="img generatedImage" viewbox="756 126 99 38">
  1145. <path d="M 1 1 L 99 1 L 99 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 756 126 )" class="fill" />
  1146. <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 756 126 )" class="stroke" />
  1147. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 126 )" class="stroke" />
  1148. </svg>
  1149. <div id="u18458_text" class="text " style="display:none; visibility: hidden">
  1150. <p></p>
  1151. </div>
  1152. </div>
  1153. <!-- Unnamed (Table cell) -->
  1154. <div id="u18459" class="ax_default table_cell1 transition">
  1155. <svg data="images/车位业主认证/u18459.svg" id="u18459_img" class="img generatedImage" viewbox="856 126 93 38">
  1156. <path d="M 1 1 L 93 1 L 93 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 856 126 )" class="fill" />
  1157. <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 856 126 )" class="stroke" />
  1158. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 126 )" class="stroke" />
  1159. </svg>
  1160. <div id="u18459_text" class="text ">
  1161. <p><span>已驳回</span></p>
  1162. </div>
  1163. </div>
  1164. <!-- Unnamed (Table cell) -->
  1165. <div id="u18460" class="ax_default table_cell1 transition">
  1166. <svg data="images/车位业主认证/u18460.svg" id="u18460_img" class="img generatedImage" viewbox="948 126 91 38">
  1167. <path d="M 1 1 L 91 1 L 91 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 948 126 )" class="fill" />
  1168. <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 948 126 )" class="stroke" />
  1169. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 126 )" class="stroke" />
  1170. </svg>
  1171. <div id="u18460_text" class="text " style="display:none; visibility: hidden">
  1172. <p></p>
  1173. </div>
  1174. </div>
  1175. <!-- Unnamed (Table cell) -->
  1176. <div id="u18461" class="ax_default table_cell1 transition">
  1177. <svg data="images/车位业主认证/u18461.svg" id="u18461_img" class="img generatedImage" viewbox="1040 126 91 38">
  1178. <path d="M 1 1 L 91 1 L 91 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 1040 126 )" class="fill" />
  1179. <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 1040 126 )" class="stroke" />
  1180. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 126 )" class="stroke" />
  1181. </svg>
  1182. <div id="u18461_text" class="text " style="display:none; visibility: hidden">
  1183. <p></p>
  1184. </div>
  1185. </div>
  1186. <!-- Unnamed (Table cell) -->
  1187. <div id="u18462" class="ax_default table_cell1 transition">
  1188. <svg data="images/车位业主认证/u18462.svg" id="u18462_img" class="img generatedImage" viewbox="1131 126 88 38">
  1189. <path d="M 1 1 L 87 1 L 87 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 1131 126 )" class="fill" />
  1190. <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 1131 126 )" class="stroke" />
  1191. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 126 )" class="stroke" />
  1192. <path d="M 87.5 1 L 87.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 126 )" class="stroke" />
  1193. </svg>
  1194. <div id="u18462_text" class="text " style="display:none; visibility: hidden">
  1195. <p></p>
  1196. </div>
  1197. </div>
  1198. <!-- Unnamed (Table cell) -->
  1199. <div id="u18463" class="ax_default table_cell1 transition">
  1200. <svg data="images/车位业主认证/u18463.svg" id="u18463_img" class="img generatedImage" viewbox="0 164 69 38">
  1201. <path d="M 1 1 L 69 1 L 69 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 164 )" class="fill" />
  1202. <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 164 )" class="stroke" />
  1203. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 164 )" class="stroke" />
  1204. </svg>
  1205. <div id="u18463_text" class="text " style="display:none; visibility: hidden">
  1206. <p></p>
  1207. </div>
  1208. </div>
  1209. <!-- Unnamed (Table cell) -->
  1210. <div id="u18464" class="ax_default table_cell1 transition">
  1211. <svg data="images/车位业主认证/u18464.svg" id="u18464_img" class="img generatedImage" viewbox="69 164 69 38">
  1212. <path d="M 1 1 L 69 1 L 69 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 69 164 )" class="fill" />
  1213. <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 69 164 )" class="stroke" />
  1214. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 164 )" class="stroke" />
  1215. </svg>
  1216. <div id="u18464_text" class="text " style="display:none; visibility: hidden">
  1217. <p></p>
  1218. </div>
  1219. </div>
  1220. <!-- Unnamed (Table cell) -->
  1221. <div id="u18465" class="ax_default table_cell1 transition">
  1222. <svg data="images/车位业主认证/u18465.svg" id="u18465_img" class="img generatedImage" viewbox="139 164 69 38">
  1223. <path d="M 1 1 L 69 1 L 69 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 139 164 )" class="fill" />
  1224. <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 139 164 )" class="stroke" />
  1225. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 164 )" class="stroke" />
  1226. </svg>
  1227. <div id="u18465_text" class="text " style="display:none; visibility: hidden">
  1228. <p></p>
  1229. </div>
  1230. </div>
  1231. <!-- Unnamed (Table cell) -->
  1232. <div id="u18466" class="ax_default table_cell1 transition">
  1233. <svg data="images/车位业主认证/u18466.svg" id="u18466_img" class="img generatedImage" viewbox="208 164 91 38">
  1234. <path d="M 1 1 L 91 1 L 91 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 208 164 )" class="fill" />
  1235. <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 208 164 )" class="stroke" />
  1236. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 164 )" class="stroke" />
  1237. </svg>
  1238. <div id="u18466_text" class="text " style="display:none; visibility: hidden">
  1239. <p></p>
  1240. </div>
  1241. </div>
  1242. <!-- Unnamed (Table cell) -->
  1243. <div id="u18467" class="ax_default table_cell1 transition">
  1244. <svg data="images/车位业主认证/u18467.svg" id="u18467_img" class="img generatedImage" viewbox="300 164 91 38">
  1245. <path d="M 1 1 L 91 1 L 91 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 300 164 )" class="fill" />
  1246. <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 300 164 )" class="stroke" />
  1247. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 164 )" class="stroke" />
  1248. </svg>
  1249. <div id="u18467_text" class="text " style="display:none; visibility: hidden">
  1250. <p></p>
  1251. </div>
  1252. </div>
  1253. <!-- Unnamed (Table cell) -->
  1254. <div id="u18468" class="ax_default table_cell1 transition">
  1255. <svg data="images/车位业主认证/u18468.svg" id="u18468_img" class="img generatedImage" viewbox="391 164 91 38">
  1256. <path d="M 1 1 L 91 1 L 91 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 391 164 )" class="fill" />
  1257. <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 391 164 )" class="stroke" />
  1258. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 164 )" class="stroke" />
  1259. </svg>
  1260. <div id="u18468_text" class="text " style="display:none; visibility: hidden">
  1261. <p></p>
  1262. </div>
  1263. </div>
  1264. <!-- Unnamed (Table cell) -->
  1265. <div id="u18469" class="ax_default table_cell1 transition">
  1266. <svg data="images/车位业主认证/u18469.svg" id="u18469_img" class="img generatedImage" viewbox="482 164 91 38">
  1267. <path d="M 1 1 L 91 1 L 91 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 482 164 )" class="fill" />
  1268. <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 482 164 )" class="stroke" />
  1269. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 164 )" class="stroke" />
  1270. </svg>
  1271. <div id="u18469_text" class="text " style="display:none; visibility: hidden">
  1272. <p></p>
  1273. </div>
  1274. </div>
  1275. <!-- Unnamed (Table cell) -->
  1276. <div id="u18470" class="ax_default table_cell1 transition">
  1277. <svg data="images/车位业主认证/u18470.svg" id="u18470_img" class="img generatedImage" viewbox="574 164 91 38">
  1278. <path d="M 1 1 L 91 1 L 91 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 574 164 )" class="fill" />
  1279. <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 574 164 )" class="stroke" />
  1280. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 164 )" class="stroke" />
  1281. </svg>
  1282. <div id="u18470_text" class="text " style="display:none; visibility: hidden">
  1283. <p></p>
  1284. </div>
  1285. </div>
  1286. <!-- Unnamed (Table cell) -->
  1287. <div id="u18471" class="ax_default table_cell1 transition">
  1288. <svg data="images/车位业主认证/u18471.svg" id="u18471_img" class="img generatedImage" viewbox="665 164 91 38">
  1289. <path d="M 1 1 L 91 1 L 91 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 665 164 )" class="fill" />
  1290. <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 665 164 )" class="stroke" />
  1291. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 164 )" class="stroke" />
  1292. </svg>
  1293. <div id="u18471_text" class="text " style="display:none; visibility: hidden">
  1294. <p></p>
  1295. </div>
  1296. </div>
  1297. <!-- Unnamed (Table cell) -->
  1298. <div id="u18472" class="ax_default table_cell1 transition">
  1299. <svg data="images/车位业主认证/u18472.svg" id="u18472_img" class="img generatedImage" viewbox="756 164 99 38">
  1300. <path d="M 1 1 L 99 1 L 99 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 756 164 )" class="fill" />
  1301. <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 756 164 )" class="stroke" />
  1302. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 164 )" class="stroke" />
  1303. </svg>
  1304. <div id="u18472_text" class="text " style="display:none; visibility: hidden">
  1305. <p></p>
  1306. </div>
  1307. </div>
  1308. <!-- Unnamed (Table cell) -->
  1309. <div id="u18473" class="ax_default table_cell1 transition">
  1310. <svg data="images/车位业主认证/u18473.svg" id="u18473_img" class="img generatedImage" viewbox="856 164 93 38">
  1311. <path d="M 1 1 L 93 1 L 93 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 856 164 )" class="fill" />
  1312. <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 856 164 )" class="stroke" />
  1313. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 164 )" class="stroke" />
  1314. </svg>
  1315. <div id="u18473_text" class="text ">
  1316. <p><span>已取消</span></p>
  1317. </div>
  1318. </div>
  1319. <!-- Unnamed (Table cell) -->
  1320. <div id="u18474" class="ax_default table_cell1 transition">
  1321. <svg data="images/车位业主认证/u18474.svg" id="u18474_img" class="img generatedImage" viewbox="948 164 91 38">
  1322. <path d="M 1 1 L 91 1 L 91 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 948 164 )" class="fill" />
  1323. <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 948 164 )" class="stroke" />
  1324. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 164 )" class="stroke" />
  1325. </svg>
  1326. <div id="u18474_text" class="text " style="display:none; visibility: hidden">
  1327. <p></p>
  1328. </div>
  1329. </div>
  1330. <!-- Unnamed (Table cell) -->
  1331. <div id="u18475" class="ax_default table_cell1 transition">
  1332. <svg data="images/车位业主认证/u18475.svg" id="u18475_img" class="img generatedImage" viewbox="1040 164 91 38">
  1333. <path d="M 1 1 L 91 1 L 91 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 1040 164 )" class="fill" />
  1334. <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 1040 164 )" class="stroke" />
  1335. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 164 )" class="stroke" />
  1336. </svg>
  1337. <div id="u18475_text" class="text " style="display:none; visibility: hidden">
  1338. <p></p>
  1339. </div>
  1340. </div>
  1341. <!-- Unnamed (Table cell) -->
  1342. <div id="u18476" class="ax_default table_cell1 transition">
  1343. <svg data="images/车位业主认证/u18476.svg" id="u18476_img" class="img generatedImage" viewbox="1131 164 88 38">
  1344. <path d="M 1 1 L 87 1 L 87 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 1131 164 )" class="fill" />
  1345. <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 1131 164 )" class="stroke" />
  1346. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 164 )" class="stroke" />
  1347. <path d="M 87.5 1 L 87.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 164 )" class="stroke" />
  1348. </svg>
  1349. <div id="u18476_text" class="text " style="display:none; visibility: hidden">
  1350. <p></p>
  1351. </div>
  1352. </div>
  1353. <!-- Unnamed (Table cell) -->
  1354. <div id="u18477" class="ax_default table_cell1 transition">
  1355. <svg data="images/车位业主认证/u18477.svg" id="u18477_img" class="img generatedImage" viewbox="0 202 69 38">
  1356. <path d="M 1 1 L 69 1 L 69 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 202 )" class="fill" />
  1357. <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 202 )" class="stroke" />
  1358. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 202 )" class="stroke" />
  1359. </svg>
  1360. <div id="u18477_text" class="text " style="display:none; visibility: hidden">
  1361. <p></p>
  1362. </div>
  1363. </div>
  1364. <!-- Unnamed (Table cell) -->
  1365. <div id="u18478" class="ax_default table_cell1 transition">
  1366. <svg data="images/车位业主认证/u18478.svg" id="u18478_img" class="img generatedImage" viewbox="69 202 69 38">
  1367. <path d="M 1 1 L 69 1 L 69 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 69 202 )" class="fill" />
  1368. <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 69 202 )" class="stroke" />
  1369. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 202 )" class="stroke" />
  1370. </svg>
  1371. <div id="u18478_text" class="text " style="display:none; visibility: hidden">
  1372. <p></p>
  1373. </div>
  1374. </div>
  1375. <!-- Unnamed (Table cell) -->
  1376. <div id="u18479" class="ax_default table_cell1 transition">
  1377. <svg data="images/车位业主认证/u18479.svg" id="u18479_img" class="img generatedImage" viewbox="139 202 69 38">
  1378. <path d="M 1 1 L 69 1 L 69 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 139 202 )" class="fill" />
  1379. <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 139 202 )" class="stroke" />
  1380. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 202 )" class="stroke" />
  1381. </svg>
  1382. <div id="u18479_text" class="text " style="display:none; visibility: hidden">
  1383. <p></p>
  1384. </div>
  1385. </div>
  1386. <!-- Unnamed (Table cell) -->
  1387. <div id="u18480" class="ax_default table_cell1 transition">
  1388. <svg data="images/车位业主认证/u18480.svg" id="u18480_img" class="img generatedImage" viewbox="208 202 91 38">
  1389. <path d="M 1 1 L 91 1 L 91 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 208 202 )" class="fill" />
  1390. <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 208 202 )" class="stroke" />
  1391. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 202 )" class="stroke" />
  1392. </svg>
  1393. <div id="u18480_text" class="text " style="display:none; visibility: hidden">
  1394. <p></p>
  1395. </div>
  1396. </div>
  1397. <!-- Unnamed (Table cell) -->
  1398. <div id="u18481" class="ax_default table_cell1 transition">
  1399. <svg data="images/车位业主认证/u18481.svg" id="u18481_img" class="img generatedImage" viewbox="300 202 91 38">
  1400. <path d="M 1 1 L 91 1 L 91 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 300 202 )" class="fill" />
  1401. <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 300 202 )" class="stroke" />
  1402. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 202 )" class="stroke" />
  1403. </svg>
  1404. <div id="u18481_text" class="text " style="display:none; visibility: hidden">
  1405. <p></p>
  1406. </div>
  1407. </div>
  1408. <!-- Unnamed (Table cell) -->
  1409. <div id="u18482" class="ax_default table_cell1 transition">
  1410. <svg data="images/车位业主认证/u18482.svg" id="u18482_img" class="img generatedImage" viewbox="391 202 91 38">
  1411. <path d="M 1 1 L 91 1 L 91 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 391 202 )" class="fill" />
  1412. <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 391 202 )" class="stroke" />
  1413. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 202 )" class="stroke" />
  1414. </svg>
  1415. <div id="u18482_text" class="text " style="display:none; visibility: hidden">
  1416. <p></p>
  1417. </div>
  1418. </div>
  1419. <!-- Unnamed (Table cell) -->
  1420. <div id="u18483" class="ax_default table_cell1 transition">
  1421. <svg data="images/车位业主认证/u18483.svg" id="u18483_img" class="img generatedImage" viewbox="482 202 91 38">
  1422. <path d="M 1 1 L 91 1 L 91 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 482 202 )" class="fill" />
  1423. <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 482 202 )" class="stroke" />
  1424. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 202 )" class="stroke" />
  1425. </svg>
  1426. <div id="u18483_text" class="text " style="display:none; visibility: hidden">
  1427. <p></p>
  1428. </div>
  1429. </div>
  1430. <!-- Unnamed (Table cell) -->
  1431. <div id="u18484" class="ax_default table_cell1 transition">
  1432. <svg data="images/车位业主认证/u18484.svg" id="u18484_img" class="img generatedImage" viewbox="574 202 91 38">
  1433. <path d="M 1 1 L 91 1 L 91 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 574 202 )" class="fill" />
  1434. <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 574 202 )" class="stroke" />
  1435. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 202 )" class="stroke" />
  1436. </svg>
  1437. <div id="u18484_text" class="text " style="display:none; visibility: hidden">
  1438. <p></p>
  1439. </div>
  1440. </div>
  1441. <!-- Unnamed (Table cell) -->
  1442. <div id="u18485" class="ax_default table_cell1 transition">
  1443. <svg data="images/车位业主认证/u18485.svg" id="u18485_img" class="img generatedImage" viewbox="665 202 91 38">
  1444. <path d="M 1 1 L 91 1 L 91 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 665 202 )" class="fill" />
  1445. <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 665 202 )" class="stroke" />
  1446. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 202 )" class="stroke" />
  1447. </svg>
  1448. <div id="u18485_text" class="text " style="display:none; visibility: hidden">
  1449. <p></p>
  1450. </div>
  1451. </div>
  1452. <!-- Unnamed (Table cell) -->
  1453. <div id="u18486" class="ax_default table_cell1 transition">
  1454. <svg data="images/车位业主认证/u18486.svg" id="u18486_img" class="img generatedImage" viewbox="756 202 99 38">
  1455. <path d="M 1 1 L 99 1 L 99 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 756 202 )" class="fill" />
  1456. <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 756 202 )" class="stroke" />
  1457. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 202 )" class="stroke" />
  1458. </svg>
  1459. <div id="u18486_text" class="text " style="display:none; visibility: hidden">
  1460. <p></p>
  1461. </div>
  1462. </div>
  1463. <!-- Unnamed (Table cell) -->
  1464. <div id="u18487" class="ax_default table_cell1 transition">
  1465. <svg data="images/车位业主认证/u18487.svg" id="u18487_img" class="img generatedImage" viewbox="856 202 93 38">
  1466. <path d="M 1 1 L 93 1 L 93 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 856 202 )" class="fill" />
  1467. <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 856 202 )" class="stroke" />
  1468. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 202 )" class="stroke" />
  1469. </svg>
  1470. <div id="u18487_text" class="text " style="display:none; visibility: hidden">
  1471. <p></p>
  1472. </div>
  1473. </div>
  1474. <!-- Unnamed (Table cell) -->
  1475. <div id="u18488" class="ax_default table_cell1 transition">
  1476. <svg data="images/车位业主认证/u18488.svg" id="u18488_img" class="img generatedImage" viewbox="948 202 91 38">
  1477. <path d="M 1 1 L 91 1 L 91 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 948 202 )" class="fill" />
  1478. <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 948 202 )" class="stroke" />
  1479. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 202 )" class="stroke" />
  1480. </svg>
  1481. <div id="u18488_text" class="text " style="display:none; visibility: hidden">
  1482. <p></p>
  1483. </div>
  1484. </div>
  1485. <!-- Unnamed (Table cell) -->
  1486. <div id="u18489" class="ax_default table_cell1 transition">
  1487. <svg data="images/车位业主认证/u18489.svg" id="u18489_img" class="img generatedImage" viewbox="1040 202 91 38">
  1488. <path d="M 1 1 L 91 1 L 91 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 1040 202 )" class="fill" />
  1489. <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 1040 202 )" class="stroke" />
  1490. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 202 )" class="stroke" />
  1491. </svg>
  1492. <div id="u18489_text" class="text " style="display:none; visibility: hidden">
  1493. <p></p>
  1494. </div>
  1495. </div>
  1496. <!-- Unnamed (Table cell) -->
  1497. <div id="u18490" class="ax_default table_cell1 transition">
  1498. <svg data="images/车位业主认证/u18490.svg" id="u18490_img" class="img generatedImage" viewbox="1131 202 88 38">
  1499. <path d="M 1 1 L 87 1 L 87 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 1131 202 )" class="fill" />
  1500. <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 1131 202 )" class="stroke" />
  1501. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 202 )" class="stroke" />
  1502. <path d="M 87.5 1 L 87.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 202 )" class="stroke" />
  1503. </svg>
  1504. <div id="u18490_text" class="text " style="display:none; visibility: hidden">
  1505. <p></p>
  1506. </div>
  1507. </div>
  1508. <!-- Unnamed (Table cell) -->
  1509. <div id="u18491" class="ax_default table_cell1 transition">
  1510. <svg data="images/车位业主认证/u18491.svg" id="u18491_img" class="img generatedImage" viewbox="0 240 69 38">
  1511. <path d="M 1 1 L 69 1 L 69 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 240 )" class="fill" />
  1512. <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 240 )" class="stroke" />
  1513. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 240 )" class="stroke" />
  1514. </svg>
  1515. <div id="u18491_text" class="text " style="display:none; visibility: hidden">
  1516. <p></p>
  1517. </div>
  1518. </div>
  1519. <!-- Unnamed (Table cell) -->
  1520. <div id="u18492" class="ax_default table_cell1 transition">
  1521. <svg data="images/车位业主认证/u18492.svg" id="u18492_img" class="img generatedImage" viewbox="69 240 69 38">
  1522. <path d="M 1 1 L 69 1 L 69 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 69 240 )" class="fill" />
  1523. <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 69 240 )" class="stroke" />
  1524. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 240 )" class="stroke" />
  1525. </svg>
  1526. <div id="u18492_text" class="text " style="display:none; visibility: hidden">
  1527. <p></p>
  1528. </div>
  1529. </div>
  1530. <!-- Unnamed (Table cell) -->
  1531. <div id="u18493" class="ax_default table_cell1 transition">
  1532. <svg data="images/车位业主认证/u18493.svg" id="u18493_img" class="img generatedImage" viewbox="139 240 69 38">
  1533. <path d="M 1 1 L 69 1 L 69 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 139 240 )" class="fill" />
  1534. <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 139 240 )" class="stroke" />
  1535. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 240 )" class="stroke" />
  1536. </svg>
  1537. <div id="u18493_text" class="text " style="display:none; visibility: hidden">
  1538. <p></p>
  1539. </div>
  1540. </div>
  1541. <!-- Unnamed (Table cell) -->
  1542. <div id="u18494" class="ax_default table_cell1 transition">
  1543. <svg data="images/车位业主认证/u18494.svg" id="u18494_img" class="img generatedImage" viewbox="208 240 91 38">
  1544. <path d="M 1 1 L 91 1 L 91 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 208 240 )" class="fill" />
  1545. <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 208 240 )" class="stroke" />
  1546. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 240 )" class="stroke" />
  1547. </svg>
  1548. <div id="u18494_text" class="text " style="display:none; visibility: hidden">
  1549. <p></p>
  1550. </div>
  1551. </div>
  1552. <!-- Unnamed (Table cell) -->
  1553. <div id="u18495" class="ax_default table_cell1 transition">
  1554. <svg data="images/车位业主认证/u18495.svg" id="u18495_img" class="img generatedImage" viewbox="300 240 91 38">
  1555. <path d="M 1 1 L 91 1 L 91 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 300 240 )" class="fill" />
  1556. <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 300 240 )" class="stroke" />
  1557. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 240 )" class="stroke" />
  1558. </svg>
  1559. <div id="u18495_text" class="text " style="display:none; visibility: hidden">
  1560. <p></p>
  1561. </div>
  1562. </div>
  1563. <!-- Unnamed (Table cell) -->
  1564. <div id="u18496" class="ax_default table_cell1 transition">
  1565. <svg data="images/车位业主认证/u18496.svg" id="u18496_img" class="img generatedImage" viewbox="391 240 91 38">
  1566. <path d="M 1 1 L 91 1 L 91 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 391 240 )" class="fill" />
  1567. <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 391 240 )" class="stroke" />
  1568. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 240 )" class="stroke" />
  1569. </svg>
  1570. <div id="u18496_text" class="text " style="display:none; visibility: hidden">
  1571. <p></p>
  1572. </div>
  1573. </div>
  1574. <!-- Unnamed (Table cell) -->
  1575. <div id="u18497" class="ax_default table_cell1 transition">
  1576. <svg data="images/车位业主认证/u18497.svg" id="u18497_img" class="img generatedImage" viewbox="482 240 91 38">
  1577. <path d="M 1 1 L 91 1 L 91 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 482 240 )" class="fill" />
  1578. <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 482 240 )" class="stroke" />
  1579. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 240 )" class="stroke" />
  1580. </svg>
  1581. <div id="u18497_text" class="text " style="display:none; visibility: hidden">
  1582. <p></p>
  1583. </div>
  1584. </div>
  1585. <!-- Unnamed (Table cell) -->
  1586. <div id="u18498" class="ax_default table_cell1 transition">
  1587. <svg data="images/车位业主认证/u18498.svg" id="u18498_img" class="img generatedImage" viewbox="574 240 91 38">
  1588. <path d="M 1 1 L 91 1 L 91 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 574 240 )" class="fill" />
  1589. <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 574 240 )" class="stroke" />
  1590. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 240 )" class="stroke" />
  1591. </svg>
  1592. <div id="u18498_text" class="text " style="display:none; visibility: hidden">
  1593. <p></p>
  1594. </div>
  1595. </div>
  1596. <!-- Unnamed (Table cell) -->
  1597. <div id="u18499" class="ax_default table_cell1 transition">
  1598. <svg data="images/车位业主认证/u18499.svg" id="u18499_img" class="img generatedImage" viewbox="665 240 91 38">
  1599. <path d="M 1 1 L 91 1 L 91 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 665 240 )" class="fill" />
  1600. <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 665 240 )" class="stroke" />
  1601. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 240 )" class="stroke" />
  1602. </svg>
  1603. <div id="u18499_text" class="text " style="display:none; visibility: hidden">
  1604. <p></p>
  1605. </div>
  1606. </div>
  1607. <!-- Unnamed (Table cell) -->
  1608. <div id="u18500" class="ax_default table_cell1 transition">
  1609. <svg data="images/车位业主认证/u18500.svg" id="u18500_img" class="img generatedImage" viewbox="756 240 99 38">
  1610. <path d="M 1 1 L 99 1 L 99 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 756 240 )" class="fill" />
  1611. <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 756 240 )" class="stroke" />
  1612. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 240 )" class="stroke" />
  1613. </svg>
  1614. <div id="u18500_text" class="text " style="display:none; visibility: hidden">
  1615. <p></p>
  1616. </div>
  1617. </div>
  1618. <!-- Unnamed (Table cell) -->
  1619. <div id="u18501" class="ax_default table_cell1 transition">
  1620. <svg data="images/车位业主认证/u18501.svg" id="u18501_img" class="img generatedImage" viewbox="856 240 93 38">
  1621. <path d="M 1 1 L 93 1 L 93 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 856 240 )" class="fill" />
  1622. <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 856 240 )" class="stroke" />
  1623. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 240 )" class="stroke" />
  1624. </svg>
  1625. <div id="u18501_text" class="text " style="display:none; visibility: hidden">
  1626. <p></p>
  1627. </div>
  1628. </div>
  1629. <!-- Unnamed (Table cell) -->
  1630. <div id="u18502" class="ax_default table_cell1 transition">
  1631. <svg data="images/车位业主认证/u18502.svg" id="u18502_img" class="img generatedImage" viewbox="948 240 91 38">
  1632. <path d="M 1 1 L 91 1 L 91 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 948 240 )" class="fill" />
  1633. <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 948 240 )" class="stroke" />
  1634. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 240 )" class="stroke" />
  1635. </svg>
  1636. <div id="u18502_text" class="text " style="display:none; visibility: hidden">
  1637. <p></p>
  1638. </div>
  1639. </div>
  1640. <!-- Unnamed (Table cell) -->
  1641. <div id="u18503" class="ax_default table_cell1 transition">
  1642. <svg data="images/车位业主认证/u18503.svg" id="u18503_img" class="img generatedImage" viewbox="1040 240 91 38">
  1643. <path d="M 1 1 L 91 1 L 91 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 1040 240 )" class="fill" />
  1644. <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 1040 240 )" class="stroke" />
  1645. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 240 )" class="stroke" />
  1646. </svg>
  1647. <div id="u18503_text" class="text " style="display:none; visibility: hidden">
  1648. <p></p>
  1649. </div>
  1650. </div>
  1651. <!-- Unnamed (Table cell) -->
  1652. <div id="u18504" class="ax_default table_cell1 transition">
  1653. <svg data="images/车位业主认证/u18504.svg" id="u18504_img" class="img generatedImage" viewbox="1131 240 88 38">
  1654. <path d="M 1 1 L 87 1 L 87 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 1131 240 )" class="fill" />
  1655. <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 1131 240 )" class="stroke" />
  1656. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 240 )" class="stroke" />
  1657. <path d="M 87.5 1 L 87.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 240 )" class="stroke" />
  1658. </svg>
  1659. <div id="u18504_text" class="text " style="display:none; visibility: hidden">
  1660. <p></p>
  1661. </div>
  1662. </div>
  1663. <!-- Unnamed (Table cell) -->
  1664. <div id="u18505" class="ax_default table_cell1 transition">
  1665. <svg data="images/车位业主认证/u18505.svg" id="u18505_img" class="img generatedImage" viewbox="0 278 69 38">
  1666. <path d="M 1 1 L 69 1 L 69 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 278 )" class="fill" />
  1667. <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 278 )" class="stroke" />
  1668. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 278 )" class="stroke" />
  1669. <path d="M 0 37.5 L 69 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 278 )" class="stroke" />
  1670. </svg>
  1671. <div id="u18505_text" class="text " style="display:none; visibility: hidden">
  1672. <p></p>
  1673. </div>
  1674. </div>
  1675. <!-- Unnamed (Table cell) -->
  1676. <div id="u18506" class="ax_default table_cell1 transition">
  1677. <svg data="images/车位业主认证/u18506.svg" id="u18506_img" class="img generatedImage" viewbox="69 278 69 38">
  1678. <path d="M 1 1 L 69 1 L 69 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 69 278 )" class="fill" />
  1679. <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 69 278 )" class="stroke" />
  1680. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 278 )" class="stroke" />
  1681. <path d="M 0 37.5 L 69 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 69 278 )" class="stroke" />
  1682. </svg>
  1683. <div id="u18506_text" class="text " style="display:none; visibility: hidden">
  1684. <p></p>
  1685. </div>
  1686. </div>
  1687. <!-- Unnamed (Table cell) -->
  1688. <div id="u18507" class="ax_default table_cell1 transition">
  1689. <svg data="images/车位业主认证/u18507.svg" id="u18507_img" class="img generatedImage" viewbox="139 278 69 38">
  1690. <path d="M 1 1 L 69 1 L 69 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 139 278 )" class="fill" />
  1691. <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 139 278 )" class="stroke" />
  1692. <path d="M 0 0.5 L 69 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 278 )" class="stroke" />
  1693. <path d="M 0 37.5 L 69 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 139 278 )" class="stroke" />
  1694. </svg>
  1695. <div id="u18507_text" class="text " style="display:none; visibility: hidden">
  1696. <p></p>
  1697. </div>
  1698. </div>
  1699. <!-- Unnamed (Table cell) -->
  1700. <div id="u18508" class="ax_default table_cell1 transition">
  1701. <svg data="images/车位业主认证/u18508.svg" id="u18508_img" class="img generatedImage" viewbox="208 278 91 38">
  1702. <path d="M 1 1 L 91 1 L 91 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 208 278 )" class="fill" />
  1703. <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 208 278 )" class="stroke" />
  1704. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 278 )" class="stroke" />
  1705. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 208 278 )" class="stroke" />
  1706. </svg>
  1707. <div id="u18508_text" class="text " style="display:none; visibility: hidden">
  1708. <p></p>
  1709. </div>
  1710. </div>
  1711. <!-- Unnamed (Table cell) -->
  1712. <div id="u18509" class="ax_default table_cell1 transition">
  1713. <svg data="images/车位业主认证/u18509.svg" id="u18509_img" class="img generatedImage" viewbox="300 278 91 38">
  1714. <path d="M 1 1 L 91 1 L 91 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 300 278 )" class="fill" />
  1715. <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 300 278 )" class="stroke" />
  1716. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 278 )" class="stroke" />
  1717. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 300 278 )" class="stroke" />
  1718. </svg>
  1719. <div id="u18509_text" class="text " style="display:none; visibility: hidden">
  1720. <p></p>
  1721. </div>
  1722. </div>
  1723. <!-- Unnamed (Table cell) -->
  1724. <div id="u18510" class="ax_default table_cell1 transition">
  1725. <svg data="images/车位业主认证/u18510.svg" id="u18510_img" class="img generatedImage" viewbox="391 278 91 38">
  1726. <path d="M 1 1 L 91 1 L 91 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 391 278 )" class="fill" />
  1727. <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 391 278 )" class="stroke" />
  1728. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 278 )" class="stroke" />
  1729. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 391 278 )" class="stroke" />
  1730. </svg>
  1731. <div id="u18510_text" class="text " style="display:none; visibility: hidden">
  1732. <p></p>
  1733. </div>
  1734. </div>
  1735. <!-- Unnamed (Table cell) -->
  1736. <div id="u18511" class="ax_default table_cell1 transition">
  1737. <svg data="images/车位业主认证/u18511.svg" id="u18511_img" class="img generatedImage" viewbox="482 278 91 38">
  1738. <path d="M 1 1 L 91 1 L 91 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 482 278 )" class="fill" />
  1739. <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 482 278 )" class="stroke" />
  1740. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 278 )" class="stroke" />
  1741. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 482 278 )" class="stroke" />
  1742. </svg>
  1743. <div id="u18511_text" class="text " style="display:none; visibility: hidden">
  1744. <p></p>
  1745. </div>
  1746. </div>
  1747. <!-- Unnamed (Table cell) -->
  1748. <div id="u18512" class="ax_default table_cell1 transition">
  1749. <svg data="images/车位业主认证/u18512.svg" id="u18512_img" class="img generatedImage" viewbox="574 278 91 38">
  1750. <path d="M 1 1 L 91 1 L 91 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 574 278 )" class="fill" />
  1751. <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 574 278 )" class="stroke" />
  1752. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 278 )" class="stroke" />
  1753. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 278 )" class="stroke" />
  1754. </svg>
  1755. <div id="u18512_text" class="text " style="display:none; visibility: hidden">
  1756. <p></p>
  1757. </div>
  1758. </div>
  1759. <!-- Unnamed (Table cell) -->
  1760. <div id="u18513" class="ax_default table_cell1 transition">
  1761. <svg data="images/车位业主认证/u18513.svg" id="u18513_img" class="img generatedImage" viewbox="665 278 91 38">
  1762. <path d="M 1 1 L 91 1 L 91 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 665 278 )" class="fill" />
  1763. <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 665 278 )" class="stroke" />
  1764. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 278 )" class="stroke" />
  1765. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 665 278 )" class="stroke" />
  1766. </svg>
  1767. <div id="u18513_text" class="text " style="display:none; visibility: hidden">
  1768. <p></p>
  1769. </div>
  1770. </div>
  1771. <!-- Unnamed (Table cell) -->
  1772. <div id="u18514" class="ax_default table_cell1 transition">
  1773. <svg data="images/车位业主认证/u18514.svg" id="u18514_img" class="img generatedImage" viewbox="756 278 99 38">
  1774. <path d="M 1 1 L 99 1 L 99 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 756 278 )" class="fill" />
  1775. <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 756 278 )" class="stroke" />
  1776. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 278 )" class="stroke" />
  1777. <path d="M 0 37.5 L 99 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 756 278 )" class="stroke" />
  1778. </svg>
  1779. <div id="u18514_text" class="text " style="display:none; visibility: hidden">
  1780. <p></p>
  1781. </div>
  1782. </div>
  1783. <!-- Unnamed (Table cell) -->
  1784. <div id="u18515" class="ax_default table_cell1 transition">
  1785. <svg data="images/车位业主认证/u18515.svg" id="u18515_img" class="img generatedImage" viewbox="856 278 93 38">
  1786. <path d="M 1 1 L 93 1 L 93 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 856 278 )" class="fill" />
  1787. <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 856 278 )" class="stroke" />
  1788. <path d="M 0 0.5 L 93 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 278 )" class="stroke" />
  1789. <path d="M 0 37.5 L 93 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 856 278 )" class="stroke" />
  1790. </svg>
  1791. <div id="u18515_text" class="text " style="display:none; visibility: hidden">
  1792. <p></p>
  1793. </div>
  1794. </div>
  1795. <!-- Unnamed (Table cell) -->
  1796. <div id="u18516" class="ax_default table_cell1 transition">
  1797. <svg data="images/车位业主认证/u18516.svg" id="u18516_img" class="img generatedImage" viewbox="948 278 91 38">
  1798. <path d="M 1 1 L 91 1 L 91 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 948 278 )" class="fill" />
  1799. <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 948 278 )" class="stroke" />
  1800. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 278 )" class="stroke" />
  1801. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 948 278 )" class="stroke" />
  1802. </svg>
  1803. <div id="u18516_text" class="text " style="display:none; visibility: hidden">
  1804. <p></p>
  1805. </div>
  1806. </div>
  1807. <!-- Unnamed (Table cell) -->
  1808. <div id="u18517" class="ax_default table_cell1 transition">
  1809. <svg data="images/车位业主认证/u18517.svg" id="u18517_img" class="img generatedImage" viewbox="1040 278 91 38">
  1810. <path d="M 1 1 L 91 1 L 91 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 1040 278 )" class="fill" />
  1811. <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 1040 278 )" class="stroke" />
  1812. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 278 )" class="stroke" />
  1813. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 278 )" class="stroke" />
  1814. </svg>
  1815. <div id="u18517_text" class="text " style="display:none; visibility: hidden">
  1816. <p></p>
  1817. </div>
  1818. </div>
  1819. <!-- Unnamed (Table cell) -->
  1820. <div id="u18518" class="ax_default table_cell1 transition">
  1821. <svg data="images/车位业主认证/u18518.svg" id="u18518_img" class="img generatedImage" viewbox="1131 278 88 38">
  1822. <path d="M 1 1 L 87 1 L 87 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 1131 278 )" class="fill" />
  1823. <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 1131 278 )" class="stroke" />
  1824. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 278 )" class="stroke" />
  1825. <path d="M 87.5 1 L 87.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 278 )" class="stroke" />
  1826. <path d="M 0 37.5 L 88 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1131 278 )" class="stroke" />
  1827. </svg>
  1828. <div id="u18518_text" class="text " style="display:none; visibility: hidden">
  1829. <p></p>
  1830. </div>
  1831. </div>
  1832. </div>
  1833. <!-- Unnamed (Rectangle) -->
  1834. <div id="u18519" class="ax_default paragraph transition">
  1835. <div id="u18519_div" class=""></div>
  1836. <div id="u18519_text" class="text ">
  1837. <p><span>车位业主认证</span></p>
  1838. </div>
  1839. </div>
  1840. <!-- Unnamed (Group) -->
  1841. <div id="u18520" class="ax_default" data-left="648" data-top="145" data-width="140" data-height="30" layer-opacity="1">
  1842. <!-- Unnamed (Rectangle) -->
  1843. <div id="u18521" class="ax_default box_1 transition">
  1844. <div id="u18521_div" class=""></div>
  1845. <div id="u18521_text" class="text " style="display:none; visibility: hidden">
  1846. <p></p>
  1847. </div>
  1848. </div>
  1849. <!-- Unnamed (Droplist) -->
  1850. <div id="u18522" class="ax_default droplist transition">
  1851. <div id="u18522_div" class=""></div>
  1852. <select id="u18522_input" class="u18522_input">
  1853. <option class="u18522_input_option" value="车位号">车位号</option>
  1854. </select>
  1855. </div>
  1856. </div>
  1857. <!-- Unnamed (Group) -->
  1858. <div id="u18523" class="ax_default" data-left="498" data-top="145" data-width="140" data-height="30" layer-opacity="1">
  1859. <!-- Unnamed (Rectangle) -->
  1860. <div id="u18524" class="ax_default box_1 transition">
  1861. <div id="u18524_div" class=""></div>
  1862. <div id="u18524_text" class="text " style="display:none; visibility: hidden">
  1863. <p></p>
  1864. </div>
  1865. </div>
  1866. <!-- Unnamed (Droplist) -->
  1867. <div id="u18525" class="ax_default droplist transition">
  1868. <div id="u18525_div" class=""></div>
  1869. <select id="u18525_input" class="u18525_input">
  1870. <option class="u18525_input_option" value="车场">车场</option>
  1871. </select>
  1872. </div>
  1873. </div>
  1874. <!-- Unnamed (客户-人员中心) -->
  1875. <div id="u18526" class="nopointer ax_default">
  1876. <!-- Unnamed (Group) -->
  1877. <div id="u18527" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
  1878. <!-- Unnamed (Rectangle) -->
  1879. <div id="u18528" class="ax_default box_2 transition">
  1880. <div id="u18528_div" class=""></div>
  1881. <div id="u18528_text" class="text " style="display:none; visibility: hidden">
  1882. <p></p>
  1883. </div>
  1884. </div>
  1885. <!-- Unnamed (Rectangle) -->
  1886. <div id="u18529" class="ax_default label transition">
  1887. <div id="u18529_div" class=""></div>
  1888. <div id="u18529_text" class="text ">
  1889. <p><span>客户中心</span></p>
  1890. </div>
  1891. </div>
  1892. <!-- Unnamed (Rectangle) -->
  1893. <div id="u18530" class="ax_default label transition">
  1894. <div id="u18530_div" class=""></div>
  1895. <div id="u18530_text" class="text ">
  1896. <p><span>入驻企业</span></p>
  1897. </div>
  1898. </div>
  1899. <!-- Unnamed (Rectangle) -->
  1900. <div id="u18531" class="ax_default label transition">
  1901. <div id="u18531_div" class=""></div>
  1902. <div id="u18531_text" class="text ">
  1903. <p><span>入驻机构</span></p>
  1904. </div>
  1905. </div>
  1906. <!-- Unnamed (Rectangle) -->
  1907. <div id="u18532" class="ax_default label transition">
  1908. <div id="u18532_div" class=""></div>
  1909. <div id="u18532_text" class="text ">
  1910. <p><span>人员登记</span></p>
  1911. </div>
  1912. </div>
  1913. <!-- Unnamed (Rectangle) -->
  1914. <div id="u18533" class="ax_default label transition">
  1915. <div id="u18533_div" class=""></div>
  1916. <div id="u18533_text" class="text ">
  1917. <p><span>房屋住户</span></p>
  1918. </div>
  1919. </div>
  1920. <!-- Unnamed (Line) -->
  1921. <div id="u18534" class="ax_default line1 transition">
  1922. <svg data="images/项目列表/u4990.svg" id="u18534_img" class="img generatedImage">
  1923. <g transform="matrix(1 0 0 1 -1 -122 )">
  1924. <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" />
  1925. </g>
  1926. </svg>
  1927. <div id="u18534_text" class="text " style="display:none; visibility: hidden">
  1928. <p></p>
  1929. </div>
  1930. </div>
  1931. <!-- Unnamed (Rectangle) -->
  1932. <div id="u18535" class="ax_default label transition">
  1933. <div id="u18535_div" class=""></div>
  1934. <div id="u18535_text" class="text ">
  1935. <p><span>企业员工</span></p>
  1936. </div>
  1937. </div>
  1938. <!-- Unnamed (Rectangle) -->
  1939. <div id="u18536" class="ax_default label transition">
  1940. <div id="u18536_div" class=""></div>
  1941. <div id="u18536_text" class="text ">
  1942. <p><span>业主管理</span></p>
  1943. </div>
  1944. </div>
  1945. <!-- Unnamed (Line) -->
  1946. <div id="u18537" class="ax_default line1 transition">
  1947. <svg data="images/项目列表/u4990.svg" id="u18537_img" class="img generatedImage">
  1948. <g transform="matrix(1 0 0 1 -1 -122 )">
  1949. <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" />
  1950. </g>
  1951. </svg>
  1952. <div id="u18537_text" class="text " style="display:none; visibility: hidden">
  1953. <p></p>
  1954. </div>
  1955. </div>
  1956. <!-- Unnamed (Rectangle) -->
  1957. <div id="u18538" class="ax_default label transition">
  1958. <div id="u18538_div" class=""></div>
  1959. <div id="u18538_text" class="text ">
  1960. <p><span>房屋业主</span></p>
  1961. </div>
  1962. </div>
  1963. <!-- Unnamed (Rectangle) -->
  1964. <div id="u18539" class="ax_default label transition">
  1965. <div id="u18539_div" class=""></div>
  1966. <div id="u18539_text" class="text ">
  1967. <p><span>车位业主</span></p>
  1968. </div>
  1969. </div>
  1970. <!-- Unnamed (Rectangle) -->
  1971. <div id="u18540" class="ax_default label transition">
  1972. <div id="u18540_div" class=""></div>
  1973. <div id="u18540_text" class="text ">
  1974. <p><span>微信用户认证设置</span></p>
  1975. </div>
  1976. </div>
  1977. <!-- Unnamed (Rectangle) -->
  1978. <div id="u18541" class="ax_default label transition">
  1979. <div id="u18541_div" class=""></div>
  1980. <div id="u18541_text" class="text ">
  1981. <p><span>房屋业主账号认证</span></p>
  1982. </div>
  1983. </div>
  1984. <!-- Unnamed (Rectangle) -->
  1985. <div id="u18542" class="ax_default label transition">
  1986. <div id="u18542_div" class=""></div>
  1987. <div id="u18542_text" class="text ">
  1988. <p><span>微信用户账号认证</span></p>
  1989. </div>
  1990. </div>
  1991. <!-- Unnamed (Line) -->
  1992. <div id="u18543" class="ax_default line1 transition">
  1993. <svg data="images/项目列表/u4990.svg" id="u18543_img" class="img generatedImage">
  1994. <g transform="matrix(1 0 0 1 -1 -122 )">
  1995. <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" />
  1996. </g>
  1997. </svg>
  1998. <div id="u18543_text" class="text " style="display:none; visibility: hidden">
  1999. <p></p>
  2000. </div>
  2001. </div>
  2002. <!-- Unnamed (Rectangle) -->
  2003. <div id="u18544" class="ax_default label transition">
  2004. <div id="u18544_div" class=""></div>
  2005. <div id="u18544_text" class="text ">
  2006. <p><span>房源住户账号认证</span></p>
  2007. </div>
  2008. </div>
  2009. <!-- Unnamed (Rectangle) -->
  2010. <div id="u18545" class="ax_default label transition">
  2011. <div id="u18545_div" class=""></div>
  2012. <div id="u18545_text" class="text ">
  2013. <p><span>入驻企业账号认证</span></p>
  2014. </div>
  2015. </div>
  2016. <!-- Unnamed (Rectangle) -->
  2017. <div id="u18546" class="ax_default label transition">
  2018. <div id="u18546_div" class=""></div>
  2019. <div id="u18546_text" class="text ">
  2020. <p><span>人员档案</span></p>
  2021. </div>
  2022. </div>
  2023. <!-- Unnamed (Rectangle) -->
  2024. <div id="u18547" class="ax_default label transition">
  2025. <div id="u18547_div" class=""></div>
  2026. <div id="u18547_text" class="text ">
  2027. <p><span>客户档案</span></p>
  2028. </div>
  2029. </div>
  2030. <!-- Unnamed (Line) -->
  2031. <div id="u18548" class="ax_default line1 transition">
  2032. <svg data="images/项目列表/u4990.svg" id="u18548_img" class="img generatedImage">
  2033. <g transform="matrix(1 0 0 1 -1 -122 )">
  2034. <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" />
  2035. </g>
  2036. </svg>
  2037. <div id="u18548_text" class="text " style="display:none; visibility: hidden">
  2038. <p></p>
  2039. </div>
  2040. </div>
  2041. <!-- Unnamed (Rectangle) -->
  2042. <div id="u18549" class="ax_default label transition">
  2043. <div id="u18549_div" class=""></div>
  2044. <div id="u18549_text" class="text ">
  2045. <p><span>机构档案</span></p>
  2046. </div>
  2047. </div>
  2048. <!-- Unnamed (Rectangle) -->
  2049. <div id="u18550" class="ax_default label transition">
  2050. <div id="u18550_div" class=""></div>
  2051. <div id="u18550_text" class="text ">
  2052. <p><span>物业员工账号认证</span></p>
  2053. </div>
  2054. </div>
  2055. <!-- Unnamed (Rectangle) -->
  2056. <div id="u18551" class="ax_default label transition">
  2057. <div id="u18551_div" class=""></div>
  2058. <div id="u18551_text" class="text ">
  2059. <p><span>业主委员会</span></p>
  2060. </div>
  2061. </div>
  2062. <!-- Unnamed (Rectangle) -->
  2063. <div id="u18552" class="ax_default label transition">
  2064. <div id="u18552_div" class=""></div>
  2065. <div id="u18552_text" class="text ">
  2066. <p><span>车位业主账号认证</span></p>
  2067. </div>
  2068. </div>
  2069. <!-- Unnamed (Rectangle) -->
  2070. <div id="u18553" class="ax_default label transition">
  2071. <div id="u18553_div" class=""></div>
  2072. <div id="u18553_text" class="text ">
  2073. <p><span>物业员工</span></p>
  2074. </div>
  2075. </div>
  2076. <!-- Unnamed (Rectangle) -->
  2077. <div id="u18554" class="ax_default label transition">
  2078. <div id="u18554_div" class=""></div>
  2079. <div id="u18554_text" class="text ">
  2080. <p><span>骑手快递员</span></p>
  2081. </div>
  2082. </div>
  2083. <!-- Unnamed (Rectangle) -->
  2084. <div id="u18555" class="ax_default label transition">
  2085. <div id="u18555_div" class=""></div>
  2086. <div id="u18555_text" class="text ">
  2087. <p><span>装修工人</span></p>
  2088. </div>
  2089. </div>
  2090. <!-- Unnamed (Rectangle) -->
  2091. <div id="u18556" class="ax_default label transition">
  2092. <div id="u18556_div" class=""></div>
  2093. <div id="u18556_text" class="text ">
  2094. <p><span>临时登记人员</span></p>
  2095. </div>
  2096. </div>
  2097. <!-- Unnamed (Line) -->
  2098. <div id="u18557" class="ax_default line1 transition">
  2099. <svg data="images/项目列表/u4990.svg" id="u18557_img" class="img generatedImage">
  2100. <g transform="matrix(1 0 0 1 -1 -122 )">
  2101. <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" />
  2102. </g>
  2103. </svg>
  2104. <div id="u18557_text" class="text " style="display:none; visibility: hidden">
  2105. <p></p>
  2106. </div>
  2107. </div>
  2108. </div>
  2109. </div>
  2110. <!-- Unnamed (Rectangle) -->
  2111. <div id="u18558" class="ax_default paragraph transition">
  2112. <div id="u18558_div" class=""></div>
  2113. <div id="u18558_text" class="text ">
  2114. <p><span>此处查看处理车位业主在小程序端提交的认证信息。审批通过之后,将自动更新到车位业主列表,绑定认证用户账号并更新相关信息。</span></p>
  2115. </div>
  2116. </div>
  2117. <!-- Unnamed (Group) -->
  2118. <div id="u18559" class="ax_default" data-left="800" data-top="183" data-width="130" data-height="30" layer-opacity="1">
  2119. <!-- Unnamed (Rectangle) -->
  2120. <div id="u18560" class="ax_default box_1 transition">
  2121. <div id="u18560_div" class=""></div>
  2122. <div id="u18560_text" class="text ">
  2123. <p><span>搜索</span></p>
  2124. </div>
  2125. </div>
  2126. <!-- Unnamed (Rectangle) -->
  2127. <div id="u18561" class="ax_default box_1 transition">
  2128. <div id="u18561_div" class=""></div>
  2129. <div id="u18561_text" class="text ">
  2130. <p><span>重置</span></p>
  2131. </div>
  2132. </div>
  2133. </div>
  2134. <!-- Unnamed (Group) -->
  2135. <div id="u18562" class="ax_default" data-left="350" data-top="143" data-width="140" data-height="30" layer-opacity="1">
  2136. <!-- Unnamed (Rectangle) -->
  2137. <div id="u18563" class="ax_default box_1 transition">
  2138. <div id="u18563_div" class=""></div>
  2139. <div id="u18563_text" class="text " style="display:none; visibility: hidden">
  2140. <p></p>
  2141. </div>
  2142. </div>
  2143. <!-- Unnamed (Droplist) -->
  2144. <div id="u18564" class="ax_default droplist transition">
  2145. <div id="u18564_div" class=""></div>
  2146. <select id="u18564_input" class="u18564_input">
  2147. <option class="u18564_input_option" value="项目">项目</option>
  2148. </select>
  2149. </div>
  2150. </div>
  2151. <!-- Unnamed (Group) -->
  2152. <div id="u18565" class="ax_default" data-left="1400" data-top="145" data-width="140" data-height="30" layer-opacity="1">
  2153. <!-- Unnamed (Rectangle) -->
  2154. <div id="u18566" class="ax_default box_1 transition">
  2155. <div id="u18566_div" class=""></div>
  2156. <div id="u18566_text" class="text " style="display:none; visibility: hidden">
  2157. <p></p>
  2158. </div>
  2159. </div>
  2160. <!-- Unnamed (Droplist) -->
  2161. <div id="u18567" class="ax_default droplist transition">
  2162. <div id="u18567_div" class=""></div>
  2163. <select id="u18567_input" class="u18567_input">
  2164. <option class="u18567_input_option" value="认证状态">认证状态</option>
  2165. <option class="u18567_input_option" value="待确认">待确认</option>
  2166. <option class="u18567_input_option" value="已通过">已通过</option>
  2167. <option class="u18567_input_option" value="已驳回">已驳回</option>
  2168. <option class="u18567_input_option" value="已取消">已取消</option>
  2169. </select>
  2170. </div>
  2171. </div>
  2172. <!-- Unnamed (Group) -->
  2173. <div id="u18568" class="ax_default" data-left="800" data-top="145" data-width="140" data-height="30" layer-opacity="1">
  2174. <!-- Unnamed (Rectangle) -->
  2175. <div id="u18569" class="ax_default box_1 transition">
  2176. <div id="u18569_div" class=""></div>
  2177. <div id="u18569_text" class="text " style="display:none; visibility: hidden">
  2178. <p></p>
  2179. </div>
  2180. </div>
  2181. <!-- Unnamed (Droplist) -->
  2182. <div id="u18570" class="ax_default droplist transition">
  2183. <div id="u18570_div" class=""></div>
  2184. <select id="u18570_input" class="u18570_input">
  2185. <option class="u18570_input_option" value="业主类型">业主类型</option>
  2186. <option class="u18570_input_option" value="个人">个人</option>
  2187. <option class="u18570_input_option" value="企业">企业</option>
  2188. </select>
  2189. </div>
  2190. </div>
  2191. <!-- Unnamed (Group) -->
  2192. <div id="u18571" class="ax_default" data-left="950" data-top="144" data-width="140" data-height="30" layer-opacity="1">
  2193. <!-- Unnamed (Rectangle) -->
  2194. <div id="u18572" class="ax_default shape transition">
  2195. <div id="u18572_div" class=""></div>
  2196. <div id="u18572_text" class="text " style="display:none; visibility: hidden">
  2197. <p></p>
  2198. </div>
  2199. </div>
  2200. <!-- 选项内容 (Text field) -->
  2201. <div id="u18573" class="ax_default text_field transition" data-label="选项内容">
  2202. <div id="u18573_div" class=""></div>
  2203. <input id="u18573_input" type="text" value="" class="u18573_input"/>
  2204. </div>
  2205. </div>
  2206. <!-- Unnamed (Group) -->
  2207. <div id="u18574" class="ax_default" data-left="1250" data-top="145" data-width="140" data-height="30" layer-opacity="1">
  2208. <!-- Unnamed (Rectangle) -->
  2209. <div id="u18575" class="ax_default shape transition">
  2210. <div id="u18575_div" class=""></div>
  2211. <div id="u18575_text" class="text " style="display:none; visibility: hidden">
  2212. <p></p>
  2213. </div>
  2214. </div>
  2215. <!-- 选项内容 (Text field) -->
  2216. <div id="u18576" class="ax_default text_field transition" data-label="选项内容">
  2217. <div id="u18576_div" class=""></div>
  2218. <input id="u18576_input" type="text" value="" class="u18576_input"/>
  2219. </div>
  2220. </div>
  2221. <!-- Unnamed (Group) -->
  2222. <div id="u18577" class="ax_default" data-left="1100" data-top="145" data-width="140" data-height="30" layer-opacity="1">
  2223. <!-- Unnamed (Rectangle) -->
  2224. <div id="u18578" class="ax_default box_1 transition">
  2225. <div id="u18578_div" class=""></div>
  2226. <div id="u18578_text" class="text " style="display:none; visibility: hidden">
  2227. <p></p>
  2228. </div>
  2229. </div>
  2230. <!-- Unnamed (Droplist) -->
  2231. <div id="u18579" class="ax_default droplist transition">
  2232. <div id="u18579_div" class=""></div>
  2233. <select id="u18579_input" class="u18579_input">
  2234. <option class="u18579_input_option" value="证件类型">证件类型</option>
  2235. <option class="u18579_input_option" value="身份证">身份证</option>
  2236. <option class="u18579_input_option" value="营业执照">营业执照</option>
  2237. </select>
  2238. </div>
  2239. </div>
  2240. <!-- Unnamed (Group) -->
  2241. <div id="u18580" class="ax_default" data-left="350" data-top="183" data-width="140" data-height="30" layer-opacity="1">
  2242. <!-- Unnamed (Rectangle) -->
  2243. <div id="u18581" class="ax_default box_1 transition">
  2244. <div id="u18581_div" class=""></div>
  2245. <div id="u18581_text" class="text " style="display:none; visibility: hidden">
  2246. <p></p>
  2247. </div>
  2248. </div>
  2249. <!-- Unnamed (Droplist) -->
  2250. <div id="u18582" class="ax_default droplist transition">
  2251. <div id="u18582_div" class=""></div>
  2252. <select id="u18582_input" class="u18582_input">
  2253. <option class="u18582_input_option" value="申请起止时间">申请起止时间</option>
  2254. </select>
  2255. </div>
  2256. </div>
  2257. <!-- Unnamed (Group) -->
  2258. <div id="u18583" class="ax_default" data-left="650" data-top="183" data-width="140" data-height="30" layer-opacity="1">
  2259. <!-- Unnamed (Rectangle) -->
  2260. <div id="u18584" class="ax_default box_1 transition">
  2261. <div id="u18584_div" class=""></div>
  2262. <div id="u18584_text" class="text " style="display:none; visibility: hidden">
  2263. <p></p>
  2264. </div>
  2265. </div>
  2266. <!-- Unnamed (Droplist) -->
  2267. <div id="u18585" class="ax_default droplist transition">
  2268. <div id="u18585_div" class=""></div>
  2269. <select id="u18585_input" class="u18585_input">
  2270. <option class="u18585_input_option" value="审批起止时间">审批起止时间</option>
  2271. </select>
  2272. </div>
  2273. </div>
  2274. <!-- Unnamed (Group) -->
  2275. <div id="u18586" class="ax_default" data-left="498" data-top="183" data-width="140" data-height="30" layer-opacity="1">
  2276. <!-- Unnamed (Rectangle) -->
  2277. <div id="u18587" class="ax_default shape transition">
  2278. <div id="u18587_div" class=""></div>
  2279. <div id="u18587_text" class="text " style="display:none; visibility: hidden">
  2280. <p></p>
  2281. </div>
  2282. </div>
  2283. <!-- 选项内容 (Text field) -->
  2284. <div id="u18588" class="ax_default text_field transition" data-label="选项内容">
  2285. <div id="u18588_div" class=""></div>
  2286. <input id="u18588_input" type="text" value="" class="u18588_input"/>
  2287. </div>
  2288. </div>
  2289. </div>
  2290. <script src="resources/scripts/axure/ios.js"></script>
  2291. </body>
  2292. </html>