完成验收.html 356 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>完成验收</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/完成验收/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/完成验收/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (Rectangle) -->
  54. <div id="u22689" class="ax_default paragraph transition">
  55. <div id="u22689_div" class=""></div>
  56. <div id="u22689_text" class="text " style="display:none; visibility: hidden">
  57. <p></p>
  58. </div>
  59. </div>
  60. <!-- Unnamed (Rectangle) -->
  61. <div id="u22690" class="ax_default paragraph transition">
  62. <div id="u22690_div" class=""></div>
  63. <div id="u22690_text" class="text " style="display:none; visibility: hidden">
  64. <p></p>
  65. </div>
  66. </div>
  67. <!-- Unnamed (Rectangle) -->
  68. <div id="u22691" class="ax_default paragraph transition">
  69. <div id="u22691_div" class=""></div>
  70. <div id="u22691_text" class="text " style="display:none; visibility: hidden">
  71. <p></p>
  72. </div>
  73. </div>
  74. <!-- Unnamed (Group) -->
  75. <div id="u22692" class="ax_default" data-left="1036" data-top="59" data-width="52" data-height="40" layer-opacity="1">
  76. <!-- Unnamed (Rectangle) -->
  77. <div id="u22693" class="ax_default paragraph transition">
  78. <div id="u22693_div" class=""></div>
  79. <div id="u22693_text" class="text ">
  80. <p><span>x</span></p>
  81. </div>
  82. </div>
  83. <!-- Unnamed (Shape) -->
  84. <div id="u22694" class="ax_default icon1 transition">
  85. <svg data="images/设置/u4554.svg" id="u22694_img" class="img generatedImage">
  86. <defs>
  87. <pattern id="u22694_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  88. <mask fill="white" id="u22694_img_cl2919">
  89. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="evenodd" />
  90. </mask>
  91. </defs>
  92. <g transform="matrix(1 0 0 1 -1032 -79 )">
  93. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1032 79 )" class="fill" />
  94. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22694_img_cl2919)" />
  95. <path d="M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22694_img_cl2919)" />
  96. <path d="M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22694_img_cl2919)" />
  97. </g>
  98. </svg>
  99. <div id="u22694_text" class="text " style="display:none; visibility: hidden">
  100. <p></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Group) -->
  105. <div id="u22695" class="ax_default" data-left="88" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
  106. <!-- Unnamed (Rectangle) -->
  107. <div id="u22696" class="ax_default paragraph transition">
  108. <div id="u22696_div" class=""></div>
  109. <div id="u22696_text" class="text " style="display:none; visibility: hidden">
  110. <p></p>
  111. </div>
  112. </div>
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u22697" class="ax_default box_1 transition">
  115. <div id="u22697_div" class=""></div>
  116. <div id="u22697_text" class="text ">
  117. <p><span>提交验收</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Rectangle) -->
  121. <div id="u22698" class="ax_default box_1 transition">
  122. <div id="u22698_div" class=""></div>
  123. <div id="u22698_text" class="text ">
  124. <p><span>取消</span></p>
  125. </div>
  126. </div>
  127. </div>
  128. <!-- Unnamed (Table) -->
  129. <div id="u22699" class="ax_default">
  130. <!-- Unnamed (Table cell) -->
  131. <div id="u22700" class="ax_default table_cell transition">
  132. <svg data="images/完成验收/u22700.svg" id="u22700_img" class="img generatedImage" viewbox="0 0 102 30">
  133. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  134. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  135. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  136. </svg>
  137. <div id="u22700_text" class="text ">
  138. <p><span>收费标准名称</span></p>
  139. </div>
  140. </div>
  141. <!-- Unnamed (Table cell) -->
  142. <div id="u22701" class="ax_default table_cell transition">
  143. <svg data="images/完成验收/u22701.svg" id="u22701_img" class="img generatedImage" viewbox="102 0 122 30">
  144. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 102 0 )" class="fill" />
  145. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  146. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  147. </svg>
  148. <div id="u22701_text" class="text ">
  149. <p><span>计费方式</span></p>
  150. </div>
  151. </div>
  152. <!-- Unnamed (Table cell) -->
  153. <div id="u22702" class="ax_default table_cell transition">
  154. <svg data="images/完成验收/u22702.svg" id="u22702_img" class="img generatedImage" viewbox="224 0 122 30">
  155. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 224 0 )" class="fill" />
  156. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  157. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  158. </svg>
  159. <div id="u22702_text" class="text ">
  160. <p><span>开始日期</span></p>
  161. </div>
  162. </div>
  163. <!-- Unnamed (Table cell) -->
  164. <div id="u22703" class="ax_default table_cell transition">
  165. <svg data="images/完成验收/u22703.svg" id="u22703_img" class="img generatedImage" viewbox="346 0 122 30">
  166. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 346 0 )" class="fill" />
  167. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  168. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  169. </svg>
  170. <div id="u22703_text" class="text ">
  171. <p><span>结束日期</span></p>
  172. </div>
  173. </div>
  174. <!-- Unnamed (Table cell) -->
  175. <div id="u22704" class="ax_default table_cell transition">
  176. <svg data="images/完成验收/u22704.svg" id="u22704_img" class="img generatedImage" viewbox="468 0 104 30">
  177. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 468 0 )" class="fill" />
  178. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  179. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  180. </svg>
  181. <div id="u22704_text" class="text ">
  182. <p><span>金额</span></p>
  183. </div>
  184. </div>
  185. <!-- Unnamed (Table cell) -->
  186. <div id="u22705" class="ax_default table_cell transition">
  187. <svg data="images/完成验收/u22705.svg" id="u22705_img" class="img generatedImage" viewbox="572 0 115 30">
  188. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 572 0 )" class="fill" />
  189. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  190. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  191. </svg>
  192. <div id="u22705_text" class="text ">
  193. <p><span>收费对象类型</span></p>
  194. </div>
  195. </div>
  196. <!-- Unnamed (Table cell) -->
  197. <div id="u22706" class="ax_default table_cell transition">
  198. <svg data="images/完成验收/u22706.svg" id="u22706_img" class="img generatedImage" viewbox="687 0 115 30">
  199. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 687 0 )" class="fill" />
  200. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  201. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  202. </svg>
  203. <div id="u22706_text" class="text ">
  204. <p><span>收费对象</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Table cell) -->
  208. <div id="u22707" class="ax_default table_cell transition">
  209. <svg data="images/完成验收/u22707.svg" id="u22707_img" class="img generatedImage" viewbox="802 0 113 30">
  210. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 802 0 )" class="fill" />
  211. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  212. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  213. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  214. </svg>
  215. <div id="u22707_text" class="text ">
  216. <p><span>收费状态</span></p>
  217. </div>
  218. </div>
  219. <!-- Unnamed (Table cell) -->
  220. <div id="u22708" class="ax_default table_cell transition">
  221. <svg data="images/完成验收/u22708.svg" id="u22708_img" class="img generatedImage" viewbox="0 30 102 30">
  222. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 30 )" class="fill" />
  223. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  224. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  225. </svg>
  226. <div id="u22708_text" class="text " style="display:none; visibility: hidden">
  227. <p></p>
  228. </div>
  229. </div>
  230. <!-- Unnamed (Table cell) -->
  231. <div id="u22709" class="ax_default table_cell transition">
  232. <svg data="images/完成验收/u22709.svg" id="u22709_img" class="img generatedImage" viewbox="102 30 122 30">
  233. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 30 )" class="fill" />
  234. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  235. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  236. </svg>
  237. <div id="u22709_text" class="text " style="display:none; visibility: hidden">
  238. <p></p>
  239. </div>
  240. </div>
  241. <!-- Unnamed (Table cell) -->
  242. <div id="u22710" class="ax_default table_cell transition">
  243. <svg data="images/完成验收/u22710.svg" id="u22710_img" class="img generatedImage" viewbox="224 30 122 30">
  244. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 30 )" class="fill" />
  245. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  246. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  247. </svg>
  248. <div id="u22710_text" class="text " style="display:none; visibility: hidden">
  249. <p></p>
  250. </div>
  251. </div>
  252. <!-- Unnamed (Table cell) -->
  253. <div id="u22711" class="ax_default table_cell transition">
  254. <svg data="images/完成验收/u22711.svg" id="u22711_img" class="img generatedImage" viewbox="346 30 122 30">
  255. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 30 )" class="fill" />
  256. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  257. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  258. </svg>
  259. <div id="u22711_text" class="text " style="display:none; visibility: hidden">
  260. <p></p>
  261. </div>
  262. </div>
  263. <!-- Unnamed (Table cell) -->
  264. <div id="u22712" class="ax_default table_cell transition">
  265. <svg data="images/完成验收/u22712.svg" id="u22712_img" class="img generatedImage" viewbox="468 30 104 30">
  266. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 30 )" class="fill" />
  267. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  268. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  269. </svg>
  270. <div id="u22712_text" class="text " style="display:none; visibility: hidden">
  271. <p></p>
  272. </div>
  273. </div>
  274. <!-- Unnamed (Table cell) -->
  275. <div id="u22713" class="ax_default table_cell transition">
  276. <svg data="images/完成验收/u22713.svg" id="u22713_img" class="img generatedImage" viewbox="572 30 115 30">
  277. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 30 )" class="fill" />
  278. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  279. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  280. </svg>
  281. <div id="u22713_text" class="text " style="display:none; visibility: hidden">
  282. <p></p>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Table cell) -->
  286. <div id="u22714" class="ax_default table_cell transition">
  287. <svg data="images/完成验收/u22714.svg" id="u22714_img" class="img generatedImage" viewbox="687 30 115 30">
  288. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 30 )" class="fill" />
  289. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  290. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  291. </svg>
  292. <div id="u22714_text" class="text " style="display:none; visibility: hidden">
  293. <p></p>
  294. </div>
  295. </div>
  296. <!-- Unnamed (Table cell) -->
  297. <div id="u22715" class="ax_default table_cell transition">
  298. <svg data="images/完成验收/u22715.svg" id="u22715_img" class="img generatedImage" viewbox="802 30 113 30">
  299. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 30 )" class="fill" />
  300. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  301. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  302. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  303. </svg>
  304. <div id="u22715_text" class="text ">
  305. <p><span>已收费</span></p>
  306. </div>
  307. </div>
  308. <!-- Unnamed (Table cell) -->
  309. <div id="u22716" class="ax_default table_cell transition">
  310. <svg data="images/完成验收/u22716.svg" id="u22716_img" class="img generatedImage" viewbox="0 60 102 30">
  311. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 60 )" class="fill" />
  312. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  313. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  314. </svg>
  315. <div id="u22716_text" class="text " style="display:none; visibility: hidden">
  316. <p></p>
  317. </div>
  318. </div>
  319. <!-- Unnamed (Table cell) -->
  320. <div id="u22717" class="ax_default table_cell transition">
  321. <svg data="images/完成验收/u22717.svg" id="u22717_img" class="img generatedImage" viewbox="102 60 122 30">
  322. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 60 )" class="fill" />
  323. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  324. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  325. </svg>
  326. <div id="u22717_text" class="text " style="display:none; visibility: hidden">
  327. <p></p>
  328. </div>
  329. </div>
  330. <!-- Unnamed (Table cell) -->
  331. <div id="u22718" class="ax_default table_cell transition">
  332. <svg data="images/完成验收/u22718.svg" id="u22718_img" class="img generatedImage" viewbox="224 60 122 30">
  333. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 60 )" class="fill" />
  334. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  335. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  336. </svg>
  337. <div id="u22718_text" class="text " style="display:none; visibility: hidden">
  338. <p></p>
  339. </div>
  340. </div>
  341. <!-- Unnamed (Table cell) -->
  342. <div id="u22719" class="ax_default table_cell transition">
  343. <svg data="images/完成验收/u22719.svg" id="u22719_img" class="img generatedImage" viewbox="346 60 122 30">
  344. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 60 )" class="fill" />
  345. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  346. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  347. </svg>
  348. <div id="u22719_text" class="text " style="display:none; visibility: hidden">
  349. <p></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Table cell) -->
  353. <div id="u22720" class="ax_default table_cell transition">
  354. <svg data="images/完成验收/u22720.svg" id="u22720_img" class="img generatedImage" viewbox="468 60 104 30">
  355. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 60 )" class="fill" />
  356. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  357. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  358. </svg>
  359. <div id="u22720_text" class="text " style="display:none; visibility: hidden">
  360. <p></p>
  361. </div>
  362. </div>
  363. <!-- Unnamed (Table cell) -->
  364. <div id="u22721" class="ax_default table_cell transition">
  365. <svg data="images/完成验收/u22721.svg" id="u22721_img" class="img generatedImage" viewbox="572 60 115 30">
  366. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 60 )" class="fill" />
  367. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  368. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  369. </svg>
  370. <div id="u22721_text" class="text " style="display:none; visibility: hidden">
  371. <p></p>
  372. </div>
  373. </div>
  374. <!-- Unnamed (Table cell) -->
  375. <div id="u22722" class="ax_default table_cell transition">
  376. <svg data="images/完成验收/u22722.svg" id="u22722_img" class="img generatedImage" viewbox="687 60 115 30">
  377. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 60 )" class="fill" />
  378. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  379. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  380. </svg>
  381. <div id="u22722_text" class="text " style="display:none; visibility: hidden">
  382. <p></p>
  383. </div>
  384. </div>
  385. <!-- Unnamed (Table cell) -->
  386. <div id="u22723" class="ax_default table_cell transition">
  387. <svg data="images/完成验收/u22723.svg" id="u22723_img" class="img generatedImage" viewbox="802 60 113 30">
  388. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 60 )" class="fill" />
  389. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  390. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  391. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  392. </svg>
  393. <div id="u22723_text" class="text ">
  394. <p><span>已收费</span></p>
  395. </div>
  396. </div>
  397. <!-- Unnamed (Table cell) -->
  398. <div id="u22724" class="ax_default table_cell transition">
  399. <svg data="images/完成验收/u22724.svg" id="u22724_img" class="img generatedImage" viewbox="0 90 102 30">
  400. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 90 )" class="fill" />
  401. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  402. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  403. </svg>
  404. <div id="u22724_text" class="text " style="display:none; visibility: hidden">
  405. <p></p>
  406. </div>
  407. </div>
  408. <!-- Unnamed (Table cell) -->
  409. <div id="u22725" class="ax_default table_cell transition">
  410. <svg data="images/完成验收/u22725.svg" id="u22725_img" class="img generatedImage" viewbox="102 90 122 30">
  411. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 90 )" class="fill" />
  412. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  413. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  414. </svg>
  415. <div id="u22725_text" class="text " style="display:none; visibility: hidden">
  416. <p></p>
  417. </div>
  418. </div>
  419. <!-- Unnamed (Table cell) -->
  420. <div id="u22726" class="ax_default table_cell transition">
  421. <svg data="images/完成验收/u22726.svg" id="u22726_img" class="img generatedImage" viewbox="224 90 122 30">
  422. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 90 )" class="fill" />
  423. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  424. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  425. </svg>
  426. <div id="u22726_text" class="text " style="display:none; visibility: hidden">
  427. <p></p>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Table cell) -->
  431. <div id="u22727" class="ax_default table_cell transition">
  432. <svg data="images/完成验收/u22727.svg" id="u22727_img" class="img generatedImage" viewbox="346 90 122 30">
  433. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 90 )" class="fill" />
  434. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  435. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  436. </svg>
  437. <div id="u22727_text" class="text " style="display:none; visibility: hidden">
  438. <p></p>
  439. </div>
  440. </div>
  441. <!-- Unnamed (Table cell) -->
  442. <div id="u22728" class="ax_default table_cell transition">
  443. <svg data="images/完成验收/u22728.svg" id="u22728_img" class="img generatedImage" viewbox="468 90 104 30">
  444. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 90 )" class="fill" />
  445. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  446. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  447. </svg>
  448. <div id="u22728_text" class="text " style="display:none; visibility: hidden">
  449. <p></p>
  450. </div>
  451. </div>
  452. <!-- Unnamed (Table cell) -->
  453. <div id="u22729" class="ax_default table_cell transition">
  454. <svg data="images/完成验收/u22729.svg" id="u22729_img" class="img generatedImage" viewbox="572 90 115 30">
  455. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 90 )" class="fill" />
  456. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  457. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  458. </svg>
  459. <div id="u22729_text" class="text " style="display:none; visibility: hidden">
  460. <p></p>
  461. </div>
  462. </div>
  463. <!-- Unnamed (Table cell) -->
  464. <div id="u22730" class="ax_default table_cell transition">
  465. <svg data="images/完成验收/u22730.svg" id="u22730_img" class="img generatedImage" viewbox="687 90 115 30">
  466. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 90 )" class="fill" />
  467. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  468. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  469. </svg>
  470. <div id="u22730_text" class="text " style="display:none; visibility: hidden">
  471. <p></p>
  472. </div>
  473. </div>
  474. <!-- Unnamed (Table cell) -->
  475. <div id="u22731" class="ax_default table_cell transition">
  476. <svg data="images/完成验收/u22731.svg" id="u22731_img" class="img generatedImage" viewbox="802 90 113 30">
  477. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 90 )" class="fill" />
  478. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  479. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  480. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  481. </svg>
  482. <div id="u22731_text" class="text ">
  483. <p><span>已收费</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Table cell) -->
  487. <div id="u22732" class="ax_default table_cell transition">
  488. <svg data="images/完成验收/u22732.svg" id="u22732_img" class="img generatedImage" viewbox="0 120 102 30">
  489. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 120 )" class="fill" />
  490. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  491. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  492. </svg>
  493. <div id="u22732_text" class="text " style="display:none; visibility: hidden">
  494. <p></p>
  495. </div>
  496. </div>
  497. <!-- Unnamed (Table cell) -->
  498. <div id="u22733" class="ax_default table_cell transition">
  499. <svg data="images/完成验收/u22733.svg" id="u22733_img" class="img generatedImage" viewbox="102 120 122 30">
  500. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 120 )" class="fill" />
  501. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  502. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  503. </svg>
  504. <div id="u22733_text" class="text " style="display:none; visibility: hidden">
  505. <p></p>
  506. </div>
  507. </div>
  508. <!-- Unnamed (Table cell) -->
  509. <div id="u22734" class="ax_default table_cell transition">
  510. <svg data="images/完成验收/u22734.svg" id="u22734_img" class="img generatedImage" viewbox="224 120 122 30">
  511. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 120 )" class="fill" />
  512. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  513. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  514. </svg>
  515. <div id="u22734_text" class="text " style="display:none; visibility: hidden">
  516. <p></p>
  517. </div>
  518. </div>
  519. <!-- Unnamed (Table cell) -->
  520. <div id="u22735" class="ax_default table_cell transition">
  521. <svg data="images/完成验收/u22735.svg" id="u22735_img" class="img generatedImage" viewbox="346 120 122 30">
  522. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 120 )" class="fill" />
  523. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  524. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  525. </svg>
  526. <div id="u22735_text" class="text " style="display:none; visibility: hidden">
  527. <p></p>
  528. </div>
  529. </div>
  530. <!-- Unnamed (Table cell) -->
  531. <div id="u22736" class="ax_default table_cell transition">
  532. <svg data="images/完成验收/u22736.svg" id="u22736_img" class="img generatedImage" viewbox="468 120 104 30">
  533. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 120 )" class="fill" />
  534. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  535. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  536. </svg>
  537. <div id="u22736_text" class="text " style="display:none; visibility: hidden">
  538. <p></p>
  539. </div>
  540. </div>
  541. <!-- Unnamed (Table cell) -->
  542. <div id="u22737" class="ax_default table_cell transition">
  543. <svg data="images/完成验收/u22737.svg" id="u22737_img" class="img generatedImage" viewbox="572 120 115 30">
  544. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 120 )" class="fill" />
  545. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  546. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  547. </svg>
  548. <div id="u22737_text" class="text " style="display:none; visibility: hidden">
  549. <p></p>
  550. </div>
  551. </div>
  552. <!-- Unnamed (Table cell) -->
  553. <div id="u22738" class="ax_default table_cell transition">
  554. <svg data="images/完成验收/u22738.svg" id="u22738_img" class="img generatedImage" viewbox="687 120 115 30">
  555. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 120 )" class="fill" />
  556. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  557. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  558. </svg>
  559. <div id="u22738_text" class="text " style="display:none; visibility: hidden">
  560. <p></p>
  561. </div>
  562. </div>
  563. <!-- Unnamed (Table cell) -->
  564. <div id="u22739" class="ax_default table_cell transition">
  565. <svg data="images/完成验收/u22739.svg" id="u22739_img" class="img generatedImage" viewbox="802 120 113 30">
  566. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 120 )" class="fill" />
  567. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  568. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  569. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  570. </svg>
  571. <div id="u22739_text" class="text ">
  572. <p><span>已收费</span></p>
  573. </div>
  574. </div>
  575. <!-- Unnamed (Table cell) -->
  576. <div id="u22740" class="ax_default table_cell transition">
  577. <svg data="images/完成验收/u22740.svg" id="u22740_img" class="img generatedImage" viewbox="0 150 102 30">
  578. <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
  579. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  580. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  581. <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  582. </svg>
  583. <div id="u22740_text" class="text ">
  584. <p><span>总计</span></p>
  585. </div>
  586. </div>
  587. <!-- Unnamed (Table cell) -->
  588. <div id="u22741" class="ax_default table_cell transition">
  589. <svg data="images/完成验收/u22741.svg" id="u22741_img" class="img generatedImage" viewbox="102 150 122 30">
  590. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
  591. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  592. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  593. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  594. </svg>
  595. <div id="u22741_text" class="text " style="display:none; visibility: hidden">
  596. <p></p>
  597. </div>
  598. </div>
  599. <!-- Unnamed (Table cell) -->
  600. <div id="u22742" class="ax_default table_cell transition">
  601. <svg data="images/完成验收/u22742.svg" id="u22742_img" class="img generatedImage" viewbox="224 150 122 30">
  602. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
  603. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  604. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  605. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  606. </svg>
  607. <div id="u22742_text" class="text " style="display:none; visibility: hidden">
  608. <p></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u22743" class="ax_default table_cell transition">
  613. <svg data="images/完成验收/u22743.svg" id="u22743_img" class="img generatedImage" viewbox="346 150 122 30">
  614. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
  615. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  616. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  617. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  618. </svg>
  619. <div id="u22743_text" class="text " style="display:none; visibility: hidden">
  620. <p></p>
  621. </div>
  622. </div>
  623. <!-- Unnamed (Table cell) -->
  624. <div id="u22744" class="ax_default table_cell transition">
  625. <svg data="images/完成验收/u22744.svg" id="u22744_img" class="img generatedImage" viewbox="468 150 104 30">
  626. <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
  627. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  628. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  629. <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  630. </svg>
  631. <div id="u22744_text" class="text " style="display:none; visibility: hidden">
  632. <p></p>
  633. </div>
  634. </div>
  635. <!-- Unnamed (Table cell) -->
  636. <div id="u22745" class="ax_default table_cell transition">
  637. <svg data="images/完成验收/u22745.svg" id="u22745_img" class="img generatedImage" viewbox="572 150 115 30">
  638. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
  639. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  640. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  641. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  642. </svg>
  643. <div id="u22745_text" class="text " style="display:none; visibility: hidden">
  644. <p></p>
  645. </div>
  646. </div>
  647. <!-- Unnamed (Table cell) -->
  648. <div id="u22746" class="ax_default table_cell transition">
  649. <svg data="images/完成验收/u22746.svg" id="u22746_img" class="img generatedImage" viewbox="687 150 115 30">
  650. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
  651. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  652. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  653. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  654. </svg>
  655. <div id="u22746_text" class="text " style="display:none; visibility: hidden">
  656. <p></p>
  657. </div>
  658. </div>
  659. <!-- Unnamed (Table cell) -->
  660. <div id="u22747" class="ax_default table_cell transition">
  661. <svg data="images/完成验收/u22747.svg" id="u22747_img" class="img generatedImage" viewbox="802 150 113 30">
  662. <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
  663. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  664. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  665. <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  666. <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  667. </svg>
  668. <div id="u22747_text" class="text " style="display:none; visibility: hidden">
  669. <p></p>
  670. </div>
  671. </div>
  672. </div>
  673. <!-- Unnamed (Rectangle) -->
  674. <div id="u22748" class="ax_default paragraph transition">
  675. <div id="u22748_div" class=""></div>
  676. <div id="u22748_text" class="text ">
  677. <p><span>验收确认</span></p>
  678. </div>
  679. </div>
  680. <!-- Unnamed (Rectangle) -->
  681. <div id="u22749" class="ax_default paragraph transition">
  682. <div id="u22749_div" class=""></div>
  683. <div id="u22749_text" class="text ">
  684. <p><span>装修信息</span></p>
  685. </div>
  686. </div>
  687. <!-- Unnamed (Rectangle) -->
  688. <div id="u22750" class="ax_default paragraph transition">
  689. <div id="u22750_div" class=""></div>
  690. <div id="u22750_text" class="text ">
  691. <p><span>项目:</span></p>
  692. </div>
  693. </div>
  694. <!-- Unnamed (Rectangle) -->
  695. <div id="u22751" class="ax_default paragraph transition">
  696. <div id="u22751_div" class=""></div>
  697. <div id="u22751_text" class="text ">
  698. <p><span>西安保利天汇社区</span></p>
  699. </div>
  700. </div>
  701. <!-- Unnamed (Rectangle) -->
  702. <div id="u22752" class="ax_default paragraph transition">
  703. <div id="u22752_div" class=""></div>
  704. <div id="u22752_text" class="text ">
  705. <p><span>房屋:</span></p>
  706. </div>
  707. </div>
  708. <!-- Unnamed (Rectangle) -->
  709. <div id="u22753" class="ax_default paragraph transition">
  710. <div id="u22753_div" class=""></div>
  711. <div id="u22753_text" class="text ">
  712. <p><span>3栋A单元203</span></p>
  713. </div>
  714. </div>
  715. <!-- Unnamed (Rectangle) -->
  716. <div id="u22754" class="ax_default paragraph transition">
  717. <div id="u22754_div" class=""></div>
  718. <div id="u22754_text" class="text ">
  719. <p><span>建筑面积:</span></p>
  720. </div>
  721. </div>
  722. <!-- Unnamed (Rectangle) -->
  723. <div id="u22755" class="ax_default paragraph transition">
  724. <div id="u22755_div" class=""></div>
  725. <div id="u22755_text" class="text ">
  726. <p><span>300.00平方米</span></p>
  727. </div>
  728. </div>
  729. <!-- Unnamed (Rectangle) -->
  730. <div id="u22756" class="ax_default paragraph transition">
  731. <div id="u22756_div" class=""></div>
  732. <div id="u22756_text" class="text ">
  733. <p><span>套内面积:</span></p>
  734. </div>
  735. </div>
  736. <!-- Unnamed (Rectangle) -->
  737. <div id="u22757" class="ax_default paragraph transition">
  738. <div id="u22757_div" class=""></div>
  739. <div id="u22757_text" class="text ">
  740. <p><span>225.08平方米</span></p>
  741. </div>
  742. </div>
  743. <!-- Unnamed (Rectangle) -->
  744. <div id="u22758" class="ax_default paragraph transition">
  745. <div id="u22758_div" class=""></div>
  746. <div id="u22758_text" class="text ">
  747. <p><span>计费面积:</span></p>
  748. </div>
  749. </div>
  750. <!-- Unnamed (Rectangle) -->
  751. <div id="u22759" class="ax_default paragraph transition">
  752. <div id="u22759_div" class=""></div>
  753. <div id="u22759_text" class="text ">
  754. <p><span>300.00平方米</span></p>
  755. </div>
  756. </div>
  757. <!-- Unnamed (Rectangle) -->
  758. <div id="u22760" class="ax_default paragraph transition">
  759. <div id="u22760_div" class=""></div>
  760. <div id="u22760_text" class="text ">
  761. <p><span>业主名称:</span></p>
  762. </div>
  763. </div>
  764. <!-- Unnamed (Rectangle) -->
  765. <div id="u22761" class="ax_default paragraph transition">
  766. <div id="u22761_div" class=""></div>
  767. <div id="u22761_text" class="text ">
  768. <p><span>张三</span></p>
  769. </div>
  770. </div>
  771. <!-- Unnamed (Rectangle) -->
  772. <div id="u22762" class="ax_default paragraph transition">
  773. <div id="u22762_div" class=""></div>
  774. <div id="u22762_text" class="text ">
  775. <p><span>开始时间;</span></p>
  776. </div>
  777. </div>
  778. <!-- Unnamed (Rectangle) -->
  779. <div id="u22763" class="ax_default paragraph transition">
  780. <div id="u22763_div" class=""></div>
  781. <div id="u22763_text" class="text ">
  782. <p><span>2025/07/28</span></p>
  783. </div>
  784. </div>
  785. <!-- Unnamed (Rectangle) -->
  786. <div id="u22764" class="ax_default paragraph transition">
  787. <div id="u22764_div" class=""></div>
  788. <div id="u22764_text" class="text ">
  789. <p><span>拟结束时间:</span></p>
  790. </div>
  791. </div>
  792. <!-- Unnamed (Rectangle) -->
  793. <div id="u22765" class="ax_default paragraph transition">
  794. <div id="u22765_div" class=""></div>
  795. <div id="u22765_text" class="text ">
  796. <p><span>2025/09/28</span></p>
  797. </div>
  798. </div>
  799. <!-- Unnamed (Rectangle) -->
  800. <div id="u22766" class="ax_default paragraph transition">
  801. <div id="u22766_div" class=""></div>
  802. <div id="u22766_text" class="text ">
  803. <p><span>备注信息:</span></p>
  804. </div>
  805. </div>
  806. <!-- Unnamed (Rectangle) -->
  807. <div id="u22767" class="ax_default paragraph transition">
  808. <div id="u22767_div" class=""></div>
  809. <div id="u22767_text" class="text ">
  810. <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
  811. </div>
  812. </div>
  813. <!-- Unnamed (Rectangle) -->
  814. <div id="u22768" class="ax_default paragraph transition">
  815. <div id="u22768_div" class=""></div>
  816. <div id="u22768_text" class="text ">
  817. <p><span>账单费用明细</span></p>
  818. </div>
  819. </div>
  820. <!-- Unnamed (Rectangle) -->
  821. <div id="u22769" class="ax_default paragraph transition">
  822. <div id="u22769_div" class=""></div>
  823. <div id="u22769_text" class="text ">
  824. <p><span>*是否退款:</span></p>
  825. </div>
  826. </div>
  827. <!-- Unnamed (Radio button) -->
  828. <div id="u22770" class="ax_default radio_button selected">
  829. <label id="u22770_input_label" for="u22770_input" style="position: absolute; left: 0px;">
  830. <svg data="images/完成验收/u22770.svg" id="u22770_img" class="img " viewbox="215 765 12 12">
  831. <path d="M 221 765 C 224.36 765 227 767.64 227 771 C 227 774.36 224.36 777 221 777 C 217.64 777 215 774.36 215 771 C 215 767.64 217.64 765 221 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  832. <path d="M 221 765.5 C 224.08 765.5 226.5 767.92 226.5 771 C 226.5 774.08 224.08 776.5 221 776.5 C 217.92 776.5 215.5 774.08 215.5 771 C 215.5 767.92 217.92 765.5 221 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  833. <path d="M 221 774 C 219.32 774 218 772.68 218 771 C 218 769.32 219.32 768 221 768 C 222.68 768 224 769.32 224 771 C 224 772.68 222.68 774 221 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  834. </svg>
  835. <div id="u22770_text" class="text ">
  836. <p><span>是</span></p>
  837. </div>
  838. </label>
  839. <input id="u22770_input" type="radio" value="radio" name="u22770" checked/>
  840. </div>
  841. <!-- Unnamed (Radio button) -->
  842. <div id="u22771" class="ax_default radio_button">
  843. <label id="u22771_input_label" for="u22771_input" style="position: absolute; left: 0px;">
  844. <svg data="images/完成验收/u22771.svg" id="u22771_img" class="img " viewbox="348 765 12 12">
  845. <path d="M 354 765 C 357.36 765 360 767.64 360 771 C 360 774.36 357.36 777 354 777 C 350.64 777 348 774.36 348 771 C 348 767.64 350.64 765 354 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  846. <path d="M 354 765.5 C 357.08 765.5 359.5 767.92 359.5 771 C 359.5 774.08 357.08 776.5 354 776.5 C 350.92 776.5 348.5 774.08 348.5 771 C 348.5 767.92 350.92 765.5 354 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  847. <path d="M 354 774 C 352.32 774 351 772.68 351 771 C 351 769.32 352.32 768 354 768 C 355.68 768 357 769.32 357 771 C 357 772.68 355.68 774 354 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  848. </svg>
  849. <div id="u22771_text" class="text ">
  850. <p><span>否</span></p>
  851. </div>
  852. </label>
  853. <input id="u22771_input" type="radio" value="radio" name="u22771"/>
  854. </div>
  855. <!-- Unnamed (Rectangle) -->
  856. <div id="u22772" class="ax_default paragraph transition">
  857. <div id="u22772_div" class=""></div>
  858. <div id="u22772_text" class="text ">
  859. <p><span>完成验收</span></p>
  860. </div>
  861. </div>
  862. <!-- Unnamed (Rectangle) -->
  863. <div id="u22773" class="ax_default paragraph transition">
  864. <div id="u22773_div" class=""></div>
  865. <div id="u22773_text" class="text ">
  866. <p><span>验收说明:</span></p>
  867. </div>
  868. </div>
  869. <!-- Unnamed (Group) -->
  870. <div id="u22774" class="ax_default" data-left="209" data-top="1010" data-width="795" data-height="80" layer-opacity="1">
  871. <!-- Unnamed (Rectangle) -->
  872. <div id="u22775" class="ax_default shape transition">
  873. <div id="u22775_div" class=""></div>
  874. <div id="u22775_text" class="text " style="display:none; visibility: hidden">
  875. <p></p>
  876. </div>
  877. </div>
  878. <!-- 选项内容 (Text field) -->
  879. <div id="u22776" class="ax_default text_field transition" data-label="选项内容">
  880. <div id="u22776_div" class=""></div>
  881. <input id="u22776_input" type="text" value="" class="u22776_input"/>
  882. </div>
  883. </div>
  884. <!-- Unnamed (Rectangle) -->
  885. <div id="u22777" class="ax_default paragraph transition">
  886. <div id="u22777_div" class=""></div>
  887. <div id="u22777_text" class="text " style="display:none; visibility: hidden">
  888. <p></p>
  889. </div>
  890. </div>
  891. <!-- Unnamed (Rectangle) -->
  892. <div id="u22778" class="ax_default paragraph transition">
  893. <div id="u22778_div" class=""></div>
  894. <div id="u22778_text" class="text ">
  895. <p><span>*退款方式:</span></p>
  896. </div>
  897. </div>
  898. <!-- Unnamed (Group) -->
  899. <div id="u22779" class="ax_default" data-left="236" data-top="868" data-width="300" data-height="40" layer-opacity="1">
  900. <!-- Unnamed (Rectangle) -->
  901. <div id="u22780" class="ax_default box_1 transition">
  902. <div id="u22780_div" class=""></div>
  903. <div id="u22780_text" class="text " style="display:none; visibility: hidden">
  904. <p></p>
  905. </div>
  906. </div>
  907. <!-- Unnamed (Droplist) -->
  908. <div id="u22781" class="ax_default droplist transition">
  909. <div id="u22781_div" class=""></div>
  910. <select id="u22781_input" class="u22781_input">
  911. <option class="u22781_input_option" value="选择付款方式">选择付款方式</option>
  912. <option class="u22781_input_option" selected value="转为预存款">转为预存款</option>
  913. <option class="u22781_input_option" value="线上原路返回">线上原路返回</option>
  914. <option class="u22781_input_option" value="线下银行卡转账">线下银行卡转账</option>
  915. <option class="u22781_input_option" value="线下第三方转账">线下第三方转账</option>
  916. </select>
  917. </div>
  918. </div>
  919. <!-- Unnamed (Rectangle) -->
  920. <div id="u22782" class="ax_default paragraph transition">
  921. <div id="u22782_div" class=""></div>
  922. <div id="u22782_text" class="text ">
  923. <p><span>*退款项目:</span></p>
  924. </div>
  925. </div>
  926. <!-- Unnamed (Group) -->
  927. <div id="u22783" class="ax_default" data-left="236" data-top="818" data-width="299" data-height="40" layer-opacity="1">
  928. <!-- Unnamed (Rectangle) -->
  929. <div id="u22784" class="ax_default box_1 transition">
  930. <div id="u22784_div" class=""></div>
  931. <div id="u22784_text" class="text " style="display:none; visibility: hidden">
  932. <p></p>
  933. </div>
  934. </div>
  935. <!-- Unnamed (Droplist) -->
  936. <div id="u22785" class="ax_default droplist transition">
  937. <div id="u22785_div" class=""></div>
  938. <select id="u22785_input" class="u22785_input">
  939. <option class="u22785_input_option" value="室内清洁费">室内清洁费</option>
  940. <option class="u22785_input_option" value="小时计费">小时计费</option>
  941. <option class="u22785_input_option" value="指定">指定</option>
  942. <option class="u22785_input_option" value="合同-固定">合同-固定</option>
  943. </select>
  944. </div>
  945. </div>
  946. <!-- Unnamed (Rectangle) -->
  947. <div id="u22786" class="ax_default paragraph transition">
  948. <div id="u22786_div" class=""></div>
  949. <div id="u22786_text" class="text ">
  950. <p><span>*退款金额:</span></p>
  951. </div>
  952. </div>
  953. <!-- Unnamed (Group) -->
  954. <div id="u22787" class="ax_default" data-left="678" data-top="818" data-width="300" data-height="40" layer-opacity="1">
  955. <!-- Unnamed (Rectangle) -->
  956. <div id="u22788" class="ax_default shape transition">
  957. <div id="u22788_div" class=""></div>
  958. <div id="u22788_text" class="text " style="display:none; visibility: hidden">
  959. <p></p>
  960. </div>
  961. </div>
  962. <!-- 选项内容 (Text field) -->
  963. <div id="u22789" class="ax_default text_field transition" data-label="选项内容">
  964. <div id="u22789_div" class=""></div>
  965. <input id="u22789_input" type="text" value="" class="u22789_input"/>
  966. </div>
  967. </div>
  968. <!-- Unnamed (Rectangle) -->
  969. <div id="u22790" class="ax_default paragraph transition">
  970. <div id="u22790_div" class=""></div>
  971. <div id="u22790_text" class="text ">
  972. <p><span>*退回账户:</span></p>
  973. </div>
  974. </div>
  975. <!-- Unnamed (Group) -->
  976. <div id="u22791" class="ax_default" data-left="678" data-top="868" data-width="299" data-height="40" layer-opacity="1">
  977. <!-- Unnamed (Rectangle) -->
  978. <div id="u22792" class="ax_default box_1 transition">
  979. <div id="u22792_div" class=""></div>
  980. <div id="u22792_text" class="text " style="display:none; visibility: hidden">
  981. <p></p>
  982. </div>
  983. </div>
  984. <!-- Unnamed (Droplist) -->
  985. <div id="u22793" class="ax_default droplist transition">
  986. <div id="u22793_div" class=""></div>
  987. <select id="u22793_input" class="u22793_input">
  988. <option class="u22793_input_option" value="请选择">请选择</option>
  989. <option class="u22793_input_option" value="通用预存账户">通用预存账户</option>
  990. <option class="u22793_input_option" value="物业服务账户">物业服务账户</option>
  991. </select>
  992. </div>
  993. </div>
  994. <!-- Unnamed (Rectangle) -->
  995. <div id="u22794" class="ax_default paragraph transition">
  996. <div id="u22794_div" class=""></div>
  997. <div id="u22794_text" class="text ">
  998. <p><span>+添加</span></p>
  999. </div>
  1000. </div>
  1001. <!-- Unnamed (Shape) -->
  1002. <div id="u22795" class="ax_default icon transition">
  1003. <svg data="images/完成验收/u22795.svg" id="u22795_img" class="img generatedImage">
  1004. <defs>
  1005. <pattern id="u22795_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1006. <mask fill="white" id="u22795_img_cl3767">
  1007. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
  1008. </mask>
  1009. </defs>
  1010. <g transform="matrix(1 0 0 1 -986 -795 )">
  1011. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
  1012. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22795_img_cl3767)" />
  1013. <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22795_img_cl3767)" />
  1014. </g>
  1015. </svg>
  1016. <div id="u22795_text" class="text " style="display:none; visibility: hidden">
  1017. <p></p>
  1018. </div>
  1019. </div>
  1020. <!-- Unnamed (Rectangle) -->
  1021. <div id="u22796" class="ax_default paragraph transition">
  1022. <div id="u22796_div" class=""></div>
  1023. <div id="u22796_text" class="text ">
  1024. <p><span>功能模块需求说明:</span></p><p><span>1、是否退款,是:需要添加退款信息;否,无需添加退款信息;</span></p><p><span>2、退款项目,单选;自动获取对应账单的退款金额,可修改;退款方式,支持转预存款,原路退回、线下转账处理;</span></p><p><span>3、线下缴费的方式,不支持原路退回;转预存款处理,退款金额转至该房源所选择的预存款账户。</span></p>
  1025. </div>
  1026. </div>
  1027. <!-- Unnamed (Rectangle) -->
  1028. <div id="u22797" class="ax_default paragraph transition">
  1029. <div id="u22797_div" class=""></div>
  1030. <div id="u22797_text" class="text " style="display:none; visibility: hidden">
  1031. <p></p>
  1032. </div>
  1033. </div>
  1034. <!-- Unnamed (Rectangle) -->
  1035. <div id="u22798" class="ax_default paragraph transition">
  1036. <div id="u22798_div" class=""></div>
  1037. <div id="u22798_text" class="text " style="display:none; visibility: hidden">
  1038. <p></p>
  1039. </div>
  1040. </div>
  1041. <!-- Unnamed (Rectangle) -->
  1042. <div id="u22799" class="ax_default paragraph transition">
  1043. <div id="u22799_div" class=""></div>
  1044. <div id="u22799_text" class="text " style="display:none; visibility: hidden">
  1045. <p></p>
  1046. </div>
  1047. </div>
  1048. <!-- Unnamed (Group) -->
  1049. <div id="u22800" class="ax_default" data-left="2056" data-top="59" data-width="52" data-height="40" layer-opacity="1">
  1050. <!-- Unnamed (Rectangle) -->
  1051. <div id="u22801" class="ax_default paragraph transition">
  1052. <div id="u22801_div" class=""></div>
  1053. <div id="u22801_text" class="text ">
  1054. <p><span>x</span></p>
  1055. </div>
  1056. </div>
  1057. <!-- Unnamed (Shape) -->
  1058. <div id="u22802" class="ax_default icon1 transition">
  1059. <svg data="images/设置/u4554.svg" id="u22802_img" class="img generatedImage">
  1060. <defs>
  1061. <pattern id="u22802_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1062. <mask fill="white" id="u22802_img_cl2919">
  1063. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="evenodd" />
  1064. </mask>
  1065. </defs>
  1066. <g transform="matrix(1 0 0 1 -1032 -79 )">
  1067. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1032 79 )" class="fill" />
  1068. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22802_img_cl2919)" />
  1069. <path d="M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22802_img_cl2919)" />
  1070. <path d="M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22802_img_cl2919)" />
  1071. </g>
  1072. </svg>
  1073. <div id="u22802_text" class="text " style="display:none; visibility: hidden">
  1074. <p></p>
  1075. </div>
  1076. </div>
  1077. </div>
  1078. <!-- Unnamed (Group) -->
  1079. <div id="u22803" class="ax_default" data-left="1108" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
  1080. <!-- Unnamed (Rectangle) -->
  1081. <div id="u22804" class="ax_default paragraph transition">
  1082. <div id="u22804_div" class=""></div>
  1083. <div id="u22804_text" class="text " style="display:none; visibility: hidden">
  1084. <p></p>
  1085. </div>
  1086. </div>
  1087. <!-- Unnamed (Rectangle) -->
  1088. <div id="u22805" class="ax_default box_1 transition">
  1089. <div id="u22805_div" class=""></div>
  1090. <div id="u22805_text" class="text ">
  1091. <p><span>提交验收</span></p>
  1092. </div>
  1093. </div>
  1094. <!-- Unnamed (Rectangle) -->
  1095. <div id="u22806" class="ax_default box_1 transition">
  1096. <div id="u22806_div" class=""></div>
  1097. <div id="u22806_text" class="text ">
  1098. <p><span>取消</span></p>
  1099. </div>
  1100. </div>
  1101. </div>
  1102. <!-- Unnamed (Table) -->
  1103. <div id="u22807" class="ax_default">
  1104. <!-- Unnamed (Table cell) -->
  1105. <div id="u22808" class="ax_default table_cell transition">
  1106. <svg data="images/完成验收/u22700.svg" id="u22808_img" class="img generatedImage" viewbox="0 0 102 30">
  1107. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  1108. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  1109. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  1110. </svg>
  1111. <div id="u22808_text" class="text ">
  1112. <p><span>收费标准名称</span></p>
  1113. </div>
  1114. </div>
  1115. <!-- Unnamed (Table cell) -->
  1116. <div id="u22809" class="ax_default table_cell transition">
  1117. <svg data="images/完成验收/u22701.svg" id="u22809_img" class="img generatedImage" viewbox="102 0 122 30">
  1118. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 102 0 )" class="fill" />
  1119. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  1120. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  1121. </svg>
  1122. <div id="u22809_text" class="text ">
  1123. <p><span>计费方式</span></p>
  1124. </div>
  1125. </div>
  1126. <!-- Unnamed (Table cell) -->
  1127. <div id="u22810" class="ax_default table_cell transition">
  1128. <svg data="images/完成验收/u22702.svg" id="u22810_img" class="img generatedImage" viewbox="224 0 122 30">
  1129. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 224 0 )" class="fill" />
  1130. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  1131. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  1132. </svg>
  1133. <div id="u22810_text" class="text ">
  1134. <p><span>开始日期</span></p>
  1135. </div>
  1136. </div>
  1137. <!-- Unnamed (Table cell) -->
  1138. <div id="u22811" class="ax_default table_cell transition">
  1139. <svg data="images/完成验收/u22703.svg" id="u22811_img" class="img generatedImage" viewbox="346 0 122 30">
  1140. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 346 0 )" class="fill" />
  1141. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  1142. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  1143. </svg>
  1144. <div id="u22811_text" class="text ">
  1145. <p><span>结束日期</span></p>
  1146. </div>
  1147. </div>
  1148. <!-- Unnamed (Table cell) -->
  1149. <div id="u22812" class="ax_default table_cell transition">
  1150. <svg data="images/完成验收/u22704.svg" id="u22812_img" class="img generatedImage" viewbox="468 0 104 30">
  1151. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 468 0 )" class="fill" />
  1152. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  1153. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  1154. </svg>
  1155. <div id="u22812_text" class="text ">
  1156. <p><span>金额</span></p>
  1157. </div>
  1158. </div>
  1159. <!-- Unnamed (Table cell) -->
  1160. <div id="u22813" class="ax_default table_cell transition">
  1161. <svg data="images/完成验收/u22705.svg" id="u22813_img" class="img generatedImage" viewbox="572 0 115 30">
  1162. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 572 0 )" class="fill" />
  1163. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  1164. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  1165. </svg>
  1166. <div id="u22813_text" class="text ">
  1167. <p><span>收费对象类型</span></p>
  1168. </div>
  1169. </div>
  1170. <!-- Unnamed (Table cell) -->
  1171. <div id="u22814" class="ax_default table_cell transition">
  1172. <svg data="images/完成验收/u22706.svg" id="u22814_img" class="img generatedImage" viewbox="687 0 115 30">
  1173. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 687 0 )" class="fill" />
  1174. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  1175. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  1176. </svg>
  1177. <div id="u22814_text" class="text ">
  1178. <p><span>收费对象</span></p>
  1179. </div>
  1180. </div>
  1181. <!-- Unnamed (Table cell) -->
  1182. <div id="u22815" class="ax_default table_cell transition">
  1183. <svg data="images/完成验收/u22707.svg" id="u22815_img" class="img generatedImage" viewbox="802 0 113 30">
  1184. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 802 0 )" class="fill" />
  1185. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  1186. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  1187. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  1188. </svg>
  1189. <div id="u22815_text" class="text ">
  1190. <p><span>收费状态</span></p>
  1191. </div>
  1192. </div>
  1193. <!-- Unnamed (Table cell) -->
  1194. <div id="u22816" class="ax_default table_cell transition">
  1195. <svg data="images/完成验收/u22708.svg" id="u22816_img" class="img generatedImage" viewbox="0 30 102 30">
  1196. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 30 )" class="fill" />
  1197. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  1198. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  1199. </svg>
  1200. <div id="u22816_text" class="text " style="display:none; visibility: hidden">
  1201. <p></p>
  1202. </div>
  1203. </div>
  1204. <!-- Unnamed (Table cell) -->
  1205. <div id="u22817" class="ax_default table_cell transition">
  1206. <svg data="images/完成验收/u22709.svg" id="u22817_img" class="img generatedImage" viewbox="102 30 122 30">
  1207. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 30 )" class="fill" />
  1208. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  1209. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  1210. </svg>
  1211. <div id="u22817_text" class="text " style="display:none; visibility: hidden">
  1212. <p></p>
  1213. </div>
  1214. </div>
  1215. <!-- Unnamed (Table cell) -->
  1216. <div id="u22818" class="ax_default table_cell transition">
  1217. <svg data="images/完成验收/u22710.svg" id="u22818_img" class="img generatedImage" viewbox="224 30 122 30">
  1218. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 30 )" class="fill" />
  1219. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  1220. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  1221. </svg>
  1222. <div id="u22818_text" class="text " style="display:none; visibility: hidden">
  1223. <p></p>
  1224. </div>
  1225. </div>
  1226. <!-- Unnamed (Table cell) -->
  1227. <div id="u22819" class="ax_default table_cell transition">
  1228. <svg data="images/完成验收/u22711.svg" id="u22819_img" class="img generatedImage" viewbox="346 30 122 30">
  1229. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 30 )" class="fill" />
  1230. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  1231. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  1232. </svg>
  1233. <div id="u22819_text" class="text " style="display:none; visibility: hidden">
  1234. <p></p>
  1235. </div>
  1236. </div>
  1237. <!-- Unnamed (Table cell) -->
  1238. <div id="u22820" class="ax_default table_cell transition">
  1239. <svg data="images/完成验收/u22712.svg" id="u22820_img" class="img generatedImage" viewbox="468 30 104 30">
  1240. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 30 )" class="fill" />
  1241. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  1242. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  1243. </svg>
  1244. <div id="u22820_text" class="text " style="display:none; visibility: hidden">
  1245. <p></p>
  1246. </div>
  1247. </div>
  1248. <!-- Unnamed (Table cell) -->
  1249. <div id="u22821" class="ax_default table_cell transition">
  1250. <svg data="images/完成验收/u22713.svg" id="u22821_img" class="img generatedImage" viewbox="572 30 115 30">
  1251. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 30 )" class="fill" />
  1252. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  1253. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  1254. </svg>
  1255. <div id="u22821_text" class="text " style="display:none; visibility: hidden">
  1256. <p></p>
  1257. </div>
  1258. </div>
  1259. <!-- Unnamed (Table cell) -->
  1260. <div id="u22822" class="ax_default table_cell transition">
  1261. <svg data="images/完成验收/u22714.svg" id="u22822_img" class="img generatedImage" viewbox="687 30 115 30">
  1262. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 30 )" class="fill" />
  1263. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  1264. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  1265. </svg>
  1266. <div id="u22822_text" class="text " style="display:none; visibility: hidden">
  1267. <p></p>
  1268. </div>
  1269. </div>
  1270. <!-- Unnamed (Table cell) -->
  1271. <div id="u22823" class="ax_default table_cell transition">
  1272. <svg data="images/完成验收/u22715.svg" id="u22823_img" class="img generatedImage" viewbox="802 30 113 30">
  1273. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 30 )" class="fill" />
  1274. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  1275. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  1276. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  1277. </svg>
  1278. <div id="u22823_text" class="text ">
  1279. <p><span>已收费</span></p>
  1280. </div>
  1281. </div>
  1282. <!-- Unnamed (Table cell) -->
  1283. <div id="u22824" class="ax_default table_cell transition">
  1284. <svg data="images/完成验收/u22716.svg" id="u22824_img" class="img generatedImage" viewbox="0 60 102 30">
  1285. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 60 )" class="fill" />
  1286. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  1287. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  1288. </svg>
  1289. <div id="u22824_text" class="text " style="display:none; visibility: hidden">
  1290. <p></p>
  1291. </div>
  1292. </div>
  1293. <!-- Unnamed (Table cell) -->
  1294. <div id="u22825" class="ax_default table_cell transition">
  1295. <svg data="images/完成验收/u22717.svg" id="u22825_img" class="img generatedImage" viewbox="102 60 122 30">
  1296. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 60 )" class="fill" />
  1297. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  1298. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  1299. </svg>
  1300. <div id="u22825_text" class="text " style="display:none; visibility: hidden">
  1301. <p></p>
  1302. </div>
  1303. </div>
  1304. <!-- Unnamed (Table cell) -->
  1305. <div id="u22826" class="ax_default table_cell transition">
  1306. <svg data="images/完成验收/u22718.svg" id="u22826_img" class="img generatedImage" viewbox="224 60 122 30">
  1307. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 60 )" class="fill" />
  1308. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  1309. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  1310. </svg>
  1311. <div id="u22826_text" class="text " style="display:none; visibility: hidden">
  1312. <p></p>
  1313. </div>
  1314. </div>
  1315. <!-- Unnamed (Table cell) -->
  1316. <div id="u22827" class="ax_default table_cell transition">
  1317. <svg data="images/完成验收/u22719.svg" id="u22827_img" class="img generatedImage" viewbox="346 60 122 30">
  1318. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 60 )" class="fill" />
  1319. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  1320. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  1321. </svg>
  1322. <div id="u22827_text" class="text " style="display:none; visibility: hidden">
  1323. <p></p>
  1324. </div>
  1325. </div>
  1326. <!-- Unnamed (Table cell) -->
  1327. <div id="u22828" class="ax_default table_cell transition">
  1328. <svg data="images/完成验收/u22720.svg" id="u22828_img" class="img generatedImage" viewbox="468 60 104 30">
  1329. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 60 )" class="fill" />
  1330. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  1331. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  1332. </svg>
  1333. <div id="u22828_text" class="text " style="display:none; visibility: hidden">
  1334. <p></p>
  1335. </div>
  1336. </div>
  1337. <!-- Unnamed (Table cell) -->
  1338. <div id="u22829" class="ax_default table_cell transition">
  1339. <svg data="images/完成验收/u22721.svg" id="u22829_img" class="img generatedImage" viewbox="572 60 115 30">
  1340. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 60 )" class="fill" />
  1341. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  1342. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  1343. </svg>
  1344. <div id="u22829_text" class="text " style="display:none; visibility: hidden">
  1345. <p></p>
  1346. </div>
  1347. </div>
  1348. <!-- Unnamed (Table cell) -->
  1349. <div id="u22830" class="ax_default table_cell transition">
  1350. <svg data="images/完成验收/u22722.svg" id="u22830_img" class="img generatedImage" viewbox="687 60 115 30">
  1351. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 60 )" class="fill" />
  1352. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  1353. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  1354. </svg>
  1355. <div id="u22830_text" class="text " style="display:none; visibility: hidden">
  1356. <p></p>
  1357. </div>
  1358. </div>
  1359. <!-- Unnamed (Table cell) -->
  1360. <div id="u22831" class="ax_default table_cell transition">
  1361. <svg data="images/完成验收/u22723.svg" id="u22831_img" class="img generatedImage" viewbox="802 60 113 30">
  1362. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 60 )" class="fill" />
  1363. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  1364. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  1365. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  1366. </svg>
  1367. <div id="u22831_text" class="text ">
  1368. <p><span>已收费</span></p>
  1369. </div>
  1370. </div>
  1371. <!-- Unnamed (Table cell) -->
  1372. <div id="u22832" class="ax_default table_cell transition">
  1373. <svg data="images/完成验收/u22724.svg" id="u22832_img" class="img generatedImage" viewbox="0 90 102 30">
  1374. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 90 )" class="fill" />
  1375. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  1376. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  1377. </svg>
  1378. <div id="u22832_text" class="text " style="display:none; visibility: hidden">
  1379. <p></p>
  1380. </div>
  1381. </div>
  1382. <!-- Unnamed (Table cell) -->
  1383. <div id="u22833" class="ax_default table_cell transition">
  1384. <svg data="images/完成验收/u22725.svg" id="u22833_img" class="img generatedImage" viewbox="102 90 122 30">
  1385. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 90 )" class="fill" />
  1386. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  1387. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  1388. </svg>
  1389. <div id="u22833_text" class="text " style="display:none; visibility: hidden">
  1390. <p></p>
  1391. </div>
  1392. </div>
  1393. <!-- Unnamed (Table cell) -->
  1394. <div id="u22834" class="ax_default table_cell transition">
  1395. <svg data="images/完成验收/u22726.svg" id="u22834_img" class="img generatedImage" viewbox="224 90 122 30">
  1396. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 90 )" class="fill" />
  1397. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  1398. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  1399. </svg>
  1400. <div id="u22834_text" class="text " style="display:none; visibility: hidden">
  1401. <p></p>
  1402. </div>
  1403. </div>
  1404. <!-- Unnamed (Table cell) -->
  1405. <div id="u22835" class="ax_default table_cell transition">
  1406. <svg data="images/完成验收/u22727.svg" id="u22835_img" class="img generatedImage" viewbox="346 90 122 30">
  1407. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 90 )" class="fill" />
  1408. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  1409. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  1410. </svg>
  1411. <div id="u22835_text" class="text " style="display:none; visibility: hidden">
  1412. <p></p>
  1413. </div>
  1414. </div>
  1415. <!-- Unnamed (Table cell) -->
  1416. <div id="u22836" class="ax_default table_cell transition">
  1417. <svg data="images/完成验收/u22728.svg" id="u22836_img" class="img generatedImage" viewbox="468 90 104 30">
  1418. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 90 )" class="fill" />
  1419. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  1420. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  1421. </svg>
  1422. <div id="u22836_text" class="text " style="display:none; visibility: hidden">
  1423. <p></p>
  1424. </div>
  1425. </div>
  1426. <!-- Unnamed (Table cell) -->
  1427. <div id="u22837" class="ax_default table_cell transition">
  1428. <svg data="images/完成验收/u22729.svg" id="u22837_img" class="img generatedImage" viewbox="572 90 115 30">
  1429. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 90 )" class="fill" />
  1430. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  1431. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  1432. </svg>
  1433. <div id="u22837_text" class="text " style="display:none; visibility: hidden">
  1434. <p></p>
  1435. </div>
  1436. </div>
  1437. <!-- Unnamed (Table cell) -->
  1438. <div id="u22838" class="ax_default table_cell transition">
  1439. <svg data="images/完成验收/u22730.svg" id="u22838_img" class="img generatedImage" viewbox="687 90 115 30">
  1440. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 90 )" class="fill" />
  1441. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  1442. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  1443. </svg>
  1444. <div id="u22838_text" class="text " style="display:none; visibility: hidden">
  1445. <p></p>
  1446. </div>
  1447. </div>
  1448. <!-- Unnamed (Table cell) -->
  1449. <div id="u22839" class="ax_default table_cell transition">
  1450. <svg data="images/完成验收/u22731.svg" id="u22839_img" class="img generatedImage" viewbox="802 90 113 30">
  1451. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 90 )" class="fill" />
  1452. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  1453. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  1454. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  1455. </svg>
  1456. <div id="u22839_text" class="text ">
  1457. <p><span>已收费</span></p>
  1458. </div>
  1459. </div>
  1460. <!-- Unnamed (Table cell) -->
  1461. <div id="u22840" class="ax_default table_cell transition">
  1462. <svg data="images/完成验收/u22732.svg" id="u22840_img" class="img generatedImage" viewbox="0 120 102 30">
  1463. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 120 )" class="fill" />
  1464. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  1465. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  1466. </svg>
  1467. <div id="u22840_text" class="text " style="display:none; visibility: hidden">
  1468. <p></p>
  1469. </div>
  1470. </div>
  1471. <!-- Unnamed (Table cell) -->
  1472. <div id="u22841" class="ax_default table_cell transition">
  1473. <svg data="images/完成验收/u22733.svg" id="u22841_img" class="img generatedImage" viewbox="102 120 122 30">
  1474. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 120 )" class="fill" />
  1475. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  1476. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  1477. </svg>
  1478. <div id="u22841_text" class="text " style="display:none; visibility: hidden">
  1479. <p></p>
  1480. </div>
  1481. </div>
  1482. <!-- Unnamed (Table cell) -->
  1483. <div id="u22842" class="ax_default table_cell transition">
  1484. <svg data="images/完成验收/u22734.svg" id="u22842_img" class="img generatedImage" viewbox="224 120 122 30">
  1485. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 120 )" class="fill" />
  1486. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  1487. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  1488. </svg>
  1489. <div id="u22842_text" class="text " style="display:none; visibility: hidden">
  1490. <p></p>
  1491. </div>
  1492. </div>
  1493. <!-- Unnamed (Table cell) -->
  1494. <div id="u22843" class="ax_default table_cell transition">
  1495. <svg data="images/完成验收/u22735.svg" id="u22843_img" class="img generatedImage" viewbox="346 120 122 30">
  1496. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 120 )" class="fill" />
  1497. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  1498. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  1499. </svg>
  1500. <div id="u22843_text" class="text " style="display:none; visibility: hidden">
  1501. <p></p>
  1502. </div>
  1503. </div>
  1504. <!-- Unnamed (Table cell) -->
  1505. <div id="u22844" class="ax_default table_cell transition">
  1506. <svg data="images/完成验收/u22736.svg" id="u22844_img" class="img generatedImage" viewbox="468 120 104 30">
  1507. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 120 )" class="fill" />
  1508. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  1509. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  1510. </svg>
  1511. <div id="u22844_text" class="text " style="display:none; visibility: hidden">
  1512. <p></p>
  1513. </div>
  1514. </div>
  1515. <!-- Unnamed (Table cell) -->
  1516. <div id="u22845" class="ax_default table_cell transition">
  1517. <svg data="images/完成验收/u22737.svg" id="u22845_img" class="img generatedImage" viewbox="572 120 115 30">
  1518. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 120 )" class="fill" />
  1519. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  1520. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  1521. </svg>
  1522. <div id="u22845_text" class="text " style="display:none; visibility: hidden">
  1523. <p></p>
  1524. </div>
  1525. </div>
  1526. <!-- Unnamed (Table cell) -->
  1527. <div id="u22846" class="ax_default table_cell transition">
  1528. <svg data="images/完成验收/u22738.svg" id="u22846_img" class="img generatedImage" viewbox="687 120 115 30">
  1529. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 120 )" class="fill" />
  1530. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  1531. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  1532. </svg>
  1533. <div id="u22846_text" class="text " style="display:none; visibility: hidden">
  1534. <p></p>
  1535. </div>
  1536. </div>
  1537. <!-- Unnamed (Table cell) -->
  1538. <div id="u22847" class="ax_default table_cell transition">
  1539. <svg data="images/完成验收/u22739.svg" id="u22847_img" class="img generatedImage" viewbox="802 120 113 30">
  1540. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 120 )" class="fill" />
  1541. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  1542. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  1543. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  1544. </svg>
  1545. <div id="u22847_text" class="text ">
  1546. <p><span>已收费</span></p>
  1547. </div>
  1548. </div>
  1549. <!-- Unnamed (Table cell) -->
  1550. <div id="u22848" class="ax_default table_cell transition">
  1551. <svg data="images/完成验收/u22740.svg" id="u22848_img" class="img generatedImage" viewbox="0 150 102 30">
  1552. <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
  1553. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  1554. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  1555. <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  1556. </svg>
  1557. <div id="u22848_text" class="text ">
  1558. <p><span>总计</span></p>
  1559. </div>
  1560. </div>
  1561. <!-- Unnamed (Table cell) -->
  1562. <div id="u22849" class="ax_default table_cell transition">
  1563. <svg data="images/完成验收/u22741.svg" id="u22849_img" class="img generatedImage" viewbox="102 150 122 30">
  1564. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
  1565. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  1566. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  1567. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  1568. </svg>
  1569. <div id="u22849_text" class="text " style="display:none; visibility: hidden">
  1570. <p></p>
  1571. </div>
  1572. </div>
  1573. <!-- Unnamed (Table cell) -->
  1574. <div id="u22850" class="ax_default table_cell transition">
  1575. <svg data="images/完成验收/u22742.svg" id="u22850_img" class="img generatedImage" viewbox="224 150 122 30">
  1576. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
  1577. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  1578. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  1579. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  1580. </svg>
  1581. <div id="u22850_text" class="text " style="display:none; visibility: hidden">
  1582. <p></p>
  1583. </div>
  1584. </div>
  1585. <!-- Unnamed (Table cell) -->
  1586. <div id="u22851" class="ax_default table_cell transition">
  1587. <svg data="images/完成验收/u22743.svg" id="u22851_img" class="img generatedImage" viewbox="346 150 122 30">
  1588. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
  1589. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  1590. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  1591. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  1592. </svg>
  1593. <div id="u22851_text" class="text " style="display:none; visibility: hidden">
  1594. <p></p>
  1595. </div>
  1596. </div>
  1597. <!-- Unnamed (Table cell) -->
  1598. <div id="u22852" class="ax_default table_cell transition">
  1599. <svg data="images/完成验收/u22744.svg" id="u22852_img" class="img generatedImage" viewbox="468 150 104 30">
  1600. <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
  1601. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  1602. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  1603. <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  1604. </svg>
  1605. <div id="u22852_text" class="text " style="display:none; visibility: hidden">
  1606. <p></p>
  1607. </div>
  1608. </div>
  1609. <!-- Unnamed (Table cell) -->
  1610. <div id="u22853" class="ax_default table_cell transition">
  1611. <svg data="images/完成验收/u22745.svg" id="u22853_img" class="img generatedImage" viewbox="572 150 115 30">
  1612. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
  1613. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  1614. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  1615. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  1616. </svg>
  1617. <div id="u22853_text" class="text " style="display:none; visibility: hidden">
  1618. <p></p>
  1619. </div>
  1620. </div>
  1621. <!-- Unnamed (Table cell) -->
  1622. <div id="u22854" class="ax_default table_cell transition">
  1623. <svg data="images/完成验收/u22746.svg" id="u22854_img" class="img generatedImage" viewbox="687 150 115 30">
  1624. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
  1625. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  1626. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  1627. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  1628. </svg>
  1629. <div id="u22854_text" class="text " style="display:none; visibility: hidden">
  1630. <p></p>
  1631. </div>
  1632. </div>
  1633. <!-- Unnamed (Table cell) -->
  1634. <div id="u22855" class="ax_default table_cell transition">
  1635. <svg data="images/完成验收/u22747.svg" id="u22855_img" class="img generatedImage" viewbox="802 150 113 30">
  1636. <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
  1637. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  1638. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  1639. <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  1640. <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  1641. </svg>
  1642. <div id="u22855_text" class="text " style="display:none; visibility: hidden">
  1643. <p></p>
  1644. </div>
  1645. </div>
  1646. </div>
  1647. <!-- Unnamed (Rectangle) -->
  1648. <div id="u22856" class="ax_default paragraph transition">
  1649. <div id="u22856_div" class=""></div>
  1650. <div id="u22856_text" class="text ">
  1651. <p><span>验收确认</span></p>
  1652. </div>
  1653. </div>
  1654. <!-- Unnamed (Rectangle) -->
  1655. <div id="u22857" class="ax_default paragraph transition">
  1656. <div id="u22857_div" class=""></div>
  1657. <div id="u22857_text" class="text ">
  1658. <p><span>装修信息</span></p>
  1659. </div>
  1660. </div>
  1661. <!-- Unnamed (Rectangle) -->
  1662. <div id="u22858" class="ax_default paragraph transition">
  1663. <div id="u22858_div" class=""></div>
  1664. <div id="u22858_text" class="text ">
  1665. <p><span>项目:</span></p>
  1666. </div>
  1667. </div>
  1668. <!-- Unnamed (Rectangle) -->
  1669. <div id="u22859" class="ax_default paragraph transition">
  1670. <div id="u22859_div" class=""></div>
  1671. <div id="u22859_text" class="text ">
  1672. <p><span>西安保利天汇社区</span></p>
  1673. </div>
  1674. </div>
  1675. <!-- Unnamed (Rectangle) -->
  1676. <div id="u22860" class="ax_default paragraph transition">
  1677. <div id="u22860_div" class=""></div>
  1678. <div id="u22860_text" class="text ">
  1679. <p><span>房屋:</span></p>
  1680. </div>
  1681. </div>
  1682. <!-- Unnamed (Rectangle) -->
  1683. <div id="u22861" class="ax_default paragraph transition">
  1684. <div id="u22861_div" class=""></div>
  1685. <div id="u22861_text" class="text ">
  1686. <p><span>3栋A单元203</span></p>
  1687. </div>
  1688. </div>
  1689. <!-- Unnamed (Rectangle) -->
  1690. <div id="u22862" class="ax_default paragraph transition">
  1691. <div id="u22862_div" class=""></div>
  1692. <div id="u22862_text" class="text ">
  1693. <p><span>建筑面积:</span></p>
  1694. </div>
  1695. </div>
  1696. <!-- Unnamed (Rectangle) -->
  1697. <div id="u22863" class="ax_default paragraph transition">
  1698. <div id="u22863_div" class=""></div>
  1699. <div id="u22863_text" class="text ">
  1700. <p><span>300.00平方米</span></p>
  1701. </div>
  1702. </div>
  1703. <!-- Unnamed (Rectangle) -->
  1704. <div id="u22864" class="ax_default paragraph transition">
  1705. <div id="u22864_div" class=""></div>
  1706. <div id="u22864_text" class="text ">
  1707. <p><span>套内面积:</span></p>
  1708. </div>
  1709. </div>
  1710. <!-- Unnamed (Rectangle) -->
  1711. <div id="u22865" class="ax_default paragraph transition">
  1712. <div id="u22865_div" class=""></div>
  1713. <div id="u22865_text" class="text ">
  1714. <p><span>225.08平方米</span></p>
  1715. </div>
  1716. </div>
  1717. <!-- Unnamed (Rectangle) -->
  1718. <div id="u22866" class="ax_default paragraph transition">
  1719. <div id="u22866_div" class=""></div>
  1720. <div id="u22866_text" class="text ">
  1721. <p><span>计费面积:</span></p>
  1722. </div>
  1723. </div>
  1724. <!-- Unnamed (Rectangle) -->
  1725. <div id="u22867" class="ax_default paragraph transition">
  1726. <div id="u22867_div" class=""></div>
  1727. <div id="u22867_text" class="text ">
  1728. <p><span>300.00平方米</span></p>
  1729. </div>
  1730. </div>
  1731. <!-- Unnamed (Rectangle) -->
  1732. <div id="u22868" class="ax_default paragraph transition">
  1733. <div id="u22868_div" class=""></div>
  1734. <div id="u22868_text" class="text ">
  1735. <p><span>业主名称:</span></p>
  1736. </div>
  1737. </div>
  1738. <!-- Unnamed (Rectangle) -->
  1739. <div id="u22869" class="ax_default paragraph transition">
  1740. <div id="u22869_div" class=""></div>
  1741. <div id="u22869_text" class="text ">
  1742. <p><span>张三</span></p>
  1743. </div>
  1744. </div>
  1745. <!-- Unnamed (Rectangle) -->
  1746. <div id="u22870" class="ax_default paragraph transition">
  1747. <div id="u22870_div" class=""></div>
  1748. <div id="u22870_text" class="text ">
  1749. <p><span>开始时间;</span></p>
  1750. </div>
  1751. </div>
  1752. <!-- Unnamed (Rectangle) -->
  1753. <div id="u22871" class="ax_default paragraph transition">
  1754. <div id="u22871_div" class=""></div>
  1755. <div id="u22871_text" class="text ">
  1756. <p><span>2025/07/28</span></p>
  1757. </div>
  1758. </div>
  1759. <!-- Unnamed (Rectangle) -->
  1760. <div id="u22872" class="ax_default paragraph transition">
  1761. <div id="u22872_div" class=""></div>
  1762. <div id="u22872_text" class="text ">
  1763. <p><span>拟结束时间:</span></p>
  1764. </div>
  1765. </div>
  1766. <!-- Unnamed (Rectangle) -->
  1767. <div id="u22873" class="ax_default paragraph transition">
  1768. <div id="u22873_div" class=""></div>
  1769. <div id="u22873_text" class="text ">
  1770. <p><span>2025/09/28</span></p>
  1771. </div>
  1772. </div>
  1773. <!-- Unnamed (Rectangle) -->
  1774. <div id="u22874" class="ax_default paragraph transition">
  1775. <div id="u22874_div" class=""></div>
  1776. <div id="u22874_text" class="text ">
  1777. <p><span>备注信息:</span></p>
  1778. </div>
  1779. </div>
  1780. <!-- Unnamed (Rectangle) -->
  1781. <div id="u22875" class="ax_default paragraph transition">
  1782. <div id="u22875_div" class=""></div>
  1783. <div id="u22875_text" class="text ">
  1784. <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
  1785. </div>
  1786. </div>
  1787. <!-- Unnamed (Rectangle) -->
  1788. <div id="u22876" class="ax_default paragraph transition">
  1789. <div id="u22876_div" class=""></div>
  1790. <div id="u22876_text" class="text ">
  1791. <p><span>账单费用明细</span></p>
  1792. </div>
  1793. </div>
  1794. <!-- Unnamed (Rectangle) -->
  1795. <div id="u22877" class="ax_default paragraph transition">
  1796. <div id="u22877_div" class=""></div>
  1797. <div id="u22877_text" class="text ">
  1798. <p><span>*是否退款:</span></p>
  1799. </div>
  1800. </div>
  1801. <!-- Unnamed (Radio button) -->
  1802. <div id="u22878" class="ax_default radio_button selected">
  1803. <label id="u22878_input_label" for="u22878_input" style="position: absolute; left: 0px;">
  1804. <svg data="images/完成验收/u22878.svg" id="u22878_img" class="img " viewbox="1235 765 12 12">
  1805. <path d="M 1241 765 C 1244.36 765 1247 767.64 1247 771 C 1247 774.36 1244.36 777 1241 777 C 1237.64 777 1235 774.36 1235 771 C 1235 767.64 1237.64 765 1241 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1806. <path d="M 1241 765.5 C 1244.08 765.5 1246.5 767.92 1246.5 771 C 1246.5 774.08 1244.08 776.5 1241 776.5 C 1237.92 776.5 1235.5 774.08 1235.5 771 C 1235.5 767.92 1237.92 765.5 1241 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1807. <path d="M 1241 774 C 1239.32 774 1238 772.68 1238 771 C 1238 769.32 1239.32 768 1241 768 C 1242.68 768 1244 769.32 1244 771 C 1244 772.68 1242.68 774 1241 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  1808. </svg>
  1809. <div id="u22878_text" class="text ">
  1810. <p><span>是</span></p>
  1811. </div>
  1812. </label>
  1813. <input id="u22878_input" type="radio" value="radio" name="u22878" checked/>
  1814. </div>
  1815. <!-- Unnamed (Radio button) -->
  1816. <div id="u22879" class="ax_default radio_button">
  1817. <label id="u22879_input_label" for="u22879_input" style="position: absolute; left: 0px;">
  1818. <svg data="images/完成验收/u22879.svg" id="u22879_img" class="img " viewbox="1368 765 12 12">
  1819. <path d="M 1374 765 C 1377.36 765 1380 767.64 1380 771 C 1380 774.36 1377.36 777 1374 777 C 1370.64 777 1368 774.36 1368 771 C 1368 767.64 1370.64 765 1374 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1820. <path d="M 1374 765.5 C 1377.08 765.5 1379.5 767.92 1379.5 771 C 1379.5 774.08 1377.08 776.5 1374 776.5 C 1370.92 776.5 1368.5 774.08 1368.5 771 C 1368.5 767.92 1370.92 765.5 1374 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1821. <path d="M 1374 774 C 1372.32 774 1371 772.68 1371 771 C 1371 769.32 1372.32 768 1374 768 C 1375.68 768 1377 769.32 1377 771 C 1377 772.68 1375.68 774 1374 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  1822. </svg>
  1823. <div id="u22879_text" class="text ">
  1824. <p><span>否</span></p>
  1825. </div>
  1826. </label>
  1827. <input id="u22879_input" type="radio" value="radio" name="u22879"/>
  1828. </div>
  1829. <!-- Unnamed (Rectangle) -->
  1830. <div id="u22880" class="ax_default paragraph transition">
  1831. <div id="u22880_div" class=""></div>
  1832. <div id="u22880_text" class="text ">
  1833. <p><span>完成验收</span></p>
  1834. </div>
  1835. </div>
  1836. <!-- Unnamed (Rectangle) -->
  1837. <div id="u22881" class="ax_default paragraph transition">
  1838. <div id="u22881_div" class=""></div>
  1839. <div id="u22881_text" class="text ">
  1840. <p><span>验收说明:</span></p>
  1841. </div>
  1842. </div>
  1843. <!-- Unnamed (Group) -->
  1844. <div id="u22882" class="ax_default" data-left="1229" data-top="1008" data-width="795" data-height="80" layer-opacity="1">
  1845. <!-- Unnamed (Rectangle) -->
  1846. <div id="u22883" class="ax_default shape transition">
  1847. <div id="u22883_div" class=""></div>
  1848. <div id="u22883_text" class="text " style="display:none; visibility: hidden">
  1849. <p></p>
  1850. </div>
  1851. </div>
  1852. <!-- 选项内容 (Text field) -->
  1853. <div id="u22884" class="ax_default text_field transition" data-label="选项内容">
  1854. <div id="u22884_div" class=""></div>
  1855. <input id="u22884_input" type="text" value="" class="u22884_input"/>
  1856. </div>
  1857. </div>
  1858. <!-- Unnamed (Rectangle) -->
  1859. <div id="u22885" class="ax_default paragraph transition">
  1860. <div id="u22885_div" class=""></div>
  1861. <div id="u22885_text" class="text " style="display:none; visibility: hidden">
  1862. <p></p>
  1863. </div>
  1864. </div>
  1865. <!-- Unnamed (Rectangle) -->
  1866. <div id="u22886" class="ax_default paragraph transition">
  1867. <div id="u22886_div" class=""></div>
  1868. <div id="u22886_text" class="text ">
  1869. <p><span>+添加</span></p>
  1870. </div>
  1871. </div>
  1872. <!-- Unnamed (Shape) -->
  1873. <div id="u22887" class="ax_default icon transition">
  1874. <svg data="images/完成验收/u22795.svg" id="u22887_img" class="img generatedImage">
  1875. <defs>
  1876. <pattern id="u22887_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1877. <mask fill="white" id="u22887_img_cl3767">
  1878. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
  1879. </mask>
  1880. </defs>
  1881. <g transform="matrix(1 0 0 1 -986 -795 )">
  1882. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
  1883. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22887_img_cl3767)" />
  1884. <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22887_img_cl3767)" />
  1885. </g>
  1886. </svg>
  1887. <div id="u22887_text" class="text " style="display:none; visibility: hidden">
  1888. <p></p>
  1889. </div>
  1890. </div>
  1891. <!-- Unnamed (Rectangle) -->
  1892. <div id="u22888" class="ax_default paragraph transition">
  1893. <div id="u22888_div" class=""></div>
  1894. <div id="u22888_text" class="text ">
  1895. <p><span>*退款方式:</span></p>
  1896. </div>
  1897. </div>
  1898. <!-- Unnamed (Group) -->
  1899. <div id="u22889" class="ax_default" data-left="1267" data-top="868" data-width="300" data-height="40" layer-opacity="1">
  1900. <!-- Unnamed (Rectangle) -->
  1901. <div id="u22890" class="ax_default box_1 transition">
  1902. <div id="u22890_div" class=""></div>
  1903. <div id="u22890_text" class="text " style="display:none; visibility: hidden">
  1904. <p></p>
  1905. </div>
  1906. </div>
  1907. <!-- Unnamed (Droplist) -->
  1908. <div id="u22891" class="ax_default droplist transition">
  1909. <div id="u22891_div" class=""></div>
  1910. <select id="u22891_input" class="u22891_input">
  1911. <option class="u22891_input_option" value="选择付款方式">选择付款方式</option>
  1912. <option class="u22891_input_option" value="转为预存款">转为预存款</option>
  1913. <option class="u22891_input_option" selected value="线上原路返回">线上原路返回</option>
  1914. <option class="u22891_input_option" value="线下银行卡转账">线下银行卡转账</option>
  1915. <option class="u22891_input_option" value="线下第三方转账">线下第三方转账</option>
  1916. </select>
  1917. </div>
  1918. </div>
  1919. <!-- Unnamed (Rectangle) -->
  1920. <div id="u22892" class="ax_default paragraph transition">
  1921. <div id="u22892_div" class=""></div>
  1922. <div id="u22892_text" class="text ">
  1923. <p><span>*退款项目:</span></p>
  1924. </div>
  1925. </div>
  1926. <!-- Unnamed (Group) -->
  1927. <div id="u22893" class="ax_default" data-left="1267" data-top="818" data-width="299" data-height="40" layer-opacity="1">
  1928. <!-- Unnamed (Rectangle) -->
  1929. <div id="u22894" class="ax_default box_1 transition">
  1930. <div id="u22894_div" class=""></div>
  1931. <div id="u22894_text" class="text " style="display:none; visibility: hidden">
  1932. <p></p>
  1933. </div>
  1934. </div>
  1935. <!-- Unnamed (Droplist) -->
  1936. <div id="u22895" class="ax_default droplist transition">
  1937. <div id="u22895_div" class=""></div>
  1938. <select id="u22895_input" class="u22895_input">
  1939. <option class="u22895_input_option" value="室内清洁费">室内清洁费</option>
  1940. <option class="u22895_input_option" value="小时计费">小时计费</option>
  1941. <option class="u22895_input_option" value="指定">指定</option>
  1942. <option class="u22895_input_option" value="合同-固定">合同-固定</option>
  1943. </select>
  1944. </div>
  1945. </div>
  1946. <!-- Unnamed (Rectangle) -->
  1947. <div id="u22896" class="ax_default paragraph transition">
  1948. <div id="u22896_div" class=""></div>
  1949. <div id="u22896_text" class="text ">
  1950. <p><span>*退款金额:</span></p>
  1951. </div>
  1952. </div>
  1953. <!-- Unnamed (Group) -->
  1954. <div id="u22897" class="ax_default" data-left="1709" data-top="818" data-width="300" data-height="40" layer-opacity="1">
  1955. <!-- Unnamed (Rectangle) -->
  1956. <div id="u22898" class="ax_default shape transition">
  1957. <div id="u22898_div" class=""></div>
  1958. <div id="u22898_text" class="text " style="display:none; visibility: hidden">
  1959. <p></p>
  1960. </div>
  1961. </div>
  1962. <!-- 选项内容 (Text field) -->
  1963. <div id="u22899" class="ax_default text_field transition" data-label="选项内容">
  1964. <div id="u22899_div" class=""></div>
  1965. <input id="u22899_input" type="text" value="" class="u22899_input"/>
  1966. </div>
  1967. </div>
  1968. <!-- Unnamed (Rectangle) -->
  1969. <div id="u22900" class="ax_default paragraph transition">
  1970. <div id="u22900_div" class=""></div>
  1971. <div id="u22900_text" class="text ">
  1972. <p><span>*退回账户:</span></p>
  1973. </div>
  1974. </div>
  1975. <!-- Unnamed (Group) -->
  1976. <div id="u22901" class="ax_default" data-left="1709" data-top="868" data-width="300" data-height="40" layer-opacity="1">
  1977. <!-- Unnamed (Rectangle) -->
  1978. <div id="u22902" class="ax_default shape transition">
  1979. <div id="u22902_div" class=""></div>
  1980. <div id="u22902_text" class="text " style="display:none; visibility: hidden">
  1981. <p></p>
  1982. </div>
  1983. </div>
  1984. <!-- 选项内容 (Text field) -->
  1985. <div id="u22903" class="ax_default text_field transition" data-label="选项内容">
  1986. <div id="u22903_div" class=""></div>
  1987. <input id="u22903_input" type="text" value="微信支付" class="u22903_input"/>
  1988. </div>
  1989. </div>
  1990. <!-- Unnamed (Rectangle) -->
  1991. <div id="u22904" class="ax_default paragraph transition">
  1992. <div id="u22904_div" class=""></div>
  1993. <div id="u22904_text" class="text ">
  1994. <p><span>非线上缴费,不支持线上原路返回</span></p>
  1995. </div>
  1996. </div>
  1997. <!-- Unnamed (Rectangle) -->
  1998. <div id="u22905" class="ax_default paragraph transition">
  1999. <div id="u22905_div" class=""></div>
  2000. <div id="u22905_text" class="text " style="display:none; visibility: hidden">
  2001. <p></p>
  2002. </div>
  2003. </div>
  2004. <!-- Unnamed (Rectangle) -->
  2005. <div id="u22906" class="ax_default paragraph transition">
  2006. <div id="u22906_div" class=""></div>
  2007. <div id="u22906_text" class="text " style="display:none; visibility: hidden">
  2008. <p></p>
  2009. </div>
  2010. </div>
  2011. <!-- Unnamed (Rectangle) -->
  2012. <div id="u22907" class="ax_default paragraph transition">
  2013. <div id="u22907_div" class=""></div>
  2014. <div id="u22907_text" class="text " style="display:none; visibility: hidden">
  2015. <p></p>
  2016. </div>
  2017. </div>
  2018. <!-- Unnamed (Group) -->
  2019. <div id="u22908" class="ax_default" data-left="3076" data-top="59" data-width="52" data-height="40" layer-opacity="1">
  2020. <!-- Unnamed (Rectangle) -->
  2021. <div id="u22909" class="ax_default paragraph transition">
  2022. <div id="u22909_div" class=""></div>
  2023. <div id="u22909_text" class="text ">
  2024. <p><span>x</span></p>
  2025. </div>
  2026. </div>
  2027. <!-- Unnamed (Shape) -->
  2028. <div id="u22910" class="ax_default icon1 transition">
  2029. <svg data="images/设置/u4554.svg" id="u22910_img" class="img generatedImage">
  2030. <defs>
  2031. <pattern id="u22910_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2032. <mask fill="white" id="u22910_img_cl2919">
  2033. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="evenodd" />
  2034. </mask>
  2035. </defs>
  2036. <g transform="matrix(1 0 0 1 -1032 -79 )">
  2037. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1032 79 )" class="fill" />
  2038. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22910_img_cl2919)" />
  2039. <path d="M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22910_img_cl2919)" />
  2040. <path d="M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u22910_img_cl2919)" />
  2041. </g>
  2042. </svg>
  2043. <div id="u22910_text" class="text " style="display:none; visibility: hidden">
  2044. <p></p>
  2045. </div>
  2046. </div>
  2047. </div>
  2048. <!-- Unnamed (Group) -->
  2049. <div id="u22911" class="ax_default" data-left="2128" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
  2050. <!-- Unnamed (Rectangle) -->
  2051. <div id="u22912" class="ax_default paragraph transition">
  2052. <div id="u22912_div" class=""></div>
  2053. <div id="u22912_text" class="text " style="display:none; visibility: hidden">
  2054. <p></p>
  2055. </div>
  2056. </div>
  2057. <!-- Unnamed (Rectangle) -->
  2058. <div id="u22913" class="ax_default box_1 transition">
  2059. <div id="u22913_div" class=""></div>
  2060. <div id="u22913_text" class="text ">
  2061. <p><span>提交验收</span></p>
  2062. </div>
  2063. </div>
  2064. <!-- Unnamed (Rectangle) -->
  2065. <div id="u22914" class="ax_default box_1 transition">
  2066. <div id="u22914_div" class=""></div>
  2067. <div id="u22914_text" class="text ">
  2068. <p><span>取消</span></p>
  2069. </div>
  2070. </div>
  2071. </div>
  2072. <!-- Unnamed (Table) -->
  2073. <div id="u22915" class="ax_default">
  2074. <!-- Unnamed (Table cell) -->
  2075. <div id="u22916" class="ax_default table_cell transition">
  2076. <svg data="images/完成验收/u22700.svg" id="u22916_img" class="img generatedImage" viewbox="0 0 102 30">
  2077. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  2078. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  2079. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  2080. </svg>
  2081. <div id="u22916_text" class="text ">
  2082. <p><span>收费标准名称</span></p>
  2083. </div>
  2084. </div>
  2085. <!-- Unnamed (Table cell) -->
  2086. <div id="u22917" class="ax_default table_cell transition">
  2087. <svg data="images/完成验收/u22701.svg" id="u22917_img" class="img generatedImage" viewbox="102 0 122 30">
  2088. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 102 0 )" class="fill" />
  2089. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  2090. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  2091. </svg>
  2092. <div id="u22917_text" class="text ">
  2093. <p><span>计费方式</span></p>
  2094. </div>
  2095. </div>
  2096. <!-- Unnamed (Table cell) -->
  2097. <div id="u22918" class="ax_default table_cell transition">
  2098. <svg data="images/完成验收/u22702.svg" id="u22918_img" class="img generatedImage" viewbox="224 0 122 30">
  2099. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 224 0 )" class="fill" />
  2100. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  2101. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  2102. </svg>
  2103. <div id="u22918_text" class="text ">
  2104. <p><span>开始日期</span></p>
  2105. </div>
  2106. </div>
  2107. <!-- Unnamed (Table cell) -->
  2108. <div id="u22919" class="ax_default table_cell transition">
  2109. <svg data="images/完成验收/u22703.svg" id="u22919_img" class="img generatedImage" viewbox="346 0 122 30">
  2110. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 346 0 )" class="fill" />
  2111. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  2112. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  2113. </svg>
  2114. <div id="u22919_text" class="text ">
  2115. <p><span>结束日期</span></p>
  2116. </div>
  2117. </div>
  2118. <!-- Unnamed (Table cell) -->
  2119. <div id="u22920" class="ax_default table_cell transition">
  2120. <svg data="images/完成验收/u22704.svg" id="u22920_img" class="img generatedImage" viewbox="468 0 104 30">
  2121. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 468 0 )" class="fill" />
  2122. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  2123. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  2124. </svg>
  2125. <div id="u22920_text" class="text ">
  2126. <p><span>金额</span></p>
  2127. </div>
  2128. </div>
  2129. <!-- Unnamed (Table cell) -->
  2130. <div id="u22921" class="ax_default table_cell transition">
  2131. <svg data="images/完成验收/u22705.svg" id="u22921_img" class="img generatedImage" viewbox="572 0 115 30">
  2132. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 572 0 )" class="fill" />
  2133. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  2134. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  2135. </svg>
  2136. <div id="u22921_text" class="text ">
  2137. <p><span>收费对象类型</span></p>
  2138. </div>
  2139. </div>
  2140. <!-- Unnamed (Table cell) -->
  2141. <div id="u22922" class="ax_default table_cell transition">
  2142. <svg data="images/完成验收/u22706.svg" id="u22922_img" class="img generatedImage" viewbox="687 0 115 30">
  2143. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 687 0 )" class="fill" />
  2144. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  2145. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  2146. </svg>
  2147. <div id="u22922_text" class="text ">
  2148. <p><span>收费对象</span></p>
  2149. </div>
  2150. </div>
  2151. <!-- Unnamed (Table cell) -->
  2152. <div id="u22923" class="ax_default table_cell transition">
  2153. <svg data="images/完成验收/u22707.svg" id="u22923_img" class="img generatedImage" viewbox="802 0 113 30">
  2154. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 802 0 )" class="fill" />
  2155. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  2156. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  2157. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  2158. </svg>
  2159. <div id="u22923_text" class="text ">
  2160. <p><span>收费状态</span></p>
  2161. </div>
  2162. </div>
  2163. <!-- Unnamed (Table cell) -->
  2164. <div id="u22924" class="ax_default table_cell transition">
  2165. <svg data="images/完成验收/u22708.svg" id="u22924_img" class="img generatedImage" viewbox="0 30 102 30">
  2166. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 30 )" class="fill" />
  2167. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  2168. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  2169. </svg>
  2170. <div id="u22924_text" class="text " style="display:none; visibility: hidden">
  2171. <p></p>
  2172. </div>
  2173. </div>
  2174. <!-- Unnamed (Table cell) -->
  2175. <div id="u22925" class="ax_default table_cell transition">
  2176. <svg data="images/完成验收/u22709.svg" id="u22925_img" class="img generatedImage" viewbox="102 30 122 30">
  2177. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 30 )" class="fill" />
  2178. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  2179. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  2180. </svg>
  2181. <div id="u22925_text" class="text " style="display:none; visibility: hidden">
  2182. <p></p>
  2183. </div>
  2184. </div>
  2185. <!-- Unnamed (Table cell) -->
  2186. <div id="u22926" class="ax_default table_cell transition">
  2187. <svg data="images/完成验收/u22710.svg" id="u22926_img" class="img generatedImage" viewbox="224 30 122 30">
  2188. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 30 )" class="fill" />
  2189. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  2190. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  2191. </svg>
  2192. <div id="u22926_text" class="text " style="display:none; visibility: hidden">
  2193. <p></p>
  2194. </div>
  2195. </div>
  2196. <!-- Unnamed (Table cell) -->
  2197. <div id="u22927" class="ax_default table_cell transition">
  2198. <svg data="images/完成验收/u22711.svg" id="u22927_img" class="img generatedImage" viewbox="346 30 122 30">
  2199. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 30 )" class="fill" />
  2200. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  2201. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  2202. </svg>
  2203. <div id="u22927_text" class="text " style="display:none; visibility: hidden">
  2204. <p></p>
  2205. </div>
  2206. </div>
  2207. <!-- Unnamed (Table cell) -->
  2208. <div id="u22928" class="ax_default table_cell transition">
  2209. <svg data="images/完成验收/u22712.svg" id="u22928_img" class="img generatedImage" viewbox="468 30 104 30">
  2210. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 30 )" class="fill" />
  2211. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  2212. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  2213. </svg>
  2214. <div id="u22928_text" class="text " style="display:none; visibility: hidden">
  2215. <p></p>
  2216. </div>
  2217. </div>
  2218. <!-- Unnamed (Table cell) -->
  2219. <div id="u22929" class="ax_default table_cell transition">
  2220. <svg data="images/完成验收/u22713.svg" id="u22929_img" class="img generatedImage" viewbox="572 30 115 30">
  2221. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 30 )" class="fill" />
  2222. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  2223. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  2224. </svg>
  2225. <div id="u22929_text" class="text " style="display:none; visibility: hidden">
  2226. <p></p>
  2227. </div>
  2228. </div>
  2229. <!-- Unnamed (Table cell) -->
  2230. <div id="u22930" class="ax_default table_cell transition">
  2231. <svg data="images/完成验收/u22714.svg" id="u22930_img" class="img generatedImage" viewbox="687 30 115 30">
  2232. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 30 )" class="fill" />
  2233. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  2234. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  2235. </svg>
  2236. <div id="u22930_text" class="text " style="display:none; visibility: hidden">
  2237. <p></p>
  2238. </div>
  2239. </div>
  2240. <!-- Unnamed (Table cell) -->
  2241. <div id="u22931" class="ax_default table_cell transition">
  2242. <svg data="images/完成验收/u22715.svg" id="u22931_img" class="img generatedImage" viewbox="802 30 113 30">
  2243. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 30 )" class="fill" />
  2244. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  2245. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  2246. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  2247. </svg>
  2248. <div id="u22931_text" class="text ">
  2249. <p><span>已收费</span></p>
  2250. </div>
  2251. </div>
  2252. <!-- Unnamed (Table cell) -->
  2253. <div id="u22932" class="ax_default table_cell transition">
  2254. <svg data="images/完成验收/u22716.svg" id="u22932_img" class="img generatedImage" viewbox="0 60 102 30">
  2255. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 60 )" class="fill" />
  2256. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  2257. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  2258. </svg>
  2259. <div id="u22932_text" class="text " style="display:none; visibility: hidden">
  2260. <p></p>
  2261. </div>
  2262. </div>
  2263. <!-- Unnamed (Table cell) -->
  2264. <div id="u22933" class="ax_default table_cell transition">
  2265. <svg data="images/完成验收/u22717.svg" id="u22933_img" class="img generatedImage" viewbox="102 60 122 30">
  2266. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 60 )" class="fill" />
  2267. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  2268. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  2269. </svg>
  2270. <div id="u22933_text" class="text " style="display:none; visibility: hidden">
  2271. <p></p>
  2272. </div>
  2273. </div>
  2274. <!-- Unnamed (Table cell) -->
  2275. <div id="u22934" class="ax_default table_cell transition">
  2276. <svg data="images/完成验收/u22718.svg" id="u22934_img" class="img generatedImage" viewbox="224 60 122 30">
  2277. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 60 )" class="fill" />
  2278. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  2279. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  2280. </svg>
  2281. <div id="u22934_text" class="text " style="display:none; visibility: hidden">
  2282. <p></p>
  2283. </div>
  2284. </div>
  2285. <!-- Unnamed (Table cell) -->
  2286. <div id="u22935" class="ax_default table_cell transition">
  2287. <svg data="images/完成验收/u22719.svg" id="u22935_img" class="img generatedImage" viewbox="346 60 122 30">
  2288. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 60 )" class="fill" />
  2289. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  2290. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  2291. </svg>
  2292. <div id="u22935_text" class="text " style="display:none; visibility: hidden">
  2293. <p></p>
  2294. </div>
  2295. </div>
  2296. <!-- Unnamed (Table cell) -->
  2297. <div id="u22936" class="ax_default table_cell transition">
  2298. <svg data="images/完成验收/u22720.svg" id="u22936_img" class="img generatedImage" viewbox="468 60 104 30">
  2299. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 60 )" class="fill" />
  2300. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  2301. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  2302. </svg>
  2303. <div id="u22936_text" class="text " style="display:none; visibility: hidden">
  2304. <p></p>
  2305. </div>
  2306. </div>
  2307. <!-- Unnamed (Table cell) -->
  2308. <div id="u22937" class="ax_default table_cell transition">
  2309. <svg data="images/完成验收/u22721.svg" id="u22937_img" class="img generatedImage" viewbox="572 60 115 30">
  2310. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 60 )" class="fill" />
  2311. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  2312. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  2313. </svg>
  2314. <div id="u22937_text" class="text " style="display:none; visibility: hidden">
  2315. <p></p>
  2316. </div>
  2317. </div>
  2318. <!-- Unnamed (Table cell) -->
  2319. <div id="u22938" class="ax_default table_cell transition">
  2320. <svg data="images/完成验收/u22722.svg" id="u22938_img" class="img generatedImage" viewbox="687 60 115 30">
  2321. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 60 )" class="fill" />
  2322. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  2323. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  2324. </svg>
  2325. <div id="u22938_text" class="text " style="display:none; visibility: hidden">
  2326. <p></p>
  2327. </div>
  2328. </div>
  2329. <!-- Unnamed (Table cell) -->
  2330. <div id="u22939" class="ax_default table_cell transition">
  2331. <svg data="images/完成验收/u22723.svg" id="u22939_img" class="img generatedImage" viewbox="802 60 113 30">
  2332. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 60 )" class="fill" />
  2333. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  2334. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  2335. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  2336. </svg>
  2337. <div id="u22939_text" class="text ">
  2338. <p><span>已收费</span></p>
  2339. </div>
  2340. </div>
  2341. <!-- Unnamed (Table cell) -->
  2342. <div id="u22940" class="ax_default table_cell transition">
  2343. <svg data="images/完成验收/u22724.svg" id="u22940_img" class="img generatedImage" viewbox="0 90 102 30">
  2344. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 90 )" class="fill" />
  2345. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  2346. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  2347. </svg>
  2348. <div id="u22940_text" class="text " style="display:none; visibility: hidden">
  2349. <p></p>
  2350. </div>
  2351. </div>
  2352. <!-- Unnamed (Table cell) -->
  2353. <div id="u22941" class="ax_default table_cell transition">
  2354. <svg data="images/完成验收/u22725.svg" id="u22941_img" class="img generatedImage" viewbox="102 90 122 30">
  2355. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 90 )" class="fill" />
  2356. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  2357. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  2358. </svg>
  2359. <div id="u22941_text" class="text " style="display:none; visibility: hidden">
  2360. <p></p>
  2361. </div>
  2362. </div>
  2363. <!-- Unnamed (Table cell) -->
  2364. <div id="u22942" class="ax_default table_cell transition">
  2365. <svg data="images/完成验收/u22726.svg" id="u22942_img" class="img generatedImage" viewbox="224 90 122 30">
  2366. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 90 )" class="fill" />
  2367. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  2368. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  2369. </svg>
  2370. <div id="u22942_text" class="text " style="display:none; visibility: hidden">
  2371. <p></p>
  2372. </div>
  2373. </div>
  2374. <!-- Unnamed (Table cell) -->
  2375. <div id="u22943" class="ax_default table_cell transition">
  2376. <svg data="images/完成验收/u22727.svg" id="u22943_img" class="img generatedImage" viewbox="346 90 122 30">
  2377. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 90 )" class="fill" />
  2378. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  2379. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  2380. </svg>
  2381. <div id="u22943_text" class="text " style="display:none; visibility: hidden">
  2382. <p></p>
  2383. </div>
  2384. </div>
  2385. <!-- Unnamed (Table cell) -->
  2386. <div id="u22944" class="ax_default table_cell transition">
  2387. <svg data="images/完成验收/u22728.svg" id="u22944_img" class="img generatedImage" viewbox="468 90 104 30">
  2388. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 90 )" class="fill" />
  2389. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  2390. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  2391. </svg>
  2392. <div id="u22944_text" class="text " style="display:none; visibility: hidden">
  2393. <p></p>
  2394. </div>
  2395. </div>
  2396. <!-- Unnamed (Table cell) -->
  2397. <div id="u22945" class="ax_default table_cell transition">
  2398. <svg data="images/完成验收/u22729.svg" id="u22945_img" class="img generatedImage" viewbox="572 90 115 30">
  2399. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 90 )" class="fill" />
  2400. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  2401. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  2402. </svg>
  2403. <div id="u22945_text" class="text " style="display:none; visibility: hidden">
  2404. <p></p>
  2405. </div>
  2406. </div>
  2407. <!-- Unnamed (Table cell) -->
  2408. <div id="u22946" class="ax_default table_cell transition">
  2409. <svg data="images/完成验收/u22730.svg" id="u22946_img" class="img generatedImage" viewbox="687 90 115 30">
  2410. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 90 )" class="fill" />
  2411. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  2412. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  2413. </svg>
  2414. <div id="u22946_text" class="text " style="display:none; visibility: hidden">
  2415. <p></p>
  2416. </div>
  2417. </div>
  2418. <!-- Unnamed (Table cell) -->
  2419. <div id="u22947" class="ax_default table_cell transition">
  2420. <svg data="images/完成验收/u22731.svg" id="u22947_img" class="img generatedImage" viewbox="802 90 113 30">
  2421. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 90 )" class="fill" />
  2422. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  2423. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  2424. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  2425. </svg>
  2426. <div id="u22947_text" class="text ">
  2427. <p><span>已收费</span></p>
  2428. </div>
  2429. </div>
  2430. <!-- Unnamed (Table cell) -->
  2431. <div id="u22948" class="ax_default table_cell transition">
  2432. <svg data="images/完成验收/u22732.svg" id="u22948_img" class="img generatedImage" viewbox="0 120 102 30">
  2433. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 120 )" class="fill" />
  2434. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  2435. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  2436. </svg>
  2437. <div id="u22948_text" class="text " style="display:none; visibility: hidden">
  2438. <p></p>
  2439. </div>
  2440. </div>
  2441. <!-- Unnamed (Table cell) -->
  2442. <div id="u22949" class="ax_default table_cell transition">
  2443. <svg data="images/完成验收/u22733.svg" id="u22949_img" class="img generatedImage" viewbox="102 120 122 30">
  2444. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 120 )" class="fill" />
  2445. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  2446. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  2447. </svg>
  2448. <div id="u22949_text" class="text " style="display:none; visibility: hidden">
  2449. <p></p>
  2450. </div>
  2451. </div>
  2452. <!-- Unnamed (Table cell) -->
  2453. <div id="u22950" class="ax_default table_cell transition">
  2454. <svg data="images/完成验收/u22734.svg" id="u22950_img" class="img generatedImage" viewbox="224 120 122 30">
  2455. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 120 )" class="fill" />
  2456. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  2457. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  2458. </svg>
  2459. <div id="u22950_text" class="text " style="display:none; visibility: hidden">
  2460. <p></p>
  2461. </div>
  2462. </div>
  2463. <!-- Unnamed (Table cell) -->
  2464. <div id="u22951" class="ax_default table_cell transition">
  2465. <svg data="images/完成验收/u22735.svg" id="u22951_img" class="img generatedImage" viewbox="346 120 122 30">
  2466. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 120 )" class="fill" />
  2467. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  2468. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  2469. </svg>
  2470. <div id="u22951_text" class="text " style="display:none; visibility: hidden">
  2471. <p></p>
  2472. </div>
  2473. </div>
  2474. <!-- Unnamed (Table cell) -->
  2475. <div id="u22952" class="ax_default table_cell transition">
  2476. <svg data="images/完成验收/u22736.svg" id="u22952_img" class="img generatedImage" viewbox="468 120 104 30">
  2477. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 120 )" class="fill" />
  2478. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  2479. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  2480. </svg>
  2481. <div id="u22952_text" class="text " style="display:none; visibility: hidden">
  2482. <p></p>
  2483. </div>
  2484. </div>
  2485. <!-- Unnamed (Table cell) -->
  2486. <div id="u22953" class="ax_default table_cell transition">
  2487. <svg data="images/完成验收/u22737.svg" id="u22953_img" class="img generatedImage" viewbox="572 120 115 30">
  2488. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 120 )" class="fill" />
  2489. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  2490. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  2491. </svg>
  2492. <div id="u22953_text" class="text " style="display:none; visibility: hidden">
  2493. <p></p>
  2494. </div>
  2495. </div>
  2496. <!-- Unnamed (Table cell) -->
  2497. <div id="u22954" class="ax_default table_cell transition">
  2498. <svg data="images/完成验收/u22738.svg" id="u22954_img" class="img generatedImage" viewbox="687 120 115 30">
  2499. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 120 )" class="fill" />
  2500. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  2501. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  2502. </svg>
  2503. <div id="u22954_text" class="text " style="display:none; visibility: hidden">
  2504. <p></p>
  2505. </div>
  2506. </div>
  2507. <!-- Unnamed (Table cell) -->
  2508. <div id="u22955" class="ax_default table_cell transition">
  2509. <svg data="images/完成验收/u22739.svg" id="u22955_img" class="img generatedImage" viewbox="802 120 113 30">
  2510. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 120 )" class="fill" />
  2511. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  2512. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  2513. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  2514. </svg>
  2515. <div id="u22955_text" class="text ">
  2516. <p><span>已收费</span></p>
  2517. </div>
  2518. </div>
  2519. <!-- Unnamed (Table cell) -->
  2520. <div id="u22956" class="ax_default table_cell transition">
  2521. <svg data="images/完成验收/u22740.svg" id="u22956_img" class="img generatedImage" viewbox="0 150 102 30">
  2522. <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
  2523. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  2524. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  2525. <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  2526. </svg>
  2527. <div id="u22956_text" class="text ">
  2528. <p><span>总计</span></p>
  2529. </div>
  2530. </div>
  2531. <!-- Unnamed (Table cell) -->
  2532. <div id="u22957" class="ax_default table_cell transition">
  2533. <svg data="images/完成验收/u22741.svg" id="u22957_img" class="img generatedImage" viewbox="102 150 122 30">
  2534. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
  2535. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  2536. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  2537. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  2538. </svg>
  2539. <div id="u22957_text" class="text " style="display:none; visibility: hidden">
  2540. <p></p>
  2541. </div>
  2542. </div>
  2543. <!-- Unnamed (Table cell) -->
  2544. <div id="u22958" class="ax_default table_cell transition">
  2545. <svg data="images/完成验收/u22742.svg" id="u22958_img" class="img generatedImage" viewbox="224 150 122 30">
  2546. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
  2547. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  2548. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  2549. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  2550. </svg>
  2551. <div id="u22958_text" class="text " style="display:none; visibility: hidden">
  2552. <p></p>
  2553. </div>
  2554. </div>
  2555. <!-- Unnamed (Table cell) -->
  2556. <div id="u22959" class="ax_default table_cell transition">
  2557. <svg data="images/完成验收/u22743.svg" id="u22959_img" class="img generatedImage" viewbox="346 150 122 30">
  2558. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
  2559. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  2560. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  2561. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  2562. </svg>
  2563. <div id="u22959_text" class="text " style="display:none; visibility: hidden">
  2564. <p></p>
  2565. </div>
  2566. </div>
  2567. <!-- Unnamed (Table cell) -->
  2568. <div id="u22960" class="ax_default table_cell transition">
  2569. <svg data="images/完成验收/u22744.svg" id="u22960_img" class="img generatedImage" viewbox="468 150 104 30">
  2570. <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
  2571. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  2572. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  2573. <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  2574. </svg>
  2575. <div id="u22960_text" class="text " style="display:none; visibility: hidden">
  2576. <p></p>
  2577. </div>
  2578. </div>
  2579. <!-- Unnamed (Table cell) -->
  2580. <div id="u22961" class="ax_default table_cell transition">
  2581. <svg data="images/完成验收/u22745.svg" id="u22961_img" class="img generatedImage" viewbox="572 150 115 30">
  2582. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
  2583. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  2584. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  2585. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  2586. </svg>
  2587. <div id="u22961_text" class="text " style="display:none; visibility: hidden">
  2588. <p></p>
  2589. </div>
  2590. </div>
  2591. <!-- Unnamed (Table cell) -->
  2592. <div id="u22962" class="ax_default table_cell transition">
  2593. <svg data="images/完成验收/u22746.svg" id="u22962_img" class="img generatedImage" viewbox="687 150 115 30">
  2594. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
  2595. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  2596. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  2597. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  2598. </svg>
  2599. <div id="u22962_text" class="text " style="display:none; visibility: hidden">
  2600. <p></p>
  2601. </div>
  2602. </div>
  2603. <!-- Unnamed (Table cell) -->
  2604. <div id="u22963" class="ax_default table_cell transition">
  2605. <svg data="images/完成验收/u22747.svg" id="u22963_img" class="img generatedImage" viewbox="802 150 113 30">
  2606. <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
  2607. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  2608. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  2609. <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  2610. <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  2611. </svg>
  2612. <div id="u22963_text" class="text " style="display:none; visibility: hidden">
  2613. <p></p>
  2614. </div>
  2615. </div>
  2616. </div>
  2617. <!-- Unnamed (Rectangle) -->
  2618. <div id="u22964" class="ax_default paragraph transition">
  2619. <div id="u22964_div" class=""></div>
  2620. <div id="u22964_text" class="text ">
  2621. <p><span>验收确认</span></p>
  2622. </div>
  2623. </div>
  2624. <!-- Unnamed (Rectangle) -->
  2625. <div id="u22965" class="ax_default paragraph transition">
  2626. <div id="u22965_div" class=""></div>
  2627. <div id="u22965_text" class="text ">
  2628. <p><span>装修信息</span></p>
  2629. </div>
  2630. </div>
  2631. <!-- Unnamed (Rectangle) -->
  2632. <div id="u22966" class="ax_default paragraph transition">
  2633. <div id="u22966_div" class=""></div>
  2634. <div id="u22966_text" class="text ">
  2635. <p><span>社区:</span></p>
  2636. </div>
  2637. </div>
  2638. <!-- Unnamed (Rectangle) -->
  2639. <div id="u22967" class="ax_default paragraph transition">
  2640. <div id="u22967_div" class=""></div>
  2641. <div id="u22967_text" class="text ">
  2642. <p><span>西安保利天汇社区</span></p>
  2643. </div>
  2644. </div>
  2645. <!-- Unnamed (Rectangle) -->
  2646. <div id="u22968" class="ax_default paragraph transition">
  2647. <div id="u22968_div" class=""></div>
  2648. <div id="u22968_text" class="text ">
  2649. <p><span>房屋:</span></p>
  2650. </div>
  2651. </div>
  2652. <!-- Unnamed (Rectangle) -->
  2653. <div id="u22969" class="ax_default paragraph transition">
  2654. <div id="u22969_div" class=""></div>
  2655. <div id="u22969_text" class="text ">
  2656. <p><span>3栋A单元203</span></p>
  2657. </div>
  2658. </div>
  2659. <!-- Unnamed (Rectangle) -->
  2660. <div id="u22970" class="ax_default paragraph transition">
  2661. <div id="u22970_div" class=""></div>
  2662. <div id="u22970_text" class="text ">
  2663. <p><span>建筑面积:</span></p>
  2664. </div>
  2665. </div>
  2666. <!-- Unnamed (Rectangle) -->
  2667. <div id="u22971" class="ax_default paragraph transition">
  2668. <div id="u22971_div" class=""></div>
  2669. <div id="u22971_text" class="text ">
  2670. <p><span>300.00平方米</span></p>
  2671. </div>
  2672. </div>
  2673. <!-- Unnamed (Rectangle) -->
  2674. <div id="u22972" class="ax_default paragraph transition">
  2675. <div id="u22972_div" class=""></div>
  2676. <div id="u22972_text" class="text ">
  2677. <p><span>套内面积:</span></p>
  2678. </div>
  2679. </div>
  2680. <!-- Unnamed (Rectangle) -->
  2681. <div id="u22973" class="ax_default paragraph transition">
  2682. <div id="u22973_div" class=""></div>
  2683. <div id="u22973_text" class="text ">
  2684. <p><span>225.08平方米</span></p>
  2685. </div>
  2686. </div>
  2687. <!-- Unnamed (Rectangle) -->
  2688. <div id="u22974" class="ax_default paragraph transition">
  2689. <div id="u22974_div" class=""></div>
  2690. <div id="u22974_text" class="text ">
  2691. <p><span>计费面积:</span></p>
  2692. </div>
  2693. </div>
  2694. <!-- Unnamed (Rectangle) -->
  2695. <div id="u22975" class="ax_default paragraph transition">
  2696. <div id="u22975_div" class=""></div>
  2697. <div id="u22975_text" class="text ">
  2698. <p><span>300.00平方米</span></p>
  2699. </div>
  2700. </div>
  2701. <!-- Unnamed (Rectangle) -->
  2702. <div id="u22976" class="ax_default paragraph transition">
  2703. <div id="u22976_div" class=""></div>
  2704. <div id="u22976_text" class="text ">
  2705. <p><span>业主名称:</span></p>
  2706. </div>
  2707. </div>
  2708. <!-- Unnamed (Rectangle) -->
  2709. <div id="u22977" class="ax_default paragraph transition">
  2710. <div id="u22977_div" class=""></div>
  2711. <div id="u22977_text" class="text ">
  2712. <p><span>张三</span></p>
  2713. </div>
  2714. </div>
  2715. <!-- Unnamed (Rectangle) -->
  2716. <div id="u22978" class="ax_default paragraph transition">
  2717. <div id="u22978_div" class=""></div>
  2718. <div id="u22978_text" class="text ">
  2719. <p><span>开始时间;</span></p>
  2720. </div>
  2721. </div>
  2722. <!-- Unnamed (Rectangle) -->
  2723. <div id="u22979" class="ax_default paragraph transition">
  2724. <div id="u22979_div" class=""></div>
  2725. <div id="u22979_text" class="text ">
  2726. <p><span>2025/07/28</span></p>
  2727. </div>
  2728. </div>
  2729. <!-- Unnamed (Rectangle) -->
  2730. <div id="u22980" class="ax_default paragraph transition">
  2731. <div id="u22980_div" class=""></div>
  2732. <div id="u22980_text" class="text ">
  2733. <p><span>拟结束时间:</span></p>
  2734. </div>
  2735. </div>
  2736. <!-- Unnamed (Rectangle) -->
  2737. <div id="u22981" class="ax_default paragraph transition">
  2738. <div id="u22981_div" class=""></div>
  2739. <div id="u22981_text" class="text ">
  2740. <p><span>2025/09/28</span></p>
  2741. </div>
  2742. </div>
  2743. <!-- Unnamed (Rectangle) -->
  2744. <div id="u22982" class="ax_default paragraph transition">
  2745. <div id="u22982_div" class=""></div>
  2746. <div id="u22982_text" class="text ">
  2747. <p><span>备注信息:</span></p>
  2748. </div>
  2749. </div>
  2750. <!-- Unnamed (Rectangle) -->
  2751. <div id="u22983" class="ax_default paragraph transition">
  2752. <div id="u22983_div" class=""></div>
  2753. <div id="u22983_text" class="text ">
  2754. <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
  2755. </div>
  2756. </div>
  2757. <!-- Unnamed (Rectangle) -->
  2758. <div id="u22984" class="ax_default paragraph transition">
  2759. <div id="u22984_div" class=""></div>
  2760. <div id="u22984_text" class="text ">
  2761. <p><span>账单费用明细</span></p>
  2762. </div>
  2763. </div>
  2764. <!-- Unnamed (Rectangle) -->
  2765. <div id="u22985" class="ax_default paragraph transition">
  2766. <div id="u22985_div" class=""></div>
  2767. <div id="u22985_text" class="text ">
  2768. <p><span>*是否退款:</span></p>
  2769. </div>
  2770. </div>
  2771. <!-- Unnamed (Radio button) -->
  2772. <div id="u22986" class="ax_default radio_button selected">
  2773. <label id="u22986_input_label" for="u22986_input" style="position: absolute; left: 0px;">
  2774. <svg data="images/完成验收/u22986.svg" id="u22986_img" class="img " viewbox="2255 765 12 12">
  2775. <path d="M 2261 765 C 2264.36 765 2267 767.64 2267 771 C 2267 774.36 2264.36 777 2261 777 C 2257.64 777 2255 774.36 2255 771 C 2255 767.64 2257.64 765 2261 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2776. <path d="M 2261 765.5 C 2264.08 765.5 2266.5 767.92 2266.5 771 C 2266.5 774.08 2264.08 776.5 2261 776.5 C 2257.92 776.5 2255.5 774.08 2255.5 771 C 2255.5 767.92 2257.92 765.5 2261 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2777. <path d="M 2261 774 C 2259.32 774 2258 772.68 2258 771 C 2258 769.32 2259.32 768 2261 768 C 2262.68 768 2264 769.32 2264 771 C 2264 772.68 2262.68 774 2261 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  2778. </svg>
  2779. <div id="u22986_text" class="text ">
  2780. <p><span>是</span></p>
  2781. </div>
  2782. </label>
  2783. <input id="u22986_input" type="radio" value="radio" name="u22986" checked/>
  2784. </div>
  2785. <!-- Unnamed (Radio button) -->
  2786. <div id="u22987" class="ax_default radio_button">
  2787. <label id="u22987_input_label" for="u22987_input" style="position: absolute; left: 0px;">
  2788. <svg data="images/完成验收/u22987.svg" id="u22987_img" class="img " viewbox="2388 765 12 12">
  2789. <path d="M 2394 765 C 2397.36 765 2400 767.64 2400 771 C 2400 774.36 2397.36 777 2394 777 C 2390.64 777 2388 774.36 2388 771 C 2388 767.64 2390.64 765 2394 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2790. <path d="M 2394 765.5 C 2397.08 765.5 2399.5 767.92 2399.5 771 C 2399.5 774.08 2397.08 776.5 2394 776.5 C 2390.92 776.5 2388.5 774.08 2388.5 771 C 2388.5 767.92 2390.92 765.5 2394 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2791. <path d="M 2394 774 C 2392.32 774 2391 772.68 2391 771 C 2391 769.32 2392.32 768 2394 768 C 2395.68 768 2397 769.32 2397 771 C 2397 772.68 2395.68 774 2394 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  2792. </svg>
  2793. <div id="u22987_text" class="text ">
  2794. <p><span>否</span></p>
  2795. </div>
  2796. </label>
  2797. <input id="u22987_input" type="radio" value="radio" name="u22987"/>
  2798. </div>
  2799. <!-- Unnamed (Rectangle) -->
  2800. <div id="u22988" class="ax_default paragraph transition">
  2801. <div id="u22988_div" class=""></div>
  2802. <div id="u22988_text" class="text ">
  2803. <p><span>完成验收</span></p>
  2804. </div>
  2805. </div>
  2806. <!-- Unnamed (Rectangle) -->
  2807. <div id="u22989" class="ax_default paragraph transition">
  2808. <div id="u22989_div" class=""></div>
  2809. <div id="u22989_text" class="text ">
  2810. <p><span>验收说明:</span></p>
  2811. </div>
  2812. </div>
  2813. <!-- Unnamed (Group) -->
  2814. <div id="u22990" class="ax_default" data-left="2249" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
  2815. <!-- Unnamed (Rectangle) -->
  2816. <div id="u22991" class="ax_default shape transition">
  2817. <div id="u22991_div" class=""></div>
  2818. <div id="u22991_text" class="text " style="display:none; visibility: hidden">
  2819. <p></p>
  2820. </div>
  2821. </div>
  2822. <!-- 选项内容 (Text field) -->
  2823. <div id="u22992" class="ax_default text_field transition" data-label="选项内容">
  2824. <div id="u22992_div" class=""></div>
  2825. <input id="u22992_input" type="text" value="" class="u22992_input"/>
  2826. </div>
  2827. </div>
  2828. <!-- Unnamed (Rectangle) -->
  2829. <div id="u22993" class="ax_default paragraph transition">
  2830. <div id="u22993_div" class=""></div>
  2831. <div id="u22993_text" class="text " style="display:none; visibility: hidden">
  2832. <p></p>
  2833. </div>
  2834. </div>
  2835. <!-- Unnamed (Rectangle) -->
  2836. <div id="u22994" class="ax_default paragraph transition">
  2837. <div id="u22994_div" class=""></div>
  2838. <div id="u22994_text" class="text ">
  2839. <p><span>+添加</span></p>
  2840. </div>
  2841. </div>
  2842. <!-- Unnamed (Shape) -->
  2843. <div id="u22995" class="ax_default icon transition">
  2844. <svg data="images/完成验收/u22795.svg" id="u22995_img" class="img generatedImage">
  2845. <defs>
  2846. <pattern id="u22995_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2847. <mask fill="white" id="u22995_img_cl3767">
  2848. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
  2849. </mask>
  2850. </defs>
  2851. <g transform="matrix(1 0 0 1 -986 -795 )">
  2852. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
  2853. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22995_img_cl3767)" />
  2854. <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22995_img_cl3767)" />
  2855. </g>
  2856. </svg>
  2857. <div id="u22995_text" class="text " style="display:none; visibility: hidden">
  2858. <p></p>
  2859. </div>
  2860. </div>
  2861. <!-- Unnamed (Rectangle) -->
  2862. <div id="u22996" class="ax_default paragraph transition">
  2863. <div id="u22996_div" class=""></div>
  2864. <div id="u22996_text" class="text ">
  2865. <p><span>*退款方式:</span></p>
  2866. </div>
  2867. </div>
  2868. <!-- Unnamed (Group) -->
  2869. <div id="u22997" class="ax_default" data-left="2279" data-top="868" data-width="300" data-height="40" layer-opacity="1">
  2870. <!-- Unnamed (Rectangle) -->
  2871. <div id="u22998" class="ax_default box_1 transition">
  2872. <div id="u22998_div" class=""></div>
  2873. <div id="u22998_text" class="text " style="display:none; visibility: hidden">
  2874. <p></p>
  2875. </div>
  2876. </div>
  2877. <!-- Unnamed (Droplist) -->
  2878. <div id="u22999" class="ax_default droplist transition">
  2879. <div id="u22999_div" class=""></div>
  2880. <select id="u22999_input" class="u22999_input">
  2881. <option class="u22999_input_option" value="选择付款方式">选择付款方式</option>
  2882. <option class="u22999_input_option" value="转为预存款">转为预存款</option>
  2883. <option class="u22999_input_option" value="线上原路返回">线上原路返回</option>
  2884. <option class="u22999_input_option" selected value="支付宝转账">支付宝转账</option>
  2885. <option class="u22999_input_option" value="微信转账">微信转账</option>
  2886. <option class="u22999_input_option" value="银行卡转账">银行卡转账</option>
  2887. </select>
  2888. </div>
  2889. </div>
  2890. <!-- Unnamed (Rectangle) -->
  2891. <div id="u23000" class="ax_default paragraph transition">
  2892. <div id="u23000_div" class=""></div>
  2893. <div id="u23000_text" class="text ">
  2894. <p><span>*退款项目:</span></p>
  2895. </div>
  2896. </div>
  2897. <!-- Unnamed (Group) -->
  2898. <div id="u23001" class="ax_default" data-left="2279" data-top="818" data-width="299" data-height="40" layer-opacity="1">
  2899. <!-- Unnamed (Rectangle) -->
  2900. <div id="u23002" class="ax_default box_1 transition">
  2901. <div id="u23002_div" class=""></div>
  2902. <div id="u23002_text" class="text " style="display:none; visibility: hidden">
  2903. <p></p>
  2904. </div>
  2905. </div>
  2906. <!-- Unnamed (Droplist) -->
  2907. <div id="u23003" class="ax_default droplist transition">
  2908. <div id="u23003_div" class=""></div>
  2909. <select id="u23003_input" class="u23003_input">
  2910. <option class="u23003_input_option" value="室内清洁费">室内清洁费</option>
  2911. <option class="u23003_input_option" value="小时计费">小时计费</option>
  2912. <option class="u23003_input_option" value="指定">指定</option>
  2913. <option class="u23003_input_option" value="合同-固定">合同-固定</option>
  2914. </select>
  2915. </div>
  2916. </div>
  2917. <!-- Unnamed (Rectangle) -->
  2918. <div id="u23004" class="ax_default paragraph transition">
  2919. <div id="u23004_div" class=""></div>
  2920. <div id="u23004_text" class="text ">
  2921. <p><span>*退款金额:</span></p>
  2922. </div>
  2923. </div>
  2924. <!-- Unnamed (Group) -->
  2925. <div id="u23005" class="ax_default" data-left="2721" data-top="818" data-width="300" data-height="40" layer-opacity="1">
  2926. <!-- Unnamed (Rectangle) -->
  2927. <div id="u23006" class="ax_default shape transition">
  2928. <div id="u23006_div" class=""></div>
  2929. <div id="u23006_text" class="text " style="display:none; visibility: hidden">
  2930. <p></p>
  2931. </div>
  2932. </div>
  2933. <!-- 选项内容 (Text field) -->
  2934. <div id="u23007" class="ax_default text_field transition" data-label="选项内容">
  2935. <div id="u23007_div" class=""></div>
  2936. <input id="u23007_input" type="text" value="" class="u23007_input"/>
  2937. </div>
  2938. </div>
  2939. <!-- Unnamed (Rectangle) -->
  2940. <div id="u23008" class="ax_default paragraph transition">
  2941. <div id="u23008_div" class=""></div>
  2942. <div id="u23008_text" class="text ">
  2943. <p><span>*支付宝账号:</span></p>
  2944. </div>
  2945. </div>
  2946. <!-- Unnamed (Rectangle) -->
  2947. <div id="u23009" class="ax_default paragraph transition">
  2948. <div id="u23009_div" class=""></div>
  2949. <div id="u23009_text" class="text ">
  2950. <p><span>退款备注:</span></p>
  2951. </div>
  2952. </div>
  2953. <!-- Unnamed (Group) -->
  2954. <div id="u23010" class="ax_default" data-left="2279" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
  2955. <!-- Unnamed (Rectangle) -->
  2956. <div id="u23011" class="ax_default shape transition">
  2957. <div id="u23011_div" class=""></div>
  2958. <div id="u23011_text" class="text " style="display:none; visibility: hidden">
  2959. <p></p>
  2960. </div>
  2961. </div>
  2962. <!-- 选项内容 (Text field) -->
  2963. <div id="u23012" class="ax_default text_field transition" data-label="选项内容">
  2964. <div id="u23012_div" class=""></div>
  2965. <input id="u23012_input" type="text" value="" class="u23012_input"/>
  2966. </div>
  2967. </div>
  2968. <!-- Unnamed (Group) -->
  2969. <div id="u23013" class="ax_default" data-left="2721" data-top="868" data-width="299" data-height="38" layer-opacity="1">
  2970. <!-- Unnamed (Rectangle) -->
  2971. <div id="u23014" class="ax_default box_1 transition">
  2972. <div id="u23014_div" class=""></div>
  2973. <div id="u23014_text" class="text " style="display:none; visibility: hidden">
  2974. <p></p>
  2975. </div>
  2976. </div>
  2977. <!-- Unnamed (Rectangle) -->
  2978. <div id="u23015" class="ax_default label transition">
  2979. <div id="u23015_div" class=""></div>
  2980. <div id="u23015_text" class="text ">
  2981. <p><span>2023/10/01 10:33</span></p>
  2982. </div>
  2983. </div>
  2984. <!-- Unnamed (Image) -->
  2985. <div id="u23016" class="ax_default image transition">
  2986. <img id="u23016_img" class="img " src="images/新增房屋/u6205.png"/>
  2987. <div id="u23016_text" class="text " style="display:none; visibility: hidden">
  2988. <p></p>
  2989. </div>
  2990. </div>
  2991. </div>
  2992. <!-- Unnamed (Rectangle) -->
  2993. <div id="u23017" class="ax_default paragraph transition">
  2994. <div id="u23017_div" class=""></div>
  2995. <div id="u23017_text" class="text ">
  2996. <p><span>*退款时间:</span></p>
  2997. </div>
  2998. </div>
  2999. <!-- Unnamed (Rectangle) -->
  3000. <div id="u23018" class="ax_default paragraph transition">
  3001. <div id="u23018_div" class=""></div>
  3002. <div id="u23018_text" class="text ">
  3003. <p><span>*收款方:</span></p>
  3004. </div>
  3005. </div>
  3006. <!-- Unnamed (Group) -->
  3007. <div id="u23019" class="ax_default" data-left="2722" data-top="918" data-width="299" data-height="40" layer-opacity="1">
  3008. <!-- Unnamed (Rectangle) -->
  3009. <div id="u23020" class="ax_default shape transition">
  3010. <div id="u23020_div" class=""></div>
  3011. <div id="u23020_text" class="text " style="display:none; visibility: hidden">
  3012. <p></p>
  3013. </div>
  3014. </div>
  3015. <!-- 选项内容 (Text field) -->
  3016. <div id="u23021" class="ax_default text_field transition" data-label="选项内容">
  3017. <div id="u23021_div" class=""></div>
  3018. <input id="u23021_input" type="text" value="" class="u23021_input"/>
  3019. </div>
  3020. </div>
  3021. <!-- Unnamed (Rectangle) -->
  3022. <div id="u23022" class="ax_default paragraph transition">
  3023. <div id="u23022_div" class=""></div>
  3024. <div id="u23022_text" class="text ">
  3025. <p><span>*收款账号:</span></p>
  3026. </div>
  3027. </div>
  3028. <!-- Unnamed (Group) -->
  3029. <div id="u23023" class="ax_default" data-left="2279" data-top="967" data-width="300" data-height="40" layer-opacity="1">
  3030. <!-- Unnamed (Rectangle) -->
  3031. <div id="u23024" class="ax_default shape transition">
  3032. <div id="u23024_div" class=""></div>
  3033. <div id="u23024_text" class="text " style="display:none; visibility: hidden">
  3034. <p></p>
  3035. </div>
  3036. </div>
  3037. <!-- 选项内容 (Text field) -->
  3038. <div id="u23025" class="ax_default text_field transition" data-label="选项内容">
  3039. <div id="u23025_div" class=""></div>
  3040. <input id="u23025_input" type="text" value="" class="u23025_input"/>
  3041. </div>
  3042. </div>
  3043. <!-- Unnamed (Group) -->
  3044. <div id="u23026" class="ax_default" data-left="2280" data-top="918" data-width="299" data-height="40" layer-opacity="1">
  3045. <!-- Unnamed (Rectangle) -->
  3046. <div id="u23027" class="ax_default box_1 transition">
  3047. <div id="u23027_div" class=""></div>
  3048. <div id="u23027_text" class="text " style="display:none; visibility: hidden">
  3049. <p></p>
  3050. </div>
  3051. </div>
  3052. <!-- Unnamed (Droplist) -->
  3053. <div id="u23028" class="ax_default droplist transition">
  3054. <div id="u23028_div" class=""></div>
  3055. <select id="u23028_input" class="u23028_input">
  3056. <option class="u23028_input_option" value="支付宝转账">支付宝转账</option>
  3057. <option class="u23028_input_option" value="微信转账">微信转账</option>
  3058. <option class="u23028_input_option" value="银行卡转账">银行卡转账</option>
  3059. </select>
  3060. </div>
  3061. </div>
  3062. <!-- Unnamed (Rectangle) -->
  3063. <div id="u23029" class="ax_default paragraph transition">
  3064. <div id="u23029_div" class=""></div>
  3065. <div id="u23029_text" class="text ">
  3066. <p><span>*交易凭证:</span></p>
  3067. </div>
  3068. </div>
  3069. <!-- Unnamed (Group) -->
  3070. <div id="u23030" class="ax_default" data-left="2723" data-top="968" data-width="108" data-height="60" layer-opacity="1">
  3071. <!-- Unnamed (Rectangle) -->
  3072. <div id="u23031" class="ax_default shape transition">
  3073. <div id="u23031_div" class=""></div>
  3074. <div id="u23031_text" class="text ">
  3075. <p><span>+</span></p>
  3076. </div>
  3077. </div>
  3078. </div>
  3079. <!-- Unnamed (Rectangle) -->
  3080. <div id="u23032" class="ax_default paragraph transition">
  3081. <div id="u23032_div" class=""></div>
  3082. <div id="u23032_text" class="text " style="display:none; visibility: hidden">
  3083. <p></p>
  3084. </div>
  3085. </div>
  3086. <!-- Unnamed (Rectangle) -->
  3087. <div id="u23033" class="ax_default paragraph transition">
  3088. <div id="u23033_div" class=""></div>
  3089. <div id="u23033_text" class="text " style="display:none; visibility: hidden">
  3090. <p></p>
  3091. </div>
  3092. </div>
  3093. <!-- Unnamed (Rectangle) -->
  3094. <div id="u23034" class="ax_default paragraph transition">
  3095. <div id="u23034_div" class=""></div>
  3096. <div id="u23034_text" class="text " style="display:none; visibility: hidden">
  3097. <p></p>
  3098. </div>
  3099. </div>
  3100. <!-- Unnamed (Group) -->
  3101. <div id="u23035" class="ax_default" data-left="4096" data-top="59" data-width="52" data-height="40" layer-opacity="1">
  3102. <!-- Unnamed (Rectangle) -->
  3103. <div id="u23036" class="ax_default paragraph transition">
  3104. <div id="u23036_div" class=""></div>
  3105. <div id="u23036_text" class="text ">
  3106. <p><span>x</span></p>
  3107. </div>
  3108. </div>
  3109. <!-- Unnamed (Shape) -->
  3110. <div id="u23037" class="ax_default icon1 transition">
  3111. <svg data="images/设置/u4554.svg" id="u23037_img" class="img generatedImage">
  3112. <defs>
  3113. <pattern id="u23037_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3114. <mask fill="white" id="u23037_img_cl2919">
  3115. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="evenodd" />
  3116. </mask>
  3117. </defs>
  3118. <g transform="matrix(1 0 0 1 -1032 -79 )">
  3119. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1032 79 )" class="fill" />
  3120. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u23037_img_cl2919)" />
  3121. <path d="M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u23037_img_cl2919)" />
  3122. <path d="M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u23037_img_cl2919)" />
  3123. </g>
  3124. </svg>
  3125. <div id="u23037_text" class="text " style="display:none; visibility: hidden">
  3126. <p></p>
  3127. </div>
  3128. </div>
  3129. </div>
  3130. <!-- Unnamed (Group) -->
  3131. <div id="u23038" class="ax_default" data-left="3148" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
  3132. <!-- Unnamed (Rectangle) -->
  3133. <div id="u23039" class="ax_default paragraph transition">
  3134. <div id="u23039_div" class=""></div>
  3135. <div id="u23039_text" class="text " style="display:none; visibility: hidden">
  3136. <p></p>
  3137. </div>
  3138. </div>
  3139. <!-- Unnamed (Rectangle) -->
  3140. <div id="u23040" class="ax_default box_1 transition">
  3141. <div id="u23040_div" class=""></div>
  3142. <div id="u23040_text" class="text ">
  3143. <p><span>提交验收</span></p>
  3144. </div>
  3145. </div>
  3146. <!-- Unnamed (Rectangle) -->
  3147. <div id="u23041" class="ax_default box_1 transition">
  3148. <div id="u23041_div" class=""></div>
  3149. <div id="u23041_text" class="text ">
  3150. <p><span>取消</span></p>
  3151. </div>
  3152. </div>
  3153. </div>
  3154. <!-- Unnamed (Table) -->
  3155. <div id="u23042" class="ax_default">
  3156. <!-- Unnamed (Table cell) -->
  3157. <div id="u23043" class="ax_default table_cell transition">
  3158. <svg data="images/完成验收/u22700.svg" id="u23043_img" class="img generatedImage" viewbox="0 0 102 30">
  3159. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  3160. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  3161. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  3162. </svg>
  3163. <div id="u23043_text" class="text ">
  3164. <p><span>收费标准名称</span></p>
  3165. </div>
  3166. </div>
  3167. <!-- Unnamed (Table cell) -->
  3168. <div id="u23044" class="ax_default table_cell transition">
  3169. <svg data="images/完成验收/u22701.svg" id="u23044_img" class="img generatedImage" viewbox="102 0 122 30">
  3170. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 102 0 )" class="fill" />
  3171. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  3172. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
  3173. </svg>
  3174. <div id="u23044_text" class="text ">
  3175. <p><span>计费方式</span></p>
  3176. </div>
  3177. </div>
  3178. <!-- Unnamed (Table cell) -->
  3179. <div id="u23045" class="ax_default table_cell transition">
  3180. <svg data="images/完成验收/u22702.svg" id="u23045_img" class="img generatedImage" viewbox="224 0 122 30">
  3181. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 224 0 )" class="fill" />
  3182. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  3183. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
  3184. </svg>
  3185. <div id="u23045_text" class="text ">
  3186. <p><span>开始日期</span></p>
  3187. </div>
  3188. </div>
  3189. <!-- Unnamed (Table cell) -->
  3190. <div id="u23046" class="ax_default table_cell transition">
  3191. <svg data="images/完成验收/u22703.svg" id="u23046_img" class="img generatedImage" viewbox="346 0 122 30">
  3192. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 346 0 )" class="fill" />
  3193. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  3194. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
  3195. </svg>
  3196. <div id="u23046_text" class="text ">
  3197. <p><span>结束日期</span></p>
  3198. </div>
  3199. </div>
  3200. <!-- Unnamed (Table cell) -->
  3201. <div id="u23047" class="ax_default table_cell transition">
  3202. <svg data="images/完成验收/u22704.svg" id="u23047_img" class="img generatedImage" viewbox="468 0 104 30">
  3203. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 468 0 )" class="fill" />
  3204. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  3205. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
  3206. </svg>
  3207. <div id="u23047_text" class="text ">
  3208. <p><span>金额</span></p>
  3209. </div>
  3210. </div>
  3211. <!-- Unnamed (Table cell) -->
  3212. <div id="u23048" class="ax_default table_cell transition">
  3213. <svg data="images/完成验收/u22705.svg" id="u23048_img" class="img generatedImage" viewbox="572 0 115 30">
  3214. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 572 0 )" class="fill" />
  3215. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  3216. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
  3217. </svg>
  3218. <div id="u23048_text" class="text ">
  3219. <p><span>收费对象类型</span></p>
  3220. </div>
  3221. </div>
  3222. <!-- Unnamed (Table cell) -->
  3223. <div id="u23049" class="ax_default table_cell transition">
  3224. <svg data="images/完成验收/u22706.svg" id="u23049_img" class="img generatedImage" viewbox="687 0 115 30">
  3225. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 687 0 )" class="fill" />
  3226. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  3227. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
  3228. </svg>
  3229. <div id="u23049_text" class="text ">
  3230. <p><span>收费对象</span></p>
  3231. </div>
  3232. </div>
  3233. <!-- Unnamed (Table cell) -->
  3234. <div id="u23050" class="ax_default table_cell transition">
  3235. <svg data="images/完成验收/u22707.svg" id="u23050_img" class="img generatedImage" viewbox="802 0 113 30">
  3236. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 802 0 )" class="fill" />
  3237. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  3238. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  3239. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
  3240. </svg>
  3241. <div id="u23050_text" class="text ">
  3242. <p><span>收费状态</span></p>
  3243. </div>
  3244. </div>
  3245. <!-- Unnamed (Table cell) -->
  3246. <div id="u23051" class="ax_default table_cell transition">
  3247. <svg data="images/完成验收/u22708.svg" id="u23051_img" class="img generatedImage" viewbox="0 30 102 30">
  3248. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 30 )" class="fill" />
  3249. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  3250. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  3251. </svg>
  3252. <div id="u23051_text" class="text " style="display:none; visibility: hidden">
  3253. <p></p>
  3254. </div>
  3255. </div>
  3256. <!-- Unnamed (Table cell) -->
  3257. <div id="u23052" class="ax_default table_cell transition">
  3258. <svg data="images/完成验收/u22709.svg" id="u23052_img" class="img generatedImage" viewbox="102 30 122 30">
  3259. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 30 )" class="fill" />
  3260. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  3261. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
  3262. </svg>
  3263. <div id="u23052_text" class="text " style="display:none; visibility: hidden">
  3264. <p></p>
  3265. </div>
  3266. </div>
  3267. <!-- Unnamed (Table cell) -->
  3268. <div id="u23053" class="ax_default table_cell transition">
  3269. <svg data="images/完成验收/u22710.svg" id="u23053_img" class="img generatedImage" viewbox="224 30 122 30">
  3270. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 30 )" class="fill" />
  3271. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  3272. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
  3273. </svg>
  3274. <div id="u23053_text" class="text " style="display:none; visibility: hidden">
  3275. <p></p>
  3276. </div>
  3277. </div>
  3278. <!-- Unnamed (Table cell) -->
  3279. <div id="u23054" class="ax_default table_cell transition">
  3280. <svg data="images/完成验收/u22711.svg" id="u23054_img" class="img generatedImage" viewbox="346 30 122 30">
  3281. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 30 )" class="fill" />
  3282. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  3283. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
  3284. </svg>
  3285. <div id="u23054_text" class="text " style="display:none; visibility: hidden">
  3286. <p></p>
  3287. </div>
  3288. </div>
  3289. <!-- Unnamed (Table cell) -->
  3290. <div id="u23055" class="ax_default table_cell transition">
  3291. <svg data="images/完成验收/u22712.svg" id="u23055_img" class="img generatedImage" viewbox="468 30 104 30">
  3292. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 30 )" class="fill" />
  3293. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  3294. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
  3295. </svg>
  3296. <div id="u23055_text" class="text " style="display:none; visibility: hidden">
  3297. <p></p>
  3298. </div>
  3299. </div>
  3300. <!-- Unnamed (Table cell) -->
  3301. <div id="u23056" class="ax_default table_cell transition">
  3302. <svg data="images/完成验收/u22713.svg" id="u23056_img" class="img generatedImage" viewbox="572 30 115 30">
  3303. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 30 )" class="fill" />
  3304. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  3305. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
  3306. </svg>
  3307. <div id="u23056_text" class="text " style="display:none; visibility: hidden">
  3308. <p></p>
  3309. </div>
  3310. </div>
  3311. <!-- Unnamed (Table cell) -->
  3312. <div id="u23057" class="ax_default table_cell transition">
  3313. <svg data="images/完成验收/u22714.svg" id="u23057_img" class="img generatedImage" viewbox="687 30 115 30">
  3314. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 30 )" class="fill" />
  3315. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  3316. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
  3317. </svg>
  3318. <div id="u23057_text" class="text " style="display:none; visibility: hidden">
  3319. <p></p>
  3320. </div>
  3321. </div>
  3322. <!-- Unnamed (Table cell) -->
  3323. <div id="u23058" class="ax_default table_cell transition">
  3324. <svg data="images/完成验收/u22715.svg" id="u23058_img" class="img generatedImage" viewbox="802 30 113 30">
  3325. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 30 )" class="fill" />
  3326. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  3327. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  3328. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
  3329. </svg>
  3330. <div id="u23058_text" class="text ">
  3331. <p><span>已收费</span></p>
  3332. </div>
  3333. </div>
  3334. <!-- Unnamed (Table cell) -->
  3335. <div id="u23059" class="ax_default table_cell transition">
  3336. <svg data="images/完成验收/u22716.svg" id="u23059_img" class="img generatedImage" viewbox="0 60 102 30">
  3337. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 60 )" class="fill" />
  3338. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  3339. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
  3340. </svg>
  3341. <div id="u23059_text" class="text " style="display:none; visibility: hidden">
  3342. <p></p>
  3343. </div>
  3344. </div>
  3345. <!-- Unnamed (Table cell) -->
  3346. <div id="u23060" class="ax_default table_cell transition">
  3347. <svg data="images/完成验收/u22717.svg" id="u23060_img" class="img generatedImage" viewbox="102 60 122 30">
  3348. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 60 )" class="fill" />
  3349. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  3350. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
  3351. </svg>
  3352. <div id="u23060_text" class="text " style="display:none; visibility: hidden">
  3353. <p></p>
  3354. </div>
  3355. </div>
  3356. <!-- Unnamed (Table cell) -->
  3357. <div id="u23061" class="ax_default table_cell transition">
  3358. <svg data="images/完成验收/u22718.svg" id="u23061_img" class="img generatedImage" viewbox="224 60 122 30">
  3359. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 60 )" class="fill" />
  3360. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  3361. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
  3362. </svg>
  3363. <div id="u23061_text" class="text " style="display:none; visibility: hidden">
  3364. <p></p>
  3365. </div>
  3366. </div>
  3367. <!-- Unnamed (Table cell) -->
  3368. <div id="u23062" class="ax_default table_cell transition">
  3369. <svg data="images/完成验收/u22719.svg" id="u23062_img" class="img generatedImage" viewbox="346 60 122 30">
  3370. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 60 )" class="fill" />
  3371. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  3372. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
  3373. </svg>
  3374. <div id="u23062_text" class="text " style="display:none; visibility: hidden">
  3375. <p></p>
  3376. </div>
  3377. </div>
  3378. <!-- Unnamed (Table cell) -->
  3379. <div id="u23063" class="ax_default table_cell transition">
  3380. <svg data="images/完成验收/u22720.svg" id="u23063_img" class="img generatedImage" viewbox="468 60 104 30">
  3381. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 60 )" class="fill" />
  3382. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  3383. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
  3384. </svg>
  3385. <div id="u23063_text" class="text " style="display:none; visibility: hidden">
  3386. <p></p>
  3387. </div>
  3388. </div>
  3389. <!-- Unnamed (Table cell) -->
  3390. <div id="u23064" class="ax_default table_cell transition">
  3391. <svg data="images/完成验收/u22721.svg" id="u23064_img" class="img generatedImage" viewbox="572 60 115 30">
  3392. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 60 )" class="fill" />
  3393. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  3394. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
  3395. </svg>
  3396. <div id="u23064_text" class="text " style="display:none; visibility: hidden">
  3397. <p></p>
  3398. </div>
  3399. </div>
  3400. <!-- Unnamed (Table cell) -->
  3401. <div id="u23065" class="ax_default table_cell transition">
  3402. <svg data="images/完成验收/u22722.svg" id="u23065_img" class="img generatedImage" viewbox="687 60 115 30">
  3403. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 60 )" class="fill" />
  3404. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  3405. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
  3406. </svg>
  3407. <div id="u23065_text" class="text " style="display:none; visibility: hidden">
  3408. <p></p>
  3409. </div>
  3410. </div>
  3411. <!-- Unnamed (Table cell) -->
  3412. <div id="u23066" class="ax_default table_cell transition">
  3413. <svg data="images/完成验收/u22723.svg" id="u23066_img" class="img generatedImage" viewbox="802 60 113 30">
  3414. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 60 )" class="fill" />
  3415. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  3416. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  3417. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
  3418. </svg>
  3419. <div id="u23066_text" class="text ">
  3420. <p><span>已收费</span></p>
  3421. </div>
  3422. </div>
  3423. <!-- Unnamed (Table cell) -->
  3424. <div id="u23067" class="ax_default table_cell transition">
  3425. <svg data="images/完成验收/u22724.svg" id="u23067_img" class="img generatedImage" viewbox="0 90 102 30">
  3426. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 90 )" class="fill" />
  3427. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  3428. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
  3429. </svg>
  3430. <div id="u23067_text" class="text " style="display:none; visibility: hidden">
  3431. <p></p>
  3432. </div>
  3433. </div>
  3434. <!-- Unnamed (Table cell) -->
  3435. <div id="u23068" class="ax_default table_cell transition">
  3436. <svg data="images/完成验收/u22725.svg" id="u23068_img" class="img generatedImage" viewbox="102 90 122 30">
  3437. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 90 )" class="fill" />
  3438. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  3439. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
  3440. </svg>
  3441. <div id="u23068_text" class="text " style="display:none; visibility: hidden">
  3442. <p></p>
  3443. </div>
  3444. </div>
  3445. <!-- Unnamed (Table cell) -->
  3446. <div id="u23069" class="ax_default table_cell transition">
  3447. <svg data="images/完成验收/u22726.svg" id="u23069_img" class="img generatedImage" viewbox="224 90 122 30">
  3448. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 90 )" class="fill" />
  3449. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  3450. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
  3451. </svg>
  3452. <div id="u23069_text" class="text " style="display:none; visibility: hidden">
  3453. <p></p>
  3454. </div>
  3455. </div>
  3456. <!-- Unnamed (Table cell) -->
  3457. <div id="u23070" class="ax_default table_cell transition">
  3458. <svg data="images/完成验收/u22727.svg" id="u23070_img" class="img generatedImage" viewbox="346 90 122 30">
  3459. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 90 )" class="fill" />
  3460. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  3461. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
  3462. </svg>
  3463. <div id="u23070_text" class="text " style="display:none; visibility: hidden">
  3464. <p></p>
  3465. </div>
  3466. </div>
  3467. <!-- Unnamed (Table cell) -->
  3468. <div id="u23071" class="ax_default table_cell transition">
  3469. <svg data="images/完成验收/u22728.svg" id="u23071_img" class="img generatedImage" viewbox="468 90 104 30">
  3470. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 90 )" class="fill" />
  3471. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  3472. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
  3473. </svg>
  3474. <div id="u23071_text" class="text " style="display:none; visibility: hidden">
  3475. <p></p>
  3476. </div>
  3477. </div>
  3478. <!-- Unnamed (Table cell) -->
  3479. <div id="u23072" class="ax_default table_cell transition">
  3480. <svg data="images/完成验收/u22729.svg" id="u23072_img" class="img generatedImage" viewbox="572 90 115 30">
  3481. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 90 )" class="fill" />
  3482. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  3483. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
  3484. </svg>
  3485. <div id="u23072_text" class="text " style="display:none; visibility: hidden">
  3486. <p></p>
  3487. </div>
  3488. </div>
  3489. <!-- Unnamed (Table cell) -->
  3490. <div id="u23073" class="ax_default table_cell transition">
  3491. <svg data="images/完成验收/u22730.svg" id="u23073_img" class="img generatedImage" viewbox="687 90 115 30">
  3492. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 90 )" class="fill" />
  3493. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  3494. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
  3495. </svg>
  3496. <div id="u23073_text" class="text " style="display:none; visibility: hidden">
  3497. <p></p>
  3498. </div>
  3499. </div>
  3500. <!-- Unnamed (Table cell) -->
  3501. <div id="u23074" class="ax_default table_cell transition">
  3502. <svg data="images/完成验收/u22731.svg" id="u23074_img" class="img generatedImage" viewbox="802 90 113 30">
  3503. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 90 )" class="fill" />
  3504. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  3505. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  3506. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
  3507. </svg>
  3508. <div id="u23074_text" class="text ">
  3509. <p><span>已收费</span></p>
  3510. </div>
  3511. </div>
  3512. <!-- Unnamed (Table cell) -->
  3513. <div id="u23075" class="ax_default table_cell transition">
  3514. <svg data="images/完成验收/u22732.svg" id="u23075_img" class="img generatedImage" viewbox="0 120 102 30">
  3515. <path d="M 1 1 L 102 1 L 102 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 120 )" class="fill" />
  3516. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  3517. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  3518. </svg>
  3519. <div id="u23075_text" class="text " style="display:none; visibility: hidden">
  3520. <p></p>
  3521. </div>
  3522. </div>
  3523. <!-- Unnamed (Table cell) -->
  3524. <div id="u23076" class="ax_default table_cell transition">
  3525. <svg data="images/完成验收/u22733.svg" id="u23076_img" class="img generatedImage" viewbox="102 120 122 30">
  3526. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 102 120 )" class="fill" />
  3527. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  3528. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
  3529. </svg>
  3530. <div id="u23076_text" class="text " style="display:none; visibility: hidden">
  3531. <p></p>
  3532. </div>
  3533. </div>
  3534. <!-- Unnamed (Table cell) -->
  3535. <div id="u23077" class="ax_default table_cell transition">
  3536. <svg data="images/完成验收/u22734.svg" id="u23077_img" class="img generatedImage" viewbox="224 120 122 30">
  3537. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 224 120 )" class="fill" />
  3538. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  3539. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
  3540. </svg>
  3541. <div id="u23077_text" class="text " style="display:none; visibility: hidden">
  3542. <p></p>
  3543. </div>
  3544. </div>
  3545. <!-- Unnamed (Table cell) -->
  3546. <div id="u23078" class="ax_default table_cell transition">
  3547. <svg data="images/完成验收/u22735.svg" id="u23078_img" class="img generatedImage" viewbox="346 120 122 30">
  3548. <path d="M 1 1 L 122 1 L 122 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 346 120 )" class="fill" />
  3549. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  3550. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
  3551. </svg>
  3552. <div id="u23078_text" class="text " style="display:none; visibility: hidden">
  3553. <p></p>
  3554. </div>
  3555. </div>
  3556. <!-- Unnamed (Table cell) -->
  3557. <div id="u23079" class="ax_default table_cell transition">
  3558. <svg data="images/完成验收/u22736.svg" id="u23079_img" class="img generatedImage" viewbox="468 120 104 30">
  3559. <path d="M 1 1 L 104 1 L 104 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 468 120 )" class="fill" />
  3560. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  3561. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
  3562. </svg>
  3563. <div id="u23079_text" class="text " style="display:none; visibility: hidden">
  3564. <p></p>
  3565. </div>
  3566. </div>
  3567. <!-- Unnamed (Table cell) -->
  3568. <div id="u23080" class="ax_default table_cell transition">
  3569. <svg data="images/完成验收/u22737.svg" id="u23080_img" class="img generatedImage" viewbox="572 120 115 30">
  3570. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 572 120 )" class="fill" />
  3571. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  3572. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
  3573. </svg>
  3574. <div id="u23080_text" class="text " style="display:none; visibility: hidden">
  3575. <p></p>
  3576. </div>
  3577. </div>
  3578. <!-- Unnamed (Table cell) -->
  3579. <div id="u23081" class="ax_default table_cell transition">
  3580. <svg data="images/完成验收/u22738.svg" id="u23081_img" class="img generatedImage" viewbox="687 120 115 30">
  3581. <path d="M 1 1 L 115 1 L 115 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 687 120 )" class="fill" />
  3582. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  3583. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
  3584. </svg>
  3585. <div id="u23081_text" class="text " style="display:none; visibility: hidden">
  3586. <p></p>
  3587. </div>
  3588. </div>
  3589. <!-- Unnamed (Table cell) -->
  3590. <div id="u23082" class="ax_default table_cell transition">
  3591. <svg data="images/完成验收/u22739.svg" id="u23082_img" class="img generatedImage" viewbox="802 120 113 30">
  3592. <path d="M 1 1 L 112 1 L 112 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 802 120 )" class="fill" />
  3593. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  3594. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  3595. <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
  3596. </svg>
  3597. <div id="u23082_text" class="text ">
  3598. <p><span>已收费</span></p>
  3599. </div>
  3600. </div>
  3601. <!-- Unnamed (Table cell) -->
  3602. <div id="u23083" class="ax_default table_cell transition">
  3603. <svg data="images/完成验收/u22740.svg" id="u23083_img" class="img generatedImage" viewbox="0 150 102 30">
  3604. <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
  3605. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  3606. <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  3607. <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  3608. </svg>
  3609. <div id="u23083_text" class="text ">
  3610. <p><span>总计</span></p>
  3611. </div>
  3612. </div>
  3613. <!-- Unnamed (Table cell) -->
  3614. <div id="u23084" class="ax_default table_cell transition">
  3615. <svg data="images/完成验收/u22741.svg" id="u23084_img" class="img generatedImage" viewbox="102 150 122 30">
  3616. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
  3617. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  3618. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  3619. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
  3620. </svg>
  3621. <div id="u23084_text" class="text " style="display:none; visibility: hidden">
  3622. <p></p>
  3623. </div>
  3624. </div>
  3625. <!-- Unnamed (Table cell) -->
  3626. <div id="u23085" class="ax_default table_cell transition">
  3627. <svg data="images/完成验收/u22742.svg" id="u23085_img" class="img generatedImage" viewbox="224 150 122 30">
  3628. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
  3629. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  3630. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  3631. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
  3632. </svg>
  3633. <div id="u23085_text" class="text " style="display:none; visibility: hidden">
  3634. <p></p>
  3635. </div>
  3636. </div>
  3637. <!-- Unnamed (Table cell) -->
  3638. <div id="u23086" class="ax_default table_cell transition">
  3639. <svg data="images/完成验收/u22743.svg" id="u23086_img" class="img generatedImage" viewbox="346 150 122 30">
  3640. <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
  3641. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  3642. <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  3643. <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
  3644. </svg>
  3645. <div id="u23086_text" class="text " style="display:none; visibility: hidden">
  3646. <p></p>
  3647. </div>
  3648. </div>
  3649. <!-- Unnamed (Table cell) -->
  3650. <div id="u23087" class="ax_default table_cell transition">
  3651. <svg data="images/完成验收/u22744.svg" id="u23087_img" class="img generatedImage" viewbox="468 150 104 30">
  3652. <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
  3653. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  3654. <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  3655. <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
  3656. </svg>
  3657. <div id="u23087_text" class="text " style="display:none; visibility: hidden">
  3658. <p></p>
  3659. </div>
  3660. </div>
  3661. <!-- Unnamed (Table cell) -->
  3662. <div id="u23088" class="ax_default table_cell transition">
  3663. <svg data="images/完成验收/u22745.svg" id="u23088_img" class="img generatedImage" viewbox="572 150 115 30">
  3664. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
  3665. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  3666. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  3667. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
  3668. </svg>
  3669. <div id="u23088_text" class="text " style="display:none; visibility: hidden">
  3670. <p></p>
  3671. </div>
  3672. </div>
  3673. <!-- Unnamed (Table cell) -->
  3674. <div id="u23089" class="ax_default table_cell transition">
  3675. <svg data="images/完成验收/u22746.svg" id="u23089_img" class="img generatedImage" viewbox="687 150 115 30">
  3676. <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
  3677. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  3678. <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  3679. <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
  3680. </svg>
  3681. <div id="u23089_text" class="text " style="display:none; visibility: hidden">
  3682. <p></p>
  3683. </div>
  3684. </div>
  3685. <!-- Unnamed (Table cell) -->
  3686. <div id="u23090" class="ax_default table_cell transition">
  3687. <svg data="images/完成验收/u22747.svg" id="u23090_img" class="img generatedImage" viewbox="802 150 113 30">
  3688. <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
  3689. <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  3690. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  3691. <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  3692. <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
  3693. </svg>
  3694. <div id="u23090_text" class="text " style="display:none; visibility: hidden">
  3695. <p></p>
  3696. </div>
  3697. </div>
  3698. </div>
  3699. <!-- Unnamed (Rectangle) -->
  3700. <div id="u23091" class="ax_default paragraph transition">
  3701. <div id="u23091_div" class=""></div>
  3702. <div id="u23091_text" class="text ">
  3703. <p><span>验收确认</span></p>
  3704. </div>
  3705. </div>
  3706. <!-- Unnamed (Rectangle) -->
  3707. <div id="u23092" class="ax_default paragraph transition">
  3708. <div id="u23092_div" class=""></div>
  3709. <div id="u23092_text" class="text ">
  3710. <p><span>装修信息</span></p>
  3711. </div>
  3712. </div>
  3713. <!-- Unnamed (Rectangle) -->
  3714. <div id="u23093" class="ax_default paragraph transition">
  3715. <div id="u23093_div" class=""></div>
  3716. <div id="u23093_text" class="text ">
  3717. <p><span>社区:</span></p>
  3718. </div>
  3719. </div>
  3720. <!-- Unnamed (Rectangle) -->
  3721. <div id="u23094" class="ax_default paragraph transition">
  3722. <div id="u23094_div" class=""></div>
  3723. <div id="u23094_text" class="text ">
  3724. <p><span>西安保利天汇社区</span></p>
  3725. </div>
  3726. </div>
  3727. <!-- Unnamed (Rectangle) -->
  3728. <div id="u23095" class="ax_default paragraph transition">
  3729. <div id="u23095_div" class=""></div>
  3730. <div id="u23095_text" class="text ">
  3731. <p><span>房屋:</span></p>
  3732. </div>
  3733. </div>
  3734. <!-- Unnamed (Rectangle) -->
  3735. <div id="u23096" class="ax_default paragraph transition">
  3736. <div id="u23096_div" class=""></div>
  3737. <div id="u23096_text" class="text ">
  3738. <p><span>3栋A单元203</span></p>
  3739. </div>
  3740. </div>
  3741. <!-- Unnamed (Rectangle) -->
  3742. <div id="u23097" class="ax_default paragraph transition">
  3743. <div id="u23097_div" class=""></div>
  3744. <div id="u23097_text" class="text ">
  3745. <p><span>建筑面积:</span></p>
  3746. </div>
  3747. </div>
  3748. <!-- Unnamed (Rectangle) -->
  3749. <div id="u23098" class="ax_default paragraph transition">
  3750. <div id="u23098_div" class=""></div>
  3751. <div id="u23098_text" class="text ">
  3752. <p><span>300.00平方米</span></p>
  3753. </div>
  3754. </div>
  3755. <!-- Unnamed (Rectangle) -->
  3756. <div id="u23099" class="ax_default paragraph transition">
  3757. <div id="u23099_div" class=""></div>
  3758. <div id="u23099_text" class="text ">
  3759. <p><span>套内面积:</span></p>
  3760. </div>
  3761. </div>
  3762. <!-- Unnamed (Rectangle) -->
  3763. <div id="u23100" class="ax_default paragraph transition">
  3764. <div id="u23100_div" class=""></div>
  3765. <div id="u23100_text" class="text ">
  3766. <p><span>225.08平方米</span></p>
  3767. </div>
  3768. </div>
  3769. <!-- Unnamed (Rectangle) -->
  3770. <div id="u23101" class="ax_default paragraph transition">
  3771. <div id="u23101_div" class=""></div>
  3772. <div id="u23101_text" class="text ">
  3773. <p><span>计费面积:</span></p>
  3774. </div>
  3775. </div>
  3776. <!-- Unnamed (Rectangle) -->
  3777. <div id="u23102" class="ax_default paragraph transition">
  3778. <div id="u23102_div" class=""></div>
  3779. <div id="u23102_text" class="text ">
  3780. <p><span>300.00平方米</span></p>
  3781. </div>
  3782. </div>
  3783. <!-- Unnamed (Rectangle) -->
  3784. <div id="u23103" class="ax_default paragraph transition">
  3785. <div id="u23103_div" class=""></div>
  3786. <div id="u23103_text" class="text ">
  3787. <p><span>业主名称:</span></p>
  3788. </div>
  3789. </div>
  3790. <!-- Unnamed (Rectangle) -->
  3791. <div id="u23104" class="ax_default paragraph transition">
  3792. <div id="u23104_div" class=""></div>
  3793. <div id="u23104_text" class="text ">
  3794. <p><span>张三</span></p>
  3795. </div>
  3796. </div>
  3797. <!-- Unnamed (Rectangle) -->
  3798. <div id="u23105" class="ax_default paragraph transition">
  3799. <div id="u23105_div" class=""></div>
  3800. <div id="u23105_text" class="text ">
  3801. <p><span>开始时间;</span></p>
  3802. </div>
  3803. </div>
  3804. <!-- Unnamed (Rectangle) -->
  3805. <div id="u23106" class="ax_default paragraph transition">
  3806. <div id="u23106_div" class=""></div>
  3807. <div id="u23106_text" class="text ">
  3808. <p><span>2025/07/28</span></p>
  3809. </div>
  3810. </div>
  3811. <!-- Unnamed (Rectangle) -->
  3812. <div id="u23107" class="ax_default paragraph transition">
  3813. <div id="u23107_div" class=""></div>
  3814. <div id="u23107_text" class="text ">
  3815. <p><span>拟结束时间:</span></p>
  3816. </div>
  3817. </div>
  3818. <!-- Unnamed (Rectangle) -->
  3819. <div id="u23108" class="ax_default paragraph transition">
  3820. <div id="u23108_div" class=""></div>
  3821. <div id="u23108_text" class="text ">
  3822. <p><span>2025/09/28</span></p>
  3823. </div>
  3824. </div>
  3825. <!-- Unnamed (Rectangle) -->
  3826. <div id="u23109" class="ax_default paragraph transition">
  3827. <div id="u23109_div" class=""></div>
  3828. <div id="u23109_text" class="text ">
  3829. <p><span>备注信息:</span></p>
  3830. </div>
  3831. </div>
  3832. <!-- Unnamed (Rectangle) -->
  3833. <div id="u23110" class="ax_default paragraph transition">
  3834. <div id="u23110_div" class=""></div>
  3835. <div id="u23110_text" class="text ">
  3836. <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
  3837. </div>
  3838. </div>
  3839. <!-- Unnamed (Rectangle) -->
  3840. <div id="u23111" class="ax_default paragraph transition">
  3841. <div id="u23111_div" class=""></div>
  3842. <div id="u23111_text" class="text ">
  3843. <p><span>账单费用明细</span></p>
  3844. </div>
  3845. </div>
  3846. <!-- Unnamed (Rectangle) -->
  3847. <div id="u23112" class="ax_default paragraph transition">
  3848. <div id="u23112_div" class=""></div>
  3849. <div id="u23112_text" class="text ">
  3850. <p><span>*是否退款:</span></p>
  3851. </div>
  3852. </div>
  3853. <!-- Unnamed (Radio button) -->
  3854. <div id="u23113" class="ax_default radio_button selected">
  3855. <label id="u23113_input_label" for="u23113_input" style="position: absolute; left: 0px;">
  3856. <svg data="images/完成验收/u23113.svg" id="u23113_img" class="img " viewbox="3275 765 12 12">
  3857. <path d="M 3281 765 C 3284.36 765 3287 767.64 3287 771 C 3287 774.36 3284.36 777 3281 777 C 3277.64 777 3275 774.36 3275 771 C 3275 767.64 3277.64 765 3281 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  3858. <path d="M 3281 765.5 C 3284.08 765.5 3286.5 767.92 3286.5 771 C 3286.5 774.08 3284.08 776.5 3281 776.5 C 3277.92 776.5 3275.5 774.08 3275.5 771 C 3275.5 767.92 3277.92 765.5 3281 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  3859. <path d="M 3281 774 C 3279.32 774 3278 772.68 3278 771 C 3278 769.32 3279.32 768 3281 768 C 3282.68 768 3284 769.32 3284 771 C 3284 772.68 3282.68 774 3281 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  3860. </svg>
  3861. <div id="u23113_text" class="text ">
  3862. <p><span>是</span></p>
  3863. </div>
  3864. </label>
  3865. <input id="u23113_input" type="radio" value="radio" name="u23113" checked/>
  3866. </div>
  3867. <!-- Unnamed (Radio button) -->
  3868. <div id="u23114" class="ax_default radio_button">
  3869. <label id="u23114_input_label" for="u23114_input" style="position: absolute; left: 0px;">
  3870. <svg data="images/完成验收/u23114.svg" id="u23114_img" class="img " viewbox="3408 765 12 12">
  3871. <path d="M 3414 765 C 3417.36 765 3420 767.64 3420 771 C 3420 774.36 3417.36 777 3414 777 C 3410.64 777 3408 774.36 3408 771 C 3408 767.64 3410.64 765 3414 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  3872. <path d="M 3414 765.5 C 3417.08 765.5 3419.5 767.92 3419.5 771 C 3419.5 774.08 3417.08 776.5 3414 776.5 C 3410.92 776.5 3408.5 774.08 3408.5 771 C 3408.5 767.92 3410.92 765.5 3414 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  3873. <path d="M 3414 774 C 3412.32 774 3411 772.68 3411 771 C 3411 769.32 3412.32 768 3414 768 C 3415.68 768 3417 769.32 3417 771 C 3417 772.68 3415.68 774 3414 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  3874. </svg>
  3875. <div id="u23114_text" class="text ">
  3876. <p><span>否</span></p>
  3877. </div>
  3878. </label>
  3879. <input id="u23114_input" type="radio" value="radio" name="u23114"/>
  3880. </div>
  3881. <!-- Unnamed (Rectangle) -->
  3882. <div id="u23115" class="ax_default paragraph transition">
  3883. <div id="u23115_div" class=""></div>
  3884. <div id="u23115_text" class="text ">
  3885. <p><span>完成验收</span></p>
  3886. </div>
  3887. </div>
  3888. <!-- Unnamed (Rectangle) -->
  3889. <div id="u23116" class="ax_default paragraph transition">
  3890. <div id="u23116_div" class=""></div>
  3891. <div id="u23116_text" class="text ">
  3892. <p><span>验收说明:</span></p>
  3893. </div>
  3894. </div>
  3895. <!-- Unnamed (Group) -->
  3896. <div id="u23117" class="ax_default" data-left="3269" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
  3897. <!-- Unnamed (Rectangle) -->
  3898. <div id="u23118" class="ax_default shape transition">
  3899. <div id="u23118_div" class=""></div>
  3900. <div id="u23118_text" class="text " style="display:none; visibility: hidden">
  3901. <p></p>
  3902. </div>
  3903. </div>
  3904. <!-- 选项内容 (Text field) -->
  3905. <div id="u23119" class="ax_default text_field transition" data-label="选项内容">
  3906. <div id="u23119_div" class=""></div>
  3907. <input id="u23119_input" type="text" value="" class="u23119_input"/>
  3908. </div>
  3909. </div>
  3910. <!-- Unnamed (Rectangle) -->
  3911. <div id="u23120" class="ax_default paragraph transition">
  3912. <div id="u23120_div" class=""></div>
  3913. <div id="u23120_text" class="text " style="display:none; visibility: hidden">
  3914. <p></p>
  3915. </div>
  3916. </div>
  3917. <!-- Unnamed (Rectangle) -->
  3918. <div id="u23121" class="ax_default paragraph transition">
  3919. <div id="u23121_div" class=""></div>
  3920. <div id="u23121_text" class="text ">
  3921. <p><span>+添加</span></p>
  3922. </div>
  3923. </div>
  3924. <!-- Unnamed (Shape) -->
  3925. <div id="u23122" class="ax_default icon transition">
  3926. <svg data="images/完成验收/u22795.svg" id="u23122_img" class="img generatedImage">
  3927. <defs>
  3928. <pattern id="u23122_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3929. <mask fill="white" id="u23122_img_cl3767">
  3930. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
  3931. </mask>
  3932. </defs>
  3933. <g transform="matrix(1 0 0 1 -986 -795 )">
  3934. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
  3935. <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u23122_img_cl3767)" />
  3936. <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u23122_img_cl3767)" />
  3937. </g>
  3938. </svg>
  3939. <div id="u23122_text" class="text " style="display:none; visibility: hidden">
  3940. <p></p>
  3941. </div>
  3942. </div>
  3943. <!-- Unnamed (Rectangle) -->
  3944. <div id="u23123" class="ax_default paragraph transition">
  3945. <div id="u23123_div" class=""></div>
  3946. <div id="u23123_text" class="text ">
  3947. <p><span>*退款方式:</span></p>
  3948. </div>
  3949. </div>
  3950. <!-- Unnamed (Group) -->
  3951. <div id="u23124" class="ax_default" data-left="3295" data-top="868" data-width="300" data-height="40" layer-opacity="1">
  3952. <!-- Unnamed (Rectangle) -->
  3953. <div id="u23125" class="ax_default box_1 transition">
  3954. <div id="u23125_div" class=""></div>
  3955. <div id="u23125_text" class="text " style="display:none; visibility: hidden">
  3956. <p></p>
  3957. </div>
  3958. </div>
  3959. <!-- Unnamed (Droplist) -->
  3960. <div id="u23126" class="ax_default droplist transition">
  3961. <div id="u23126_div" class=""></div>
  3962. <select id="u23126_input" class="u23126_input">
  3963. <option class="u23126_input_option" value="选择付款方式">选择付款方式</option>
  3964. <option class="u23126_input_option" value="转为预存款">转为预存款</option>
  3965. <option class="u23126_input_option" value="线上原路返回">线上原路返回</option>
  3966. <option class="u23126_input_option" selected value="线下银行卡转账">线下银行卡转账</option>
  3967. <option class="u23126_input_option" value="线下第三方转账">线下第三方转账</option>
  3968. </select>
  3969. </div>
  3970. </div>
  3971. <!-- Unnamed (Rectangle) -->
  3972. <div id="u23127" class="ax_default paragraph transition">
  3973. <div id="u23127_div" class=""></div>
  3974. <div id="u23127_text" class="text ">
  3975. <p><span>*退款项目:</span></p>
  3976. </div>
  3977. </div>
  3978. <!-- Unnamed (Group) -->
  3979. <div id="u23128" class="ax_default" data-left="3295" data-top="818" data-width="299" data-height="40" layer-opacity="1">
  3980. <!-- Unnamed (Rectangle) -->
  3981. <div id="u23129" class="ax_default box_1 transition">
  3982. <div id="u23129_div" class=""></div>
  3983. <div id="u23129_text" class="text " style="display:none; visibility: hidden">
  3984. <p></p>
  3985. </div>
  3986. </div>
  3987. <!-- Unnamed (Droplist) -->
  3988. <div id="u23130" class="ax_default droplist transition">
  3989. <div id="u23130_div" class=""></div>
  3990. <select id="u23130_input" class="u23130_input">
  3991. <option class="u23130_input_option" value="室内清洁费">室内清洁费</option>
  3992. <option class="u23130_input_option" value="小时计费">小时计费</option>
  3993. <option class="u23130_input_option" value="指定">指定</option>
  3994. <option class="u23130_input_option" value="合同-固定">合同-固定</option>
  3995. </select>
  3996. </div>
  3997. </div>
  3998. <!-- Unnamed (Rectangle) -->
  3999. <div id="u23131" class="ax_default paragraph transition">
  4000. <div id="u23131_div" class=""></div>
  4001. <div id="u23131_text" class="text ">
  4002. <p><span>*退款金额:</span></p>
  4003. </div>
  4004. </div>
  4005. <!-- Unnamed (Group) -->
  4006. <div id="u23132" class="ax_default" data-left="3737" data-top="818" data-width="300" data-height="40" layer-opacity="1">
  4007. <!-- Unnamed (Rectangle) -->
  4008. <div id="u23133" class="ax_default shape transition">
  4009. <div id="u23133_div" class=""></div>
  4010. <div id="u23133_text" class="text " style="display:none; visibility: hidden">
  4011. <p></p>
  4012. </div>
  4013. </div>
  4014. <!-- 选项内容 (Text field) -->
  4015. <div id="u23134" class="ax_default text_field transition" data-label="选项内容">
  4016. <div id="u23134_div" class=""></div>
  4017. <input id="u23134_input" type="text" value="" class="u23134_input"/>
  4018. </div>
  4019. </div>
  4020. <!-- Unnamed (Rectangle) -->
  4021. <div id="u23135" class="ax_default paragraph transition">
  4022. <div id="u23135_div" class=""></div>
  4023. <div id="u23135_text" class="text ">
  4024. <p><span>*收款银行:</span></p>
  4025. </div>
  4026. </div>
  4027. <!-- Unnamed (Rectangle) -->
  4028. <div id="u23136" class="ax_default paragraph transition">
  4029. <div id="u23136_div" class=""></div>
  4030. <div id="u23136_text" class="text ">
  4031. <p><span>*退款账号:</span></p>
  4032. </div>
  4033. </div>
  4034. <!-- Unnamed (Rectangle) -->
  4035. <div id="u23137" class="ax_default paragraph transition">
  4036. <div id="u23137_div" class=""></div>
  4037. <div id="u23137_text" class="text ">
  4038. <p><span>退款备注:</span></p>
  4039. </div>
  4040. </div>
  4041. <!-- Unnamed (Group) -->
  4042. <div id="u23138" class="ax_default" data-left="3737" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
  4043. <!-- Unnamed (Rectangle) -->
  4044. <div id="u23139" class="ax_default shape transition">
  4045. <div id="u23139_div" class=""></div>
  4046. <div id="u23139_text" class="text " style="display:none; visibility: hidden">
  4047. <p></p>
  4048. </div>
  4049. </div>
  4050. <!-- 选项内容 (Text field) -->
  4051. <div id="u23140" class="ax_default text_field transition" data-label="选项内容">
  4052. <div id="u23140_div" class=""></div>
  4053. <input id="u23140_input" type="text" value="" class="u23140_input"/>
  4054. </div>
  4055. </div>
  4056. <!-- Unnamed (Group) -->
  4057. <div id="u23141" class="ax_default" data-left="3737" data-top="868" data-width="299" data-height="38" layer-opacity="1">
  4058. <!-- Unnamed (Rectangle) -->
  4059. <div id="u23142" class="ax_default box_1 transition">
  4060. <div id="u23142_div" class=""></div>
  4061. <div id="u23142_text" class="text " style="display:none; visibility: hidden">
  4062. <p></p>
  4063. </div>
  4064. </div>
  4065. <!-- Unnamed (Rectangle) -->
  4066. <div id="u23143" class="ax_default label transition">
  4067. <div id="u23143_div" class=""></div>
  4068. <div id="u23143_text" class="text ">
  4069. <p><span>2023/10/01 10:33</span></p>
  4070. </div>
  4071. </div>
  4072. <!-- Unnamed (Image) -->
  4073. <div id="u23144" class="ax_default image transition">
  4074. <img id="u23144_img" class="img " src="images/新增房屋/u6205.png"/>
  4075. <div id="u23144_text" class="text " style="display:none; visibility: hidden">
  4076. <p></p>
  4077. </div>
  4078. </div>
  4079. </div>
  4080. <!-- Unnamed (Rectangle) -->
  4081. <div id="u23145" class="ax_default paragraph transition">
  4082. <div id="u23145_div" class=""></div>
  4083. <div id="u23145_text" class="text ">
  4084. <p><span>*退款时间:</span></p>
  4085. </div>
  4086. </div>
  4087. <!-- Unnamed (Rectangle) -->
  4088. <div id="u23146" class="ax_default paragraph transition">
  4089. <div id="u23146_div" class=""></div>
  4090. <div id="u23146_text" class="text ">
  4091. <p><span>*收款方:</span></p>
  4092. </div>
  4093. </div>
  4094. <!-- Unnamed (Group) -->
  4095. <div id="u23147" class="ax_default" data-left="3295" data-top="967" data-width="299" data-height="40" layer-opacity="1">
  4096. <!-- Unnamed (Rectangle) -->
  4097. <div id="u23148" class="ax_default shape transition">
  4098. <div id="u23148_div" class=""></div>
  4099. <div id="u23148_text" class="text " style="display:none; visibility: hidden">
  4100. <p></p>
  4101. </div>
  4102. </div>
  4103. <!-- 选项内容 (Text field) -->
  4104. <div id="u23149" class="ax_default text_field transition" data-label="选项内容">
  4105. <div id="u23149_div" class=""></div>
  4106. <input id="u23149_input" type="text" value="" class="u23149_input"/>
  4107. </div>
  4108. </div>
  4109. <!-- Unnamed (Rectangle) -->
  4110. <div id="u23150" class="ax_default paragraph transition">
  4111. <div id="u23150_div" class=""></div>
  4112. <div id="u23150_text" class="text ">
  4113. <p><span>*收款账号:</span></p>
  4114. </div>
  4115. </div>
  4116. <!-- Unnamed (Group) -->
  4117. <div id="u23151" class="ax_default" data-left="3737" data-top="967" data-width="300" data-height="40" layer-opacity="1">
  4118. <!-- Unnamed (Rectangle) -->
  4119. <div id="u23152" class="ax_default shape transition">
  4120. <div id="u23152_div" class=""></div>
  4121. <div id="u23152_text" class="text " style="display:none; visibility: hidden">
  4122. <p></p>
  4123. </div>
  4124. </div>
  4125. <!-- 选项内容 (Text field) -->
  4126. <div id="u23153" class="ax_default text_field transition" data-label="选项内容">
  4127. <div id="u23153_div" class=""></div>
  4128. <input id="u23153_input" type="text" value="" class="u23153_input"/>
  4129. </div>
  4130. </div>
  4131. <!-- Unnamed (Group) -->
  4132. <div id="u23154" class="ax_default" data-left="3296" data-top="918" data-width="299" data-height="40" layer-opacity="1">
  4133. <!-- Unnamed (Rectangle) -->
  4134. <div id="u23155" class="ax_default box_1 transition">
  4135. <div id="u23155_div" class=""></div>
  4136. <div id="u23155_text" class="text " style="display:none; visibility: hidden">
  4137. <p></p>
  4138. </div>
  4139. </div>
  4140. <!-- Unnamed (Droplist) -->
  4141. <div id="u23156" class="ax_default droplist transition">
  4142. <div id="u23156_div" class=""></div>
  4143. <select id="u23156_input" class="u23156_input">
  4144. <option class="u23156_input_option" value="请选择">请选择</option>
  4145. </select>
  4146. </div>
  4147. </div>
  4148. <!-- Unnamed (Rectangle) -->
  4149. <div id="u23157" class="ax_default paragraph transition">
  4150. <div id="u23157_div" class=""></div>
  4151. <div id="u23157_text" class="text ">
  4152. <p><span>*交易凭证:</span></p>
  4153. </div>
  4154. </div>
  4155. <!-- Unnamed (Group) -->
  4156. <div id="u23158" class="ax_default" data-left="3295" data-top="1017" data-width="108" data-height="60" layer-opacity="1">
  4157. <!-- Unnamed (Rectangle) -->
  4158. <div id="u23159" class="ax_default shape transition">
  4159. <div id="u23159_div" class=""></div>
  4160. <div id="u23159_text" class="text ">
  4161. <p><span>+</span></p>
  4162. </div>
  4163. </div>
  4164. </div>
  4165. <!-- Unnamed (Group) -->
  4166. <div id="u23160" class="ax_default" data-left="3738" data-top="918" data-width="299" data-height="40" layer-opacity="1">
  4167. <!-- Unnamed (Rectangle) -->
  4168. <div id="u23161" class="ax_default box_1 transition">
  4169. <div id="u23161_div" class=""></div>
  4170. <div id="u23161_text" class="text " style="display:none; visibility: hidden">
  4171. <p></p>
  4172. </div>
  4173. </div>
  4174. <!-- Unnamed (Droplist) -->
  4175. <div id="u23162" class="ax_default droplist transition">
  4176. <div id="u23162_div" class=""></div>
  4177. <select id="u23162_input" class="u23162_input">
  4178. <option class="u23162_input_option" value="请选择">请选择</option>
  4179. </select>
  4180. </div>
  4181. </div>
  4182. <!-- Unnamed (Group) -->
  4183. <div id="u23163" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
  4184. <!-- Unnamed (Group) -->
  4185. <div id="u23164" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
  4186. <!-- Unnamed (Rectangle) -->
  4187. <div id="u23165" class="ax_default shape transition">
  4188. <div id="u23165_div" class=""></div>
  4189. <div id="u23165_text" class="text " style="display:none; visibility: hidden">
  4190. <p></p>
  4191. </div>
  4192. </div>
  4193. <!-- Unnamed (Rectangle) -->
  4194. <div id="u23166" class="ax_default paragraph transition">
  4195. <div id="u23166_div" class=""></div>
  4196. <div id="u23166_text" class="text ">
  4197. <p><span>确定之后,房屋装修将结束,并根据设置自动完成退款处理。</span></p>
  4198. </div>
  4199. </div>
  4200. <!-- Unnamed (Rectangle) -->
  4201. <div id="u23167" class="ax_default paragraph transition">
  4202. <div id="u23167_div" class=""></div>
  4203. <div id="u23167_text" class="text ">
  4204. <p><span>确定提交验收?</span></p>
  4205. </div>
  4206. </div>
  4207. <!-- Unnamed (Rectangle) -->
  4208. <div id="u23168" class="ax_default shape transition">
  4209. <div id="u23168_div" class=""></div>
  4210. <div id="u23168_text" class="text ">
  4211. <p><span>确定</span></p>
  4212. </div>
  4213. </div>
  4214. <!-- Unnamed (Rectangle) -->
  4215. <div id="u23169" class="ax_default shape transition">
  4216. <div id="u23169_div" class=""></div>
  4217. <div id="u23169_text" class="text ">
  4218. <p><span>取 消</span></p>
  4219. </div>
  4220. </div>
  4221. <!-- Unnamed (Shape) -->
  4222. <div id="u23170" class="ax_default icon transition">
  4223. <svg data="images/项目列表/u4791.svg" id="u23170_img" class="img generatedImage">
  4224. <defs>
  4225. <pattern id="u23170_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  4226. <mask fill="white" id="u23170_img_cl2936">
  4227. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  4228. </mask>
  4229. </defs>
  4230. <g transform="matrix(1 0 0 1 -1661 -842 )">
  4231. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  4232. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u23170_img_cl2936)" />
  4233. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u23170_img_cl2936)" />
  4234. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u23170_img_cl2936)" />
  4235. </g>
  4236. </svg>
  4237. <div id="u23170_text" class="text " style="display:none; visibility: hidden">
  4238. <p></p>
  4239. </div>
  4240. </div>
  4241. </div>
  4242. </div>
  4243. <!-- Unnamed (Rectangle) -->
  4244. <div id="u23171" class="ax_default paragraph transition">
  4245. <div id="u23171_div" class=""></div>
  4246. <div id="u23171_text" class="text ">
  4247. <p><span>退款备注:</span></p>
  4248. </div>
  4249. </div>
  4250. <!-- Unnamed (Group) -->
  4251. <div id="u23172" class="ax_default" data-left="236" data-top="918" data-width="300" data-height="60" layer-opacity="1">
  4252. <!-- Unnamed (Rectangle) -->
  4253. <div id="u23173" class="ax_default shape transition">
  4254. <div id="u23173_div" class=""></div>
  4255. <div id="u23173_text" class="text " style="display:none; visibility: hidden">
  4256. <p></p>
  4257. </div>
  4258. </div>
  4259. <!-- 选项内容 (Text field) -->
  4260. <div id="u23174" class="ax_default text_field transition" data-label="选项内容">
  4261. <div id="u23174_div" class=""></div>
  4262. <input id="u23174_input" type="text" value="" class="u23174_input"/>
  4263. </div>
  4264. </div>
  4265. <!-- Unnamed (Rectangle) -->
  4266. <div id="u23175" class="ax_default paragraph transition">
  4267. <div id="u23175_div" class=""></div>
  4268. <div id="u23175_text" class="text ">
  4269. <p><span>退款备注:</span></p>
  4270. </div>
  4271. </div>
  4272. <!-- Unnamed (Group) -->
  4273. <div id="u23176" class="ax_default" data-left="1267" data-top="918" data-width="300" data-height="60" layer-opacity="1">
  4274. <!-- Unnamed (Rectangle) -->
  4275. <div id="u23177" class="ax_default shape transition">
  4276. <div id="u23177_div" class=""></div>
  4277. <div id="u23177_text" class="text " style="display:none; visibility: hidden">
  4278. <p></p>
  4279. </div>
  4280. </div>
  4281. <!-- 选项内容 (Text field) -->
  4282. <div id="u23178" class="ax_default text_field transition" data-label="选项内容">
  4283. <div id="u23178_div" class=""></div>
  4284. <input id="u23178_input" type="text" value="" class="u23178_input"/>
  4285. </div>
  4286. </div>
  4287. </div>
  4288. <script src="resources/scripts/axure/ios.js"></script>
  4289. </body>
  4290. </html>