123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>车位业主认证</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
- <link href="data/styles.css" type="text/css" rel="stylesheet"/>
- <link href="files/车位业主认证/styles.css" type="text/css" rel="stylesheet"/>
- <link href="https://fonts.googleapis.com" rel="preconnect"/>
- <link href="https://fonts.gstatic.com" rel="preconnect"/>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
- <script src="resources/scripts/jquery-3.7.1.min.js"></script>
- <script src="resources/scripts/axure/axQuery.js"></script>
- <script src="resources/scripts/axure/globals.js"></script>
- <script src="resources/scripts/axutils.js"></script>
- <script src="resources/scripts/axure/annotation.js"></script>
- <script src="resources/scripts/axure/axQuery.std.js"></script>
- <script src="resources/scripts/axure/doc.js"></script>
- <script src="resources/scripts/messagecenter.js"></script>
- <script src="resources/scripts/axure/events.js"></script>
- <script src="resources/scripts/axure/recording.js"></script>
- <script src="resources/scripts/axure/action.js"></script>
- <script src="resources/scripts/axure/expr.js"></script>
- <script src="resources/scripts/axure/geometry.js"></script>
- <script src="resources/scripts/axure/flyout.js"></script>
- <script src="resources/scripts/axure/model.js"></script>
- <script src="resources/scripts/axure/repeater.js"></script>
- <script src="resources/scripts/axure/sto.js"></script>
- <script src="resources/scripts/axure/utils.temp.js"></script>
- <script src="resources/scripts/axure/variables.js"></script>
- <script src="resources/scripts/axure/drag.js"></script>
- <script src="resources/scripts/axure/move.js"></script>
- <script src="resources/scripts/axure/visibility.js"></script>
- <script src="resources/scripts/axure/style.js"></script>
- <script src="resources/scripts/axure/adaptive.js"></script>
- <script src="resources/scripts/axure/tree.js"></script>
- <script src="resources/scripts/axure/init.temp.js"></script>
- <script src="resources/scripts/axure/legacy.js"></script>
- <script src="resources/scripts/axure/viewer.js"></script>
- <script src="resources/scripts/axure/math.js"></script>
- <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
- <script src="data/document.js"></script>
- <script src="files/车位业主认证/data.js"></script>
- <script type="text/javascript">
- $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
- $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
- $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
- </script>
- </head>
- <body>
- <div id="base" class="">
- <!-- Unnamed (客户管理端-一级) -->
- <div id="u18350" class="nopointer ax_default">
- <!-- Unnamed (Rectangle) -->
- <div id="u18351" class="ax_default box_2 transition">
- <div id="u18351_div" class=""></div>
- <div id="u18351_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18352" class="ax_default label transition">
- <div id="u18352_div" class=""></div>
- <div id="u18352_text" class="text ">
- <p><span>课后延时慧学平台</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18353" class="ax_default box_2 transition">
- <div id="u18353_div" class=""></div>
- <div id="u18353_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18354" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
- <!-- Unnamed (Ellipse) -->
- <div id="u18355" class="ax_default ellipse transition">
- <svg data="images/pc网页端/u5.svg" id="u18355_img" class="img generatedImage">
- <defs>
- <pattern id="u18355_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18355_img_cl5095">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -19 -10 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u18355_text" class="text ">
- <p><span>logo</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18356" class="ax_default label transition">
- <div id="u18356_div" class=""></div>
- <div id="u18356_text" class="text ">
- <p><span>保利智慧社区管理平台</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18357" class="ax_default box_2 transition">
- <div id="u18357_div" class=""></div>
- <div id="u18357_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18358" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18359" class="ax_default label transition">
- <div id="u18359_div" class=""></div>
- <div id="u18359_text" class="text ">
- <p><span>项目</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18360" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18360.svg" id="u18360_img" class="img generatedImage">
- <defs>
- <pattern id="u18360_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18360_img_cl6228">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -175 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18360_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18361" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18362" class="ax_default label transition">
- <div id="u18362_div" class=""></div>
- <div id="u18362_text" class="text ">
- <p><span>企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18363" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18363.svg" id="u18363_img" class="img generatedImage">
- <defs>
- <pattern id="u18363_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18363_img_cl6229">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -385 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18363_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18364" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18365" class="ax_default label transition">
- <div id="u18365_div" class=""></div>
- <div id="u18365_text" class="text ">
- <p><span>可视化</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18366" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18366.svg" id="u18366_img" class="img generatedImage">
- <defs>
- <pattern id="u18366_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18366_img_cl6230">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -137 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18366_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18367" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18368" class="ax_default label transition">
- <div id="u18368_div" class=""></div>
- <div id="u18368_text" class="text ">
- <p><span>标签</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18369" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18369.svg" id="u18369_img" class="img generatedImage">
- <defs>
- <pattern id="u18369_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18369_img_cl6231">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -427 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18369_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18370" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18371" class="ax_default label transition">
- <div id="u18371_div" class=""></div>
- <div id="u18371_text" class="text ">
- <p><span>财务</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18372" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18372.svg" id="u18372_img" class="img generatedImage">
- <defs>
- <pattern id="u18372_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18372_img_cl6232">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -301 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18372_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18373" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18374" class="ax_default label transition">
- <div id="u18374_div" class=""></div>
- <div id="u18374_text" class="text ">
- <p><span>空间</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18375" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18375.svg" id="u18375_img" class="img generatedImage">
- <defs>
- <pattern id="u18375_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18375_img_cl6233">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -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 217 )" class="fill" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18375_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18376" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18377" class="ax_default label transition">
- <div id="u18377_div" class=""></div>
- <div id="u18377_text" class="text ">
- <p><span>办公</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18378" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18378.svg" id="u18378_img" class="img generatedImage">
- <defs>
- <pattern id="u18378_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18378_img_cl6234">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -343 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18378_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18379" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18380" class="ax_default label transition">
- <div id="u18380_div" class=""></div>
- <div id="u18380_text" class="text ">
- <p><span>系统</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18381" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18381.svg" id="u18381_img" class="img generatedImage">
- <defs>
- <pattern id="u18381_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18381_img_cl6235">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -469 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18381_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18382" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18383" class="ax_default label transition">
- <div id="u18383_div" class=""></div>
- <div id="u18383_text" class="text ">
- <p><span>消息</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18384" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18384.svg" id="u18384_img" class="img generatedImage">
- <defs>
- <pattern id="u18384_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18384_img_cl6236">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1144 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18384_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18385" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18386" class="ax_default label transition">
- <div id="u18386_div" class=""></div>
- <div id="u18386_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18387" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18387.svg" id="u18387_img" class="img generatedImage">
- <defs>
- <pattern id="u18387_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18387_img_cl6237">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1186 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18387_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18388" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18389" class="ax_default label transition">
- <div id="u18389_div" class=""></div>
- <div id="u18389_text" class="text ">
- <p><span>收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18390" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18390.svg" id="u18390_img" class="img generatedImage">
- <defs>
- <pattern id="u18390_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18390_img_cl6238">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -259 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18390_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18391" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
- <!-- Unnamed (Droplist) -->
- <div id="u18392" class="ax_default droplist transition">
- <div id="u18392_div" class=""></div>
- <select id="u18392_input" class="u18392_input">
- <option class="u18392_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
- </select>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18393" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18393.svg" id="u18393_img" class="img generatedImage">
- <defs>
- <pattern id="u18393_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18393_img_cl6239">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1194 -14 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18393_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18394" class="ax_default label transition">
- <div id="u18394_div" class=""></div>
- <div id="u18394_text" class="text ">
- <p><span>进入运营后台</span></p>
- </div>
- </div>
- <!-- Unnamed (Vertical line) -->
- <div id="u18395" class="ax_default line1 transition">
- <svg data="images/pc网页端/u45.svg" id="u18395_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1452 -19 )">
- <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" />
- </g>
- </svg>
- <div id="u18395_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18396" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18397" class="ax_default label transition">
- <div id="u18397_div" class=""></div>
- <div id="u18397_text" class="text ">
- <p><span>应用</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u18398" class="ax_default placeholder transition">
- <svg data="images/车位业主认证/u18398.svg" id="u18398_img" class="img generatedImage">
- <defs>
- <pattern id="u18398_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18398_img_cl6240">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1081 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u18398_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18399" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u18399_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <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" />
- </g>
- </svg>
- <div id="u18399_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18400" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u18400_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <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" />
- </g>
- </svg>
- <div id="u18400_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18401" class="ax_default line1 transition">
- <svg data="images/pc网页端/u51.svg" id="u18401_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -112 )">
- <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" />
- </g>
- </svg>
- <div id="u18401_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18402" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18403" class="ax_default label transition">
- <div id="u18403_div" class=""></div>
- <div id="u18403_text" class="text ">
- <p><span>主页</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u18404" class="ax_default icon transition">
- <svg data="images/pc网页端/u54.svg" id="u18404_img" class="img generatedImage">
- <defs>
- <pattern id="u18404_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u18404_img_cl5109">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -75 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u18404_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18405" class="ax_default box_2 transition">
- <div id="u18405_div" class=""></div>
- <div id="u18405_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u18406" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u18407" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18407.svg" id="u18407_img" class="img generatedImage" viewbox="0 0 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18407_text" class="text ">
- <p><span>项目</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18408" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18408.svg" id="u18408_img" class="img generatedImage" viewbox="69 0 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18408_text" class="text ">
- <p><span>车场</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18409" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18409.svg" id="u18409_img" class="img generatedImage" viewbox="139 0 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18409_text" class="text ">
- <p><span>车位号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18410" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18410.svg" id="u18410_img" class="img generatedImage" viewbox="208 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18410_text" class="text ">
- <p><span>业主类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18411" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18411.svg" id="u18411_img" class="img generatedImage" viewbox="300 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18411_text" class="text ">
- <p><span>业主名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18412" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18412.svg" id="u18412_img" class="img generatedImage" viewbox="391 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18412_text" class="text ">
- <p><span>证件类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18413" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18413.svg" id="u18413_img" class="img generatedImage" viewbox="482 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18413_text" class="text ">
- <p><span>证件号码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18414" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18414.svg" id="u18414_img" class="img generatedImage" viewbox="574 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18414_text" class="text ">
- <p><span>联系人</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18415" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18415.svg" id="u18415_img" class="img generatedImage" viewbox="665 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18415_text" class="text ">
- <p><span>联系方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18416" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18416.svg" id="u18416_img" class="img generatedImage" viewbox="756 0 99 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18416_text" class="text ">
- <p><span>申请时间</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18417" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18417.svg" id="u18417_img" class="img generatedImage" viewbox="856 0 93 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18417_text" class="text ">
- <p><span>认证状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18418" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18418.svg" id="u18418_img" class="img generatedImage" viewbox="948 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18418_text" class="text ">
- <p><span>审批人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18419" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18419.svg" id="u18419_img" class="img generatedImage" viewbox="1040 0 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18419_text" class="text ">
- <p><span>审批时间</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18420" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18420.svg" id="u18420_img" class="img generatedImage" viewbox="1131 0 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18420_text" class="text ">
- <p><span>操作</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18421" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18421.svg" id="u18421_img" class="img generatedImage" viewbox="0 38 69 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18421_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18422" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18422.svg" id="u18422_img" class="img generatedImage" viewbox="69 38 69 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18422_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18423" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18423.svg" id="u18423_img" class="img generatedImage" viewbox="139 38 69 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18423_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18424" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18424.svg" id="u18424_img" class="img generatedImage" viewbox="208 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18424_text" class="text ">
- <p><span>个人</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18425" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18425.svg" id="u18425_img" class="img generatedImage" viewbox="300 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18425_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18426" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18426.svg" id="u18426_img" class="img generatedImage" viewbox="391 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18426_text" class="text ">
- <p><span>身份证</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18427" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18427.svg" id="u18427_img" class="img generatedImage" viewbox="482 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18427_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18428" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18428.svg" id="u18428_img" class="img generatedImage" viewbox="574 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18428_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18429" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18429.svg" id="u18429_img" class="img generatedImage" viewbox="665 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18429_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18430" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18430.svg" id="u18430_img" class="img generatedImage" viewbox="756 38 99 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18430_text" class="text ">
- <p><span>2024/04/23 </span></p><p><span>23:33:22</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18431" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18431.svg" id="u18431_img" class="img generatedImage" viewbox="856 38 93 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18431_text" class="text ">
- <p><span>待确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18432" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18432.svg" id="u18432_img" class="img generatedImage" viewbox="948 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18432_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18433" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18433.svg" id="u18433_img" class="img generatedImage" viewbox="1040 38 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18433_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18434" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18434.svg" id="u18434_img" class="img generatedImage" viewbox="1131 38 88 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18434_text" class="text ">
- <p><span>审批 详情</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18435" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18435.svg" id="u18435_img" class="img generatedImage" viewbox="0 82 69 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18435_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18436" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18436.svg" id="u18436_img" class="img generatedImage" viewbox="69 82 69 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18436_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18437" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18437.svg" id="u18437_img" class="img generatedImage" viewbox="139 82 69 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18437_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18438" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18438.svg" id="u18438_img" class="img generatedImage" viewbox="208 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18438_text" class="text ">
- <p><span>机构</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18439" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18439.svg" id="u18439_img" class="img generatedImage" viewbox="300 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18439_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18440" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18440.svg" id="u18440_img" class="img generatedImage" viewbox="391 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18440_text" class="text ">
- <p><span>营业执照</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18441" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18441.svg" id="u18441_img" class="img generatedImage" viewbox="482 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18441_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18442" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18442.svg" id="u18442_img" class="img generatedImage" viewbox="574 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18442_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18443" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18443.svg" id="u18443_img" class="img generatedImage" viewbox="665 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18443_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18444" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18444.svg" id="u18444_img" class="img generatedImage" viewbox="756 82 99 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18444_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18445" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18445.svg" id="u18445_img" class="img generatedImage" viewbox="856 82 93 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18445_text" class="text ">
- <p><span>已通过</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18446" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18446.svg" id="u18446_img" class="img generatedImage" viewbox="948 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18446_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18447" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18447.svg" id="u18447_img" class="img generatedImage" viewbox="1040 82 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18447_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18448" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18448.svg" id="u18448_img" class="img generatedImage" viewbox="1131 82 88 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18448_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18449" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18449.svg" id="u18449_img" class="img generatedImage" viewbox="0 126 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18449_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18450" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18450.svg" id="u18450_img" class="img generatedImage" viewbox="69 126 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18450_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18451" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18451.svg" id="u18451_img" class="img generatedImage" viewbox="139 126 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18451_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18452" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18452.svg" id="u18452_img" class="img generatedImage" viewbox="208 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18452_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18453" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18453.svg" id="u18453_img" class="img generatedImage" viewbox="300 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18453_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18454" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18454.svg" id="u18454_img" class="img generatedImage" viewbox="391 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18454_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18455" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18455.svg" id="u18455_img" class="img generatedImage" viewbox="482 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18455_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18456" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18456.svg" id="u18456_img" class="img generatedImage" viewbox="574 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18456_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18457" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18457.svg" id="u18457_img" class="img generatedImage" viewbox="665 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18457_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18458" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18458.svg" id="u18458_img" class="img generatedImage" viewbox="756 126 99 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18458_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18459" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18459.svg" id="u18459_img" class="img generatedImage" viewbox="856 126 93 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18459_text" class="text ">
- <p><span>已驳回</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18460" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18460.svg" id="u18460_img" class="img generatedImage" viewbox="948 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18460_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18461" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18461.svg" id="u18461_img" class="img generatedImage" viewbox="1040 126 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18461_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18462" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18462.svg" id="u18462_img" class="img generatedImage" viewbox="1131 126 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18462_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18463" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18463.svg" id="u18463_img" class="img generatedImage" viewbox="0 164 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18463_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18464" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18464.svg" id="u18464_img" class="img generatedImage" viewbox="69 164 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18464_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18465" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18465.svg" id="u18465_img" class="img generatedImage" viewbox="139 164 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18465_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18466" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18466.svg" id="u18466_img" class="img generatedImage" viewbox="208 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18466_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18467" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18467.svg" id="u18467_img" class="img generatedImage" viewbox="300 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18467_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18468" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18468.svg" id="u18468_img" class="img generatedImage" viewbox="391 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18468_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18469" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18469.svg" id="u18469_img" class="img generatedImage" viewbox="482 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18469_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18470" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18470.svg" id="u18470_img" class="img generatedImage" viewbox="574 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18470_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18471" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18471.svg" id="u18471_img" class="img generatedImage" viewbox="665 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18471_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18472" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18472.svg" id="u18472_img" class="img generatedImage" viewbox="756 164 99 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18472_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18473" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18473.svg" id="u18473_img" class="img generatedImage" viewbox="856 164 93 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18473_text" class="text ">
- <p><span>已取消</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18474" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18474.svg" id="u18474_img" class="img generatedImage" viewbox="948 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18474_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18475" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18475.svg" id="u18475_img" class="img generatedImage" viewbox="1040 164 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18475_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18476" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18476.svg" id="u18476_img" class="img generatedImage" viewbox="1131 164 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18476_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18477" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18477.svg" id="u18477_img" class="img generatedImage" viewbox="0 202 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18477_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18478" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18478.svg" id="u18478_img" class="img generatedImage" viewbox="69 202 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18478_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18479" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18479.svg" id="u18479_img" class="img generatedImage" viewbox="139 202 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18479_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18480" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18480.svg" id="u18480_img" class="img generatedImage" viewbox="208 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18480_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18481" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18481.svg" id="u18481_img" class="img generatedImage" viewbox="300 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18481_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18482" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18482.svg" id="u18482_img" class="img generatedImage" viewbox="391 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18482_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18483" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18483.svg" id="u18483_img" class="img generatedImage" viewbox="482 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18483_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18484" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18484.svg" id="u18484_img" class="img generatedImage" viewbox="574 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18484_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18485" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18485.svg" id="u18485_img" class="img generatedImage" viewbox="665 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18485_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18486" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18486.svg" id="u18486_img" class="img generatedImage" viewbox="756 202 99 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18486_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18487" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18487.svg" id="u18487_img" class="img generatedImage" viewbox="856 202 93 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18487_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18488" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18488.svg" id="u18488_img" class="img generatedImage" viewbox="948 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18488_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18489" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18489.svg" id="u18489_img" class="img generatedImage" viewbox="1040 202 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18489_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18490" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18490.svg" id="u18490_img" class="img generatedImage" viewbox="1131 202 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18490_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18491" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18491.svg" id="u18491_img" class="img generatedImage" viewbox="0 240 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18491_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18492" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18492.svg" id="u18492_img" class="img generatedImage" viewbox="69 240 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18492_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18493" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18493.svg" id="u18493_img" class="img generatedImage" viewbox="139 240 69 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18493_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18494" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18494.svg" id="u18494_img" class="img generatedImage" viewbox="208 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18494_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18495" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18495.svg" id="u18495_img" class="img generatedImage" viewbox="300 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18495_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18496" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18496.svg" id="u18496_img" class="img generatedImage" viewbox="391 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18496_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18497" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18497.svg" id="u18497_img" class="img generatedImage" viewbox="482 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18497_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18498" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18498.svg" id="u18498_img" class="img generatedImage" viewbox="574 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18498_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18499" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18499.svg" id="u18499_img" class="img generatedImage" viewbox="665 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18499_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18500" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18500.svg" id="u18500_img" class="img generatedImage" viewbox="756 240 99 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18500_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18501" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18501.svg" id="u18501_img" class="img generatedImage" viewbox="856 240 93 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18501_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18502" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18502.svg" id="u18502_img" class="img generatedImage" viewbox="948 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18502_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18503" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18503.svg" id="u18503_img" class="img generatedImage" viewbox="1040 240 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18503_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18504" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18504.svg" id="u18504_img" class="img generatedImage" viewbox="1131 240 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18504_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18505" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18505.svg" id="u18505_img" class="img generatedImage" viewbox="0 278 69 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18505_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18506" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18506.svg" id="u18506_img" class="img generatedImage" viewbox="69 278 69 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18506_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18507" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18507.svg" id="u18507_img" class="img generatedImage" viewbox="139 278 69 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18507_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18508" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18508.svg" id="u18508_img" class="img generatedImage" viewbox="208 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18508_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18509" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18509.svg" id="u18509_img" class="img generatedImage" viewbox="300 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18509_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18510" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18510.svg" id="u18510_img" class="img generatedImage" viewbox="391 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18510_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18511" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18511.svg" id="u18511_img" class="img generatedImage" viewbox="482 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18511_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18512" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18512.svg" id="u18512_img" class="img generatedImage" viewbox="574 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18512_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18513" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18513.svg" id="u18513_img" class="img generatedImage" viewbox="665 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18513_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18514" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18514.svg" id="u18514_img" class="img generatedImage" viewbox="756 278 99 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18514_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18515" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18515.svg" id="u18515_img" class="img generatedImage" viewbox="856 278 93 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18515_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18516" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18516.svg" id="u18516_img" class="img generatedImage" viewbox="948 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18516_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18517" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18517.svg" id="u18517_img" class="img generatedImage" viewbox="1040 278 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18517_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u18518" class="ax_default table_cell1 transition">
- <svg data="images/车位业主认证/u18518.svg" id="u18518_img" class="img generatedImage" viewbox="1131 278 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u18518_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18519" class="ax_default paragraph transition">
- <div id="u18519_div" class=""></div>
- <div id="u18519_text" class="text ">
- <p><span>车位业主认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18520" class="ax_default" data-left="648" data-top="145" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18521" class="ax_default box_1 transition">
- <div id="u18521_div" class=""></div>
- <div id="u18521_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18522" class="ax_default droplist transition">
- <div id="u18522_div" class=""></div>
- <select id="u18522_input" class="u18522_input">
- <option class="u18522_input_option" value="车位号">车位号</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18523" class="ax_default" data-left="498" data-top="145" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18524" class="ax_default box_1 transition">
- <div id="u18524_div" class=""></div>
- <div id="u18524_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18525" class="ax_default droplist transition">
- <div id="u18525_div" class=""></div>
- <select id="u18525_input" class="u18525_input">
- <option class="u18525_input_option" value="车场">车场</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (客户-人员中心) -->
- <div id="u18526" class="nopointer ax_default">
- <!-- Unnamed (Group) -->
- <div id="u18527" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18528" class="ax_default box_2 transition">
- <div id="u18528_div" class=""></div>
- <div id="u18528_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18529" class="ax_default label transition">
- <div id="u18529_div" class=""></div>
- <div id="u18529_text" class="text ">
- <p><span>客户中心</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18530" class="ax_default label transition">
- <div id="u18530_div" class=""></div>
- <div id="u18530_text" class="text ">
- <p><span>入驻企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18531" class="ax_default label transition">
- <div id="u18531_div" class=""></div>
- <div id="u18531_text" class="text ">
- <p><span>入驻机构</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18532" class="ax_default label transition">
- <div id="u18532_div" class=""></div>
- <div id="u18532_text" class="text ">
- <p><span>人员登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18533" class="ax_default label transition">
- <div id="u18533_div" class=""></div>
- <div id="u18533_text" class="text ">
- <p><span>房屋住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18534" class="ax_default line1 transition">
- <svg data="images/项目列表/u4990.svg" id="u18534_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u18534_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18535" class="ax_default label transition">
- <div id="u18535_div" class=""></div>
- <div id="u18535_text" class="text ">
- <p><span>企业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18536" class="ax_default label transition">
- <div id="u18536_div" class=""></div>
- <div id="u18536_text" class="text ">
- <p><span>业主管理</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18537" class="ax_default line1 transition">
- <svg data="images/项目列表/u4990.svg" id="u18537_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u18537_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18538" class="ax_default label transition">
- <div id="u18538_div" class=""></div>
- <div id="u18538_text" class="text ">
- <p><span>房屋业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18539" class="ax_default label transition">
- <div id="u18539_div" class=""></div>
- <div id="u18539_text" class="text ">
- <p><span>车位业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18540" class="ax_default label transition">
- <div id="u18540_div" class=""></div>
- <div id="u18540_text" class="text ">
- <p><span>微信用户认证设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18541" class="ax_default label transition">
- <div id="u18541_div" class=""></div>
- <div id="u18541_text" class="text ">
- <p><span>房屋业主账号认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18542" class="ax_default label transition">
- <div id="u18542_div" class=""></div>
- <div id="u18542_text" class="text ">
- <p><span>微信用户账号认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18543" class="ax_default line1 transition">
- <svg data="images/项目列表/u4990.svg" id="u18543_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u18543_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18544" class="ax_default label transition">
- <div id="u18544_div" class=""></div>
- <div id="u18544_text" class="text ">
- <p><span>房源住户账号认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18545" class="ax_default label transition">
- <div id="u18545_div" class=""></div>
- <div id="u18545_text" class="text ">
- <p><span>入驻企业账号认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18546" class="ax_default label transition">
- <div id="u18546_div" class=""></div>
- <div id="u18546_text" class="text ">
- <p><span>人员档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18547" class="ax_default label transition">
- <div id="u18547_div" class=""></div>
- <div id="u18547_text" class="text ">
- <p><span>客户档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18548" class="ax_default line1 transition">
- <svg data="images/项目列表/u4990.svg" id="u18548_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u18548_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18549" class="ax_default label transition">
- <div id="u18549_div" class=""></div>
- <div id="u18549_text" class="text ">
- <p><span>机构档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18550" class="ax_default label transition">
- <div id="u18550_div" class=""></div>
- <div id="u18550_text" class="text ">
- <p><span>物业员工账号认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18551" class="ax_default label transition">
- <div id="u18551_div" class=""></div>
- <div id="u18551_text" class="text ">
- <p><span>业主委员会</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18552" class="ax_default label transition">
- <div id="u18552_div" class=""></div>
- <div id="u18552_text" class="text ">
- <p><span>车位业主账号认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18553" class="ax_default label transition">
- <div id="u18553_div" class=""></div>
- <div id="u18553_text" class="text ">
- <p><span>物业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18554" class="ax_default label transition">
- <div id="u18554_div" class=""></div>
- <div id="u18554_text" class="text ">
- <p><span>骑手快递员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18555" class="ax_default label transition">
- <div id="u18555_div" class=""></div>
- <div id="u18555_text" class="text ">
- <p><span>装修工人</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18556" class="ax_default label transition">
- <div id="u18556_div" class=""></div>
- <div id="u18556_text" class="text ">
- <p><span>临时登记人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u18557" class="ax_default line1 transition">
- <svg data="images/项目列表/u4990.svg" id="u18557_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u18557_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18558" class="ax_default paragraph transition">
- <div id="u18558_div" class=""></div>
- <div id="u18558_text" class="text ">
- <p><span>此处查看处理车位业主在小程序端提交的认证信息。审批通过之后,将自动更新到车位业主列表,绑定认证用户账号并更新相关信息。</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18559" class="ax_default" data-left="800" data-top="183" data-width="130" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18560" class="ax_default box_1 transition">
- <div id="u18560_div" class=""></div>
- <div id="u18560_text" class="text ">
- <p><span>搜索</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u18561" class="ax_default box_1 transition">
- <div id="u18561_div" class=""></div>
- <div id="u18561_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18562" class="ax_default" data-left="350" data-top="143" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18563" class="ax_default box_1 transition">
- <div id="u18563_div" class=""></div>
- <div id="u18563_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18564" class="ax_default droplist transition">
- <div id="u18564_div" class=""></div>
- <select id="u18564_input" class="u18564_input">
- <option class="u18564_input_option" value="项目">项目</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18565" class="ax_default" data-left="1400" data-top="145" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18566" class="ax_default box_1 transition">
- <div id="u18566_div" class=""></div>
- <div id="u18566_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18567" class="ax_default droplist transition">
- <div id="u18567_div" class=""></div>
- <select id="u18567_input" class="u18567_input">
- <option class="u18567_input_option" value="认证状态">认证状态</option>
- <option class="u18567_input_option" value="待确认">待确认</option>
- <option class="u18567_input_option" value="已通过">已通过</option>
- <option class="u18567_input_option" value="已驳回">已驳回</option>
- <option class="u18567_input_option" value="已取消">已取消</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18568" class="ax_default" data-left="800" data-top="145" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18569" class="ax_default box_1 transition">
- <div id="u18569_div" class=""></div>
- <div id="u18569_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18570" class="ax_default droplist transition">
- <div id="u18570_div" class=""></div>
- <select id="u18570_input" class="u18570_input">
- <option class="u18570_input_option" value="业主类型">业主类型</option>
- <option class="u18570_input_option" value="个人">个人</option>
- <option class="u18570_input_option" value="企业">企业</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18571" class="ax_default" data-left="950" data-top="144" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18572" class="ax_default shape transition">
- <div id="u18572_div" class=""></div>
- <div id="u18572_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u18573" class="ax_default text_field transition" data-label="选项内容">
- <div id="u18573_div" class=""></div>
- <input id="u18573_input" type="text" value="" class="u18573_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18574" class="ax_default" data-left="1250" data-top="145" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18575" class="ax_default shape transition">
- <div id="u18575_div" class=""></div>
- <div id="u18575_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u18576" class="ax_default text_field transition" data-label="选项内容">
- <div id="u18576_div" class=""></div>
- <input id="u18576_input" type="text" value="" class="u18576_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18577" class="ax_default" data-left="1100" data-top="145" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18578" class="ax_default box_1 transition">
- <div id="u18578_div" class=""></div>
- <div id="u18578_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18579" class="ax_default droplist transition">
- <div id="u18579_div" class=""></div>
- <select id="u18579_input" class="u18579_input">
- <option class="u18579_input_option" value="证件类型">证件类型</option>
- <option class="u18579_input_option" value="身份证">身份证</option>
- <option class="u18579_input_option" value="营业执照">营业执照</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18580" class="ax_default" data-left="350" data-top="183" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18581" class="ax_default box_1 transition">
- <div id="u18581_div" class=""></div>
- <div id="u18581_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18582" class="ax_default droplist transition">
- <div id="u18582_div" class=""></div>
- <select id="u18582_input" class="u18582_input">
- <option class="u18582_input_option" value="申请起止时间">申请起止时间</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18583" class="ax_default" data-left="650" data-top="183" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18584" class="ax_default box_1 transition">
- <div id="u18584_div" class=""></div>
- <div id="u18584_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u18585" class="ax_default droplist transition">
- <div id="u18585_div" class=""></div>
- <select id="u18585_input" class="u18585_input">
- <option class="u18585_input_option" value="审批起止时间">审批起止时间</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u18586" class="ax_default" data-left="498" data-top="183" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u18587" class="ax_default shape transition">
- <div id="u18587_div" class=""></div>
- <div id="u18587_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u18588" class="ax_default text_field transition" data-label="选项内容">
- <div id="u18588_div" class=""></div>
- <input id="u18588_input" type="text" value="" class="u18588_input"/>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|