123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>预先制卡</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
- <link href="data/styles.css" type="text/css" rel="stylesheet"/>
- <link href="files/预先制卡/styles.css" type="text/css" rel="stylesheet"/>
- <link href="https://fonts.googleapis.com" rel="preconnect"/>
- <link href="https://fonts.gstatic.com" rel="preconnect"/>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
- <script src="resources/scripts/jquery-3.7.1.min.js"></script>
- <script src="resources/scripts/axure/axQuery.js"></script>
- <script src="resources/scripts/axure/globals.js"></script>
- <script src="resources/scripts/axutils.js"></script>
- <script src="resources/scripts/axure/annotation.js"></script>
- <script src="resources/scripts/axure/axQuery.std.js"></script>
- <script src="resources/scripts/axure/doc.js"></script>
- <script src="resources/scripts/messagecenter.js"></script>
- <script src="resources/scripts/axure/events.js"></script>
- <script src="resources/scripts/axure/recording.js"></script>
- <script src="resources/scripts/axure/action.js"></script>
- <script src="resources/scripts/axure/expr.js"></script>
- <script src="resources/scripts/axure/geometry.js"></script>
- <script src="resources/scripts/axure/flyout.js"></script>
- <script src="resources/scripts/axure/model.js"></script>
- <script src="resources/scripts/axure/repeater.js"></script>
- <script src="resources/scripts/axure/sto.js"></script>
- <script src="resources/scripts/axure/utils.temp.js"></script>
- <script src="resources/scripts/axure/variables.js"></script>
- <script src="resources/scripts/axure/drag.js"></script>
- <script src="resources/scripts/axure/move.js"></script>
- <script src="resources/scripts/axure/visibility.js"></script>
- <script src="resources/scripts/axure/style.js"></script>
- <script src="resources/scripts/axure/adaptive.js"></script>
- <script src="resources/scripts/axure/tree.js"></script>
- <script src="resources/scripts/axure/init.temp.js"></script>
- <script src="resources/scripts/axure/legacy.js"></script>
- <script src="resources/scripts/axure/viewer.js"></script>
- <script src="resources/scripts/axure/math.js"></script>
- <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
- <script src="data/document.js"></script>
- <script src="files/预先制卡/data.js"></script>
- <script type="text/javascript">
- $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
- $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
- $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
- </script>
- </head>
- <body>
- <div id="base" class="">
- <!-- Unnamed (客户管理端-一级) -->
- <div id="u23475" class="nopointer ax_default">
- <!-- Unnamed (Rectangle) -->
- <div id="u23476" class="ax_default box_2 transition">
- <div id="u23476_div" class=""></div>
- <div id="u23476_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23477" class="ax_default label transition">
- <div id="u23477_div" class=""></div>
- <div id="u23477_text" class="text ">
- <p><span>课后延时慧学平台</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23478" class="ax_default box_2 transition">
- <div id="u23478_div" class=""></div>
- <div id="u23478_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23479" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
- <!-- Unnamed (Ellipse) -->
- <div id="u23480" class="ax_default ellipse transition">
- <svg data="images/pc网页端/u5.svg" id="u23480_img" class="img generatedImage">
- <defs>
- <pattern id="u23480_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23480_img_cl2539">
- <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -19 -10 )">
- <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
- <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u23480_img_cl2539)" />
- </g>
- </svg>
- <div id="u23480_text" class="text ">
- <p><span>logo</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23481" class="ax_default label transition">
- <div id="u23481_div" class=""></div>
- <div id="u23481_text" class="text ">
- <p><span>保利智慧社区管理平台</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23482" class="ax_default box_2 transition">
- <div id="u23482_div" class=""></div>
- <div id="u23482_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23483" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23484" class="ax_default label transition">
- <div id="u23484_div" class=""></div>
- <div id="u23484_text" class="text ">
- <p><span>项目</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23485" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23485.svg" id="u23485_img" class="img generatedImage">
- <defs>
- <pattern id="u23485_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23485_img_cl3769">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -175 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u23485_img_cl3769)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
- </g>
- </svg>
- <div id="u23485_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23486" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23487" class="ax_default label transition">
- <div id="u23487_div" class=""></div>
- <div id="u23487_text" class="text ">
- <p><span>企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23488" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23488.svg" id="u23488_img" class="img generatedImage">
- <defs>
- <pattern id="u23488_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23488_img_cl3770">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -385 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u23488_img_cl3770)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
- </g>
- </svg>
- <div id="u23488_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23489" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23490" class="ax_default label transition">
- <div id="u23490_div" class=""></div>
- <div id="u23490_text" class="text ">
- <p><span>可视化</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23491" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23491.svg" id="u23491_img" class="img generatedImage">
- <defs>
- <pattern id="u23491_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23491_img_cl3771">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -137 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u23491_img_cl3771)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
- </g>
- </svg>
- <div id="u23491_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23492" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23493" class="ax_default label transition">
- <div id="u23493_div" class=""></div>
- <div id="u23493_text" class="text ">
- <p><span>标签</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23494" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23494.svg" id="u23494_img" class="img generatedImage">
- <defs>
- <pattern id="u23494_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23494_img_cl3772">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -427 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u23494_img_cl3772)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
- </g>
- </svg>
- <div id="u23494_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23495" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23496" class="ax_default label transition">
- <div id="u23496_div" class=""></div>
- <div id="u23496_text" class="text ">
- <p><span>财务</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23497" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23497.svg" id="u23497_img" class="img generatedImage">
- <defs>
- <pattern id="u23497_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23497_img_cl3773">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -301 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u23497_img_cl3773)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
- </g>
- </svg>
- <div id="u23497_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23498" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23499" class="ax_default label transition">
- <div id="u23499_div" class=""></div>
- <div id="u23499_text" class="text ">
- <p><span>空间</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23500" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23500.svg" id="u23500_img" class="img generatedImage">
- <defs>
- <pattern id="u23500_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23500_img_cl3774">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -217 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u23500_img_cl3774)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
- </g>
- </svg>
- <div id="u23500_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23501" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23502" class="ax_default label transition">
- <div id="u23502_div" class=""></div>
- <div id="u23502_text" class="text ">
- <p><span>办公</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23503" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23503.svg" id="u23503_img" class="img generatedImage">
- <defs>
- <pattern id="u23503_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23503_img_cl3775">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -343 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u23503_img_cl3775)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
- </g>
- </svg>
- <div id="u23503_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23504" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23505" class="ax_default label transition">
- <div id="u23505_div" class=""></div>
- <div id="u23505_text" class="text ">
- <p><span>系统</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23506" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23506.svg" id="u23506_img" class="img generatedImage">
- <defs>
- <pattern id="u23506_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23506_img_cl3776">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -469 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u23506_img_cl3776)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
- </g>
- </svg>
- <div id="u23506_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23507" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23508" class="ax_default label transition">
- <div id="u23508_div" class=""></div>
- <div id="u23508_text" class="text ">
- <p><span>消息</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23509" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23509.svg" id="u23509_img" class="img generatedImage">
- <defs>
- <pattern id="u23509_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23509_img_cl3777">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1144 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u23509_img_cl3777)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
- </g>
- </svg>
- <div id="u23509_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23510" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23511" class="ax_default label transition">
- <div id="u23511_div" class=""></div>
- <div id="u23511_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23512" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23512.svg" id="u23512_img" class="img generatedImage">
- <defs>
- <pattern id="u23512_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23512_img_cl3778">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1186 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u23512_img_cl3778)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
- </g>
- </svg>
- <div id="u23512_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23513" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23514" class="ax_default label transition">
- <div id="u23514_div" class=""></div>
- <div id="u23514_text" class="text ">
- <p><span>收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23515" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23515.svg" id="u23515_img" class="img generatedImage">
- <defs>
- <pattern id="u23515_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23515_img_cl3779">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -259 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u23515_img_cl3779)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
- </g>
- </svg>
- <div id="u23515_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23516" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
- <!-- Unnamed (Droplist) -->
- <div id="u23517" class="ax_default droplist transition">
- <div id="u23517_div" class=""></div>
- <select id="u23517_input" class="u23517_input">
- <option class="u23517_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
- </select>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23518" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23518.svg" id="u23518_img" class="img generatedImage">
- <defs>
- <pattern id="u23518_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23518_img_cl3780">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1194 -14 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u23518_img_cl3780)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
- </g>
- </svg>
- <div id="u23518_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23519" class="ax_default label transition">
- <div id="u23519_div" class=""></div>
- <div id="u23519_text" class="text ">
- <p><span>进入运营后台</span></p>
- </div>
- </div>
- <!-- Unnamed (Vertical line) -->
- <div id="u23520" class="ax_default line1 transition">
- <svg data="images/pc网页端/u45.svg" id="u23520_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1452 -19 )">
- <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
- </g>
- </svg>
- <div id="u23520_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23521" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23522" class="ax_default label transition">
- <div id="u23522_div" class=""></div>
- <div id="u23522_text" class="text ">
- <p><span>应用</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u23523" class="ax_default placeholder transition">
- <svg data="images/预先制卡/u23523.svg" id="u23523_img" class="img generatedImage">
- <defs>
- <pattern id="u23523_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23523_img_cl3781">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1081 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u23523_img_cl3781)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
- </g>
- </svg>
- <div id="u23523_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u23524" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u23524_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
- </g>
- </svg>
- <div id="u23524_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u23525" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u23525_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
- </g>
- </svg>
- <div id="u23525_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u23526" class="ax_default line1 transition">
- <svg data="images/pc网页端/u51.svg" id="u23526_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -112 )">
- <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
- </g>
- </svg>
- <div id="u23526_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23527" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23528" class="ax_default label transition">
- <div id="u23528_div" class=""></div>
- <div id="u23528_text" class="text ">
- <p><span>主页</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23529" class="ax_default icon transition">
- <svg data="images/pc网页端/u54.svg" id="u23529_img" class="img generatedImage">
- <defs>
- <pattern id="u23529_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23529_img_cl2553">
- <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -75 )">
- <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
- <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u23529_img_cl2553)" />
- <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)" />
- </g>
- </svg>
- <div id="u23529_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23530" class="ax_default box_1 transition">
- <div id="u23530_div" class=""></div>
- <div id="u23530_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23531" class="ax_default paragraph transition">
- <div id="u23531_div" class=""></div>
- <div id="u23531_text" class="text ">
- <p><span>卡授权对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23532" class="ax_default" data-left="348" data-top="268" data-width="782" data-height="328" layer-opacity="1">
- <!-- Unnamed (Table) -->
- <div id="u23533" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23534" class="ax_default table_cell transition">
- <svg data="images/微信认证用户_1/u14432.svg" id="u23534_img" class="img generatedImage" viewbox="0 0 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23534_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23535" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23535.svg" id="u23535_img" class="img generatedImage" viewbox="71 0 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23535_text" class="text ">
- <p><span>楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23536" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23536.svg" id="u23536_img" class="img generatedImage" viewbox="209 0 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23536_text" class="text ">
- <p><span>单元</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23537" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23537.svg" id="u23537_img" class="img generatedImage" viewbox="352 0 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23537_text" class="text ">
- <p><span>房屋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23538" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23538.svg" id="u23538_img" class="img generatedImage" viewbox="495 0 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23538_text" class="text ">
- <p><span>发卡状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23539" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23539.svg" id="u23539_img" class="img generatedImage" viewbox="648 0 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23539_text" class="text ">
- <p><span>发卡数量</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23540" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23540.svg" id="u23540_img" class="img generatedImage" viewbox="0 30 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23540_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23541" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23541.svg" id="u23541_img" class="img generatedImage" viewbox="71 30 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23541_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23542" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23542.svg" id="u23542_img" class="img generatedImage" viewbox="209 30 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23542_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23543" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23543.svg" id="u23543_img" class="img generatedImage" viewbox="352 30 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23543_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23544" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23544.svg" id="u23544_img" class="img generatedImage" viewbox="495 30 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23544_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23545" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23545.svg" id="u23545_img" class="img generatedImage" viewbox="648 30 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23545_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23546" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23546.svg" id="u23546_img" class="img generatedImage" viewbox="0 60 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23546_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23547" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23547.svg" id="u23547_img" class="img generatedImage" viewbox="71 60 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23547_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23548" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23548.svg" id="u23548_img" class="img generatedImage" viewbox="209 60 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23548_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23549" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23549.svg" id="u23549_img" class="img generatedImage" viewbox="352 60 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23549_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23550" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23550.svg" id="u23550_img" class="img generatedImage" viewbox="495 60 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23550_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23551" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23551.svg" id="u23551_img" class="img generatedImage" viewbox="648 60 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23551_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23552" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23552.svg" id="u23552_img" class="img generatedImage" viewbox="0 90 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23552_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23553" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23553.svg" id="u23553_img" class="img generatedImage" viewbox="71 90 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23553_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23554" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23554.svg" id="u23554_img" class="img generatedImage" viewbox="209 90 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23554_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23555" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23555.svg" id="u23555_img" class="img generatedImage" viewbox="352 90 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23555_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23556" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23556.svg" id="u23556_img" class="img generatedImage" viewbox="495 90 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23556_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23557" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23557.svg" id="u23557_img" class="img generatedImage" viewbox="648 90 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23557_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23558" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23558.svg" id="u23558_img" class="img generatedImage" viewbox="0 120 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23558_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23559" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23559.svg" id="u23559_img" class="img generatedImage" viewbox="71 120 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23559_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23560" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23560.svg" id="u23560_img" class="img generatedImage" viewbox="209 120 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23560_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23561" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23561.svg" id="u23561_img" class="img generatedImage" viewbox="352 120 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23561_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23562" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23562.svg" id="u23562_img" class="img generatedImage" viewbox="495 120 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23562_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23563" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23563.svg" id="u23563_img" class="img generatedImage" viewbox="648 120 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23563_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23564" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23564.svg" id="u23564_img" class="img generatedImage" viewbox="0 150 71 28">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23564_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23565" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23565.svg" id="u23565_img" class="img generatedImage" viewbox="71 150 138 28">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23565_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23566" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23566.svg" id="u23566_img" class="img generatedImage" viewbox="209 150 143 28">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23566_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23567" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23567.svg" id="u23567_img" class="img generatedImage" viewbox="352 150 143 28">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23567_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23568" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23568.svg" id="u23568_img" class="img generatedImage" viewbox="495 150 153 28">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23568_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23569" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23569.svg" id="u23569_img" class="img generatedImage" viewbox="648 150 134 28">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23569_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23570" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23570.svg" id="u23570_img" class="img generatedImage" viewbox="0 178 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23570_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23571" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23571.svg" id="u23571_img" class="img generatedImage" viewbox="71 178 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23571_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23572" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23572.svg" id="u23572_img" class="img generatedImage" viewbox="209 178 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23572_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23573" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23573.svg" id="u23573_img" class="img generatedImage" viewbox="352 178 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23573_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23574" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23574.svg" id="u23574_img" class="img generatedImage" viewbox="495 178 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23574_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23575" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23575.svg" id="u23575_img" class="img generatedImage" viewbox="648 178 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23575_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23576" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23576.svg" id="u23576_img" class="img generatedImage" viewbox="0 208 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23576_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23577" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23577.svg" id="u23577_img" class="img generatedImage" viewbox="71 208 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23577_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23578" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23578.svg" id="u23578_img" class="img generatedImage" viewbox="209 208 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23578_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23579" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23579.svg" id="u23579_img" class="img generatedImage" viewbox="352 208 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23579_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23580" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23580.svg" id="u23580_img" class="img generatedImage" viewbox="495 208 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23580_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23581" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23581.svg" id="u23581_img" class="img generatedImage" viewbox="648 208 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23581_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23582" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23582.svg" id="u23582_img" class="img generatedImage" viewbox="0 238 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23582_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23583" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23583.svg" id="u23583_img" class="img generatedImage" viewbox="71 238 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23583_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23584" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23584.svg" id="u23584_img" class="img generatedImage" viewbox="209 238 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23584_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23585" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23585.svg" id="u23585_img" class="img generatedImage" viewbox="352 238 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23585_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23586" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23586.svg" id="u23586_img" class="img generatedImage" viewbox="495 238 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23586_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23587" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23587.svg" id="u23587_img" class="img generatedImage" viewbox="648 238 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23587_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23588" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23588.svg" id="u23588_img" class="img generatedImage" viewbox="0 268 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23588_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23589" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23589.svg" id="u23589_img" class="img generatedImage" viewbox="71 268 138 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23589_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23590" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23590.svg" id="u23590_img" class="img generatedImage" viewbox="209 268 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23590_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23591" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23591.svg" id="u23591_img" class="img generatedImage" viewbox="352 268 143 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23591_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23592" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23592.svg" id="u23592_img" class="img generatedImage" viewbox="495 268 153 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23592_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23593" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23593.svg" id="u23593_img" class="img generatedImage" viewbox="648 268 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23593_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23594" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23594.svg" id="u23594_img" class="img generatedImage" viewbox="0 298 71 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23594_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23595" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23595.svg" id="u23595_img" class="img generatedImage" viewbox="71 298 138 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23595_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23596" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23596.svg" id="u23596_img" class="img generatedImage" viewbox="209 298 143 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23596_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23597" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23597.svg" id="u23597_img" class="img generatedImage" viewbox="352 298 143 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23597_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23598" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23598.svg" id="u23598_img" class="img generatedImage" viewbox="495 298 153 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23598_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23599" class="ax_default table_cell transition">
- <svg data="images/预先制卡/u23599.svg" id="u23599_img" class="img generatedImage" viewbox="648 298 134 30">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23599_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23600" class="ax_default checkbox selected">
- <label id="u23600_input_label" for="u23600_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23600.svg" id="u23600_img" class="img " viewbox="366 307 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23600_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </label>
- <input id="u23600_input" type="checkbox" value="checkbox" checked/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23601" class="ax_default paragraph transition">
- <div id="u23601_div" class=""></div>
- <div id="u23601_text" class="text ">
- <p><span>预先制卡</span></p>
- </div>
- </div>
- <!-- Unnamed (客户-智慧通行卡) -->
- <div id="u23602" class="nopointer ax_default">
- <!-- Unnamed (Group) -->
- <div id="u23603" class="ax_default" data-left="120" data-top="50" data-width="200" data-height="1193" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23604" class="ax_default box_2 transition">
- <div id="u23604_div" class=""></div>
- <div id="u23604_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23605" class="ax_default label transition">
- <div id="u23605_div" class=""></div>
- <div id="u23605_text" class="text ">
- <p><span>通行卡管理</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23606" class="ax_default label transition">
- <div id="u23606_div" class=""></div>
- <div id="u23606_text" class="text ">
- <p><span>人员制卡</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23607" class="ax_default label transition">
- <div id="u23607_div" class=""></div>
- <div id="u23607_text" class="text ">
- <p><span>通行卡管理</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u23608" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u23608_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
- </g>
- </svg>
- <div id="u23608_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23609" class="ax_default label transition">
- <div id="u23609_div" class=""></div>
- <div id="u23609_text" class="text ">
- <p><span>挂失解挂</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23610" class="ax_default label transition">
- <div id="u23610_div" class=""></div>
- <div id="u23610_text" class="text ">
- <p><span>发卡记录</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23611" class="ax_default label transition">
- <div id="u23611_div" class=""></div>
- <div id="u23611_text" class="text ">
- <p><span>记录统计</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23612" class="ax_default label transition">
- <div id="u23612_div" class=""></div>
- <div id="u23612_text" class="text ">
- <p><span>挂失记录</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u23613" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u23613_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
- </g>
- </svg>
- <div id="u23613_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23614" class="ax_default label transition">
- <div id="u23614_div" class=""></div>
- <div id="u23614_text" class="text ">
- <p><span>发卡器</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23615" class="ax_default label transition">
- <div id="u23615_div" class=""></div>
- <div id="u23615_text" class="text ">
- <p><span>发卡设备</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23616" class="ax_default label transition">
- <div id="u23616_div" class=""></div>
- <div id="u23616_text" class="text ">
- <p><span>卡片权限</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23617" class="ax_default label transition">
- <div id="u23617_div" class=""></div>
- <div id="u23617_text" class="text ">
- <p><span>刷卡记录</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23618" class="ax_default label transition">
- <div id="u23618_div" class=""></div>
- <div id="u23618_text" class="text ">
- <p><span>预先制卡</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23619" class="ax_default paragraph transition">
- <div id="u23619_div" class=""></div>
- <div id="u23619_text" class="text ">
- <p><span>实体卡内码:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23620" class="ax_default" data-left="726" data-top="695" data-width="240" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23621" class="ax_default box_1 transition">
- <div id="u23621_div" class=""></div>
- <div id="u23621_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Text field) -->
- <div id="u23622" class="ax_default text_field transition">
- <div id="u23622_div" class=""></div>
- <input id="u23622_input" type="text" value="显示读取到的实体卡内码" class="u23622_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23623" class="ax_default box_1 transition">
- <div id="u23623_div" class=""></div>
- <div id="u23623_text" class="text ">
- <p><span>读卡</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23624" class="ax_default paragraph transition">
- <div id="u23624_div" class=""></div>
- <div id="u23624_text" class="text ">
- <p><span>通行卡配置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23625" class="ax_default box_1 transition">
- <div id="u23625_div" class=""></div>
- <div id="u23625_text" class="text ">
- <p><span>1</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23626" class="ax_default box_1 transition">
- <div id="u23626_div" class=""></div>
- <div id="u23626_text" class="text ">
- <p><span>4</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23627" class="ax_default paragraph transition">
- <div id="u23627_div" class=""></div>
- <div id="u23627_text" class="text ">
- <p><span>卡号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23628" class="ax_default" data-left="391" data-top="695" data-width="240" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23629" class="ax_default box_1 transition">
- <div id="u23629_div" class=""></div>
- <div id="u23629_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Text field) -->
- <div id="u23630" class="ax_default text_field transition">
- <div id="u23630_div" class=""></div>
- <input id="u23630_input" type="text" value="系统自动创建/识别" class="u23630_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23631" class="ax_default paragraph transition">
- <div id="u23631_div" class=""></div>
- <div id="u23631_text" class="text ">
- <p><span style="color:#7F7F7F;">(若房屋不存在,请前往</span><span style="color:#555555;">「空间建设」</span><span style="color:#7F7F7F;">先登记房屋信息)</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23632" class="ax_default paragraph transition">
- <div id="u23632_div" class=""></div>
- <div id="u23632_text" class="text ">
- <p><span>此处在房屋业主人员信息未登记到系统之前,按房屋为业主人员制卡。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23633" class="ax_default shape transition">
- <div id="u23633_div" class=""></div>
- <div id="u23633_text" class="text ">
- <p><span>未识别到卡片,请将实体卡放置发卡器设备上</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23634" class="ax_default paragraph transition">
- <div id="u23634_div" class=""></div>
- <div id="u23634_text" class="text ">
- <p><span>点击「读卡」时,若未获取到实体卡信息,提示:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23635" class="ax_default" data-left="947" data-top="218" data-width="124" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23636" class="ax_default box_1 transition">
- <div id="u23636_div" class=""></div>
- <div id="u23636_text" class="text ">
- <p><span>查询</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23637" class="ax_default box_1 transition">
- <div id="u23637_div" class=""></div>
- <div id="u23637_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23638" class="ax_default" data-left="348" data-top="218" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23639" class="ax_default box_1 transition">
- <div id="u23639_div" class=""></div>
- <div id="u23639_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23640" class="ax_default droplist transition">
- <div id="u23640_div" class=""></div>
- <select id="u23640_input" class="u23640_input">
- <option class="u23640_input_option" value="项目">项目</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23641" class="ax_default" data-left="498" data-top="218" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23642" class="ax_default box_1 transition">
- <div id="u23642_div" class=""></div>
- <div id="u23642_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23643" class="ax_default droplist transition">
- <div id="u23643_div" class=""></div>
- <select id="u23643_input" class="u23643_input">
- <option class="u23643_input_option" value="楼栋">楼栋</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23644" class="ax_default" data-left="648" data-top="218" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23645" class="ax_default box_1 transition">
- <div id="u23645_div" class=""></div>
- <div id="u23645_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23646" class="ax_default droplist transition">
- <div id="u23646_div" class=""></div>
- <select id="u23646_input" class="u23646_input">
- <option class="u23646_input_option" value="单元">单元</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23647" class="ax_default" data-left="798" data-top="218" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23648" class="ax_default box_1 transition">
- <div id="u23648_div" class=""></div>
- <div id="u23648_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23649" class="ax_default droplist transition">
- <div id="u23649_div" class=""></div>
- <select id="u23649_input" class="u23649_input">
- <option class="u23649_input_option" value="房屋">房屋</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23650" class="ax_default" data-left="1156" data-top="178" data-width="395" data-height="843" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23651" class="ax_default paragraph transition">
- <div id="u23651_div" class=""></div>
- <div id="u23651_text" class="text ">
- <p><span>卡通行权限</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23652" class="ax_default box_1 transition">
- <div id="u23652_div" class=""></div>
- <div id="u23652_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23653" class="ax_default checkbox">
- <label id="u23653_input_label" for="u23653_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23653.svg" id="u23653_img" class="img " viewbox="1192 356 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23653_text" class="text ">
- <p><span>门禁分组</span></p>
- </div>
- </label>
- <input id="u23653_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23654" class="ax_default checkbox selected">
- <label id="u23654_input_label" for="u23654_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23654.svg" id="u23654_img" class="img " viewbox="1211 385 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23654_text" class="text ">
- <p><span>门禁点1</span></p>
- </div>
- </label>
- <input id="u23654_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23655" class="ax_default checkbox selected">
- <label id="u23655_input_label" for="u23655_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23655.svg" id="u23655_img" class="img " viewbox="1211 413 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23655_text" class="text ">
- <p><span>门禁点2</span></p>
- </div>
- </label>
- <input id="u23655_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23656" class="ax_default checkbox">
- <label id="u23656_input_label" for="u23656_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23656.svg" id="u23656_img" class="img " viewbox="1192 441 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23656_text" class="text ">
- <p><span>门禁分组</span></p>
- </div>
- </label>
- <input id="u23656_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23657" class="ax_default checkbox selected">
- <label id="u23657_input_label" for="u23657_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23657.svg" id="u23657_img" class="img " viewbox="1211 470 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23657_text" class="text ">
- <p><span>门禁点1</span></p>
- </div>
- </label>
- <input id="u23657_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23658" class="ax_default checkbox selected">
- <label id="u23658_input_label" for="u23658_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23658.svg" id="u23658_img" class="img " viewbox="1211 498 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23658_text" class="text ">
- <p><span>门禁点2</span></p>
- </div>
- </label>
- <input id="u23658_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23659" class="ax_default checkbox">
- <label id="u23659_input_label" for="u23659_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23659.svg" id="u23659_img" class="img " viewbox="1192 526 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23659_text" class="text ">
- <p><span>门禁分组</span></p>
- </div>
- </label>
- <input id="u23659_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23660" class="ax_default checkbox">
- <label id="u23660_input_label" for="u23660_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23660.svg" id="u23660_img" class="img " viewbox="1211 555 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23660_text" class="text ">
- <p><span>门禁点1</span></p>
- </div>
- </label>
- <input id="u23660_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23661" class="ax_default checkbox">
- <label id="u23661_input_label" for="u23661_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23661.svg" id="u23661_img" class="img " viewbox="1211 583 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23661_text" class="text ">
- <p><span>门禁点2</span></p>
- </div>
- </label>
- <input id="u23661_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23662" class="ax_default checkbox">
- <label id="u23662_input_label" for="u23662_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23662.svg" id="u23662_img" class="img " viewbox="1390 356 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23662_text" class="text ">
- <p><span>电梯分组</span></p>
- </div>
- </label>
- <input id="u23662_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23663" class="ax_default checkbox selected">
- <label id="u23663_input_label" for="u23663_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23663.svg" id="u23663_img" class="img " viewbox="1409 385 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23663_text" class="text ">
- <p><span>电梯点1</span></p>
- </div>
- </label>
- <input id="u23663_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23664" class="ax_default checkbox selected">
- <label id="u23664_input_label" for="u23664_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23664.svg" id="u23664_img" class="img " viewbox="1409 413 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23664_text" class="text ">
- <p><span>电梯点2</span></p>
- </div>
- </label>
- <input id="u23664_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23665" class="ax_default checkbox">
- <label id="u23665_input_label" for="u23665_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23665.svg" id="u23665_img" class="img " viewbox="1390 441 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23665_text" class="text ">
- <p><span>电梯分组</span></p>
- </div>
- </label>
- <input id="u23665_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23666" class="ax_default checkbox">
- <label id="u23666_input_label" for="u23666_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23666.svg" id="u23666_img" class="img " viewbox="1409 470 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23666_text" class="text ">
- <p><span>电梯点1</span></p>
- </div>
- </label>
- <input id="u23666_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23667" class="ax_default checkbox">
- <label id="u23667_input_label" for="u23667_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23667.svg" id="u23667_img" class="img " viewbox="1409 498 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23667_text" class="text ">
- <p><span>电梯点2</span></p>
- </div>
- </label>
- <input id="u23667_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23668" class="ax_default checkbox">
- <label id="u23668_input_label" for="u23668_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23668.svg" id="u23668_img" class="img " viewbox="1390 526 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23668_text" class="text ">
- <p><span>电梯分组</span></p>
- </div>
- </label>
- <input id="u23668_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23669" class="ax_default checkbox">
- <label id="u23669_input_label" for="u23669_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23669.svg" id="u23669_img" class="img " viewbox="1409 555 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23669_text" class="text ">
- <p><span>电梯点1</span></p>
- </div>
- </label>
- <input id="u23669_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23670" class="ax_default checkbox">
- <label id="u23670_input_label" for="u23670_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23670.svg" id="u23670_img" class="img " viewbox="1409 583 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23670_text" class="text ">
- <p><span>电梯点2</span></p>
- </div>
- </label>
- <input id="u23670_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23671" class="ax_default box_1 transition">
- <div id="u23671_div" class=""></div>
- <div id="u23671_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23672" class="ax_default" data-left="1176" data-top="251" data-width="350" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23673" class="ax_default shape transition">
- <div id="u23673_div" class=""></div>
- <div id="u23673_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23674" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23674_div" class=""></div>
- <input id="u23674_input" type="text" value="" class="u23674_input"/>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u23675" class="ax_default image transition">
- <img id="u23675_img" class="img " src="images/预先制卡/u23675.png"/>
- <div id="u23675_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23676" class="ax_default shape transition">
- <div id="u23676_div" class=""></div>
- <div id="u23676_text" class="text ">
- <p><span>门禁</span><span>点</span></p>
- </div>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23677" class="ax_default checkbox">
- <label id="u23677_input_label" for="u23677_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23677.svg" id="u23677_img" class="img " viewbox="1291 320 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23677_text" class="text ">
- <p><span>全部</span></p>
- </div>
- </label>
- <input id="u23677_input" type="checkbox" value="checkbox"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23678" class="ax_default shape transition">
- <div id="u23678_div" class=""></div>
- <div id="u23678_text" class="text ">
- <p><span>电梯点</span></p>
- </div>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23679" class="ax_default checkbox">
- <label id="u23679_input_label" for="u23679_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23679.svg" id="u23679_img" class="img " viewbox="1481 320 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23679_text" class="text ">
- <p><span>全部</span></p>
- </div>
- </label>
- <input id="u23679_input" type="checkbox" value="checkbox"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23680" class="ax_default box_1 transition">
- <div id="u23680_div" class=""></div>
- <div id="u23680_text" class="text ">
- <p><span>2</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23681" class="ax_default paragraph transition">
- <div id="u23681_div" class=""></div>
- <div id="u23681_text" class="text ">
- <p><span>通行授权</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23682" class="ax_default box_1 transition">
- <div id="u23682_div" class=""></div>
- <div id="u23682_text" class="text ">
- <p><span>制卡</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23683" class="ax_default paragraph transition">
- <div id="u23683_div" class=""></div>
- <div id="u23683_text" class="text ">
- <p><span>授权有效期限:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23684" class="ax_default" data-left="454" data-top="825" data-width="400" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23685" class="ax_default box_1 transition">
- <div id="u23685_div" class=""></div>
- <div id="u23685_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23686" class="ax_default droplist transition">
- <div id="u23686_div" class=""></div>
- <select id="u23686_input" class="u23686_input">
- <option class="u23686_input_option" value="开始时间-结束有效期">开始时间-结束有效期</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Checkbox) -->
- <div id="u23687" class="ax_default checkbox selected">
- <label id="u23687_input_label" for="u23687_input" style="position: absolute; left: 0px;">
- <svg data="images/预先制卡/u23687.svg" id="u23687_img" class="img " viewbox="868 839 12 12">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u23687_text" class="text ">
- <p><span>长期有效</span></p>
- </div>
- </label>
- <input id="u23687_input" type="checkbox" value="checkbox" checked/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23688" class="ax_default shape transition">
- <div id="u23688_div" class=""></div>
- <div id="u23688_text" class="text ">
- <p><span>请先选择房屋和通行权限</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23689" class="ax_default paragraph transition">
- <div id="u23689_div" class=""></div>
- <div id="u23689_text" class="text ">
- <p><span>点击「发卡」时,若若未绑定房屋或授权通过内心的,提示:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23690" class="ax_default box_1 transition">
- <div id="u23690_div" class=""></div>
- <div id="u23690_text" class="text ">
- <p><span>批量制卡</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23691" class="ax_default box_1 transition">
- <div id="u23691_div" class=""></div>
- <div id="u23691_text" class="text ">
- <p><span>3</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23692" class="ax_default icon transition">
- <svg data="images/预先制卡/u23692.svg" id="u23692_img" class="img generatedImage">
- <defs>
- <pattern id="u23692_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23692_img_cl3782">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -987 -174 )">
- <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" />
- <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)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u23692_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23693" class="ax_default" data-left="757" data-top="16" data-width="460" data-height="140" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23694" class="ax_default shape transition">
- <div id="u23694_div" class=""></div>
- <div id="u23694_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23695" class="ax_default paragraph transition">
- <div id="u23695_div" class=""></div>
- <div id="u23695_text" class="text ">
- <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>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23696" class="ax_default box_1 transition">
- <div id="u23696_div" class=""></div>
- <div id="u23696_text" class="text ">
- <p><span>默认头像设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23697" class="ax_default" data-left="1623" data-top="71" data-width="580" data-height="283" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23698" class="ax_default shape transition">
- <div id="u23698_div" class=""></div>
- <div id="u23698_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23699" class="ax_default paragraph transition">
- <div id="u23699_div" class=""></div>
- <div id="u23699_text" class="text ">
- <p><span>建议使用通用照片。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23700" class="ax_default paragraph transition">
- <div id="u23700_div" class=""></div>
- <div id="u23700_text" class="text ">
- <p><span>预先制卡时,若设备需下发人脸照片,则自动下发默认头像</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23701" class="ax_default shape transition">
- <div id="u23701_div" class=""></div>
- <div id="u23701_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23702" class="ax_default shape transition">
- <div id="u23702_div" class=""></div>
- <div id="u23702_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23703" class="ax_default box_1 transition">
- <svg data="images/预先制卡/u23703.svg" id="u23703_img" class="img generatedImage">
- <defs>
- <pattern id="u23703_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23703_img_cl3783">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1652 -180 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u23703_text" class="text ">
- <p style="font-size:14px;"><span style="font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;font-weight:500;font-size:38px;">+</span></p><p style="font-size:14px;"><span style="font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;font-weight:400;">上传照片</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u23704" class="ax_default image1 transition">
- <img id="u23704_img" class="img " src="images/预先制卡/u23704.png"/>
- <div id="u23704_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|