预先制卡.html 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>预先制卡</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/预先制卡/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/预先制卡/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (客户管理端-一级) -->
  54. <div id="u23475" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u23476" class="ax_default box_2 transition">
  57. <div id="u23476_div" class=""></div>
  58. <div id="u23476_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u23477" class="ax_default label transition">
  64. <div id="u23477_div" class=""></div>
  65. <div id="u23477_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u23478" class="ax_default box_2 transition">
  71. <div id="u23478_div" class=""></div>
  72. <div id="u23478_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u23479" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u23480" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u23480_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u23480_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u23480_img_cl2539">
  84. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
  85. </mask>
  86. </defs>
  87. <g transform="matrix(1 0 0 1 -19 -10 )">
  88. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
  89. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u23480_img_cl2539)" />
  90. </g>
  91. </svg>
  92. <div id="u23480_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u23481" class="ax_default label transition">
  98. <div id="u23481_div" class=""></div>
  99. <div id="u23481_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u23482" class="ax_default box_2 transition">
  106. <div id="u23482_div" class=""></div>
  107. <div id="u23482_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u23483" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u23484" class="ax_default label transition">
  115. <div id="u23484_div" class=""></div>
  116. <div id="u23484_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u23485" class="ax_default placeholder transition">
  122. <svg data="images/预先制卡/u23485.svg" id="u23485_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u23485_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u23485_img_cl3769">
  126. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  127. </mask>
  128. </defs>
  129. <g transform="matrix(1 0 0 1 -20 -175 )">
  130. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
  131. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u23485_img_cl3769)" />
  132. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
  133. </g>
  134. </svg>
  135. <div id="u23485_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u23486" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u23487" class="ax_default label transition">
  144. <div id="u23487_div" class=""></div>
  145. <div id="u23487_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u23488" class="ax_default placeholder transition">
  151. <svg data="images/预先制卡/u23488.svg" id="u23488_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u23488_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u23488_img_cl3770">
  155. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  156. </mask>
  157. </defs>
  158. <g transform="matrix(1 0 0 1 -20 -385 )">
  159. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
  160. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u23488_img_cl3770)" />
  161. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
  162. </g>
  163. </svg>
  164. <div id="u23488_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u23489" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u23490" class="ax_default label transition">
  173. <div id="u23490_div" class=""></div>
  174. <div id="u23490_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u23491" class="ax_default placeholder transition">
  180. <svg data="images/预先制卡/u23491.svg" id="u23491_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u23491_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u23491_img_cl3771">
  184. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  185. </mask>
  186. </defs>
  187. <g transform="matrix(1 0 0 1 -20 -137 )">
  188. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
  189. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u23491_img_cl3771)" />
  190. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
  191. </g>
  192. </svg>
  193. <div id="u23491_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u23492" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u23493" class="ax_default label transition">
  202. <div id="u23493_div" class=""></div>
  203. <div id="u23493_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u23494" class="ax_default placeholder transition">
  209. <svg data="images/预先制卡/u23494.svg" id="u23494_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u23494_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u23494_img_cl3772">
  213. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  214. </mask>
  215. </defs>
  216. <g transform="matrix(1 0 0 1 -20 -427 )">
  217. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
  218. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u23494_img_cl3772)" />
  219. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
  220. </g>
  221. </svg>
  222. <div id="u23494_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u23495" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u23496" class="ax_default label transition">
  231. <div id="u23496_div" class=""></div>
  232. <div id="u23496_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u23497" class="ax_default placeholder transition">
  238. <svg data="images/预先制卡/u23497.svg" id="u23497_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u23497_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u23497_img_cl3773">
  242. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  243. </mask>
  244. </defs>
  245. <g transform="matrix(1 0 0 1 -20 -301 )">
  246. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
  247. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u23497_img_cl3773)" />
  248. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
  249. </g>
  250. </svg>
  251. <div id="u23497_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u23498" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u23499" class="ax_default label transition">
  260. <div id="u23499_div" class=""></div>
  261. <div id="u23499_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u23500" class="ax_default placeholder transition">
  267. <svg data="images/预先制卡/u23500.svg" id="u23500_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u23500_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u23500_img_cl3774">
  271. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  272. </mask>
  273. </defs>
  274. <g transform="matrix(1 0 0 1 -20 -217 )">
  275. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
  276. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u23500_img_cl3774)" />
  277. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
  278. </g>
  279. </svg>
  280. <div id="u23500_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u23501" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u23502" class="ax_default label transition">
  289. <div id="u23502_div" class=""></div>
  290. <div id="u23502_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u23503" class="ax_default placeholder transition">
  296. <svg data="images/预先制卡/u23503.svg" id="u23503_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u23503_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u23503_img_cl3775">
  300. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  301. </mask>
  302. </defs>
  303. <g transform="matrix(1 0 0 1 -20 -343 )">
  304. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
  305. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u23503_img_cl3775)" />
  306. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
  307. </g>
  308. </svg>
  309. <div id="u23503_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u23504" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u23505" class="ax_default label transition">
  318. <div id="u23505_div" class=""></div>
  319. <div id="u23505_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u23506" class="ax_default placeholder transition">
  325. <svg data="images/预先制卡/u23506.svg" id="u23506_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u23506_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u23506_img_cl3776">
  329. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  330. </mask>
  331. </defs>
  332. <g transform="matrix(1 0 0 1 -20 -469 )">
  333. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
  334. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u23506_img_cl3776)" />
  335. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
  336. </g>
  337. </svg>
  338. <div id="u23506_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u23507" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u23508" class="ax_default label transition">
  347. <div id="u23508_div" class=""></div>
  348. <div id="u23508_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u23509" class="ax_default placeholder transition">
  354. <svg data="images/预先制卡/u23509.svg" id="u23509_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u23509_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u23509_img_cl3777">
  358. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  359. </mask>
  360. </defs>
  361. <g transform="matrix(1 0 0 1 -20 -1144 )">
  362. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
  363. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u23509_img_cl3777)" />
  364. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
  365. </g>
  366. </svg>
  367. <div id="u23509_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u23510" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u23511" class="ax_default label transition">
  376. <div id="u23511_div" class=""></div>
  377. <div id="u23511_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u23512" class="ax_default placeholder transition">
  383. <svg data="images/预先制卡/u23512.svg" id="u23512_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u23512_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u23512_img_cl3778">
  387. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  388. </mask>
  389. </defs>
  390. <g transform="matrix(1 0 0 1 -20 -1186 )">
  391. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
  392. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u23512_img_cl3778)" />
  393. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
  394. </g>
  395. </svg>
  396. <div id="u23512_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u23513" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u23514" class="ax_default label transition">
  405. <div id="u23514_div" class=""></div>
  406. <div id="u23514_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u23515" class="ax_default placeholder transition">
  412. <svg data="images/预先制卡/u23515.svg" id="u23515_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u23515_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u23515_img_cl3779">
  416. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  417. </mask>
  418. </defs>
  419. <g transform="matrix(1 0 0 1 -20 -259 )">
  420. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
  421. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u23515_img_cl3779)" />
  422. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
  423. </g>
  424. </svg>
  425. <div id="u23515_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u23516" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u23517" class="ax_default droplist transition">
  434. <div id="u23517_div" class=""></div>
  435. <select id="u23517_input" class="u23517_input">
  436. <option class="u23517_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u23518" class="ax_default placeholder transition">
  441. <svg data="images/预先制卡/u23518.svg" id="u23518_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u23518_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u23518_img_cl3780">
  445. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  446. </mask>
  447. </defs>
  448. <g transform="matrix(1 0 0 1 -1194 -14 )">
  449. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
  450. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u23518_img_cl3780)" />
  451. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
  452. </g>
  453. </svg>
  454. <div id="u23518_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u23519" class="ax_default label transition">
  460. <div id="u23519_div" class=""></div>
  461. <div id="u23519_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u23520" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u23520_img" class="img generatedImage">
  468. <g transform="matrix(1 0 0 1 -1452 -19 )">
  469. <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
  470. </g>
  471. </svg>
  472. <div id="u23520_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u23521" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u23522" class="ax_default label transition">
  481. <div id="u23522_div" class=""></div>
  482. <div id="u23522_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u23523" class="ax_default placeholder transition">
  488. <svg data="images/预先制卡/u23523.svg" id="u23523_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u23523_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u23523_img_cl3781">
  492. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  493. </mask>
  494. </defs>
  495. <g transform="matrix(1 0 0 1 -20 -1081 )">
  496. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
  497. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u23523_img_cl3781)" />
  498. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
  499. </g>
  500. </svg>
  501. <div id="u23523_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u23524" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u23524_img" class="img generatedImage">
  509. <g transform="matrix(1 0 0 1 -20 -1123 )">
  510. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  511. </g>
  512. </svg>
  513. <div id="u23524_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u23525" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u23525_img" class="img generatedImage">
  520. <g transform="matrix(1 0 0 1 -20 -1123 )">
  521. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  522. </g>
  523. </svg>
  524. <div id="u23525_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u23526" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u23526_img" class="img generatedImage">
  531. <g transform="matrix(1 0 0 1 -20 -112 )">
  532. <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
  533. </g>
  534. </svg>
  535. <div id="u23526_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u23527" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u23528" class="ax_default label transition">
  543. <div id="u23528_div" class=""></div>
  544. <div id="u23528_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u23529" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u23529_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u23529_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u23529_img_cl2553">
  554. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
  555. </mask>
  556. </defs>
  557. <g transform="matrix(1 0 0 1 -20 -75 )">
  558. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
  559. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u23529_img_cl2553)" />
  560. <path d="M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u23529_img_cl2553)" />
  561. </g>
  562. </svg>
  563. <div id="u23529_text" class="text " style="display:none; visibility: hidden">
  564. <p></p>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <!-- Unnamed (Rectangle) -->
  570. <div id="u23530" class="ax_default box_1 transition">
  571. <div id="u23530_div" class=""></div>
  572. <div id="u23530_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Rectangle) -->
  577. <div id="u23531" class="ax_default paragraph transition">
  578. <div id="u23531_div" class=""></div>
  579. <div id="u23531_text" class="text ">
  580. <p><span>卡授权对象</span></p>
  581. </div>
  582. </div>
  583. <!-- Unnamed (Group) -->
  584. <div id="u23532" class="ax_default" data-left="348" data-top="268" data-width="782" data-height="328" layer-opacity="1">
  585. <!-- Unnamed (Table) -->
  586. <div id="u23533" class="ax_default">
  587. <!-- Unnamed (Table cell) -->
  588. <div id="u23534" class="ax_default table_cell transition">
  589. <svg data="images/微信认证用户_1/u14432.svg" id="u23534_img" class="img generatedImage" viewbox="0 0 71 30">
  590. <path d="M 1 1 L 71 1 L 71 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  591. <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" />
  592. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  593. </svg>
  594. <div id="u23534_text" class="text " style="display:none; visibility: hidden">
  595. <p></p>
  596. </div>
  597. </div>
  598. <!-- Unnamed (Table cell) -->
  599. <div id="u23535" class="ax_default table_cell transition">
  600. <svg data="images/预先制卡/u23535.svg" id="u23535_img" class="img generatedImage" viewbox="71 0 138 30">
  601. <path d="M 1 1 L 138 1 L 138 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 71 0 )" class="fill" />
  602. <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 71 0 )" class="stroke" />
  603. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 0 )" class="stroke" />
  604. </svg>
  605. <div id="u23535_text" class="text ">
  606. <p><span>楼栋</span></p>
  607. </div>
  608. </div>
  609. <!-- Unnamed (Table cell) -->
  610. <div id="u23536" class="ax_default table_cell transition">
  611. <svg data="images/预先制卡/u23536.svg" id="u23536_img" class="img generatedImage" viewbox="209 0 143 30">
  612. <path d="M 1 1 L 143 1 L 143 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 209 0 )" class="fill" />
  613. <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 209 0 )" class="stroke" />
  614. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 0 )" class="stroke" />
  615. </svg>
  616. <div id="u23536_text" class="text ">
  617. <p><span>单元</span></p>
  618. </div>
  619. </div>
  620. <!-- Unnamed (Table cell) -->
  621. <div id="u23537" class="ax_default table_cell transition">
  622. <svg data="images/预先制卡/u23537.svg" id="u23537_img" class="img generatedImage" viewbox="352 0 143 30">
  623. <path d="M 1 1 L 143 1 L 143 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 352 0 )" class="fill" />
  624. <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 352 0 )" class="stroke" />
  625. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 0 )" class="stroke" />
  626. </svg>
  627. <div id="u23537_text" class="text ">
  628. <p><span>房屋</span></p>
  629. </div>
  630. </div>
  631. <!-- Unnamed (Table cell) -->
  632. <div id="u23538" class="ax_default table_cell transition">
  633. <svg data="images/预先制卡/u23538.svg" id="u23538_img" class="img generatedImage" viewbox="495 0 153 30">
  634. <path d="M 1 1 L 153 1 L 153 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 495 0 )" class="fill" />
  635. <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 495 0 )" class="stroke" />
  636. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 0 )" class="stroke" />
  637. </svg>
  638. <div id="u23538_text" class="text ">
  639. <p><span>发卡状态</span></p>
  640. </div>
  641. </div>
  642. <!-- Unnamed (Table cell) -->
  643. <div id="u23539" class="ax_default table_cell transition">
  644. <svg data="images/预先制卡/u23539.svg" id="u23539_img" class="img generatedImage" viewbox="648 0 134 30">
  645. <path d="M 1 1 L 133 1 L 133 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 648 0 )" class="fill" />
  646. <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 648 0 )" class="stroke" />
  647. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 0 )" class="stroke" />
  648. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 0 )" class="stroke" />
  649. </svg>
  650. <div id="u23539_text" class="text ">
  651. <p><span>发卡数量</span></p>
  652. </div>
  653. </div>
  654. <!-- Unnamed (Table cell) -->
  655. <div id="u23540" class="ax_default table_cell transition">
  656. <svg data="images/预先制卡/u23540.svg" id="u23540_img" class="img generatedImage" viewbox="0 30 71 30">
  657. <path d="M 1 1 L 71 1 L 71 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" />
  658. <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" />
  659. <path d="M 0 0.5 L 71 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" />
  660. </svg>
  661. <div id="u23540_text" class="text " style="display:none; visibility: hidden">
  662. <p></p>
  663. </div>
  664. </div>
  665. <!-- Unnamed (Table cell) -->
  666. <div id="u23541" class="ax_default table_cell transition">
  667. <svg data="images/预先制卡/u23541.svg" id="u23541_img" class="img generatedImage" viewbox="71 30 138 30">
  668. <path d="M 1 1 L 138 1 L 138 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 71 30 )" class="fill" />
  669. <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 71 30 )" class="stroke" />
  670. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 30 )" class="stroke" />
  671. </svg>
  672. <div id="u23541_text" class="text " style="display:none; visibility: hidden">
  673. <p></p>
  674. </div>
  675. </div>
  676. <!-- Unnamed (Table cell) -->
  677. <div id="u23542" class="ax_default table_cell transition">
  678. <svg data="images/预先制卡/u23542.svg" id="u23542_img" class="img generatedImage" viewbox="209 30 143 30">
  679. <path d="M 1 1 L 143 1 L 143 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 209 30 )" class="fill" />
  680. <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 209 30 )" class="stroke" />
  681. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 30 )" class="stroke" />
  682. </svg>
  683. <div id="u23542_text" class="text " style="display:none; visibility: hidden">
  684. <p></p>
  685. </div>
  686. </div>
  687. <!-- Unnamed (Table cell) -->
  688. <div id="u23543" class="ax_default table_cell transition">
  689. <svg data="images/预先制卡/u23543.svg" id="u23543_img" class="img generatedImage" viewbox="352 30 143 30">
  690. <path d="M 1 1 L 143 1 L 143 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 352 30 )" class="fill" />
  691. <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 352 30 )" class="stroke" />
  692. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 30 )" class="stroke" />
  693. </svg>
  694. <div id="u23543_text" class="text " style="display:none; visibility: hidden">
  695. <p></p>
  696. </div>
  697. </div>
  698. <!-- Unnamed (Table cell) -->
  699. <div id="u23544" class="ax_default table_cell transition">
  700. <svg data="images/预先制卡/u23544.svg" id="u23544_img" class="img generatedImage" viewbox="495 30 153 30">
  701. <path d="M 1 1 L 153 1 L 153 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 495 30 )" class="fill" />
  702. <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 495 30 )" class="stroke" />
  703. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 30 )" class="stroke" />
  704. </svg>
  705. <div id="u23544_text" class="text " style="display:none; visibility: hidden">
  706. <p></p>
  707. </div>
  708. </div>
  709. <!-- Unnamed (Table cell) -->
  710. <div id="u23545" class="ax_default table_cell transition">
  711. <svg data="images/预先制卡/u23545.svg" id="u23545_img" class="img generatedImage" viewbox="648 30 134 30">
  712. <path d="M 1 1 L 133 1 L 133 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 648 30 )" class="fill" />
  713. <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 648 30 )" class="stroke" />
  714. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 30 )" class="stroke" />
  715. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 30 )" class="stroke" />
  716. </svg>
  717. <div id="u23545_text" class="text " style="display:none; visibility: hidden">
  718. <p></p>
  719. </div>
  720. </div>
  721. <!-- Unnamed (Table cell) -->
  722. <div id="u23546" class="ax_default table_cell transition">
  723. <svg data="images/预先制卡/u23546.svg" id="u23546_img" class="img generatedImage" viewbox="0 60 71 30">
  724. <path d="M 1 1 L 71 1 L 71 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" />
  725. <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" />
  726. <path d="M 0 0.5 L 71 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" />
  727. </svg>
  728. <div id="u23546_text" class="text " style="display:none; visibility: hidden">
  729. <p></p>
  730. </div>
  731. </div>
  732. <!-- Unnamed (Table cell) -->
  733. <div id="u23547" class="ax_default table_cell transition">
  734. <svg data="images/预先制卡/u23547.svg" id="u23547_img" class="img generatedImage" viewbox="71 60 138 30">
  735. <path d="M 1 1 L 138 1 L 138 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 71 60 )" class="fill" />
  736. <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 71 60 )" class="stroke" />
  737. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 60 )" class="stroke" />
  738. </svg>
  739. <div id="u23547_text" class="text " style="display:none; visibility: hidden">
  740. <p></p>
  741. </div>
  742. </div>
  743. <!-- Unnamed (Table cell) -->
  744. <div id="u23548" class="ax_default table_cell transition">
  745. <svg data="images/预先制卡/u23548.svg" id="u23548_img" class="img generatedImage" viewbox="209 60 143 30">
  746. <path d="M 1 1 L 143 1 L 143 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 209 60 )" class="fill" />
  747. <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 209 60 )" class="stroke" />
  748. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 60 )" class="stroke" />
  749. </svg>
  750. <div id="u23548_text" class="text " style="display:none; visibility: hidden">
  751. <p></p>
  752. </div>
  753. </div>
  754. <!-- Unnamed (Table cell) -->
  755. <div id="u23549" class="ax_default table_cell transition">
  756. <svg data="images/预先制卡/u23549.svg" id="u23549_img" class="img generatedImage" viewbox="352 60 143 30">
  757. <path d="M 1 1 L 143 1 L 143 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 352 60 )" class="fill" />
  758. <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 352 60 )" class="stroke" />
  759. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 60 )" class="stroke" />
  760. </svg>
  761. <div id="u23549_text" class="text " style="display:none; visibility: hidden">
  762. <p></p>
  763. </div>
  764. </div>
  765. <!-- Unnamed (Table cell) -->
  766. <div id="u23550" class="ax_default table_cell transition">
  767. <svg data="images/预先制卡/u23550.svg" id="u23550_img" class="img generatedImage" viewbox="495 60 153 30">
  768. <path d="M 1 1 L 153 1 L 153 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 495 60 )" class="fill" />
  769. <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 495 60 )" class="stroke" />
  770. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 60 )" class="stroke" />
  771. </svg>
  772. <div id="u23550_text" class="text " style="display:none; visibility: hidden">
  773. <p></p>
  774. </div>
  775. </div>
  776. <!-- Unnamed (Table cell) -->
  777. <div id="u23551" class="ax_default table_cell transition">
  778. <svg data="images/预先制卡/u23551.svg" id="u23551_img" class="img generatedImage" viewbox="648 60 134 30">
  779. <path d="M 1 1 L 133 1 L 133 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 648 60 )" class="fill" />
  780. <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 648 60 )" class="stroke" />
  781. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 60 )" class="stroke" />
  782. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 60 )" class="stroke" />
  783. </svg>
  784. <div id="u23551_text" class="text " style="display:none; visibility: hidden">
  785. <p></p>
  786. </div>
  787. </div>
  788. <!-- Unnamed (Table cell) -->
  789. <div id="u23552" class="ax_default table_cell transition">
  790. <svg data="images/预先制卡/u23552.svg" id="u23552_img" class="img generatedImage" viewbox="0 90 71 30">
  791. <path d="M 1 1 L 71 1 L 71 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" />
  792. <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" />
  793. <path d="M 0 0.5 L 71 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" />
  794. </svg>
  795. <div id="u23552_text" class="text " style="display:none; visibility: hidden">
  796. <p></p>
  797. </div>
  798. </div>
  799. <!-- Unnamed (Table cell) -->
  800. <div id="u23553" class="ax_default table_cell transition">
  801. <svg data="images/预先制卡/u23553.svg" id="u23553_img" class="img generatedImage" viewbox="71 90 138 30">
  802. <path d="M 1 1 L 138 1 L 138 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 71 90 )" class="fill" />
  803. <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 71 90 )" class="stroke" />
  804. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 90 )" class="stroke" />
  805. </svg>
  806. <div id="u23553_text" class="text " style="display:none; visibility: hidden">
  807. <p></p>
  808. </div>
  809. </div>
  810. <!-- Unnamed (Table cell) -->
  811. <div id="u23554" class="ax_default table_cell transition">
  812. <svg data="images/预先制卡/u23554.svg" id="u23554_img" class="img generatedImage" viewbox="209 90 143 30">
  813. <path d="M 1 1 L 143 1 L 143 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 209 90 )" class="fill" />
  814. <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 209 90 )" class="stroke" />
  815. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 90 )" class="stroke" />
  816. </svg>
  817. <div id="u23554_text" class="text " style="display:none; visibility: hidden">
  818. <p></p>
  819. </div>
  820. </div>
  821. <!-- Unnamed (Table cell) -->
  822. <div id="u23555" class="ax_default table_cell transition">
  823. <svg data="images/预先制卡/u23555.svg" id="u23555_img" class="img generatedImage" viewbox="352 90 143 30">
  824. <path d="M 1 1 L 143 1 L 143 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 352 90 )" class="fill" />
  825. <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 352 90 )" class="stroke" />
  826. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 90 )" class="stroke" />
  827. </svg>
  828. <div id="u23555_text" class="text " style="display:none; visibility: hidden">
  829. <p></p>
  830. </div>
  831. </div>
  832. <!-- Unnamed (Table cell) -->
  833. <div id="u23556" class="ax_default table_cell transition">
  834. <svg data="images/预先制卡/u23556.svg" id="u23556_img" class="img generatedImage" viewbox="495 90 153 30">
  835. <path d="M 1 1 L 153 1 L 153 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 495 90 )" class="fill" />
  836. <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 495 90 )" class="stroke" />
  837. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 90 )" class="stroke" />
  838. </svg>
  839. <div id="u23556_text" class="text " style="display:none; visibility: hidden">
  840. <p></p>
  841. </div>
  842. </div>
  843. <!-- Unnamed (Table cell) -->
  844. <div id="u23557" class="ax_default table_cell transition">
  845. <svg data="images/预先制卡/u23557.svg" id="u23557_img" class="img generatedImage" viewbox="648 90 134 30">
  846. <path d="M 1 1 L 133 1 L 133 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 648 90 )" class="fill" />
  847. <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 648 90 )" class="stroke" />
  848. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 90 )" class="stroke" />
  849. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 90 )" class="stroke" />
  850. </svg>
  851. <div id="u23557_text" class="text " style="display:none; visibility: hidden">
  852. <p></p>
  853. </div>
  854. </div>
  855. <!-- Unnamed (Table cell) -->
  856. <div id="u23558" class="ax_default table_cell transition">
  857. <svg data="images/预先制卡/u23558.svg" id="u23558_img" class="img generatedImage" viewbox="0 120 71 30">
  858. <path d="M 1 1 L 71 1 L 71 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" />
  859. <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" />
  860. <path d="M 0 0.5 L 71 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" />
  861. </svg>
  862. <div id="u23558_text" class="text " style="display:none; visibility: hidden">
  863. <p></p>
  864. </div>
  865. </div>
  866. <!-- Unnamed (Table cell) -->
  867. <div id="u23559" class="ax_default table_cell transition">
  868. <svg data="images/预先制卡/u23559.svg" id="u23559_img" class="img generatedImage" viewbox="71 120 138 30">
  869. <path d="M 1 1 L 138 1 L 138 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 71 120 )" class="fill" />
  870. <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 71 120 )" class="stroke" />
  871. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 120 )" class="stroke" />
  872. </svg>
  873. <div id="u23559_text" class="text " style="display:none; visibility: hidden">
  874. <p></p>
  875. </div>
  876. </div>
  877. <!-- Unnamed (Table cell) -->
  878. <div id="u23560" class="ax_default table_cell transition">
  879. <svg data="images/预先制卡/u23560.svg" id="u23560_img" class="img generatedImage" viewbox="209 120 143 30">
  880. <path d="M 1 1 L 143 1 L 143 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 209 120 )" class="fill" />
  881. <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 209 120 )" class="stroke" />
  882. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 120 )" class="stroke" />
  883. </svg>
  884. <div id="u23560_text" class="text " style="display:none; visibility: hidden">
  885. <p></p>
  886. </div>
  887. </div>
  888. <!-- Unnamed (Table cell) -->
  889. <div id="u23561" class="ax_default table_cell transition">
  890. <svg data="images/预先制卡/u23561.svg" id="u23561_img" class="img generatedImage" viewbox="352 120 143 30">
  891. <path d="M 1 1 L 143 1 L 143 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 352 120 )" class="fill" />
  892. <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 352 120 )" class="stroke" />
  893. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 120 )" class="stroke" />
  894. </svg>
  895. <div id="u23561_text" class="text " style="display:none; visibility: hidden">
  896. <p></p>
  897. </div>
  898. </div>
  899. <!-- Unnamed (Table cell) -->
  900. <div id="u23562" class="ax_default table_cell transition">
  901. <svg data="images/预先制卡/u23562.svg" id="u23562_img" class="img generatedImage" viewbox="495 120 153 30">
  902. <path d="M 1 1 L 153 1 L 153 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 495 120 )" class="fill" />
  903. <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 495 120 )" class="stroke" />
  904. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 120 )" class="stroke" />
  905. </svg>
  906. <div id="u23562_text" class="text " style="display:none; visibility: hidden">
  907. <p></p>
  908. </div>
  909. </div>
  910. <!-- Unnamed (Table cell) -->
  911. <div id="u23563" class="ax_default table_cell transition">
  912. <svg data="images/预先制卡/u23563.svg" id="u23563_img" class="img generatedImage" viewbox="648 120 134 30">
  913. <path d="M 1 1 L 133 1 L 133 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 648 120 )" class="fill" />
  914. <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 648 120 )" class="stroke" />
  915. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 120 )" class="stroke" />
  916. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 120 )" class="stroke" />
  917. </svg>
  918. <div id="u23563_text" class="text " style="display:none; visibility: hidden">
  919. <p></p>
  920. </div>
  921. </div>
  922. <!-- Unnamed (Table cell) -->
  923. <div id="u23564" class="ax_default table_cell transition">
  924. <svg data="images/预先制卡/u23564.svg" id="u23564_img" class="img generatedImage" viewbox="0 150 71 28">
  925. <path d="M 1 1 L 71 1 L 71 28 L 1 28 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
  926. <path d="M 0.5 1 L 0.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
  927. <path d="M 0 0.5 L 71 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" />
  928. </svg>
  929. <div id="u23564_text" class="text " style="display:none; visibility: hidden">
  930. <p></p>
  931. </div>
  932. </div>
  933. <!-- Unnamed (Table cell) -->
  934. <div id="u23565" class="ax_default table_cell transition">
  935. <svg data="images/预先制卡/u23565.svg" id="u23565_img" class="img generatedImage" viewbox="71 150 138 28">
  936. <path d="M 1 1 L 138 1 L 138 28 L 1 28 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 150 )" class="fill" />
  937. <path d="M 0.5 1 L 0.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 150 )" class="stroke" />
  938. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 150 )" class="stroke" />
  939. </svg>
  940. <div id="u23565_text" class="text " style="display:none; visibility: hidden">
  941. <p></p>
  942. </div>
  943. </div>
  944. <!-- Unnamed (Table cell) -->
  945. <div id="u23566" class="ax_default table_cell transition">
  946. <svg data="images/预先制卡/u23566.svg" id="u23566_img" class="img generatedImage" viewbox="209 150 143 28">
  947. <path d="M 1 1 L 143 1 L 143 28 L 1 28 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 209 150 )" class="fill" />
  948. <path d="M 0.5 1 L 0.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 150 )" class="stroke" />
  949. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 150 )" class="stroke" />
  950. </svg>
  951. <div id="u23566_text" class="text " style="display:none; visibility: hidden">
  952. <p></p>
  953. </div>
  954. </div>
  955. <!-- Unnamed (Table cell) -->
  956. <div id="u23567" class="ax_default table_cell transition">
  957. <svg data="images/预先制卡/u23567.svg" id="u23567_img" class="img generatedImage" viewbox="352 150 143 28">
  958. <path d="M 1 1 L 143 1 L 143 28 L 1 28 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 352 150 )" class="fill" />
  959. <path d="M 0.5 1 L 0.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 150 )" class="stroke" />
  960. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 150 )" class="stroke" />
  961. </svg>
  962. <div id="u23567_text" class="text " style="display:none; visibility: hidden">
  963. <p></p>
  964. </div>
  965. </div>
  966. <!-- Unnamed (Table cell) -->
  967. <div id="u23568" class="ax_default table_cell transition">
  968. <svg data="images/预先制卡/u23568.svg" id="u23568_img" class="img generatedImage" viewbox="495 150 153 28">
  969. <path d="M 1 1 L 153 1 L 153 28 L 1 28 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 495 150 )" class="fill" />
  970. <path d="M 0.5 1 L 0.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 150 )" class="stroke" />
  971. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 150 )" class="stroke" />
  972. </svg>
  973. <div id="u23568_text" class="text " style="display:none; visibility: hidden">
  974. <p></p>
  975. </div>
  976. </div>
  977. <!-- Unnamed (Table cell) -->
  978. <div id="u23569" class="ax_default table_cell transition">
  979. <svg data="images/预先制卡/u23569.svg" id="u23569_img" class="img generatedImage" viewbox="648 150 134 28">
  980. <path d="M 1 1 L 133 1 L 133 28 L 1 28 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 648 150 )" class="fill" />
  981. <path d="M 0.5 1 L 0.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 150 )" class="stroke" />
  982. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 150 )" class="stroke" />
  983. <path d="M 133.5 1 L 133.5 28 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 150 )" class="stroke" />
  984. </svg>
  985. <div id="u23569_text" class="text " style="display:none; visibility: hidden">
  986. <p></p>
  987. </div>
  988. </div>
  989. <!-- Unnamed (Table cell) -->
  990. <div id="u23570" class="ax_default table_cell transition">
  991. <svg data="images/预先制卡/u23570.svg" id="u23570_img" class="img generatedImage" viewbox="0 178 71 30">
  992. <path d="M 1 1 L 71 1 L 71 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 178 )" class="fill" />
  993. <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 178 )" class="stroke" />
  994. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 178 )" class="stroke" />
  995. </svg>
  996. <div id="u23570_text" class="text " style="display:none; visibility: hidden">
  997. <p></p>
  998. </div>
  999. </div>
  1000. <!-- Unnamed (Table cell) -->
  1001. <div id="u23571" class="ax_default table_cell transition">
  1002. <svg data="images/预先制卡/u23571.svg" id="u23571_img" class="img generatedImage" viewbox="71 178 138 30">
  1003. <path d="M 1 1 L 138 1 L 138 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 71 178 )" class="fill" />
  1004. <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 71 178 )" class="stroke" />
  1005. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 178 )" class="stroke" />
  1006. </svg>
  1007. <div id="u23571_text" class="text " style="display:none; visibility: hidden">
  1008. <p></p>
  1009. </div>
  1010. </div>
  1011. <!-- Unnamed (Table cell) -->
  1012. <div id="u23572" class="ax_default table_cell transition">
  1013. <svg data="images/预先制卡/u23572.svg" id="u23572_img" class="img generatedImage" viewbox="209 178 143 30">
  1014. <path d="M 1 1 L 143 1 L 143 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 209 178 )" class="fill" />
  1015. <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 209 178 )" class="stroke" />
  1016. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 178 )" class="stroke" />
  1017. </svg>
  1018. <div id="u23572_text" class="text " style="display:none; visibility: hidden">
  1019. <p></p>
  1020. </div>
  1021. </div>
  1022. <!-- Unnamed (Table cell) -->
  1023. <div id="u23573" class="ax_default table_cell transition">
  1024. <svg data="images/预先制卡/u23573.svg" id="u23573_img" class="img generatedImage" viewbox="352 178 143 30">
  1025. <path d="M 1 1 L 143 1 L 143 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 352 178 )" class="fill" />
  1026. <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 352 178 )" class="stroke" />
  1027. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 178 )" class="stroke" />
  1028. </svg>
  1029. <div id="u23573_text" class="text " style="display:none; visibility: hidden">
  1030. <p></p>
  1031. </div>
  1032. </div>
  1033. <!-- Unnamed (Table cell) -->
  1034. <div id="u23574" class="ax_default table_cell transition">
  1035. <svg data="images/预先制卡/u23574.svg" id="u23574_img" class="img generatedImage" viewbox="495 178 153 30">
  1036. <path d="M 1 1 L 153 1 L 153 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 495 178 )" class="fill" />
  1037. <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 495 178 )" class="stroke" />
  1038. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 178 )" class="stroke" />
  1039. </svg>
  1040. <div id="u23574_text" class="text " style="display:none; visibility: hidden">
  1041. <p></p>
  1042. </div>
  1043. </div>
  1044. <!-- Unnamed (Table cell) -->
  1045. <div id="u23575" class="ax_default table_cell transition">
  1046. <svg data="images/预先制卡/u23575.svg" id="u23575_img" class="img generatedImage" viewbox="648 178 134 30">
  1047. <path d="M 1 1 L 133 1 L 133 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 648 178 )" class="fill" />
  1048. <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 648 178 )" class="stroke" />
  1049. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 178 )" class="stroke" />
  1050. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 178 )" class="stroke" />
  1051. </svg>
  1052. <div id="u23575_text" class="text " style="display:none; visibility: hidden">
  1053. <p></p>
  1054. </div>
  1055. </div>
  1056. <!-- Unnamed (Table cell) -->
  1057. <div id="u23576" class="ax_default table_cell transition">
  1058. <svg data="images/预先制卡/u23576.svg" id="u23576_img" class="img generatedImage" viewbox="0 208 71 30">
  1059. <path d="M 1 1 L 71 1 L 71 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 208 )" class="fill" />
  1060. <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 208 )" class="stroke" />
  1061. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 208 )" class="stroke" />
  1062. </svg>
  1063. <div id="u23576_text" class="text " style="display:none; visibility: hidden">
  1064. <p></p>
  1065. </div>
  1066. </div>
  1067. <!-- Unnamed (Table cell) -->
  1068. <div id="u23577" class="ax_default table_cell transition">
  1069. <svg data="images/预先制卡/u23577.svg" id="u23577_img" class="img generatedImage" viewbox="71 208 138 30">
  1070. <path d="M 1 1 L 138 1 L 138 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 71 208 )" class="fill" />
  1071. <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 71 208 )" class="stroke" />
  1072. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 208 )" class="stroke" />
  1073. </svg>
  1074. <div id="u23577_text" class="text " style="display:none; visibility: hidden">
  1075. <p></p>
  1076. </div>
  1077. </div>
  1078. <!-- Unnamed (Table cell) -->
  1079. <div id="u23578" class="ax_default table_cell transition">
  1080. <svg data="images/预先制卡/u23578.svg" id="u23578_img" class="img generatedImage" viewbox="209 208 143 30">
  1081. <path d="M 1 1 L 143 1 L 143 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 209 208 )" class="fill" />
  1082. <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 209 208 )" class="stroke" />
  1083. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 208 )" class="stroke" />
  1084. </svg>
  1085. <div id="u23578_text" class="text " style="display:none; visibility: hidden">
  1086. <p></p>
  1087. </div>
  1088. </div>
  1089. <!-- Unnamed (Table cell) -->
  1090. <div id="u23579" class="ax_default table_cell transition">
  1091. <svg data="images/预先制卡/u23579.svg" id="u23579_img" class="img generatedImage" viewbox="352 208 143 30">
  1092. <path d="M 1 1 L 143 1 L 143 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 352 208 )" class="fill" />
  1093. <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 352 208 )" class="stroke" />
  1094. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 208 )" class="stroke" />
  1095. </svg>
  1096. <div id="u23579_text" class="text " style="display:none; visibility: hidden">
  1097. <p></p>
  1098. </div>
  1099. </div>
  1100. <!-- Unnamed (Table cell) -->
  1101. <div id="u23580" class="ax_default table_cell transition">
  1102. <svg data="images/预先制卡/u23580.svg" id="u23580_img" class="img generatedImage" viewbox="495 208 153 30">
  1103. <path d="M 1 1 L 153 1 L 153 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 495 208 )" class="fill" />
  1104. <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 495 208 )" class="stroke" />
  1105. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 208 )" class="stroke" />
  1106. </svg>
  1107. <div id="u23580_text" class="text " style="display:none; visibility: hidden">
  1108. <p></p>
  1109. </div>
  1110. </div>
  1111. <!-- Unnamed (Table cell) -->
  1112. <div id="u23581" class="ax_default table_cell transition">
  1113. <svg data="images/预先制卡/u23581.svg" id="u23581_img" class="img generatedImage" viewbox="648 208 134 30">
  1114. <path d="M 1 1 L 133 1 L 133 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 648 208 )" class="fill" />
  1115. <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 648 208 )" class="stroke" />
  1116. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 208 )" class="stroke" />
  1117. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 208 )" class="stroke" />
  1118. </svg>
  1119. <div id="u23581_text" class="text " style="display:none; visibility: hidden">
  1120. <p></p>
  1121. </div>
  1122. </div>
  1123. <!-- Unnamed (Table cell) -->
  1124. <div id="u23582" class="ax_default table_cell transition">
  1125. <svg data="images/预先制卡/u23582.svg" id="u23582_img" class="img generatedImage" viewbox="0 238 71 30">
  1126. <path d="M 1 1 L 71 1 L 71 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 238 )" class="fill" />
  1127. <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 238 )" class="stroke" />
  1128. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 238 )" class="stroke" />
  1129. </svg>
  1130. <div id="u23582_text" class="text " style="display:none; visibility: hidden">
  1131. <p></p>
  1132. </div>
  1133. </div>
  1134. <!-- Unnamed (Table cell) -->
  1135. <div id="u23583" class="ax_default table_cell transition">
  1136. <svg data="images/预先制卡/u23583.svg" id="u23583_img" class="img generatedImage" viewbox="71 238 138 30">
  1137. <path d="M 1 1 L 138 1 L 138 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 71 238 )" class="fill" />
  1138. <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 71 238 )" class="stroke" />
  1139. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 238 )" class="stroke" />
  1140. </svg>
  1141. <div id="u23583_text" class="text " style="display:none; visibility: hidden">
  1142. <p></p>
  1143. </div>
  1144. </div>
  1145. <!-- Unnamed (Table cell) -->
  1146. <div id="u23584" class="ax_default table_cell transition">
  1147. <svg data="images/预先制卡/u23584.svg" id="u23584_img" class="img generatedImage" viewbox="209 238 143 30">
  1148. <path d="M 1 1 L 143 1 L 143 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 209 238 )" class="fill" />
  1149. <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 209 238 )" class="stroke" />
  1150. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 238 )" class="stroke" />
  1151. </svg>
  1152. <div id="u23584_text" class="text " style="display:none; visibility: hidden">
  1153. <p></p>
  1154. </div>
  1155. </div>
  1156. <!-- Unnamed (Table cell) -->
  1157. <div id="u23585" class="ax_default table_cell transition">
  1158. <svg data="images/预先制卡/u23585.svg" id="u23585_img" class="img generatedImage" viewbox="352 238 143 30">
  1159. <path d="M 1 1 L 143 1 L 143 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 352 238 )" class="fill" />
  1160. <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 352 238 )" class="stroke" />
  1161. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 238 )" class="stroke" />
  1162. </svg>
  1163. <div id="u23585_text" class="text " style="display:none; visibility: hidden">
  1164. <p></p>
  1165. </div>
  1166. </div>
  1167. <!-- Unnamed (Table cell) -->
  1168. <div id="u23586" class="ax_default table_cell transition">
  1169. <svg data="images/预先制卡/u23586.svg" id="u23586_img" class="img generatedImage" viewbox="495 238 153 30">
  1170. <path d="M 1 1 L 153 1 L 153 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 495 238 )" class="fill" />
  1171. <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 495 238 )" class="stroke" />
  1172. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 238 )" class="stroke" />
  1173. </svg>
  1174. <div id="u23586_text" class="text " style="display:none; visibility: hidden">
  1175. <p></p>
  1176. </div>
  1177. </div>
  1178. <!-- Unnamed (Table cell) -->
  1179. <div id="u23587" class="ax_default table_cell transition">
  1180. <svg data="images/预先制卡/u23587.svg" id="u23587_img" class="img generatedImage" viewbox="648 238 134 30">
  1181. <path d="M 1 1 L 133 1 L 133 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 648 238 )" class="fill" />
  1182. <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 648 238 )" class="stroke" />
  1183. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 238 )" class="stroke" />
  1184. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 238 )" class="stroke" />
  1185. </svg>
  1186. <div id="u23587_text" class="text " style="display:none; visibility: hidden">
  1187. <p></p>
  1188. </div>
  1189. </div>
  1190. <!-- Unnamed (Table cell) -->
  1191. <div id="u23588" class="ax_default table_cell transition">
  1192. <svg data="images/预先制卡/u23588.svg" id="u23588_img" class="img generatedImage" viewbox="0 268 71 30">
  1193. <path d="M 1 1 L 71 1 L 71 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 268 )" class="fill" />
  1194. <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 268 )" class="stroke" />
  1195. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 268 )" class="stroke" />
  1196. </svg>
  1197. <div id="u23588_text" class="text " style="display:none; visibility: hidden">
  1198. <p></p>
  1199. </div>
  1200. </div>
  1201. <!-- Unnamed (Table cell) -->
  1202. <div id="u23589" class="ax_default table_cell transition">
  1203. <svg data="images/预先制卡/u23589.svg" id="u23589_img" class="img generatedImage" viewbox="71 268 138 30">
  1204. <path d="M 1 1 L 138 1 L 138 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 71 268 )" class="fill" />
  1205. <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 71 268 )" class="stroke" />
  1206. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 268 )" class="stroke" />
  1207. </svg>
  1208. <div id="u23589_text" class="text " style="display:none; visibility: hidden">
  1209. <p></p>
  1210. </div>
  1211. </div>
  1212. <!-- Unnamed (Table cell) -->
  1213. <div id="u23590" class="ax_default table_cell transition">
  1214. <svg data="images/预先制卡/u23590.svg" id="u23590_img" class="img generatedImage" viewbox="209 268 143 30">
  1215. <path d="M 1 1 L 143 1 L 143 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 209 268 )" class="fill" />
  1216. <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 209 268 )" class="stroke" />
  1217. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 268 )" class="stroke" />
  1218. </svg>
  1219. <div id="u23590_text" class="text " style="display:none; visibility: hidden">
  1220. <p></p>
  1221. </div>
  1222. </div>
  1223. <!-- Unnamed (Table cell) -->
  1224. <div id="u23591" class="ax_default table_cell transition">
  1225. <svg data="images/预先制卡/u23591.svg" id="u23591_img" class="img generatedImage" viewbox="352 268 143 30">
  1226. <path d="M 1 1 L 143 1 L 143 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 352 268 )" class="fill" />
  1227. <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 352 268 )" class="stroke" />
  1228. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 268 )" class="stroke" />
  1229. </svg>
  1230. <div id="u23591_text" class="text " style="display:none; visibility: hidden">
  1231. <p></p>
  1232. </div>
  1233. </div>
  1234. <!-- Unnamed (Table cell) -->
  1235. <div id="u23592" class="ax_default table_cell transition">
  1236. <svg data="images/预先制卡/u23592.svg" id="u23592_img" class="img generatedImage" viewbox="495 268 153 30">
  1237. <path d="M 1 1 L 153 1 L 153 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 495 268 )" class="fill" />
  1238. <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 495 268 )" class="stroke" />
  1239. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 268 )" class="stroke" />
  1240. </svg>
  1241. <div id="u23592_text" class="text " style="display:none; visibility: hidden">
  1242. <p></p>
  1243. </div>
  1244. </div>
  1245. <!-- Unnamed (Table cell) -->
  1246. <div id="u23593" class="ax_default table_cell transition">
  1247. <svg data="images/预先制卡/u23593.svg" id="u23593_img" class="img generatedImage" viewbox="648 268 134 30">
  1248. <path d="M 1 1 L 133 1 L 133 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 648 268 )" class="fill" />
  1249. <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 648 268 )" class="stroke" />
  1250. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 268 )" class="stroke" />
  1251. <path d="M 133.5 1 L 133.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 268 )" class="stroke" />
  1252. </svg>
  1253. <div id="u23593_text" class="text " style="display:none; visibility: hidden">
  1254. <p></p>
  1255. </div>
  1256. </div>
  1257. <!-- Unnamed (Table cell) -->
  1258. <div id="u23594" class="ax_default table_cell transition">
  1259. <svg data="images/预先制卡/u23594.svg" id="u23594_img" class="img generatedImage" viewbox="0 298 71 30">
  1260. <path d="M 1 1 L 71 1 L 71 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 298 )" class="fill" />
  1261. <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 298 )" class="stroke" />
  1262. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 298 )" class="stroke" />
  1263. <path d="M 0 29.5 L 71 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 298 )" class="stroke" />
  1264. </svg>
  1265. <div id="u23594_text" class="text " style="display:none; visibility: hidden">
  1266. <p></p>
  1267. </div>
  1268. </div>
  1269. <!-- Unnamed (Table cell) -->
  1270. <div id="u23595" class="ax_default table_cell transition">
  1271. <svg data="images/预先制卡/u23595.svg" id="u23595_img" class="img generatedImage" viewbox="71 298 138 30">
  1272. <path d="M 1 1 L 138 1 L 138 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 298 )" class="fill" />
  1273. <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 71 298 )" class="stroke" />
  1274. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 298 )" class="stroke" />
  1275. <path d="M 0 29.5 L 138 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 298 )" class="stroke" />
  1276. </svg>
  1277. <div id="u23595_text" class="text " style="display:none; visibility: hidden">
  1278. <p></p>
  1279. </div>
  1280. </div>
  1281. <!-- Unnamed (Table cell) -->
  1282. <div id="u23596" class="ax_default table_cell transition">
  1283. <svg data="images/预先制卡/u23596.svg" id="u23596_img" class="img generatedImage" viewbox="209 298 143 30">
  1284. <path d="M 1 1 L 143 1 L 143 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 209 298 )" class="fill" />
  1285. <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 209 298 )" class="stroke" />
  1286. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 298 )" class="stroke" />
  1287. <path d="M 0 29.5 L 143 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 209 298 )" class="stroke" />
  1288. </svg>
  1289. <div id="u23596_text" class="text " style="display:none; visibility: hidden">
  1290. <p></p>
  1291. </div>
  1292. </div>
  1293. <!-- Unnamed (Table cell) -->
  1294. <div id="u23597" class="ax_default table_cell transition">
  1295. <svg data="images/预先制卡/u23597.svg" id="u23597_img" class="img generatedImage" viewbox="352 298 143 30">
  1296. <path d="M 1 1 L 143 1 L 143 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 352 298 )" class="fill" />
  1297. <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 352 298 )" class="stroke" />
  1298. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 298 )" class="stroke" />
  1299. <path d="M 0 29.5 L 143 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 352 298 )" class="stroke" />
  1300. </svg>
  1301. <div id="u23597_text" class="text " style="display:none; visibility: hidden">
  1302. <p></p>
  1303. </div>
  1304. </div>
  1305. <!-- Unnamed (Table cell) -->
  1306. <div id="u23598" class="ax_default table_cell transition">
  1307. <svg data="images/预先制卡/u23598.svg" id="u23598_img" class="img generatedImage" viewbox="495 298 153 30">
  1308. <path d="M 1 1 L 153 1 L 153 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 495 298 )" class="fill" />
  1309. <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 495 298 )" class="stroke" />
  1310. <path d="M 0 0.5 L 153 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 298 )" class="stroke" />
  1311. <path d="M 0 29.5 L 153 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 495 298 )" class="stroke" />
  1312. </svg>
  1313. <div id="u23598_text" class="text " style="display:none; visibility: hidden">
  1314. <p></p>
  1315. </div>
  1316. </div>
  1317. <!-- Unnamed (Table cell) -->
  1318. <div id="u23599" class="ax_default table_cell transition">
  1319. <svg data="images/预先制卡/u23599.svg" id="u23599_img" class="img generatedImage" viewbox="648 298 134 30">
  1320. <path d="M 1 1 L 133 1 L 133 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 648 298 )" class="fill" />
  1321. <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 648 298 )" class="stroke" />
  1322. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 298 )" class="stroke" />
  1323. <path d="M 133.5 1 L 133.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 298 )" class="stroke" />
  1324. <path d="M 0 29.5 L 134 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 648 298 )" class="stroke" />
  1325. </svg>
  1326. <div id="u23599_text" class="text " style="display:none; visibility: hidden">
  1327. <p></p>
  1328. </div>
  1329. </div>
  1330. </div>
  1331. <!-- Unnamed (Checkbox) -->
  1332. <div id="u23600" class="ax_default checkbox selected">
  1333. <label id="u23600_input_label" for="u23600_input" style="position: absolute; left: 0px;">
  1334. <svg data="images/预先制卡/u23600.svg" id="u23600_img" class="img " viewbox="366 307 12 12">
  1335. <path d="M 366 307 L 378 307 L 378 319 L 366 319 L 366 307 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1336. <path d="M 366.5 307.5 L 377.5 307.5 L 377.5 318.5 L 366.5 318.5 L 366.5 307.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1337. <path d="M 368.57142857142856 313 L 371.14285714285717 315.5714285714286 L 375.42857142857144 309.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1338. </svg>
  1339. <div id="u23600_text" class="text " style="display:none; visibility: hidden">
  1340. <p></p>
  1341. </div>
  1342. </label>
  1343. <input id="u23600_input" type="checkbox" value="checkbox" checked/>
  1344. </div>
  1345. </div>
  1346. <!-- Unnamed (Rectangle) -->
  1347. <div id="u23601" class="ax_default paragraph transition">
  1348. <div id="u23601_div" class=""></div>
  1349. <div id="u23601_text" class="text ">
  1350. <p><span>预先制卡</span></p>
  1351. </div>
  1352. </div>
  1353. <!-- Unnamed (客户-智慧通行卡) -->
  1354. <div id="u23602" class="nopointer ax_default">
  1355. <!-- Unnamed (Group) -->
  1356. <div id="u23603" class="ax_default" data-left="120" data-top="50" data-width="200" data-height="1193" layer-opacity="1">
  1357. <!-- Unnamed (Rectangle) -->
  1358. <div id="u23604" class="ax_default box_2 transition">
  1359. <div id="u23604_div" class=""></div>
  1360. <div id="u23604_text" class="text " style="display:none; visibility: hidden">
  1361. <p></p>
  1362. </div>
  1363. </div>
  1364. <!-- Unnamed (Rectangle) -->
  1365. <div id="u23605" class="ax_default label transition">
  1366. <div id="u23605_div" class=""></div>
  1367. <div id="u23605_text" class="text ">
  1368. <p><span>通行卡管理</span></p>
  1369. </div>
  1370. </div>
  1371. <!-- Unnamed (Rectangle) -->
  1372. <div id="u23606" class="ax_default label transition">
  1373. <div id="u23606_div" class=""></div>
  1374. <div id="u23606_text" class="text ">
  1375. <p><span>人员制卡</span></p>
  1376. </div>
  1377. </div>
  1378. <!-- Unnamed (Rectangle) -->
  1379. <div id="u23607" class="ax_default label transition">
  1380. <div id="u23607_div" class=""></div>
  1381. <div id="u23607_text" class="text ">
  1382. <p><span>通行卡管理</span></p>
  1383. </div>
  1384. </div>
  1385. <!-- Unnamed (Line) -->
  1386. <div id="u23608" class="ax_default line1 transition">
  1387. <svg data="images/项目列表/u4861.svg" id="u23608_img" class="img generatedImage">
  1388. <g transform="matrix(1 0 0 1 -1 -122 )">
  1389. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  1390. </g>
  1391. </svg>
  1392. <div id="u23608_text" class="text " style="display:none; visibility: hidden">
  1393. <p></p>
  1394. </div>
  1395. </div>
  1396. <!-- Unnamed (Rectangle) -->
  1397. <div id="u23609" class="ax_default label transition">
  1398. <div id="u23609_div" class=""></div>
  1399. <div id="u23609_text" class="text ">
  1400. <p><span>挂失解挂</span></p>
  1401. </div>
  1402. </div>
  1403. <!-- Unnamed (Rectangle) -->
  1404. <div id="u23610" class="ax_default label transition">
  1405. <div id="u23610_div" class=""></div>
  1406. <div id="u23610_text" class="text ">
  1407. <p><span>发卡记录</span></p>
  1408. </div>
  1409. </div>
  1410. <!-- Unnamed (Rectangle) -->
  1411. <div id="u23611" class="ax_default label transition">
  1412. <div id="u23611_div" class=""></div>
  1413. <div id="u23611_text" class="text ">
  1414. <p><span>记录统计</span></p>
  1415. </div>
  1416. </div>
  1417. <!-- Unnamed (Rectangle) -->
  1418. <div id="u23612" class="ax_default label transition">
  1419. <div id="u23612_div" class=""></div>
  1420. <div id="u23612_text" class="text ">
  1421. <p><span>挂失记录</span></p>
  1422. </div>
  1423. </div>
  1424. <!-- Unnamed (Line) -->
  1425. <div id="u23613" class="ax_default line1 transition">
  1426. <svg data="images/项目列表/u4861.svg" id="u23613_img" class="img generatedImage">
  1427. <g transform="matrix(1 0 0 1 -1 -122 )">
  1428. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  1429. </g>
  1430. </svg>
  1431. <div id="u23613_text" class="text " style="display:none; visibility: hidden">
  1432. <p></p>
  1433. </div>
  1434. </div>
  1435. <!-- Unnamed (Rectangle) -->
  1436. <div id="u23614" class="ax_default label transition">
  1437. <div id="u23614_div" class=""></div>
  1438. <div id="u23614_text" class="text ">
  1439. <p><span>发卡器</span></p>
  1440. </div>
  1441. </div>
  1442. <!-- Unnamed (Rectangle) -->
  1443. <div id="u23615" class="ax_default label transition">
  1444. <div id="u23615_div" class=""></div>
  1445. <div id="u23615_text" class="text ">
  1446. <p><span>发卡设备</span></p>
  1447. </div>
  1448. </div>
  1449. <!-- Unnamed (Rectangle) -->
  1450. <div id="u23616" class="ax_default label transition">
  1451. <div id="u23616_div" class=""></div>
  1452. <div id="u23616_text" class="text ">
  1453. <p><span>卡片权限</span></p>
  1454. </div>
  1455. </div>
  1456. <!-- Unnamed (Rectangle) -->
  1457. <div id="u23617" class="ax_default label transition">
  1458. <div id="u23617_div" class=""></div>
  1459. <div id="u23617_text" class="text ">
  1460. <p><span>刷卡记录</span></p>
  1461. </div>
  1462. </div>
  1463. <!-- Unnamed (Rectangle) -->
  1464. <div id="u23618" class="ax_default label transition">
  1465. <div id="u23618_div" class=""></div>
  1466. <div id="u23618_text" class="text ">
  1467. <p><span>预先制卡</span></p>
  1468. </div>
  1469. </div>
  1470. </div>
  1471. </div>
  1472. <!-- Unnamed (Rectangle) -->
  1473. <div id="u23619" class="ax_default paragraph transition">
  1474. <div id="u23619_div" class=""></div>
  1475. <div id="u23619_text" class="text ">
  1476. <p><span>实体卡内码:</span></p>
  1477. </div>
  1478. </div>
  1479. <!-- Unnamed (Group) -->
  1480. <div id="u23620" class="ax_default" data-left="726" data-top="695" data-width="240" data-height="40" layer-opacity="1">
  1481. <!-- Unnamed (Rectangle) -->
  1482. <div id="u23621" class="ax_default box_1 transition">
  1483. <div id="u23621_div" class=""></div>
  1484. <div id="u23621_text" class="text " style="display:none; visibility: hidden">
  1485. <p></p>
  1486. </div>
  1487. </div>
  1488. <!-- Unnamed (Text field) -->
  1489. <div id="u23622" class="ax_default text_field transition">
  1490. <div id="u23622_div" class=""></div>
  1491. <input id="u23622_input" type="text" value="显示读取到的实体卡内码" class="u23622_input"/>
  1492. </div>
  1493. </div>
  1494. <!-- Unnamed (Rectangle) -->
  1495. <div id="u23623" class="ax_default box_1 transition">
  1496. <div id="u23623_div" class=""></div>
  1497. <div id="u23623_text" class="text ">
  1498. <p><span>读卡</span></p>
  1499. </div>
  1500. </div>
  1501. <!-- Unnamed (Rectangle) -->
  1502. <div id="u23624" class="ax_default paragraph transition">
  1503. <div id="u23624_div" class=""></div>
  1504. <div id="u23624_text" class="text ">
  1505. <p><span>通行卡配置</span></p>
  1506. </div>
  1507. </div>
  1508. <!-- Unnamed (Rectangle) -->
  1509. <div id="u23625" class="ax_default box_1 transition">
  1510. <div id="u23625_div" class=""></div>
  1511. <div id="u23625_text" class="text ">
  1512. <p><span>1</span></p>
  1513. </div>
  1514. </div>
  1515. <!-- Unnamed (Rectangle) -->
  1516. <div id="u23626" class="ax_default box_1 transition">
  1517. <div id="u23626_div" class=""></div>
  1518. <div id="u23626_text" class="text ">
  1519. <p><span>4</span></p>
  1520. </div>
  1521. </div>
  1522. <!-- Unnamed (Rectangle) -->
  1523. <div id="u23627" class="ax_default paragraph transition">
  1524. <div id="u23627_div" class=""></div>
  1525. <div id="u23627_text" class="text ">
  1526. <p><span>卡号:</span></p>
  1527. </div>
  1528. </div>
  1529. <!-- Unnamed (Group) -->
  1530. <div id="u23628" class="ax_default" data-left="391" data-top="695" data-width="240" data-height="40" layer-opacity="1">
  1531. <!-- Unnamed (Rectangle) -->
  1532. <div id="u23629" class="ax_default box_1 transition">
  1533. <div id="u23629_div" class=""></div>
  1534. <div id="u23629_text" class="text " style="display:none; visibility: hidden">
  1535. <p></p>
  1536. </div>
  1537. </div>
  1538. <!-- Unnamed (Text field) -->
  1539. <div id="u23630" class="ax_default text_field transition">
  1540. <div id="u23630_div" class=""></div>
  1541. <input id="u23630_input" type="text" value="系统自动创建/识别" class="u23630_input"/>
  1542. </div>
  1543. </div>
  1544. <!-- Unnamed (Rectangle) -->
  1545. <div id="u23631" class="ax_default paragraph transition">
  1546. <div id="u23631_div" class=""></div>
  1547. <div id="u23631_text" class="text ">
  1548. <p><span style="color:#7F7F7F;">(若房屋不存在,请前往</span><span style="color:#555555;">「空间建设」</span><span style="color:#7F7F7F;">先登记房屋信息)</span></p>
  1549. </div>
  1550. </div>
  1551. <!-- Unnamed (Rectangle) -->
  1552. <div id="u23632" class="ax_default paragraph transition">
  1553. <div id="u23632_div" class=""></div>
  1554. <div id="u23632_text" class="text ">
  1555. <p><span>此处在房屋业主人员信息未登记到系统之前,按房屋为业主人员制卡。</span></p>
  1556. </div>
  1557. </div>
  1558. <!-- Unnamed (Rectangle) -->
  1559. <div id="u23633" class="ax_default shape transition">
  1560. <div id="u23633_div" class=""></div>
  1561. <div id="u23633_text" class="text ">
  1562. <p><span>未识别到卡片,请将实体卡放置发卡器设备上</span></p>
  1563. </div>
  1564. </div>
  1565. <!-- Unnamed (Rectangle) -->
  1566. <div id="u23634" class="ax_default paragraph transition">
  1567. <div id="u23634_div" class=""></div>
  1568. <div id="u23634_text" class="text ">
  1569. <p><span>点击「读卡」时,若未获取到实体卡信息,提示:</span></p>
  1570. </div>
  1571. </div>
  1572. <!-- Unnamed (Group) -->
  1573. <div id="u23635" class="ax_default" data-left="947" data-top="218" data-width="124" data-height="30" layer-opacity="1">
  1574. <!-- Unnamed (Rectangle) -->
  1575. <div id="u23636" class="ax_default box_1 transition">
  1576. <div id="u23636_div" class=""></div>
  1577. <div id="u23636_text" class="text ">
  1578. <p><span>查询</span></p>
  1579. </div>
  1580. </div>
  1581. <!-- Unnamed (Rectangle) -->
  1582. <div id="u23637" class="ax_default box_1 transition">
  1583. <div id="u23637_div" class=""></div>
  1584. <div id="u23637_text" class="text ">
  1585. <p><span>重置</span></p>
  1586. </div>
  1587. </div>
  1588. </div>
  1589. <!-- Unnamed (Group) -->
  1590. <div id="u23638" class="ax_default" data-left="348" data-top="218" data-width="140" data-height="30" layer-opacity="1">
  1591. <!-- Unnamed (Rectangle) -->
  1592. <div id="u23639" class="ax_default box_1 transition">
  1593. <div id="u23639_div" class=""></div>
  1594. <div id="u23639_text" class="text " style="display:none; visibility: hidden">
  1595. <p></p>
  1596. </div>
  1597. </div>
  1598. <!-- Unnamed (Droplist) -->
  1599. <div id="u23640" class="ax_default droplist transition">
  1600. <div id="u23640_div" class=""></div>
  1601. <select id="u23640_input" class="u23640_input">
  1602. <option class="u23640_input_option" value="项目">项目</option>
  1603. </select>
  1604. </div>
  1605. </div>
  1606. <!-- Unnamed (Group) -->
  1607. <div id="u23641" class="ax_default" data-left="498" data-top="218" data-width="140" data-height="30" layer-opacity="1">
  1608. <!-- Unnamed (Rectangle) -->
  1609. <div id="u23642" class="ax_default box_1 transition">
  1610. <div id="u23642_div" class=""></div>
  1611. <div id="u23642_text" class="text " style="display:none; visibility: hidden">
  1612. <p></p>
  1613. </div>
  1614. </div>
  1615. <!-- Unnamed (Droplist) -->
  1616. <div id="u23643" class="ax_default droplist transition">
  1617. <div id="u23643_div" class=""></div>
  1618. <select id="u23643_input" class="u23643_input">
  1619. <option class="u23643_input_option" value="楼栋">楼栋</option>
  1620. </select>
  1621. </div>
  1622. </div>
  1623. <!-- Unnamed (Group) -->
  1624. <div id="u23644" class="ax_default" data-left="648" data-top="218" data-width="140" data-height="30" layer-opacity="1">
  1625. <!-- Unnamed (Rectangle) -->
  1626. <div id="u23645" class="ax_default box_1 transition">
  1627. <div id="u23645_div" class=""></div>
  1628. <div id="u23645_text" class="text " style="display:none; visibility: hidden">
  1629. <p></p>
  1630. </div>
  1631. </div>
  1632. <!-- Unnamed (Droplist) -->
  1633. <div id="u23646" class="ax_default droplist transition">
  1634. <div id="u23646_div" class=""></div>
  1635. <select id="u23646_input" class="u23646_input">
  1636. <option class="u23646_input_option" value="单元">单元</option>
  1637. </select>
  1638. </div>
  1639. </div>
  1640. <!-- Unnamed (Group) -->
  1641. <div id="u23647" class="ax_default" data-left="798" data-top="218" data-width="140" data-height="30" layer-opacity="1">
  1642. <!-- Unnamed (Rectangle) -->
  1643. <div id="u23648" class="ax_default box_1 transition">
  1644. <div id="u23648_div" class=""></div>
  1645. <div id="u23648_text" class="text " style="display:none; visibility: hidden">
  1646. <p></p>
  1647. </div>
  1648. </div>
  1649. <!-- Unnamed (Droplist) -->
  1650. <div id="u23649" class="ax_default droplist transition">
  1651. <div id="u23649_div" class=""></div>
  1652. <select id="u23649_input" class="u23649_input">
  1653. <option class="u23649_input_option" value="房屋">房屋</option>
  1654. </select>
  1655. </div>
  1656. </div>
  1657. <!-- Unnamed (Group) -->
  1658. <div id="u23650" class="ax_default" data-left="1156" data-top="178" data-width="395" data-height="843" layer-opacity="1">
  1659. <!-- Unnamed (Rectangle) -->
  1660. <div id="u23651" class="ax_default paragraph transition">
  1661. <div id="u23651_div" class=""></div>
  1662. <div id="u23651_text" class="text ">
  1663. <p><span>卡通行权限</span></p>
  1664. </div>
  1665. </div>
  1666. <!-- Unnamed (Rectangle) -->
  1667. <div id="u23652" class="ax_default box_1 transition">
  1668. <div id="u23652_div" class=""></div>
  1669. <div id="u23652_text" class="text " style="display:none; visibility: hidden">
  1670. <p></p>
  1671. </div>
  1672. </div>
  1673. <!-- Unnamed (Checkbox) -->
  1674. <div id="u23653" class="ax_default checkbox">
  1675. <label id="u23653_input_label" for="u23653_input" style="position: absolute; left: 0px;">
  1676. <svg data="images/预先制卡/u23653.svg" id="u23653_img" class="img " viewbox="1192 356 12 12">
  1677. <path d="M 1192 356 L 1204 356 L 1204 368 L 1192 368 L 1192 356 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1678. <path d="M 1192.5 356.5 L 1203.5 356.5 L 1203.5 367.5 L 1192.5 367.5 L 1192.5 356.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1679. <path d="M 1194.5714285714287 362 L 1197.142857142857 364.5714285714286 L 1201.4285714285713 358.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1680. </svg>
  1681. <div id="u23653_text" class="text ">
  1682. <p><span>门禁分组</span></p>
  1683. </div>
  1684. </label>
  1685. <input id="u23653_input" type="checkbox" value="checkbox"/>
  1686. </div>
  1687. <!-- Unnamed (Checkbox) -->
  1688. <div id="u23654" class="ax_default checkbox selected">
  1689. <label id="u23654_input_label" for="u23654_input" style="position: absolute; left: 0px;">
  1690. <svg data="images/预先制卡/u23654.svg" id="u23654_img" class="img " viewbox="1211 385 12 12">
  1691. <path d="M 1211 385 L 1223 385 L 1223 397 L 1211 397 L 1211 385 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1692. <path d="M 1211.5 385.5 L 1222.5 385.5 L 1222.5 396.5 L 1211.5 396.5 L 1211.5 385.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1693. <path d="M 1213.5714285714287 391 L 1216.142857142857 393.5714285714286 L 1220.4285714285713 387.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1694. </svg>
  1695. <div id="u23654_text" class="text ">
  1696. <p><span>门禁点1</span></p>
  1697. </div>
  1698. </label>
  1699. <input id="u23654_input" type="checkbox" value="checkbox" checked/>
  1700. </div>
  1701. <!-- Unnamed (Checkbox) -->
  1702. <div id="u23655" class="ax_default checkbox selected">
  1703. <label id="u23655_input_label" for="u23655_input" style="position: absolute; left: 0px;">
  1704. <svg data="images/预先制卡/u23655.svg" id="u23655_img" class="img " viewbox="1211 413 12 12">
  1705. <path d="M 1211 413 L 1223 413 L 1223 425 L 1211 425 L 1211 413 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1706. <path d="M 1211.5 413.5 L 1222.5 413.5 L 1222.5 424.5 L 1211.5 424.5 L 1211.5 413.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1707. <path d="M 1213.5714285714287 419 L 1216.142857142857 421.5714285714286 L 1220.4285714285713 415.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1708. </svg>
  1709. <div id="u23655_text" class="text ">
  1710. <p><span>门禁点2</span></p>
  1711. </div>
  1712. </label>
  1713. <input id="u23655_input" type="checkbox" value="checkbox" checked/>
  1714. </div>
  1715. <!-- Unnamed (Checkbox) -->
  1716. <div id="u23656" class="ax_default checkbox">
  1717. <label id="u23656_input_label" for="u23656_input" style="position: absolute; left: 0px;">
  1718. <svg data="images/预先制卡/u23656.svg" id="u23656_img" class="img " viewbox="1192 441 12 12">
  1719. <path d="M 1192 441 L 1204 441 L 1204 453 L 1192 453 L 1192 441 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1720. <path d="M 1192.5 441.5 L 1203.5 441.5 L 1203.5 452.5 L 1192.5 452.5 L 1192.5 441.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1721. <path d="M 1194.5714285714287 447 L 1197.142857142857 449.5714285714286 L 1201.4285714285713 443.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1722. </svg>
  1723. <div id="u23656_text" class="text ">
  1724. <p><span>门禁分组</span></p>
  1725. </div>
  1726. </label>
  1727. <input id="u23656_input" type="checkbox" value="checkbox"/>
  1728. </div>
  1729. <!-- Unnamed (Checkbox) -->
  1730. <div id="u23657" class="ax_default checkbox selected">
  1731. <label id="u23657_input_label" for="u23657_input" style="position: absolute; left: 0px;">
  1732. <svg data="images/预先制卡/u23657.svg" id="u23657_img" class="img " viewbox="1211 470 12 12">
  1733. <path d="M 1211 470 L 1223 470 L 1223 482 L 1211 482 L 1211 470 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1734. <path d="M 1211.5 470.5 L 1222.5 470.5 L 1222.5 481.5 L 1211.5 481.5 L 1211.5 470.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1735. <path d="M 1213.5714285714287 476 L 1216.142857142857 478.5714285714286 L 1220.4285714285713 472.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1736. </svg>
  1737. <div id="u23657_text" class="text ">
  1738. <p><span>门禁点1</span></p>
  1739. </div>
  1740. </label>
  1741. <input id="u23657_input" type="checkbox" value="checkbox" checked/>
  1742. </div>
  1743. <!-- Unnamed (Checkbox) -->
  1744. <div id="u23658" class="ax_default checkbox selected">
  1745. <label id="u23658_input_label" for="u23658_input" style="position: absolute; left: 0px;">
  1746. <svg data="images/预先制卡/u23658.svg" id="u23658_img" class="img " viewbox="1211 498 12 12">
  1747. <path d="M 1211 498 L 1223 498 L 1223 510 L 1211 510 L 1211 498 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1748. <path d="M 1211.5 498.5 L 1222.5 498.5 L 1222.5 509.5 L 1211.5 509.5 L 1211.5 498.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1749. <path d="M 1213.5714285714287 504 L 1216.142857142857 506.5714285714286 L 1220.4285714285713 500.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1750. </svg>
  1751. <div id="u23658_text" class="text ">
  1752. <p><span>门禁点2</span></p>
  1753. </div>
  1754. </label>
  1755. <input id="u23658_input" type="checkbox" value="checkbox" checked/>
  1756. </div>
  1757. <!-- Unnamed (Checkbox) -->
  1758. <div id="u23659" class="ax_default checkbox">
  1759. <label id="u23659_input_label" for="u23659_input" style="position: absolute; left: 0px;">
  1760. <svg data="images/预先制卡/u23659.svg" id="u23659_img" class="img " viewbox="1192 526 12 12">
  1761. <path d="M 1192 526 L 1204 526 L 1204 538 L 1192 538 L 1192 526 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1762. <path d="M 1192.5 526.5 L 1203.5 526.5 L 1203.5 537.5 L 1192.5 537.5 L 1192.5 526.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1763. <path d="M 1194.5714285714287 532 L 1197.142857142857 534.5714285714286 L 1201.4285714285713 528.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1764. </svg>
  1765. <div id="u23659_text" class="text ">
  1766. <p><span>门禁分组</span></p>
  1767. </div>
  1768. </label>
  1769. <input id="u23659_input" type="checkbox" value="checkbox"/>
  1770. </div>
  1771. <!-- Unnamed (Checkbox) -->
  1772. <div id="u23660" class="ax_default checkbox">
  1773. <label id="u23660_input_label" for="u23660_input" style="position: absolute; left: 0px;">
  1774. <svg data="images/预先制卡/u23660.svg" id="u23660_img" class="img " viewbox="1211 555 12 12">
  1775. <path d="M 1211 555 L 1223 555 L 1223 567 L 1211 567 L 1211 555 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1776. <path d="M 1211.5 555.5 L 1222.5 555.5 L 1222.5 566.5 L 1211.5 566.5 L 1211.5 555.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1777. <path d="M 1213.5714285714287 561 L 1216.142857142857 563.5714285714286 L 1220.4285714285713 557.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1778. </svg>
  1779. <div id="u23660_text" class="text ">
  1780. <p><span>门禁点1</span></p>
  1781. </div>
  1782. </label>
  1783. <input id="u23660_input" type="checkbox" value="checkbox"/>
  1784. </div>
  1785. <!-- Unnamed (Checkbox) -->
  1786. <div id="u23661" class="ax_default checkbox">
  1787. <label id="u23661_input_label" for="u23661_input" style="position: absolute; left: 0px;">
  1788. <svg data="images/预先制卡/u23661.svg" id="u23661_img" class="img " viewbox="1211 583 12 12">
  1789. <path d="M 1211 583 L 1223 583 L 1223 595 L 1211 595 L 1211 583 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1790. <path d="M 1211.5 583.5 L 1222.5 583.5 L 1222.5 594.5 L 1211.5 594.5 L 1211.5 583.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1791. <path d="M 1213.5714285714287 589 L 1216.142857142857 591.5714285714286 L 1220.4285714285713 585.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1792. </svg>
  1793. <div id="u23661_text" class="text ">
  1794. <p><span>门禁点2</span></p>
  1795. </div>
  1796. </label>
  1797. <input id="u23661_input" type="checkbox" value="checkbox"/>
  1798. </div>
  1799. <!-- Unnamed (Checkbox) -->
  1800. <div id="u23662" class="ax_default checkbox">
  1801. <label id="u23662_input_label" for="u23662_input" style="position: absolute; left: 0px;">
  1802. <svg data="images/预先制卡/u23662.svg" id="u23662_img" class="img " viewbox="1390 356 12 12">
  1803. <path d="M 1390 356 L 1402 356 L 1402 368 L 1390 368 L 1390 356 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1804. <path d="M 1390.5 356.5 L 1401.5 356.5 L 1401.5 367.5 L 1390.5 367.5 L 1390.5 356.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1805. <path d="M 1392.5714285714287 362 L 1395.142857142857 364.5714285714286 L 1399.4285714285713 358.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1806. </svg>
  1807. <div id="u23662_text" class="text ">
  1808. <p><span>电梯分组</span></p>
  1809. </div>
  1810. </label>
  1811. <input id="u23662_input" type="checkbox" value="checkbox"/>
  1812. </div>
  1813. <!-- Unnamed (Checkbox) -->
  1814. <div id="u23663" class="ax_default checkbox selected">
  1815. <label id="u23663_input_label" for="u23663_input" style="position: absolute; left: 0px;">
  1816. <svg data="images/预先制卡/u23663.svg" id="u23663_img" class="img " viewbox="1409 385 12 12">
  1817. <path d="M 1409 385 L 1421 385 L 1421 397 L 1409 397 L 1409 385 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1818. <path d="M 1409.5 385.5 L 1420.5 385.5 L 1420.5 396.5 L 1409.5 396.5 L 1409.5 385.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1819. <path d="M 1411.5714285714287 391 L 1414.142857142857 393.5714285714286 L 1418.4285714285713 387.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1820. </svg>
  1821. <div id="u23663_text" class="text ">
  1822. <p><span>电梯点1</span></p>
  1823. </div>
  1824. </label>
  1825. <input id="u23663_input" type="checkbox" value="checkbox" checked/>
  1826. </div>
  1827. <!-- Unnamed (Checkbox) -->
  1828. <div id="u23664" class="ax_default checkbox selected">
  1829. <label id="u23664_input_label" for="u23664_input" style="position: absolute; left: 0px;">
  1830. <svg data="images/预先制卡/u23664.svg" id="u23664_img" class="img " viewbox="1409 413 12 12">
  1831. <path d="M 1409 413 L 1421 413 L 1421 425 L 1409 425 L 1409 413 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1832. <path d="M 1409.5 413.5 L 1420.5 413.5 L 1420.5 424.5 L 1409.5 424.5 L 1409.5 413.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1833. <path d="M 1411.5714285714287 419 L 1414.142857142857 421.5714285714286 L 1418.4285714285713 415.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1834. </svg>
  1835. <div id="u23664_text" class="text ">
  1836. <p><span>电梯点2</span></p>
  1837. </div>
  1838. </label>
  1839. <input id="u23664_input" type="checkbox" value="checkbox" checked/>
  1840. </div>
  1841. <!-- Unnamed (Checkbox) -->
  1842. <div id="u23665" class="ax_default checkbox">
  1843. <label id="u23665_input_label" for="u23665_input" style="position: absolute; left: 0px;">
  1844. <svg data="images/预先制卡/u23665.svg" id="u23665_img" class="img " viewbox="1390 441 12 12">
  1845. <path d="M 1390 441 L 1402 441 L 1402 453 L 1390 453 L 1390 441 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1846. <path d="M 1390.5 441.5 L 1401.5 441.5 L 1401.5 452.5 L 1390.5 452.5 L 1390.5 441.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1847. <path d="M 1392.5714285714287 447 L 1395.142857142857 449.5714285714286 L 1399.4285714285713 443.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1848. </svg>
  1849. <div id="u23665_text" class="text ">
  1850. <p><span>电梯分组</span></p>
  1851. </div>
  1852. </label>
  1853. <input id="u23665_input" type="checkbox" value="checkbox"/>
  1854. </div>
  1855. <!-- Unnamed (Checkbox) -->
  1856. <div id="u23666" class="ax_default checkbox">
  1857. <label id="u23666_input_label" for="u23666_input" style="position: absolute; left: 0px;">
  1858. <svg data="images/预先制卡/u23666.svg" id="u23666_img" class="img " viewbox="1409 470 12 12">
  1859. <path d="M 1409 470 L 1421 470 L 1421 482 L 1409 482 L 1409 470 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1860. <path d="M 1409.5 470.5 L 1420.5 470.5 L 1420.5 481.5 L 1409.5 481.5 L 1409.5 470.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1861. <path d="M 1411.5714285714287 476 L 1414.142857142857 478.5714285714286 L 1418.4285714285713 472.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1862. </svg>
  1863. <div id="u23666_text" class="text ">
  1864. <p><span>电梯点1</span></p>
  1865. </div>
  1866. </label>
  1867. <input id="u23666_input" type="checkbox" value="checkbox"/>
  1868. </div>
  1869. <!-- Unnamed (Checkbox) -->
  1870. <div id="u23667" class="ax_default checkbox">
  1871. <label id="u23667_input_label" for="u23667_input" style="position: absolute; left: 0px;">
  1872. <svg data="images/预先制卡/u23667.svg" id="u23667_img" class="img " viewbox="1409 498 12 12">
  1873. <path d="M 1409 498 L 1421 498 L 1421 510 L 1409 510 L 1409 498 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1874. <path d="M 1409.5 498.5 L 1420.5 498.5 L 1420.5 509.5 L 1409.5 509.5 L 1409.5 498.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1875. <path d="M 1411.5714285714287 504 L 1414.142857142857 506.5714285714286 L 1418.4285714285713 500.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1876. </svg>
  1877. <div id="u23667_text" class="text ">
  1878. <p><span>电梯点2</span></p>
  1879. </div>
  1880. </label>
  1881. <input id="u23667_input" type="checkbox" value="checkbox"/>
  1882. </div>
  1883. <!-- Unnamed (Checkbox) -->
  1884. <div id="u23668" class="ax_default checkbox">
  1885. <label id="u23668_input_label" for="u23668_input" style="position: absolute; left: 0px;">
  1886. <svg data="images/预先制卡/u23668.svg" id="u23668_img" class="img " viewbox="1390 526 12 12">
  1887. <path d="M 1390 526 L 1402 526 L 1402 538 L 1390 538 L 1390 526 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1888. <path d="M 1390.5 526.5 L 1401.5 526.5 L 1401.5 537.5 L 1390.5 537.5 L 1390.5 526.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1889. <path d="M 1392.5714285714287 532 L 1395.142857142857 534.5714285714286 L 1399.4285714285713 528.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1890. </svg>
  1891. <div id="u23668_text" class="text ">
  1892. <p><span>电梯分组</span></p>
  1893. </div>
  1894. </label>
  1895. <input id="u23668_input" type="checkbox" value="checkbox"/>
  1896. </div>
  1897. <!-- Unnamed (Checkbox) -->
  1898. <div id="u23669" class="ax_default checkbox">
  1899. <label id="u23669_input_label" for="u23669_input" style="position: absolute; left: 0px;">
  1900. <svg data="images/预先制卡/u23669.svg" id="u23669_img" class="img " viewbox="1409 555 12 12">
  1901. <path d="M 1409 555 L 1421 555 L 1421 567 L 1409 567 L 1409 555 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1902. <path d="M 1409.5 555.5 L 1420.5 555.5 L 1420.5 566.5 L 1409.5 566.5 L 1409.5 555.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1903. <path d="M 1411.5714285714287 561 L 1414.142857142857 563.5714285714286 L 1418.4285714285713 557.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1904. </svg>
  1905. <div id="u23669_text" class="text ">
  1906. <p><span>电梯点1</span></p>
  1907. </div>
  1908. </label>
  1909. <input id="u23669_input" type="checkbox" value="checkbox"/>
  1910. </div>
  1911. <!-- Unnamed (Checkbox) -->
  1912. <div id="u23670" class="ax_default checkbox">
  1913. <label id="u23670_input_label" for="u23670_input" style="position: absolute; left: 0px;">
  1914. <svg data="images/预先制卡/u23670.svg" id="u23670_img" class="img " viewbox="1409 583 12 12">
  1915. <path d="M 1409 583 L 1421 583 L 1421 595 L 1409 595 L 1409 583 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1916. <path d="M 1409.5 583.5 L 1420.5 583.5 L 1420.5 594.5 L 1409.5 594.5 L 1409.5 583.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1917. <path d="M 1411.5714285714287 589 L 1414.142857142857 591.5714285714286 L 1418.4285714285713 585.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1918. </svg>
  1919. <div id="u23670_text" class="text ">
  1920. <p><span>电梯点2</span></p>
  1921. </div>
  1922. </label>
  1923. <input id="u23670_input" type="checkbox" value="checkbox"/>
  1924. </div>
  1925. <!-- Unnamed (Rectangle) -->
  1926. <div id="u23671" class="ax_default box_1 transition">
  1927. <div id="u23671_div" class=""></div>
  1928. <div id="u23671_text" class="text " style="display:none; visibility: hidden">
  1929. <p></p>
  1930. </div>
  1931. </div>
  1932. <!-- Unnamed (Group) -->
  1933. <div id="u23672" class="ax_default" data-left="1176" data-top="251" data-width="350" data-height="40" layer-opacity="1">
  1934. <!-- Unnamed (Rectangle) -->
  1935. <div id="u23673" class="ax_default shape transition">
  1936. <div id="u23673_div" class=""></div>
  1937. <div id="u23673_text" class="text " style="display:none; visibility: hidden">
  1938. <p></p>
  1939. </div>
  1940. </div>
  1941. <!-- 选项内容 (Text field) -->
  1942. <div id="u23674" class="ax_default text_field transition" data-label="选项内容">
  1943. <div id="u23674_div" class=""></div>
  1944. <input id="u23674_input" type="text" value="" class="u23674_input"/>
  1945. </div>
  1946. <!-- Unnamed (Image) -->
  1947. <div id="u23675" class="ax_default image transition">
  1948. <img id="u23675_img" class="img " src="images/预先制卡/u23675.png"/>
  1949. <div id="u23675_text" class="text " style="display:none; visibility: hidden">
  1950. <p></p>
  1951. </div>
  1952. </div>
  1953. </div>
  1954. <!-- Unnamed (Rectangle) -->
  1955. <div id="u23676" class="ax_default shape transition">
  1956. <div id="u23676_div" class=""></div>
  1957. <div id="u23676_text" class="text ">
  1958. <p><span>门禁</span><span>点</span></p>
  1959. </div>
  1960. </div>
  1961. <!-- Unnamed (Checkbox) -->
  1962. <div id="u23677" class="ax_default checkbox">
  1963. <label id="u23677_input_label" for="u23677_input" style="position: absolute; left: 0px;">
  1964. <svg data="images/预先制卡/u23677.svg" id="u23677_img" class="img " viewbox="1291 320 12 12">
  1965. <path d="M 1291 320 L 1303 320 L 1303 332 L 1291 332 L 1291 320 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1966. <path d="M 1291.5 320.5 L 1302.5 320.5 L 1302.5 331.5 L 1291.5 331.5 L 1291.5 320.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1967. <path d="M 1293.5714285714287 326 L 1296.142857142857 328.5714285714286 L 1300.4285714285713 322.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1968. </svg>
  1969. <div id="u23677_text" class="text ">
  1970. <p><span>全部</span></p>
  1971. </div>
  1972. </label>
  1973. <input id="u23677_input" type="checkbox" value="checkbox"/>
  1974. </div>
  1975. <!-- Unnamed (Rectangle) -->
  1976. <div id="u23678" class="ax_default shape transition">
  1977. <div id="u23678_div" class=""></div>
  1978. <div id="u23678_text" class="text ">
  1979. <p><span>电梯点</span></p>
  1980. </div>
  1981. </div>
  1982. <!-- Unnamed (Checkbox) -->
  1983. <div id="u23679" class="ax_default checkbox">
  1984. <label id="u23679_input_label" for="u23679_input" style="position: absolute; left: 0px;">
  1985. <svg data="images/预先制卡/u23679.svg" id="u23679_img" class="img " viewbox="1481 320 12 12">
  1986. <path d="M 1481 320 L 1493 320 L 1493 332 L 1481 332 L 1481 320 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  1987. <path d="M 1481.5 320.5 L 1492.5 320.5 L 1492.5 331.5 L 1481.5 331.5 L 1481.5 320.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  1988. <path d="M 1483.5714285714287 326 L 1486.142857142857 328.5714285714286 L 1490.4285714285713 322.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  1989. </svg>
  1990. <div id="u23679_text" class="text ">
  1991. <p><span>全部</span></p>
  1992. </div>
  1993. </label>
  1994. <input id="u23679_input" type="checkbox" value="checkbox"/>
  1995. </div>
  1996. </div>
  1997. <!-- Unnamed (Rectangle) -->
  1998. <div id="u23680" class="ax_default box_1 transition">
  1999. <div id="u23680_div" class=""></div>
  2000. <div id="u23680_text" class="text ">
  2001. <p><span>2</span></p>
  2002. </div>
  2003. </div>
  2004. <!-- Unnamed (Rectangle) -->
  2005. <div id="u23681" class="ax_default paragraph transition">
  2006. <div id="u23681_div" class=""></div>
  2007. <div id="u23681_text" class="text ">
  2008. <p><span>通行授权</span></p>
  2009. </div>
  2010. </div>
  2011. <!-- Unnamed (Rectangle) -->
  2012. <div id="u23682" class="ax_default box_1 transition">
  2013. <div id="u23682_div" class=""></div>
  2014. <div id="u23682_text" class="text ">
  2015. <p><span>制卡</span></p>
  2016. </div>
  2017. </div>
  2018. <!-- Unnamed (Rectangle) -->
  2019. <div id="u23683" class="ax_default paragraph transition">
  2020. <div id="u23683_div" class=""></div>
  2021. <div id="u23683_text" class="text ">
  2022. <p><span>授权有效期限:</span></p>
  2023. </div>
  2024. </div>
  2025. <!-- Unnamed (Group) -->
  2026. <div id="u23684" class="ax_default" data-left="454" data-top="825" data-width="400" data-height="40" layer-opacity="1">
  2027. <!-- Unnamed (Rectangle) -->
  2028. <div id="u23685" class="ax_default box_1 transition">
  2029. <div id="u23685_div" class=""></div>
  2030. <div id="u23685_text" class="text " style="display:none; visibility: hidden">
  2031. <p></p>
  2032. </div>
  2033. </div>
  2034. <!-- Unnamed (Droplist) -->
  2035. <div id="u23686" class="ax_default droplist transition">
  2036. <div id="u23686_div" class=""></div>
  2037. <select id="u23686_input" class="u23686_input">
  2038. <option class="u23686_input_option" value="开始时间-结束有效期">开始时间-结束有效期</option>
  2039. </select>
  2040. </div>
  2041. </div>
  2042. <!-- Unnamed (Checkbox) -->
  2043. <div id="u23687" class="ax_default checkbox selected">
  2044. <label id="u23687_input_label" for="u23687_input" style="position: absolute; left: 0px;">
  2045. <svg data="images/预先制卡/u23687.svg" id="u23687_img" class="img " viewbox="868 839 12 12">
  2046. <path d="M 868 839 L 880 839 L 880 851 L 868 851 L 868 839 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2047. <path d="M 868.5 839.5 L 879.5 839.5 L 879.5 850.5 L 868.5 850.5 L 868.5 839.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2048. <path d="M 870.5714285714286 845 L 873.1428571428571 847.5714285714286 L 877.4285714285714 841.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  2049. </svg>
  2050. <div id="u23687_text" class="text ">
  2051. <p><span>长期有效</span></p>
  2052. </div>
  2053. </label>
  2054. <input id="u23687_input" type="checkbox" value="checkbox" checked/>
  2055. </div>
  2056. <!-- Unnamed (Rectangle) -->
  2057. <div id="u23688" class="ax_default shape transition">
  2058. <div id="u23688_div" class=""></div>
  2059. <div id="u23688_text" class="text ">
  2060. <p><span>请先选择房屋和通行权限</span></p>
  2061. </div>
  2062. </div>
  2063. <!-- Unnamed (Rectangle) -->
  2064. <div id="u23689" class="ax_default paragraph transition">
  2065. <div id="u23689_div" class=""></div>
  2066. <div id="u23689_text" class="text ">
  2067. <p><span>点击「发卡」时,若若未绑定房屋或授权通过内心的,提示:</span></p>
  2068. </div>
  2069. </div>
  2070. <!-- Unnamed (Rectangle) -->
  2071. <div id="u23690" class="ax_default box_1 transition">
  2072. <div id="u23690_div" class=""></div>
  2073. <div id="u23690_text" class="text ">
  2074. <p><span>批量制卡</span></p>
  2075. </div>
  2076. </div>
  2077. <!-- Unnamed (Rectangle) -->
  2078. <div id="u23691" class="ax_default box_1 transition">
  2079. <div id="u23691_div" class=""></div>
  2080. <div id="u23691_text" class="text ">
  2081. <p><span>3</span></p>
  2082. </div>
  2083. </div>
  2084. <!-- Unnamed (Shape) -->
  2085. <div id="u23692" class="ax_default icon transition">
  2086. <svg data="images/预先制卡/u23692.svg" id="u23692_img" class="img generatedImage">
  2087. <defs>
  2088. <pattern id="u23692_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2089. <mask fill="white" id="u23692_img_cl3782">
  2090. <path d="M 12.555338541666666 15.722005208333334 C 12.629557291666666 15.647786458333334 12.666666666666666 15.552951388888888 12.666666666666666 15.4375 L 12.666666666666666 13.458333333333332 C 12.666666666666666 13.342881944444445 12.629557291666666 13.248046875 12.555338541666666 13.173828125 C 12.481119791666666 13.099609375 12.386284722222221 13.0625 12.270833333333334 13.0625 L 11.083333333333334 13.0625 L 11.083333333333334 6.729166666666666 C 11.083333333333334 6.613715277777778 11.046223958333334 6.518880208333334 10.972005208333334 6.444661458333334 C 10.897786458333334 6.370442708333334 10.80295138888889 6.333333333333334 10.6875 6.333333333333334 L 6.729166666666667 6.333333333333334 C 6.6137152777777795 6.333333333333334 6.518880208333333 6.370442708333334 6.444661458333333 6.444661458333334 C 6.370442708333333 6.518880208333334 6.333333333333333 6.613715277777778 6.333333333333333 6.729166666666666 L 6.333333333333333 8.708333333333334 C 6.333333333333333 8.823784722222221 6.370442708333333 8.918619791666666 6.444661458333333 8.992838541666666 C 6.518880208333333 9.067057291666666 6.6137152777777795 9.104166666666666 6.729166666666667 9.104166666666666 L 7.916666666666667 9.104166666666666 L 7.916666666666667 13.0625 L 6.729166666666667 13.0625 C 6.6137152777777795 13.0625 6.518880208333333 13.099609375 6.444661458333333 13.173828125 C 6.370442708333333 13.248046875 6.333333333333333 13.342881944444445 6.333333333333333 13.458333333333332 L 6.333333333333333 15.4375 C 6.333333333333333 15.552951388888888 6.370442708333333 15.647786458333334 6.444661458333333 15.722005208333334 C 6.518880208333333 15.796223958333334 6.6137152777777795 15.833333333333334 6.729166666666667 15.833333333333334 L 12.270833333333334 15.833333333333334 C 12.386284722222221 15.833333333333334 12.481119791666666 15.796223958333334 12.555338541666666 15.722005208333334 Z M 10.972005208333334 4.638671875 C 11.046223958333334 4.564453125 11.083333333333334 4.469618055555554 11.083333333333334 4.354166666666666 L 11.083333333333334 2.375 C 11.083333333333334 2.25954861111111 11.046223958333334 2.164713541666666 10.972005208333334 2.090494791666666 C 10.897786458333334 2.016276041666666 10.80295138888889 1.979166666666666 10.6875 1.979166666666666 L 8.3125 1.979166666666666 C 8.197048611111112 1.979166666666666 8.102213541666668 2.016276041666666 8.027994791666668 2.090494791666666 C 7.953776041666667 2.164713541666666 7.916666666666667 2.25954861111111 7.916666666666667 2.375 L 7.916666666666667 4.354166666666666 C 7.916666666666667 4.469618055555554 7.953776041666667 4.564453125 8.027994791666668 4.638671875 C 8.102213541666668 4.712890625 8.197048611111112 4.75 8.3125 4.75 L 10.6875 4.75 C 10.80295138888889 4.75 10.897786458333334 4.712890625 10.972005208333334 4.638671875 Z M 17.725911458333336 4.7314453125 C 18.575303819444443 6.186957465277776 19 7.776475694444442 19 9.5 C 19 11.223524305555555 18.575303819444443 12.81304253472222 17.725911458333336 14.2685546875 C 16.876519097222225 15.724066840277779 15.724066840277779 16.87651909722222 14.2685546875 17.725911458333336 C 12.813042534722225 18.575303819444446 11.223524305555555 19 9.5 19 C 7.776475694444445 19 6.186957465277778 18.575303819444446 4.7314453125 17.725911458333336 C 3.2759331597222223 16.87651909722222 2.123480902777778 15.724066840277779 1.2740885416666667 14.2685546875 C 0.42469618055555547 12.81304253472222 0 11.223524305555555 0 9.5 C 0 7.776475694444442 0.42469618055555547 6.186957465277776 1.2740885416666667 4.7314453125 C 2.123480902777778 3.275933159722222 3.2759331597222223 2.123480902777776 4.7314453125 1.274088541666666 C 6.186957465277778 0.4246961805555539 7.776475694444445 0 9.5 0 C 11.223524305555555 0 12.813042534722225 0.4246961805555539 14.2685546875 1.274088541666666 C 15.724066840277779 2.123480902777776 16.876519097222225 3.275933159722222 17.725911458333336 4.7314453125 Z " fill-rule="evenodd" />
  2091. </mask>
  2092. </defs>
  2093. <g transform="matrix(1 0 0 1 -987 -174 )">
  2094. <path d="M 12.555338541666666 15.722005208333334 C 12.629557291666666 15.647786458333334 12.666666666666666 15.552951388888888 12.666666666666666 15.4375 L 12.666666666666666 13.458333333333332 C 12.666666666666666 13.342881944444445 12.629557291666666 13.248046875 12.555338541666666 13.173828125 C 12.481119791666666 13.099609375 12.386284722222221 13.0625 12.270833333333334 13.0625 L 11.083333333333334 13.0625 L 11.083333333333334 6.729166666666666 C 11.083333333333334 6.613715277777778 11.046223958333334 6.518880208333334 10.972005208333334 6.444661458333334 C 10.897786458333334 6.370442708333334 10.80295138888889 6.333333333333334 10.6875 6.333333333333334 L 6.729166666666667 6.333333333333334 C 6.6137152777777795 6.333333333333334 6.518880208333333 6.370442708333334 6.444661458333333 6.444661458333334 C 6.370442708333333 6.518880208333334 6.333333333333333 6.613715277777778 6.333333333333333 6.729166666666666 L 6.333333333333333 8.708333333333334 C 6.333333333333333 8.823784722222221 6.370442708333333 8.918619791666666 6.444661458333333 8.992838541666666 C 6.518880208333333 9.067057291666666 6.6137152777777795 9.104166666666666 6.729166666666667 9.104166666666666 L 7.916666666666667 9.104166666666666 L 7.916666666666667 13.0625 L 6.729166666666667 13.0625 C 6.6137152777777795 13.0625 6.518880208333333 13.099609375 6.444661458333333 13.173828125 C 6.370442708333333 13.248046875 6.333333333333333 13.342881944444445 6.333333333333333 13.458333333333332 L 6.333333333333333 15.4375 C 6.333333333333333 15.552951388888888 6.370442708333333 15.647786458333334 6.444661458333333 15.722005208333334 C 6.518880208333333 15.796223958333334 6.6137152777777795 15.833333333333334 6.729166666666667 15.833333333333334 L 12.270833333333334 15.833333333333334 C 12.386284722222221 15.833333333333334 12.481119791666666 15.796223958333334 12.555338541666666 15.722005208333334 Z M 10.972005208333334 4.638671875 C 11.046223958333334 4.564453125 11.083333333333334 4.469618055555554 11.083333333333334 4.354166666666666 L 11.083333333333334 2.375 C 11.083333333333334 2.25954861111111 11.046223958333334 2.164713541666666 10.972005208333334 2.090494791666666 C 10.897786458333334 2.016276041666666 10.80295138888889 1.979166666666666 10.6875 1.979166666666666 L 8.3125 1.979166666666666 C 8.197048611111112 1.979166666666666 8.102213541666668 2.016276041666666 8.027994791666668 2.090494791666666 C 7.953776041666667 2.164713541666666 7.916666666666667 2.25954861111111 7.916666666666667 2.375 L 7.916666666666667 4.354166666666666 C 7.916666666666667 4.469618055555554 7.953776041666667 4.564453125 8.027994791666668 4.638671875 C 8.102213541666668 4.712890625 8.197048611111112 4.75 8.3125 4.75 L 10.6875 4.75 C 10.80295138888889 4.75 10.897786458333334 4.712890625 10.972005208333334 4.638671875 Z M 17.725911458333336 4.7314453125 C 18.575303819444443 6.186957465277776 19 7.776475694444442 19 9.5 C 19 11.223524305555555 18.575303819444443 12.81304253472222 17.725911458333336 14.2685546875 C 16.876519097222225 15.724066840277779 15.724066840277779 16.87651909722222 14.2685546875 17.725911458333336 C 12.813042534722225 18.575303819444446 11.223524305555555 19 9.5 19 C 7.776475694444445 19 6.186957465277778 18.575303819444446 4.7314453125 17.725911458333336 C 3.2759331597222223 16.87651909722222 2.123480902777778 15.724066840277779 1.2740885416666667 14.2685546875 C 0.42469618055555547 12.81304253472222 0 11.223524305555555 0 9.5 C 0 7.776475694444442 0.42469618055555547 6.186957465277776 1.2740885416666667 4.7314453125 C 2.123480902777778 3.275933159722222 3.2759331597222223 2.123480902777776 4.7314453125 1.274088541666666 C 6.186957465277778 0.4246961805555539 7.776475694444445 0 9.5 0 C 11.223524305555555 0 12.813042534722225 0.4246961805555539 14.2685546875 1.274088541666666 C 15.724066840277779 2.123480902777776 16.876519097222225 3.275933159722222 17.725911458333336 4.7314453125 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 987 174 )" class="fill" />
  2095. <path d="M 12.555338541666666 15.722005208333334 C 12.629557291666666 15.647786458333334 12.666666666666666 15.552951388888888 12.666666666666666 15.4375 L 12.666666666666666 13.458333333333332 C 12.666666666666666 13.342881944444445 12.629557291666666 13.248046875 12.555338541666666 13.173828125 C 12.481119791666666 13.099609375 12.386284722222221 13.0625 12.270833333333334 13.0625 L 11.083333333333334 13.0625 L 11.083333333333334 6.729166666666666 C 11.083333333333334 6.613715277777778 11.046223958333334 6.518880208333334 10.972005208333334 6.444661458333334 C 10.897786458333334 6.370442708333334 10.80295138888889 6.333333333333334 10.6875 6.333333333333334 L 6.729166666666667 6.333333333333334 C 6.6137152777777795 6.333333333333334 6.518880208333333 6.370442708333334 6.444661458333333 6.444661458333334 C 6.370442708333333 6.518880208333334 6.333333333333333 6.613715277777778 6.333333333333333 6.729166666666666 L 6.333333333333333 8.708333333333334 C 6.333333333333333 8.823784722222221 6.370442708333333 8.918619791666666 6.444661458333333 8.992838541666666 C 6.518880208333333 9.067057291666666 6.6137152777777795 9.104166666666666 6.729166666666667 9.104166666666666 L 7.916666666666667 9.104166666666666 L 7.916666666666667 13.0625 L 6.729166666666667 13.0625 C 6.6137152777777795 13.0625 6.518880208333333 13.099609375 6.444661458333333 13.173828125 C 6.370442708333333 13.248046875 6.333333333333333 13.342881944444445 6.333333333333333 13.458333333333332 L 6.333333333333333 15.4375 C 6.333333333333333 15.552951388888888 6.370442708333333 15.647786458333334 6.444661458333333 15.722005208333334 C 6.518880208333333 15.796223958333334 6.6137152777777795 15.833333333333334 6.729166666666667 15.833333333333334 L 12.270833333333334 15.833333333333334 C 12.386284722222221 15.833333333333334 12.481119791666666 15.796223958333334 12.555338541666666 15.722005208333334 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 987 174 )" class="stroke" mask="url(#u23692_img_cl3782)" />
  2096. <path d="M 10.972005208333334 4.638671875 C 11.046223958333334 4.564453125 11.083333333333334 4.469618055555554 11.083333333333334 4.354166666666666 L 11.083333333333334 2.375 C 11.083333333333334 2.25954861111111 11.046223958333334 2.164713541666666 10.972005208333334 2.090494791666666 C 10.897786458333334 2.016276041666666 10.80295138888889 1.979166666666666 10.6875 1.979166666666666 L 8.3125 1.979166666666666 C 8.197048611111112 1.979166666666666 8.102213541666668 2.016276041666666 8.027994791666668 2.090494791666666 C 7.953776041666667 2.164713541666666 7.916666666666667 2.25954861111111 7.916666666666667 2.375 L 7.916666666666667 4.354166666666666 C 7.916666666666667 4.469618055555554 7.953776041666667 4.564453125 8.027994791666668 4.638671875 C 8.102213541666668 4.712890625 8.197048611111112 4.75 8.3125 4.75 L 10.6875 4.75 C 10.80295138888889 4.75 10.897786458333334 4.712890625 10.972005208333334 4.638671875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 987 174 )" class="stroke" mask="url(#u23692_img_cl3782)" />
  2097. <path d="M 17.725911458333336 4.7314453125 C 18.575303819444443 6.186957465277776 19 7.776475694444442 19 9.5 C 19 11.223524305555555 18.575303819444443 12.81304253472222 17.725911458333336 14.2685546875 C 16.876519097222225 15.724066840277779 15.724066840277779 16.87651909722222 14.2685546875 17.725911458333336 C 12.813042534722225 18.575303819444446 11.223524305555555 19 9.5 19 C 7.776475694444445 19 6.186957465277778 18.575303819444446 4.7314453125 17.725911458333336 C 3.2759331597222223 16.87651909722222 2.123480902777778 15.724066840277779 1.2740885416666667 14.2685546875 C 0.42469618055555547 12.81304253472222 0 11.223524305555555 0 9.5 C 0 7.776475694444442 0.42469618055555547 6.186957465277776 1.2740885416666667 4.7314453125 C 2.123480902777778 3.275933159722222 3.2759331597222223 2.123480902777776 4.7314453125 1.274088541666666 C 6.186957465277778 0.4246961805555539 7.776475694444445 0 9.5 0 C 11.223524305555555 0 12.813042534722225 0.4246961805555539 14.2685546875 1.274088541666666 C 15.724066840277779 2.123480902777776 16.876519097222225 3.275933159722222 17.725911458333336 4.7314453125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 987 174 )" class="stroke" mask="url(#u23692_img_cl3782)" />
  2098. </g>
  2099. </svg>
  2100. <div id="u23692_text" class="text " style="display:none; visibility: hidden">
  2101. <p></p>
  2102. </div>
  2103. </div>
  2104. <!-- Unnamed (Group) -->
  2105. <div id="u23693" class="ax_default" data-left="757" data-top="16" data-width="460" data-height="140" layer-opacity="1">
  2106. <!-- Unnamed (Rectangle) -->
  2107. <div id="u23694" class="ax_default shape transition">
  2108. <div id="u23694_div" class=""></div>
  2109. <div id="u23694_text" class="text " style="display:none; visibility: hidden">
  2110. <p></p>
  2111. </div>
  2112. </div>
  2113. <!-- Unnamed (Rectangle) -->
  2114. <div id="u23695" class="ax_default paragraph transition">
  2115. <div id="u23695_div" class=""></div>
  2116. <div id="u23695_text" class="text ">
  2117. <p><span>批量制卡流程:</span></p><p><span>1、选择多个房屋;</span></p><p><span>2、设置批量制卡通行权限范围;</span></p><p><span>3、点击「批量制卡」;</span></p><p><span>4、设置每个房屋需要制卡数量;</span></p><p><span>5、将实体卡片放置读卡器上,系统按顺序一个一个房屋完成制卡。</span></p><p><span>6、中途若退出,再次批量制卡,将根据设置制卡数量和已制卡数量自动处理。</span></p>
  2118. </div>
  2119. </div>
  2120. </div>
  2121. <!-- Unnamed (Rectangle) -->
  2122. <div id="u23696" class="ax_default box_1 transition">
  2123. <div id="u23696_div" class=""></div>
  2124. <div id="u23696_text" class="text ">
  2125. <p><span>默认头像设置</span></p>
  2126. </div>
  2127. </div>
  2128. <!-- Unnamed (Group) -->
  2129. <div id="u23697" class="ax_default" data-left="1623" data-top="71" data-width="580" data-height="283" layer-opacity="1">
  2130. <!-- Unnamed (Rectangle) -->
  2131. <div id="u23698" class="ax_default shape transition">
  2132. <div id="u23698_div" class=""></div>
  2133. <div id="u23698_text" class="text " style="display:none; visibility: hidden">
  2134. <p></p>
  2135. </div>
  2136. </div>
  2137. <!-- Unnamed (Rectangle) -->
  2138. <div id="u23699" class="ax_default paragraph transition">
  2139. <div id="u23699_div" class=""></div>
  2140. <div id="u23699_text" class="text ">
  2141. <p><span>建议使用通用照片。</span></p>
  2142. </div>
  2143. </div>
  2144. <!-- Unnamed (Rectangle) -->
  2145. <div id="u23700" class="ax_default paragraph transition">
  2146. <div id="u23700_div" class=""></div>
  2147. <div id="u23700_text" class="text ">
  2148. <p><span>预先制卡时,若设备需下发人脸照片,则自动下发默认头像</span></p>
  2149. </div>
  2150. </div>
  2151. <!-- Unnamed (Rectangle) -->
  2152. <div id="u23701" class="ax_default shape transition">
  2153. <div id="u23701_div" class=""></div>
  2154. <div id="u23701_text" class="text ">
  2155. <p><span>确定</span></p>
  2156. </div>
  2157. </div>
  2158. <!-- Unnamed (Rectangle) -->
  2159. <div id="u23702" class="ax_default shape transition">
  2160. <div id="u23702_div" class=""></div>
  2161. <div id="u23702_text" class="text ">
  2162. <p><span>取 消</span></p>
  2163. </div>
  2164. </div>
  2165. <!-- Unnamed (Rectangle) -->
  2166. <div id="u23703" class="ax_default box_1 transition">
  2167. <svg data="images/预先制卡/u23703.svg" id="u23703_img" class="img generatedImage">
  2168. <defs>
  2169. <pattern id="u23703_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2170. <mask fill="white" id="u23703_img_cl3783">
  2171. <path d="M 0 96 L 0 4 C 0 1.7599999999999998 1.7599999999999998 0 4 0 L 96 0 C 98.24000000000001 0 100 1.7599999999999998 100 4 L 100 96 C 100 98.24000000000001 98.24000000000001 100 96 100 L 4 100 C 1.7599999999999998 100 0 98.24000000000001 0 96 Z " fill-rule="evenodd" />
  2172. </mask>
  2173. </defs>
  2174. <g transform="matrix(1 0 0 1 -1652 -180 )">
  2175. <path d="M 0 96 L 0 4 C 0 1.7599999999999998 1.7599999999999998 0 4 0 L 96 0 C 98.24000000000001 0 100 1.7599999999999998 100 4 L 100 96 C 100 98.24000000000001 98.24000000000001 100 96 100 L 4 100 C 1.7599999999999998 100 0 98.24000000000001 0 96 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 1652 180 )" class="fill" />
  2176. <path d="M 0 96 L 0 4 C 0 1.7599999999999998 1.7599999999999998 0 4 0 L 96 0 C 98.24000000000001 0 100 1.7599999999999998 100 4 L 100 96 C 100 98.24000000000001 98.24000000000001 100 96 100 L 4 100 C 1.7599999999999998 100 0 98.24000000000001 0 96 Z " stroke-width="2" stroke-dasharray="9,4" stroke="rgba(170, 170, 170, 1)" fill="none" transform="matrix(1 0 0 1 1652 180 )" class="stroke" mask="url(#u23703_img_cl3783)" />
  2177. </g>
  2178. </svg>
  2179. <div id="u23703_text" class="text ">
  2180. <p style="font-size:14px;"><span style="font-family:&quot;PingFangSC-Medium&quot;, &quot;PingFang SC Medium&quot;, &quot;PingFang SC&quot;, sans-serif;font-weight:500;font-size:38px;">+</span></p><p style="font-size:14px;"><span style="font-family:&quot;PingFangSC-Regular&quot;, &quot;PingFang SC&quot;, sans-serif;font-weight:400;">上传照片</span></p>
  2181. </div>
  2182. </div>
  2183. </div>
  2184. <!-- Unnamed (Image) -->
  2185. <div id="u23704" class="ax_default image1 transition">
  2186. <img id="u23704_img" class="img " src="images/预先制卡/u23704.png"/>
  2187. <div id="u23704_text" class="text " style="display:none; visibility: hidden">
  2188. <p></p>
  2189. </div>
  2190. </div>
  2191. </div>
  2192. <script src="resources/scripts/axure/ios.js"></script>
  2193. </body>
  2194. </html>