骑手快递员.html 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>骑手快递员</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/骑手快递员/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/骑手快递员/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (客户管理端-一级) -->
  54. <div id="u15960" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u15961" class="ax_default box_2 transition">
  57. <div id="u15961_div" class=""></div>
  58. <div id="u15961_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u15962" class="ax_default label transition">
  64. <div id="u15962_div" class=""></div>
  65. <div id="u15962_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u15963" class="ax_default box_2 transition">
  71. <div id="u15963_div" class=""></div>
  72. <div id="u15963_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u15964" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u15965" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u15965_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u15965_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u15965_img_cl2539">
  84. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
  85. </mask>
  86. </defs>
  87. <g transform="matrix(1 0 0 1 -19 -10 )">
  88. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
  89. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u15965_img_cl2539)" />
  90. </g>
  91. </svg>
  92. <div id="u15965_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u15966" class="ax_default label transition">
  98. <div id="u15966_div" class=""></div>
  99. <div id="u15966_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u15967" class="ax_default box_2 transition">
  106. <div id="u15967_div" class=""></div>
  107. <div id="u15967_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u15968" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u15969" class="ax_default label transition">
  115. <div id="u15969_div" class=""></div>
  116. <div id="u15969_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u15970" class="ax_default placeholder transition">
  122. <svg data="images/骑手快递员/u15970.svg" id="u15970_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u15970_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u15970_img_cl3566">
  126. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  127. </mask>
  128. </defs>
  129. <g transform="matrix(1 0 0 1 -20 -175 )">
  130. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
  131. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u15970_img_cl3566)" />
  132. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
  133. </g>
  134. </svg>
  135. <div id="u15970_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u15971" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u15972" class="ax_default label transition">
  144. <div id="u15972_div" class=""></div>
  145. <div id="u15972_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u15973" class="ax_default placeholder transition">
  151. <svg data="images/骑手快递员/u15973.svg" id="u15973_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u15973_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u15973_img_cl3567">
  155. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  156. </mask>
  157. </defs>
  158. <g transform="matrix(1 0 0 1 -20 -385 )">
  159. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
  160. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u15973_img_cl3567)" />
  161. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
  162. </g>
  163. </svg>
  164. <div id="u15973_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u15974" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u15975" class="ax_default label transition">
  173. <div id="u15975_div" class=""></div>
  174. <div id="u15975_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u15976" class="ax_default placeholder transition">
  180. <svg data="images/骑手快递员/u15976.svg" id="u15976_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u15976_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u15976_img_cl3568">
  184. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  185. </mask>
  186. </defs>
  187. <g transform="matrix(1 0 0 1 -20 -137 )">
  188. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
  189. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u15976_img_cl3568)" />
  190. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
  191. </g>
  192. </svg>
  193. <div id="u15976_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u15977" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u15978" class="ax_default label transition">
  202. <div id="u15978_div" class=""></div>
  203. <div id="u15978_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u15979" class="ax_default placeholder transition">
  209. <svg data="images/骑手快递员/u15979.svg" id="u15979_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u15979_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u15979_img_cl3569">
  213. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  214. </mask>
  215. </defs>
  216. <g transform="matrix(1 0 0 1 -20 -427 )">
  217. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
  218. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u15979_img_cl3569)" />
  219. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
  220. </g>
  221. </svg>
  222. <div id="u15979_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u15980" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u15981" class="ax_default label transition">
  231. <div id="u15981_div" class=""></div>
  232. <div id="u15981_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u15982" class="ax_default placeholder transition">
  238. <svg data="images/骑手快递员/u15982.svg" id="u15982_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u15982_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u15982_img_cl3570">
  242. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  243. </mask>
  244. </defs>
  245. <g transform="matrix(1 0 0 1 -20 -301 )">
  246. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
  247. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u15982_img_cl3570)" />
  248. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
  249. </g>
  250. </svg>
  251. <div id="u15982_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u15983" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u15984" class="ax_default label transition">
  260. <div id="u15984_div" class=""></div>
  261. <div id="u15984_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u15985" class="ax_default placeholder transition">
  267. <svg data="images/骑手快递员/u15985.svg" id="u15985_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u15985_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u15985_img_cl3571">
  271. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  272. </mask>
  273. </defs>
  274. <g transform="matrix(1 0 0 1 -20 -217 )">
  275. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
  276. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u15985_img_cl3571)" />
  277. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
  278. </g>
  279. </svg>
  280. <div id="u15985_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u15986" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u15987" class="ax_default label transition">
  289. <div id="u15987_div" class=""></div>
  290. <div id="u15987_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u15988" class="ax_default placeholder transition">
  296. <svg data="images/骑手快递员/u15988.svg" id="u15988_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u15988_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u15988_img_cl3572">
  300. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  301. </mask>
  302. </defs>
  303. <g transform="matrix(1 0 0 1 -20 -343 )">
  304. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
  305. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u15988_img_cl3572)" />
  306. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
  307. </g>
  308. </svg>
  309. <div id="u15988_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u15989" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u15990" class="ax_default label transition">
  318. <div id="u15990_div" class=""></div>
  319. <div id="u15990_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u15991" class="ax_default placeholder transition">
  325. <svg data="images/骑手快递员/u15991.svg" id="u15991_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u15991_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u15991_img_cl3573">
  329. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  330. </mask>
  331. </defs>
  332. <g transform="matrix(1 0 0 1 -20 -469 )">
  333. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
  334. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u15991_img_cl3573)" />
  335. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
  336. </g>
  337. </svg>
  338. <div id="u15991_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u15992" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u15993" class="ax_default label transition">
  347. <div id="u15993_div" class=""></div>
  348. <div id="u15993_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u15994" class="ax_default placeholder transition">
  354. <svg data="images/骑手快递员/u15994.svg" id="u15994_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u15994_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u15994_img_cl3574">
  358. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  359. </mask>
  360. </defs>
  361. <g transform="matrix(1 0 0 1 -20 -1144 )">
  362. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
  363. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u15994_img_cl3574)" />
  364. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
  365. </g>
  366. </svg>
  367. <div id="u15994_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u15995" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u15996" class="ax_default label transition">
  376. <div id="u15996_div" class=""></div>
  377. <div id="u15996_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u15997" class="ax_default placeholder transition">
  383. <svg data="images/骑手快递员/u15997.svg" id="u15997_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u15997_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u15997_img_cl3575">
  387. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  388. </mask>
  389. </defs>
  390. <g transform="matrix(1 0 0 1 -20 -1186 )">
  391. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
  392. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u15997_img_cl3575)" />
  393. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
  394. </g>
  395. </svg>
  396. <div id="u15997_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u15998" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u15999" class="ax_default label transition">
  405. <div id="u15999_div" class=""></div>
  406. <div id="u15999_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u16000" class="ax_default placeholder transition">
  412. <svg data="images/骑手快递员/u16000.svg" id="u16000_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u16000_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u16000_img_cl3576">
  416. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  417. </mask>
  418. </defs>
  419. <g transform="matrix(1 0 0 1 -20 -259 )">
  420. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
  421. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u16000_img_cl3576)" />
  422. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
  423. </g>
  424. </svg>
  425. <div id="u16000_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u16001" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u16002" class="ax_default droplist transition">
  434. <div id="u16002_div" class=""></div>
  435. <select id="u16002_input" class="u16002_input">
  436. <option class="u16002_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u16003" class="ax_default placeholder transition">
  441. <svg data="images/骑手快递员/u16003.svg" id="u16003_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u16003_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u16003_img_cl3577">
  445. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  446. </mask>
  447. </defs>
  448. <g transform="matrix(1 0 0 1 -1194 -14 )">
  449. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
  450. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u16003_img_cl3577)" />
  451. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
  452. </g>
  453. </svg>
  454. <div id="u16003_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u16004" class="ax_default label transition">
  460. <div id="u16004_div" class=""></div>
  461. <div id="u16004_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u16005" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u16005_img" class="img generatedImage">
  468. <g transform="matrix(1 0 0 1 -1452 -19 )">
  469. <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
  470. </g>
  471. </svg>
  472. <div id="u16005_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u16006" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u16007" class="ax_default label transition">
  481. <div id="u16007_div" class=""></div>
  482. <div id="u16007_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u16008" class="ax_default placeholder transition">
  488. <svg data="images/骑手快递员/u16008.svg" id="u16008_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u16008_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u16008_img_cl3578">
  492. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  493. </mask>
  494. </defs>
  495. <g transform="matrix(1 0 0 1 -20 -1081 )">
  496. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
  497. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u16008_img_cl3578)" />
  498. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
  499. </g>
  500. </svg>
  501. <div id="u16008_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u16009" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u16009_img" class="img generatedImage">
  509. <g transform="matrix(1 0 0 1 -20 -1123 )">
  510. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  511. </g>
  512. </svg>
  513. <div id="u16009_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u16010" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u16010_img" class="img generatedImage">
  520. <g transform="matrix(1 0 0 1 -20 -1123 )">
  521. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  522. </g>
  523. </svg>
  524. <div id="u16010_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u16011" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u16011_img" class="img generatedImage">
  531. <g transform="matrix(1 0 0 1 -20 -112 )">
  532. <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
  533. </g>
  534. </svg>
  535. <div id="u16011_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u16012" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u16013" class="ax_default label transition">
  543. <div id="u16013_div" class=""></div>
  544. <div id="u16013_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u16014" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u16014_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u16014_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u16014_img_cl2553">
  554. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
  555. </mask>
  556. </defs>
  557. <g transform="matrix(1 0 0 1 -20 -75 )">
  558. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
  559. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u16014_img_cl2553)" />
  560. <path d="M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u16014_img_cl2553)" />
  561. </g>
  562. </svg>
  563. <div id="u16014_text" class="text " style="display:none; visibility: hidden">
  564. <p></p>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <!-- Unnamed (Rectangle) -->
  570. <div id="u16015" class="ax_default box_2 transition">
  571. <div id="u16015_div" class=""></div>
  572. <div id="u16015_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Table) -->
  577. <div id="u16016" class="ax_default">
  578. <!-- Unnamed (Table cell) -->
  579. <div id="u16017" class="ax_default table_cell1 transition">
  580. <svg data="images/骑手快递员/u16017.svg" id="u16017_img" class="img generatedImage" viewbox="0 0 47 35">
  581. <path d="M 1 1 L 47 1 L 47 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  582. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  583. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  584. </svg>
  585. <div id="u16017_text" class="text ">
  586. <p><span>序号</span></p>
  587. </div>
  588. </div>
  589. <!-- Unnamed (Table cell) -->
  590. <div id="u16018" class="ax_default table_cell1 transition">
  591. <svg data="images/骑手快递员/u16018.svg" id="u16018_img" class="img generatedImage" viewbox="47 0 75 35">
  592. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 47 0 )" class="fill" />
  593. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 0 )" class="stroke" />
  594. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 0 )" class="stroke" />
  595. </svg>
  596. <div id="u16018_text" class="text ">
  597. <p><span>姓名</span></p>
  598. </div>
  599. </div>
  600. <!-- Unnamed (Table cell) -->
  601. <div id="u16019" class="ax_default table_cell1 transition">
  602. <svg data="images/骑手快递员/u16019.svg" id="u16019_img" class="img generatedImage" viewbox="122 0 75 35">
  603. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 122 0 )" class="fill" />
  604. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 0 )" class="stroke" />
  605. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 0 )" class="stroke" />
  606. </svg>
  607. <div id="u16019_text" class="text ">
  608. <p><span>人脸照片</span></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u16020" class="ax_default table_cell1 transition">
  613. <svg data="images/骑手快递员/u16020.svg" id="u16020_img" class="img generatedImage" viewbox="197 0 75 35">
  614. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 197 0 )" class="fill" />
  615. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 0 )" class="stroke" />
  616. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 0 )" class="stroke" />
  617. </svg>
  618. <div id="u16020_text" class="text ">
  619. <p><span>性别</span></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Table cell) -->
  623. <div id="u16021" class="ax_default table_cell1 transition">
  624. <svg data="images/骑手快递员/u16021.svg" id="u16021_img" class="img generatedImage" viewbox="272 0 75 35">
  625. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 272 0 )" class="fill" />
  626. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 0 )" class="stroke" />
  627. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 0 )" class="stroke" />
  628. </svg>
  629. <div id="u16021_text" class="text ">
  630. <p><span>证件类型</span></p>
  631. </div>
  632. </div>
  633. <!-- Unnamed (Table cell) -->
  634. <div id="u16022" class="ax_default table_cell1 transition">
  635. <svg data="images/骑手快递员/u16022.svg" id="u16022_img" class="img generatedImage" viewbox="347 0 75 35">
  636. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 347 0 )" class="fill" />
  637. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 0 )" class="stroke" />
  638. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 0 )" class="stroke" />
  639. </svg>
  640. <div id="u16022_text" class="text ">
  641. <p><span>证件号码</span></p>
  642. </div>
  643. </div>
  644. <!-- Unnamed (Table cell) -->
  645. <div id="u16023" class="ax_default table_cell1 transition">
  646. <svg data="images/骑手快递员/u16023.svg" id="u16023_img" class="img generatedImage" viewbox="422 0 75 35">
  647. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 422 0 )" class="fill" />
  648. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 0 )" class="stroke" />
  649. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 0 )" class="stroke" />
  650. </svg>
  651. <div id="u16023_text" class="text ">
  652. <p><span>手机号码</span></p>
  653. </div>
  654. </div>
  655. <!-- Unnamed (Table cell) -->
  656. <div id="u16024" class="ax_default table_cell1 transition">
  657. <svg data="images/骑手快递员/u16024.svg" id="u16024_img" class="img generatedImage" viewbox="497 0 95 35">
  658. <path d="M 1 1 L 95 1 L 95 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 497 0 )" class="fill" />
  659. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 0 )" class="stroke" />
  660. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 0 )" class="stroke" />
  661. </svg>
  662. <div id="u16024_text" class="text ">
  663. <p><span>微信用户账号</span></p>
  664. </div>
  665. </div>
  666. <!-- Unnamed (Table cell) -->
  667. <div id="u16025" class="ax_default table_cell1 transition">
  668. <svg data="images/骑手快递员/u16025.svg" id="u16025_img" class="img generatedImage" viewbox="592 0 76 35">
  669. <path d="M 1 1 L 76 1 L 76 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 592 0 )" class="fill" />
  670. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 0 )" class="stroke" />
  671. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 0 )" class="stroke" />
  672. </svg>
  673. <div id="u16025_text" class="text ">
  674. <p><span>认证平台</span></p>
  675. </div>
  676. </div>
  677. <!-- Unnamed (Table cell) -->
  678. <div id="u16026" class="ax_default table_cell1 transition">
  679. <svg data="images/骑手快递员/u16026.svg" id="u16026_img" class="img generatedImage" viewbox="668 0 75 35">
  680. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 668 0 )" class="fill" />
  681. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 0 )" class="stroke" />
  682. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 0 )" class="stroke" />
  683. </svg>
  684. <div id="u16026_text" class="text ">
  685. <p><span>授权范围</span></p>
  686. </div>
  687. </div>
  688. <!-- Unnamed (Table cell) -->
  689. <div id="u16027" class="ax_default table_cell1 transition">
  690. <svg data="images/骑手快递员/u16027.svg" id="u16027_img" class="img generatedImage" viewbox="743 0 75 35">
  691. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 743 0 )" class="fill" />
  692. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 0 )" class="stroke" />
  693. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 0 )" class="stroke" />
  694. </svg>
  695. <div id="u16027_text" class="text ">
  696. <p><span>授权有效期</span></p>
  697. </div>
  698. </div>
  699. <!-- Unnamed (Table cell) -->
  700. <div id="u16028" class="ax_default table_cell1 transition">
  701. <svg data="images/骑手快递员/u16028.svg" id="u16028_img" class="img generatedImage" viewbox="818 0 75 35">
  702. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 818 0 )" class="fill" />
  703. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 0 )" class="stroke" />
  704. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 0 )" class="stroke" />
  705. </svg>
  706. <div id="u16028_text" class="text ">
  707. <p><span>授权状态</span></p>
  708. </div>
  709. </div>
  710. <!-- Unnamed (Table cell) -->
  711. <div id="u16029" class="ax_default table_cell1 transition">
  712. <svg data="images/骑手快递员/u16029.svg" id="u16029_img" class="img generatedImage" viewbox="893 0 75 35">
  713. <path d="M 1 1 L 75 1 L 75 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 893 0 )" class="fill" />
  714. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 0 )" class="stroke" />
  715. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 0 )" class="stroke" />
  716. </svg>
  717. <div id="u16029_text" class="text ">
  718. <p><span>登记时间</span></p>
  719. </div>
  720. </div>
  721. <!-- Unnamed (Table cell) -->
  722. <div id="u16030" class="ax_default table_cell1 transition">
  723. <svg data="images/骑手快递员/u16030.svg" id="u16030_img" class="img generatedImage" viewbox="968 0 76 35">
  724. <path d="M 1 1 L 76 1 L 76 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 968 0 )" class="fill" />
  725. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 0 )" class="stroke" />
  726. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 0 )" class="stroke" />
  727. </svg>
  728. <div id="u16030_text" class="text ">
  729. <p><span>确认人员</span></p>
  730. </div>
  731. </div>
  732. <!-- Unnamed (Table cell) -->
  733. <div id="u16031" class="ax_default table_cell1 transition">
  734. <svg data="images/骑手快递员/u16031.svg" id="u16031_img" class="img generatedImage" viewbox="1044 0 76 35">
  735. <path d="M 1 1 L 76 1 L 76 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1044 0 )" class="fill" />
  736. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 0 )" class="stroke" />
  737. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 0 )" class="stroke" />
  738. </svg>
  739. <div id="u16031_text" class="text ">
  740. <p><span>确认时间</span></p>
  741. </div>
  742. </div>
  743. <!-- Unnamed (Table cell) -->
  744. <div id="u16032" class="ax_default table_cell1 transition">
  745. <svg data="images/骑手快递员/u16032.svg" id="u16032_img" class="img generatedImage" viewbox="1120 0 99 35">
  746. <path d="M 1 1 L 98 1 L 98 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1120 0 )" class="fill" />
  747. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 0 )" class="stroke" />
  748. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 0 )" class="stroke" />
  749. <path d="M 98.5 1 L 98.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 0 )" class="stroke" />
  750. </svg>
  751. <div id="u16032_text" class="text ">
  752. <p><span>操作</span></p>
  753. </div>
  754. </div>
  755. <!-- Unnamed (Table cell) -->
  756. <div id="u16033" class="ax_default table_cell1 transition">
  757. <svg data="images/骑手快递员/u16033.svg" id="u16033_img" class="img generatedImage" viewbox="0 35 47 47">
  758. <path d="M 1 1 L 47 1 L 47 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 35 )" class="fill" />
  759. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 35 )" class="stroke" />
  760. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 35 )" class="stroke" />
  761. </svg>
  762. <div id="u16033_text" class="text " style="display:none; visibility: hidden">
  763. <p></p>
  764. </div>
  765. </div>
  766. <!-- Unnamed (Table cell) -->
  767. <div id="u16034" class="ax_default table_cell1 transition">
  768. <svg data="images/骑手快递员/u16034.svg" id="u16034_img" class="img generatedImage" viewbox="47 35 75 47">
  769. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 35 )" class="fill" />
  770. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 35 )" class="stroke" />
  771. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 35 )" class="stroke" />
  772. </svg>
  773. <div id="u16034_text" class="text " style="display:none; visibility: hidden">
  774. <p></p>
  775. </div>
  776. </div>
  777. <!-- Unnamed (Table cell) -->
  778. <div id="u16035" class="ax_default table_cell1 transition">
  779. <svg data="images/骑手快递员/u16035.svg" id="u16035_img" class="img generatedImage" viewbox="122 35 75 47">
  780. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 35 )" class="fill" />
  781. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 35 )" class="stroke" />
  782. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 35 )" class="stroke" />
  783. </svg>
  784. <div id="u16035_text" class="text " style="display:none; visibility: hidden">
  785. <p></p>
  786. </div>
  787. </div>
  788. <!-- Unnamed (Table cell) -->
  789. <div id="u16036" class="ax_default table_cell1 transition">
  790. <svg data="images/骑手快递员/u16036.svg" id="u16036_img" class="img generatedImage" viewbox="197 35 75 47">
  791. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 35 )" class="fill" />
  792. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 35 )" class="stroke" />
  793. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 35 )" class="stroke" />
  794. </svg>
  795. <div id="u16036_text" class="text " style="display:none; visibility: hidden">
  796. <p></p>
  797. </div>
  798. </div>
  799. <!-- Unnamed (Table cell) -->
  800. <div id="u16037" class="ax_default table_cell1 transition">
  801. <svg data="images/骑手快递员/u16037.svg" id="u16037_img" class="img generatedImage" viewbox="272 35 75 47">
  802. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 35 )" class="fill" />
  803. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 35 )" class="stroke" />
  804. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 35 )" class="stroke" />
  805. </svg>
  806. <div id="u16037_text" class="text " style="display:none; visibility: hidden">
  807. <p></p>
  808. </div>
  809. </div>
  810. <!-- Unnamed (Table cell) -->
  811. <div id="u16038" class="ax_default table_cell1 transition">
  812. <svg data="images/骑手快递员/u16038.svg" id="u16038_img" class="img generatedImage" viewbox="347 35 75 47">
  813. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 35 )" class="fill" />
  814. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 35 )" class="stroke" />
  815. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 35 )" class="stroke" />
  816. </svg>
  817. <div id="u16038_text" class="text " style="display:none; visibility: hidden">
  818. <p></p>
  819. </div>
  820. </div>
  821. <!-- Unnamed (Table cell) -->
  822. <div id="u16039" class="ax_default table_cell1 transition">
  823. <svg data="images/骑手快递员/u16039.svg" id="u16039_img" class="img generatedImage" viewbox="422 35 75 47">
  824. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 35 )" class="fill" />
  825. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 35 )" class="stroke" />
  826. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 35 )" class="stroke" />
  827. </svg>
  828. <div id="u16039_text" class="text " style="display:none; visibility: hidden">
  829. <p></p>
  830. </div>
  831. </div>
  832. <!-- Unnamed (Table cell) -->
  833. <div id="u16040" class="ax_default table_cell1 transition">
  834. <svg data="images/骑手快递员/u16040.svg" id="u16040_img" class="img generatedImage" viewbox="497 35 95 47">
  835. <path d="M 1 1 L 95 1 L 95 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 35 )" class="fill" />
  836. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 35 )" class="stroke" />
  837. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 35 )" class="stroke" />
  838. </svg>
  839. <div id="u16040_text" class="text " style="display:none; visibility: hidden">
  840. <p></p>
  841. </div>
  842. </div>
  843. <!-- Unnamed (Table cell) -->
  844. <div id="u16041" class="ax_default table_cell1 transition">
  845. <svg data="images/骑手快递员/u16041.svg" id="u16041_img" class="img generatedImage" viewbox="592 35 76 47">
  846. <path d="M 1 1 L 76 1 L 76 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 35 )" class="fill" />
  847. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 35 )" class="stroke" />
  848. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 35 )" class="stroke" />
  849. </svg>
  850. <div id="u16041_text" class="text ">
  851. <p><span>未认证</span></p>
  852. </div>
  853. </div>
  854. <!-- Unnamed (Table cell) -->
  855. <div id="u16042" class="ax_default table_cell1 transition">
  856. <svg data="images/骑手快递员/u16042.svg" id="u16042_img" class="img generatedImage" viewbox="668 35 75 47">
  857. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 35 )" class="fill" />
  858. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 35 )" class="stroke" />
  859. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 35 )" class="stroke" />
  860. </svg>
  861. <div id="u16042_text" class="text " style="display:none; visibility: hidden">
  862. <p></p>
  863. </div>
  864. </div>
  865. <!-- Unnamed (Table cell) -->
  866. <div id="u16043" class="ax_default table_cell1 transition">
  867. <svg data="images/骑手快递员/u16043.svg" id="u16043_img" class="img generatedImage" viewbox="743 35 75 47">
  868. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 35 )" class="fill" />
  869. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 35 )" class="stroke" />
  870. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 35 )" class="stroke" />
  871. </svg>
  872. <div id="u16043_text" class="text " style="display:none; visibility: hidden">
  873. <p></p>
  874. </div>
  875. </div>
  876. <!-- Unnamed (Table cell) -->
  877. <div id="u16044" class="ax_default table_cell1 transition">
  878. <svg data="images/骑手快递员/u16044.svg" id="u16044_img" class="img generatedImage" viewbox="818 35 75 47">
  879. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 35 )" class="fill" />
  880. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 35 )" class="stroke" />
  881. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 35 )" class="stroke" />
  882. </svg>
  883. <div id="u16044_text" class="text ">
  884. <p><span>正常</span></p>
  885. </div>
  886. </div>
  887. <!-- Unnamed (Table cell) -->
  888. <div id="u16045" class="ax_default table_cell1 transition">
  889. <svg data="images/骑手快递员/u16045.svg" id="u16045_img" class="img generatedImage" viewbox="893 35 75 47">
  890. <path d="M 1 1 L 75 1 L 75 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 35 )" class="fill" />
  891. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 35 )" class="stroke" />
  892. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 35 )" class="stroke" />
  893. </svg>
  894. <div id="u16045_text" class="text " style="display:none; visibility: hidden">
  895. <p></p>
  896. </div>
  897. </div>
  898. <!-- Unnamed (Table cell) -->
  899. <div id="u16046" class="ax_default table_cell1 transition">
  900. <svg data="images/骑手快递员/u16046.svg" id="u16046_img" class="img generatedImage" viewbox="968 35 76 47">
  901. <path d="M 1 1 L 76 1 L 76 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 35 )" class="fill" />
  902. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 35 )" class="stroke" />
  903. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 35 )" class="stroke" />
  904. </svg>
  905. <div id="u16046_text" class="text " style="display:none; visibility: hidden">
  906. <p></p>
  907. </div>
  908. </div>
  909. <!-- Unnamed (Table cell) -->
  910. <div id="u16047" class="ax_default table_cell1 transition">
  911. <svg data="images/骑手快递员/u16047.svg" id="u16047_img" class="img generatedImage" viewbox="1044 35 76 47">
  912. <path d="M 1 1 L 76 1 L 76 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 35 )" class="fill" />
  913. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 35 )" class="stroke" />
  914. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 35 )" class="stroke" />
  915. </svg>
  916. <div id="u16047_text" class="text " style="display:none; visibility: hidden">
  917. <p></p>
  918. </div>
  919. </div>
  920. <!-- Unnamed (Table cell) -->
  921. <div id="u16048" class="ax_default table_cell1 transition">
  922. <svg data="images/骑手快递员/u16048.svg" id="u16048_img" class="img generatedImage" viewbox="1120 35 99 47">
  923. <path d="M 1 1 L 98 1 L 98 47 L 1 47 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 35 )" class="fill" />
  924. <path d="M 0.5 1 L 0.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 35 )" class="stroke" />
  925. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 35 )" class="stroke" />
  926. <path d="M 98.5 1 L 98.5 47 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 35 )" class="stroke" />
  927. </svg>
  928. <div id="u16048_text" class="text ">
  929. <p><span>通过&nbsp; 驳回</span></p>
  930. </div>
  931. </div>
  932. <!-- Unnamed (Table cell) -->
  933. <div id="u16049" class="ax_default table_cell1 transition">
  934. <svg data="images/骑手快递员/u16049.svg" id="u16049_img" class="img generatedImage" viewbox="0 82 47 44">
  935. <path d="M 1 1 L 47 1 L 47 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 82 )" class="fill" />
  936. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 82 )" class="stroke" />
  937. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 82 )" class="stroke" />
  938. </svg>
  939. <div id="u16049_text" class="text " style="display:none; visibility: hidden">
  940. <p></p>
  941. </div>
  942. </div>
  943. <!-- Unnamed (Table cell) -->
  944. <div id="u16050" class="ax_default table_cell1 transition">
  945. <svg data="images/骑手快递员/u16050.svg" id="u16050_img" class="img generatedImage" viewbox="47 82 75 44">
  946. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 82 )" class="fill" />
  947. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 82 )" class="stroke" />
  948. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 82 )" class="stroke" />
  949. </svg>
  950. <div id="u16050_text" class="text " style="display:none; visibility: hidden">
  951. <p></p>
  952. </div>
  953. </div>
  954. <!-- Unnamed (Table cell) -->
  955. <div id="u16051" class="ax_default table_cell1 transition">
  956. <svg data="images/骑手快递员/u16051.svg" id="u16051_img" class="img generatedImage" viewbox="122 82 75 44">
  957. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 82 )" class="fill" />
  958. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 82 )" class="stroke" />
  959. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 82 )" class="stroke" />
  960. </svg>
  961. <div id="u16051_text" class="text " style="display:none; visibility: hidden">
  962. <p></p>
  963. </div>
  964. </div>
  965. <!-- Unnamed (Table cell) -->
  966. <div id="u16052" class="ax_default table_cell1 transition">
  967. <svg data="images/骑手快递员/u16052.svg" id="u16052_img" class="img generatedImage" viewbox="197 82 75 44">
  968. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 82 )" class="fill" />
  969. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 82 )" class="stroke" />
  970. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 82 )" class="stroke" />
  971. </svg>
  972. <div id="u16052_text" class="text " style="display:none; visibility: hidden">
  973. <p></p>
  974. </div>
  975. </div>
  976. <!-- Unnamed (Table cell) -->
  977. <div id="u16053" class="ax_default table_cell1 transition">
  978. <svg data="images/骑手快递员/u16053.svg" id="u16053_img" class="img generatedImage" viewbox="272 82 75 44">
  979. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 82 )" class="fill" />
  980. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 82 )" class="stroke" />
  981. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 82 )" class="stroke" />
  982. </svg>
  983. <div id="u16053_text" class="text " style="display:none; visibility: hidden">
  984. <p></p>
  985. </div>
  986. </div>
  987. <!-- Unnamed (Table cell) -->
  988. <div id="u16054" class="ax_default table_cell1 transition">
  989. <svg data="images/骑手快递员/u16054.svg" id="u16054_img" class="img generatedImage" viewbox="347 82 75 44">
  990. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 82 )" class="fill" />
  991. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 82 )" class="stroke" />
  992. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 82 )" class="stroke" />
  993. </svg>
  994. <div id="u16054_text" class="text " style="display:none; visibility: hidden">
  995. <p></p>
  996. </div>
  997. </div>
  998. <!-- Unnamed (Table cell) -->
  999. <div id="u16055" class="ax_default table_cell1 transition">
  1000. <svg data="images/骑手快递员/u16055.svg" id="u16055_img" class="img generatedImage" viewbox="422 82 75 44">
  1001. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 82 )" class="fill" />
  1002. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 82 )" class="stroke" />
  1003. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 82 )" class="stroke" />
  1004. </svg>
  1005. <div id="u16055_text" class="text " style="display:none; visibility: hidden">
  1006. <p></p>
  1007. </div>
  1008. </div>
  1009. <!-- Unnamed (Table cell) -->
  1010. <div id="u16056" class="ax_default table_cell1 transition">
  1011. <svg data="images/骑手快递员/u16056.svg" id="u16056_img" class="img generatedImage" viewbox="497 82 95 44">
  1012. <path d="M 1 1 L 95 1 L 95 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 82 )" class="fill" />
  1013. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 82 )" class="stroke" />
  1014. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 82 )" class="stroke" />
  1015. </svg>
  1016. <div id="u16056_text" class="text " style="display:none; visibility: hidden">
  1017. <p></p>
  1018. </div>
  1019. </div>
  1020. <!-- Unnamed (Table cell) -->
  1021. <div id="u16057" class="ax_default table_cell1 transition">
  1022. <svg data="images/骑手快递员/u16057.svg" id="u16057_img" class="img generatedImage" viewbox="592 82 76 44">
  1023. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 82 )" class="fill" />
  1024. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 82 )" class="stroke" />
  1025. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 82 )" class="stroke" />
  1026. </svg>
  1027. <div id="u16057_text" class="text ">
  1028. <p><span>饿了么</span></p>
  1029. </div>
  1030. </div>
  1031. <!-- Unnamed (Table cell) -->
  1032. <div id="u16058" class="ax_default table_cell1 transition">
  1033. <svg data="images/骑手快递员/u16058.svg" id="u16058_img" class="img generatedImage" viewbox="668 82 75 44">
  1034. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 82 )" class="fill" />
  1035. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 82 )" class="stroke" />
  1036. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 82 )" class="stroke" />
  1037. </svg>
  1038. <div id="u16058_text" class="text " style="display:none; visibility: hidden">
  1039. <p></p>
  1040. </div>
  1041. </div>
  1042. <!-- Unnamed (Table cell) -->
  1043. <div id="u16059" class="ax_default table_cell1 transition">
  1044. <svg data="images/骑手快递员/u16059.svg" id="u16059_img" class="img generatedImage" viewbox="743 82 75 44">
  1045. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 82 )" class="fill" />
  1046. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 82 )" class="stroke" />
  1047. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 82 )" class="stroke" />
  1048. </svg>
  1049. <div id="u16059_text" class="text " style="display:none; visibility: hidden">
  1050. <p></p>
  1051. </div>
  1052. </div>
  1053. <!-- Unnamed (Table cell) -->
  1054. <div id="u16060" class="ax_default table_cell1 transition">
  1055. <svg data="images/骑手快递员/u16060.svg" id="u16060_img" class="img generatedImage" viewbox="818 82 75 44">
  1056. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 82 )" class="fill" />
  1057. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 82 )" class="stroke" />
  1058. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 82 )" class="stroke" />
  1059. </svg>
  1060. <div id="u16060_text" class="text ">
  1061. <p><span>过期</span></p>
  1062. </div>
  1063. </div>
  1064. <!-- Unnamed (Table cell) -->
  1065. <div id="u16061" class="ax_default table_cell1 transition">
  1066. <svg data="images/骑手快递员/u16061.svg" id="u16061_img" class="img generatedImage" viewbox="893 82 75 44">
  1067. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 82 )" class="fill" />
  1068. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 82 )" class="stroke" />
  1069. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 82 )" class="stroke" />
  1070. </svg>
  1071. <div id="u16061_text" class="text " style="display:none; visibility: hidden">
  1072. <p></p>
  1073. </div>
  1074. </div>
  1075. <!-- Unnamed (Table cell) -->
  1076. <div id="u16062" class="ax_default table_cell1 transition">
  1077. <svg data="images/骑手快递员/u16062.svg" id="u16062_img" class="img generatedImage" viewbox="968 82 76 44">
  1078. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 82 )" class="fill" />
  1079. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 82 )" class="stroke" />
  1080. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 82 )" class="stroke" />
  1081. </svg>
  1082. <div id="u16062_text" class="text " style="display:none; visibility: hidden">
  1083. <p></p>
  1084. </div>
  1085. </div>
  1086. <!-- Unnamed (Table cell) -->
  1087. <div id="u16063" class="ax_default table_cell1 transition">
  1088. <svg data="images/骑手快递员/u16063.svg" id="u16063_img" class="img generatedImage" viewbox="1044 82 76 44">
  1089. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 82 )" class="fill" />
  1090. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 82 )" class="stroke" />
  1091. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 82 )" class="stroke" />
  1092. </svg>
  1093. <div id="u16063_text" class="text " style="display:none; visibility: hidden">
  1094. <p></p>
  1095. </div>
  1096. </div>
  1097. <!-- Unnamed (Table cell) -->
  1098. <div id="u16064" class="ax_default table_cell1 transition">
  1099. <svg data="images/骑手快递员/u16064.svg" id="u16064_img" class="img generatedImage" viewbox="1120 82 99 44">
  1100. <path d="M 1 1 L 98 1 L 98 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 82 )" class="fill" />
  1101. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 82 )" class="stroke" />
  1102. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 82 )" class="stroke" />
  1103. <path d="M 98.5 1 L 98.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 82 )" class="stroke" />
  1104. </svg>
  1105. <div id="u16064_text" class="text ">
  1106. <p><span>通过&nbsp; 驳回</span></p>
  1107. </div>
  1108. </div>
  1109. <!-- Unnamed (Table cell) -->
  1110. <div id="u16065" class="ax_default table_cell1 transition">
  1111. <svg data="images/骑手快递员/u16065.svg" id="u16065_img" class="img generatedImage" viewbox="0 126 47 44">
  1112. <path d="M 1 1 L 47 1 L 47 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 126 )" class="fill" />
  1113. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 126 )" class="stroke" />
  1114. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 126 )" class="stroke" />
  1115. </svg>
  1116. <div id="u16065_text" class="text " style="display:none; visibility: hidden">
  1117. <p></p>
  1118. </div>
  1119. </div>
  1120. <!-- Unnamed (Table cell) -->
  1121. <div id="u16066" class="ax_default table_cell1 transition">
  1122. <svg data="images/骑手快递员/u16066.svg" id="u16066_img" class="img generatedImage" viewbox="47 126 75 44">
  1123. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 126 )" class="fill" />
  1124. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 126 )" class="stroke" />
  1125. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 126 )" class="stroke" />
  1126. </svg>
  1127. <div id="u16066_text" class="text " style="display:none; visibility: hidden">
  1128. <p></p>
  1129. </div>
  1130. </div>
  1131. <!-- Unnamed (Table cell) -->
  1132. <div id="u16067" class="ax_default table_cell1 transition">
  1133. <svg data="images/骑手快递员/u16067.svg" id="u16067_img" class="img generatedImage" viewbox="122 126 75 44">
  1134. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 126 )" class="fill" />
  1135. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 126 )" class="stroke" />
  1136. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 126 )" class="stroke" />
  1137. </svg>
  1138. <div id="u16067_text" class="text " style="display:none; visibility: hidden">
  1139. <p></p>
  1140. </div>
  1141. </div>
  1142. <!-- Unnamed (Table cell) -->
  1143. <div id="u16068" class="ax_default table_cell1 transition">
  1144. <svg data="images/骑手快递员/u16068.svg" id="u16068_img" class="img generatedImage" viewbox="197 126 75 44">
  1145. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 126 )" class="fill" />
  1146. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 126 )" class="stroke" />
  1147. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 126 )" class="stroke" />
  1148. </svg>
  1149. <div id="u16068_text" class="text " style="display:none; visibility: hidden">
  1150. <p></p>
  1151. </div>
  1152. </div>
  1153. <!-- Unnamed (Table cell) -->
  1154. <div id="u16069" class="ax_default table_cell1 transition">
  1155. <svg data="images/骑手快递员/u16069.svg" id="u16069_img" class="img generatedImage" viewbox="272 126 75 44">
  1156. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 126 )" class="fill" />
  1157. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 126 )" class="stroke" />
  1158. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 126 )" class="stroke" />
  1159. </svg>
  1160. <div id="u16069_text" class="text " style="display:none; visibility: hidden">
  1161. <p></p>
  1162. </div>
  1163. </div>
  1164. <!-- Unnamed (Table cell) -->
  1165. <div id="u16070" class="ax_default table_cell1 transition">
  1166. <svg data="images/骑手快递员/u16070.svg" id="u16070_img" class="img generatedImage" viewbox="347 126 75 44">
  1167. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 126 )" class="fill" />
  1168. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 126 )" class="stroke" />
  1169. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 126 )" class="stroke" />
  1170. </svg>
  1171. <div id="u16070_text" class="text " style="display:none; visibility: hidden">
  1172. <p></p>
  1173. </div>
  1174. </div>
  1175. <!-- Unnamed (Table cell) -->
  1176. <div id="u16071" class="ax_default table_cell1 transition">
  1177. <svg data="images/骑手快递员/u16071.svg" id="u16071_img" class="img generatedImage" viewbox="422 126 75 44">
  1178. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 126 )" class="fill" />
  1179. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 126 )" class="stroke" />
  1180. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 126 )" class="stroke" />
  1181. </svg>
  1182. <div id="u16071_text" class="text " style="display:none; visibility: hidden">
  1183. <p></p>
  1184. </div>
  1185. </div>
  1186. <!-- Unnamed (Table cell) -->
  1187. <div id="u16072" class="ax_default table_cell1 transition">
  1188. <svg data="images/骑手快递员/u16072.svg" id="u16072_img" class="img generatedImage" viewbox="497 126 95 44">
  1189. <path d="M 1 1 L 95 1 L 95 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 126 )" class="fill" />
  1190. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 126 )" class="stroke" />
  1191. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 126 )" class="stroke" />
  1192. </svg>
  1193. <div id="u16072_text" class="text " style="display:none; visibility: hidden">
  1194. <p></p>
  1195. </div>
  1196. </div>
  1197. <!-- Unnamed (Table cell) -->
  1198. <div id="u16073" class="ax_default table_cell1 transition">
  1199. <svg data="images/骑手快递员/u16073.svg" id="u16073_img" class="img generatedImage" viewbox="592 126 76 44">
  1200. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 126 )" class="fill" />
  1201. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 126 )" class="stroke" />
  1202. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 126 )" class="stroke" />
  1203. </svg>
  1204. <div id="u16073_text" class="text " style="display:none; visibility: hidden">
  1205. <p></p>
  1206. </div>
  1207. </div>
  1208. <!-- Unnamed (Table cell) -->
  1209. <div id="u16074" class="ax_default table_cell1 transition">
  1210. <svg data="images/骑手快递员/u16074.svg" id="u16074_img" class="img generatedImage" viewbox="668 126 75 44">
  1211. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 126 )" class="fill" />
  1212. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 126 )" class="stroke" />
  1213. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 126 )" class="stroke" />
  1214. </svg>
  1215. <div id="u16074_text" class="text " style="display:none; visibility: hidden">
  1216. <p></p>
  1217. </div>
  1218. </div>
  1219. <!-- Unnamed (Table cell) -->
  1220. <div id="u16075" class="ax_default table_cell1 transition">
  1221. <svg data="images/骑手快递员/u16075.svg" id="u16075_img" class="img generatedImage" viewbox="743 126 75 44">
  1222. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 126 )" class="fill" />
  1223. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 126 )" class="stroke" />
  1224. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 126 )" class="stroke" />
  1225. </svg>
  1226. <div id="u16075_text" class="text " style="display:none; visibility: hidden">
  1227. <p></p>
  1228. </div>
  1229. </div>
  1230. <!-- Unnamed (Table cell) -->
  1231. <div id="u16076" class="ax_default table_cell1 transition">
  1232. <svg data="images/骑手快递员/u16076.svg" id="u16076_img" class="img generatedImage" viewbox="818 126 75 44">
  1233. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 126 )" class="fill" />
  1234. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 126 )" class="stroke" />
  1235. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 126 )" class="stroke" />
  1236. </svg>
  1237. <div id="u16076_text" class="text ">
  1238. <p><span>待确认</span></p>
  1239. </div>
  1240. </div>
  1241. <!-- Unnamed (Table cell) -->
  1242. <div id="u16077" class="ax_default table_cell1 transition">
  1243. <svg data="images/骑手快递员/u16077.svg" id="u16077_img" class="img generatedImage" viewbox="893 126 75 44">
  1244. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 126 )" class="fill" />
  1245. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 126 )" class="stroke" />
  1246. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 126 )" class="stroke" />
  1247. </svg>
  1248. <div id="u16077_text" class="text " style="display:none; visibility: hidden">
  1249. <p></p>
  1250. </div>
  1251. </div>
  1252. <!-- Unnamed (Table cell) -->
  1253. <div id="u16078" class="ax_default table_cell1 transition">
  1254. <svg data="images/骑手快递员/u16078.svg" id="u16078_img" class="img generatedImage" viewbox="968 126 76 44">
  1255. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 126 )" class="fill" />
  1256. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 126 )" class="stroke" />
  1257. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 126 )" class="stroke" />
  1258. </svg>
  1259. <div id="u16078_text" class="text " style="display:none; visibility: hidden">
  1260. <p></p>
  1261. </div>
  1262. </div>
  1263. <!-- Unnamed (Table cell) -->
  1264. <div id="u16079" class="ax_default table_cell1 transition">
  1265. <svg data="images/骑手快递员/u16079.svg" id="u16079_img" class="img generatedImage" viewbox="1044 126 76 44">
  1266. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 126 )" class="fill" />
  1267. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 126 )" class="stroke" />
  1268. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 126 )" class="stroke" />
  1269. </svg>
  1270. <div id="u16079_text" class="text " style="display:none; visibility: hidden">
  1271. <p></p>
  1272. </div>
  1273. </div>
  1274. <!-- Unnamed (Table cell) -->
  1275. <div id="u16080" class="ax_default table_cell1 transition">
  1276. <svg data="images/骑手快递员/u16080.svg" id="u16080_img" class="img generatedImage" viewbox="1120 126 99 44">
  1277. <path d="M 1 1 L 98 1 L 98 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 126 )" class="fill" />
  1278. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 126 )" class="stroke" />
  1279. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 126 )" class="stroke" />
  1280. <path d="M 98.5 1 L 98.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 126 )" class="stroke" />
  1281. </svg>
  1282. <div id="u16080_text" class="text ">
  1283. <p><span style="color:#1890FF;">通过</span><span style="color:#333333;">&nbsp; </span><span style="color:#D9001B;">驳回</span></p>
  1284. </div>
  1285. </div>
  1286. <!-- Unnamed (Table cell) -->
  1287. <div id="u16081" class="ax_default table_cell1 transition">
  1288. <svg data="images/骑手快递员/u16081.svg" id="u16081_img" class="img generatedImage" viewbox="0 170 47 44">
  1289. <path d="M 1 1 L 47 1 L 47 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 170 )" class="fill" />
  1290. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 170 )" class="stroke" />
  1291. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 170 )" class="stroke" />
  1292. </svg>
  1293. <div id="u16081_text" class="text " style="display:none; visibility: hidden">
  1294. <p></p>
  1295. </div>
  1296. </div>
  1297. <!-- Unnamed (Table cell) -->
  1298. <div id="u16082" class="ax_default table_cell1 transition">
  1299. <svg data="images/骑手快递员/u16082.svg" id="u16082_img" class="img generatedImage" viewbox="47 170 75 44">
  1300. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 170 )" class="fill" />
  1301. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 170 )" class="stroke" />
  1302. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 170 )" class="stroke" />
  1303. </svg>
  1304. <div id="u16082_text" class="text " style="display:none; visibility: hidden">
  1305. <p></p>
  1306. </div>
  1307. </div>
  1308. <!-- Unnamed (Table cell) -->
  1309. <div id="u16083" class="ax_default table_cell1 transition">
  1310. <svg data="images/骑手快递员/u16083.svg" id="u16083_img" class="img generatedImage" viewbox="122 170 75 44">
  1311. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 170 )" class="fill" />
  1312. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 170 )" class="stroke" />
  1313. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 170 )" class="stroke" />
  1314. </svg>
  1315. <div id="u16083_text" class="text " style="display:none; visibility: hidden">
  1316. <p></p>
  1317. </div>
  1318. </div>
  1319. <!-- Unnamed (Table cell) -->
  1320. <div id="u16084" class="ax_default table_cell1 transition">
  1321. <svg data="images/骑手快递员/u16084.svg" id="u16084_img" class="img generatedImage" viewbox="197 170 75 44">
  1322. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 170 )" class="fill" />
  1323. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 170 )" class="stroke" />
  1324. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 170 )" class="stroke" />
  1325. </svg>
  1326. <div id="u16084_text" class="text " style="display:none; visibility: hidden">
  1327. <p></p>
  1328. </div>
  1329. </div>
  1330. <!-- Unnamed (Table cell) -->
  1331. <div id="u16085" class="ax_default table_cell1 transition">
  1332. <svg data="images/骑手快递员/u16085.svg" id="u16085_img" class="img generatedImage" viewbox="272 170 75 44">
  1333. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 170 )" class="fill" />
  1334. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 170 )" class="stroke" />
  1335. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 170 )" class="stroke" />
  1336. </svg>
  1337. <div id="u16085_text" class="text " style="display:none; visibility: hidden">
  1338. <p></p>
  1339. </div>
  1340. </div>
  1341. <!-- Unnamed (Table cell) -->
  1342. <div id="u16086" class="ax_default table_cell1 transition">
  1343. <svg data="images/骑手快递员/u16086.svg" id="u16086_img" class="img generatedImage" viewbox="347 170 75 44">
  1344. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 170 )" class="fill" />
  1345. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 170 )" class="stroke" />
  1346. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 170 )" class="stroke" />
  1347. </svg>
  1348. <div id="u16086_text" class="text " style="display:none; visibility: hidden">
  1349. <p></p>
  1350. </div>
  1351. </div>
  1352. <!-- Unnamed (Table cell) -->
  1353. <div id="u16087" class="ax_default table_cell1 transition">
  1354. <svg data="images/骑手快递员/u16087.svg" id="u16087_img" class="img generatedImage" viewbox="422 170 75 44">
  1355. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 170 )" class="fill" />
  1356. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 170 )" class="stroke" />
  1357. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 170 )" class="stroke" />
  1358. </svg>
  1359. <div id="u16087_text" class="text " style="display:none; visibility: hidden">
  1360. <p></p>
  1361. </div>
  1362. </div>
  1363. <!-- Unnamed (Table cell) -->
  1364. <div id="u16088" class="ax_default table_cell1 transition">
  1365. <svg data="images/骑手快递员/u16088.svg" id="u16088_img" class="img generatedImage" viewbox="497 170 95 44">
  1366. <path d="M 1 1 L 95 1 L 95 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 170 )" class="fill" />
  1367. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 170 )" class="stroke" />
  1368. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 170 )" class="stroke" />
  1369. </svg>
  1370. <div id="u16088_text" class="text " style="display:none; visibility: hidden">
  1371. <p></p>
  1372. </div>
  1373. </div>
  1374. <!-- Unnamed (Table cell) -->
  1375. <div id="u16089" class="ax_default table_cell1 transition">
  1376. <svg data="images/骑手快递员/u16089.svg" id="u16089_img" class="img generatedImage" viewbox="592 170 76 44">
  1377. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 170 )" class="fill" />
  1378. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 170 )" class="stroke" />
  1379. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 170 )" class="stroke" />
  1380. </svg>
  1381. <div id="u16089_text" class="text " style="display:none; visibility: hidden">
  1382. <p></p>
  1383. </div>
  1384. </div>
  1385. <!-- Unnamed (Table cell) -->
  1386. <div id="u16090" class="ax_default table_cell1 transition">
  1387. <svg data="images/骑手快递员/u16090.svg" id="u16090_img" class="img generatedImage" viewbox="668 170 75 44">
  1388. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 170 )" class="fill" />
  1389. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 170 )" class="stroke" />
  1390. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 170 )" class="stroke" />
  1391. </svg>
  1392. <div id="u16090_text" class="text " style="display:none; visibility: hidden">
  1393. <p></p>
  1394. </div>
  1395. </div>
  1396. <!-- Unnamed (Table cell) -->
  1397. <div id="u16091" class="ax_default table_cell1 transition">
  1398. <svg data="images/骑手快递员/u16091.svg" id="u16091_img" class="img generatedImage" viewbox="743 170 75 44">
  1399. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 170 )" class="fill" />
  1400. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 170 )" class="stroke" />
  1401. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 170 )" class="stroke" />
  1402. </svg>
  1403. <div id="u16091_text" class="text " style="display:none; visibility: hidden">
  1404. <p></p>
  1405. </div>
  1406. </div>
  1407. <!-- Unnamed (Table cell) -->
  1408. <div id="u16092" class="ax_default table_cell1 transition">
  1409. <svg data="images/骑手快递员/u16092.svg" id="u16092_img" class="img generatedImage" viewbox="818 170 75 44">
  1410. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 170 )" class="fill" />
  1411. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 170 )" class="stroke" />
  1412. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 170 )" class="stroke" />
  1413. </svg>
  1414. <div id="u16092_text" class="text ">
  1415. <p><span>驳回</span></p>
  1416. </div>
  1417. </div>
  1418. <!-- Unnamed (Table cell) -->
  1419. <div id="u16093" class="ax_default table_cell1 transition">
  1420. <svg data="images/骑手快递员/u16093.svg" id="u16093_img" class="img generatedImage" viewbox="893 170 75 44">
  1421. <path d="M 1 1 L 75 1 L 75 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 170 )" class="fill" />
  1422. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 170 )" class="stroke" />
  1423. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 170 )" class="stroke" />
  1424. </svg>
  1425. <div id="u16093_text" class="text " style="display:none; visibility: hidden">
  1426. <p></p>
  1427. </div>
  1428. </div>
  1429. <!-- Unnamed (Table cell) -->
  1430. <div id="u16094" class="ax_default table_cell1 transition">
  1431. <svg data="images/骑手快递员/u16094.svg" id="u16094_img" class="img generatedImage" viewbox="968 170 76 44">
  1432. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 170 )" class="fill" />
  1433. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 170 )" class="stroke" />
  1434. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 170 )" class="stroke" />
  1435. </svg>
  1436. <div id="u16094_text" class="text " style="display:none; visibility: hidden">
  1437. <p></p>
  1438. </div>
  1439. </div>
  1440. <!-- Unnamed (Table cell) -->
  1441. <div id="u16095" class="ax_default table_cell1 transition">
  1442. <svg data="images/骑手快递员/u16095.svg" id="u16095_img" class="img generatedImage" viewbox="1044 170 76 44">
  1443. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 170 )" class="fill" />
  1444. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 170 )" class="stroke" />
  1445. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 170 )" class="stroke" />
  1446. </svg>
  1447. <div id="u16095_text" class="text " style="display:none; visibility: hidden">
  1448. <p></p>
  1449. </div>
  1450. </div>
  1451. <!-- Unnamed (Table cell) -->
  1452. <div id="u16096" class="ax_default table_cell1 transition">
  1453. <svg data="images/骑手快递员/u16096.svg" id="u16096_img" class="img generatedImage" viewbox="1120 170 99 44">
  1454. <path d="M 1 1 L 98 1 L 98 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 170 )" class="fill" />
  1455. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 170 )" class="stroke" />
  1456. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 170 )" class="stroke" />
  1457. <path d="M 98.5 1 L 98.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 170 )" class="stroke" />
  1458. </svg>
  1459. <div id="u16096_text" class="text ">
  1460. <p><span>通过&nbsp; 驳回</span></p>
  1461. </div>
  1462. </div>
  1463. <!-- Unnamed (Table cell) -->
  1464. <div id="u16097" class="ax_default table_cell1 transition">
  1465. <svg data="images/骑手快递员/u16097.svg" id="u16097_img" class="img generatedImage" viewbox="0 214 47 38">
  1466. <path d="M 1 1 L 47 1 L 47 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 214 )" class="fill" />
  1467. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 214 )" class="stroke" />
  1468. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 214 )" class="stroke" />
  1469. </svg>
  1470. <div id="u16097_text" class="text " style="display:none; visibility: hidden">
  1471. <p></p>
  1472. </div>
  1473. </div>
  1474. <!-- Unnamed (Table cell) -->
  1475. <div id="u16098" class="ax_default table_cell1 transition">
  1476. <svg data="images/骑手快递员/u16098.svg" id="u16098_img" class="img generatedImage" viewbox="47 214 75 38">
  1477. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 214 )" class="fill" />
  1478. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 214 )" class="stroke" />
  1479. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 214 )" class="stroke" />
  1480. </svg>
  1481. <div id="u16098_text" class="text " style="display:none; visibility: hidden">
  1482. <p></p>
  1483. </div>
  1484. </div>
  1485. <!-- Unnamed (Table cell) -->
  1486. <div id="u16099" class="ax_default table_cell1 transition">
  1487. <svg data="images/骑手快递员/u16099.svg" id="u16099_img" class="img generatedImage" viewbox="122 214 75 38">
  1488. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 214 )" class="fill" />
  1489. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 214 )" class="stroke" />
  1490. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 214 )" class="stroke" />
  1491. </svg>
  1492. <div id="u16099_text" class="text " style="display:none; visibility: hidden">
  1493. <p></p>
  1494. </div>
  1495. </div>
  1496. <!-- Unnamed (Table cell) -->
  1497. <div id="u16100" class="ax_default table_cell1 transition">
  1498. <svg data="images/骑手快递员/u16100.svg" id="u16100_img" class="img generatedImage" viewbox="197 214 75 38">
  1499. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 214 )" class="fill" />
  1500. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 214 )" class="stroke" />
  1501. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 214 )" class="stroke" />
  1502. </svg>
  1503. <div id="u16100_text" class="text " style="display:none; visibility: hidden">
  1504. <p></p>
  1505. </div>
  1506. </div>
  1507. <!-- Unnamed (Table cell) -->
  1508. <div id="u16101" class="ax_default table_cell1 transition">
  1509. <svg data="images/骑手快递员/u16101.svg" id="u16101_img" class="img generatedImage" viewbox="272 214 75 38">
  1510. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 214 )" class="fill" />
  1511. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 214 )" class="stroke" />
  1512. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 214 )" class="stroke" />
  1513. </svg>
  1514. <div id="u16101_text" class="text " style="display:none; visibility: hidden">
  1515. <p></p>
  1516. </div>
  1517. </div>
  1518. <!-- Unnamed (Table cell) -->
  1519. <div id="u16102" class="ax_default table_cell1 transition">
  1520. <svg data="images/骑手快递员/u16102.svg" id="u16102_img" class="img generatedImage" viewbox="347 214 75 38">
  1521. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 214 )" class="fill" />
  1522. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 214 )" class="stroke" />
  1523. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 214 )" class="stroke" />
  1524. </svg>
  1525. <div id="u16102_text" class="text " style="display:none; visibility: hidden">
  1526. <p></p>
  1527. </div>
  1528. </div>
  1529. <!-- Unnamed (Table cell) -->
  1530. <div id="u16103" class="ax_default table_cell1 transition">
  1531. <svg data="images/骑手快递员/u16103.svg" id="u16103_img" class="img generatedImage" viewbox="422 214 75 38">
  1532. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 214 )" class="fill" />
  1533. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 214 )" class="stroke" />
  1534. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 214 )" class="stroke" />
  1535. </svg>
  1536. <div id="u16103_text" class="text " style="display:none; visibility: hidden">
  1537. <p></p>
  1538. </div>
  1539. </div>
  1540. <!-- Unnamed (Table cell) -->
  1541. <div id="u16104" class="ax_default table_cell1 transition">
  1542. <svg data="images/骑手快递员/u16104.svg" id="u16104_img" class="img generatedImage" viewbox="497 214 95 38">
  1543. <path d="M 1 1 L 95 1 L 95 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 214 )" class="fill" />
  1544. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 214 )" class="stroke" />
  1545. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 214 )" class="stroke" />
  1546. </svg>
  1547. <div id="u16104_text" class="text " style="display:none; visibility: hidden">
  1548. <p></p>
  1549. </div>
  1550. </div>
  1551. <!-- Unnamed (Table cell) -->
  1552. <div id="u16105" class="ax_default table_cell1 transition">
  1553. <svg data="images/骑手快递员/u16105.svg" id="u16105_img" class="img generatedImage" viewbox="592 214 76 38">
  1554. <path d="M 1 1 L 76 1 L 76 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 214 )" class="fill" />
  1555. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 214 )" class="stroke" />
  1556. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 214 )" class="stroke" />
  1557. </svg>
  1558. <div id="u16105_text" class="text " style="display:none; visibility: hidden">
  1559. <p></p>
  1560. </div>
  1561. </div>
  1562. <!-- Unnamed (Table cell) -->
  1563. <div id="u16106" class="ax_default table_cell1 transition">
  1564. <svg data="images/骑手快递员/u16106.svg" id="u16106_img" class="img generatedImage" viewbox="668 214 75 38">
  1565. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 214 )" class="fill" />
  1566. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 214 )" class="stroke" />
  1567. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 214 )" class="stroke" />
  1568. </svg>
  1569. <div id="u16106_text" class="text " style="display:none; visibility: hidden">
  1570. <p></p>
  1571. </div>
  1572. </div>
  1573. <!-- Unnamed (Table cell) -->
  1574. <div id="u16107" class="ax_default table_cell1 transition">
  1575. <svg data="images/骑手快递员/u16107.svg" id="u16107_img" class="img generatedImage" viewbox="743 214 75 38">
  1576. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 214 )" class="fill" />
  1577. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 214 )" class="stroke" />
  1578. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 214 )" class="stroke" />
  1579. </svg>
  1580. <div id="u16107_text" class="text " style="display:none; visibility: hidden">
  1581. <p></p>
  1582. </div>
  1583. </div>
  1584. <!-- Unnamed (Table cell) -->
  1585. <div id="u16108" class="ax_default table_cell1 transition">
  1586. <svg data="images/骑手快递员/u16108.svg" id="u16108_img" class="img generatedImage" viewbox="818 214 75 38">
  1587. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 214 )" class="fill" />
  1588. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 214 )" class="stroke" />
  1589. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 214 )" class="stroke" />
  1590. </svg>
  1591. <div id="u16108_text" class="text " style="display:none; visibility: hidden">
  1592. <p></p>
  1593. </div>
  1594. </div>
  1595. <!-- Unnamed (Table cell) -->
  1596. <div id="u16109" class="ax_default table_cell1 transition">
  1597. <svg data="images/骑手快递员/u16109.svg" id="u16109_img" class="img generatedImage" viewbox="893 214 75 38">
  1598. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 214 )" class="fill" />
  1599. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 214 )" class="stroke" />
  1600. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 214 )" class="stroke" />
  1601. </svg>
  1602. <div id="u16109_text" class="text " style="display:none; visibility: hidden">
  1603. <p></p>
  1604. </div>
  1605. </div>
  1606. <!-- Unnamed (Table cell) -->
  1607. <div id="u16110" class="ax_default table_cell1 transition">
  1608. <svg data="images/骑手快递员/u16110.svg" id="u16110_img" class="img generatedImage" viewbox="968 214 76 38">
  1609. <path d="M 1 1 L 76 1 L 76 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 214 )" class="fill" />
  1610. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 214 )" class="stroke" />
  1611. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 214 )" class="stroke" />
  1612. </svg>
  1613. <div id="u16110_text" class="text " style="display:none; visibility: hidden">
  1614. <p></p>
  1615. </div>
  1616. </div>
  1617. <!-- Unnamed (Table cell) -->
  1618. <div id="u16111" class="ax_default table_cell1 transition">
  1619. <svg data="images/骑手快递员/u16111.svg" id="u16111_img" class="img generatedImage" viewbox="1044 214 76 38">
  1620. <path d="M 1 1 L 76 1 L 76 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 214 )" class="fill" />
  1621. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 214 )" class="stroke" />
  1622. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 214 )" class="stroke" />
  1623. </svg>
  1624. <div id="u16111_text" class="text " style="display:none; visibility: hidden">
  1625. <p></p>
  1626. </div>
  1627. </div>
  1628. <!-- Unnamed (Table cell) -->
  1629. <div id="u16112" class="ax_default table_cell1 transition">
  1630. <svg data="images/骑手快递员/u16112.svg" id="u16112_img" class="img generatedImage" viewbox="1120 214 99 38">
  1631. <path d="M 1 1 L 98 1 L 98 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 214 )" class="fill" />
  1632. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 214 )" class="stroke" />
  1633. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 214 )" class="stroke" />
  1634. <path d="M 98.5 1 L 98.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 214 )" class="stroke" />
  1635. </svg>
  1636. <div id="u16112_text" class="text " style="display:none; visibility: hidden">
  1637. <p></p>
  1638. </div>
  1639. </div>
  1640. <!-- Unnamed (Table cell) -->
  1641. <div id="u16113" class="ax_default table_cell1 transition">
  1642. <svg data="images/骑手快递员/u16113.svg" id="u16113_img" class="img generatedImage" viewbox="0 252 47 38">
  1643. <path d="M 1 1 L 47 1 L 47 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 252 )" class="fill" />
  1644. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 252 )" class="stroke" />
  1645. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 252 )" class="stroke" />
  1646. </svg>
  1647. <div id="u16113_text" class="text " style="display:none; visibility: hidden">
  1648. <p></p>
  1649. </div>
  1650. </div>
  1651. <!-- Unnamed (Table cell) -->
  1652. <div id="u16114" class="ax_default table_cell1 transition">
  1653. <svg data="images/骑手快递员/u16114.svg" id="u16114_img" class="img generatedImage" viewbox="47 252 75 38">
  1654. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 252 )" class="fill" />
  1655. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 252 )" class="stroke" />
  1656. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 252 )" class="stroke" />
  1657. </svg>
  1658. <div id="u16114_text" class="text " style="display:none; visibility: hidden">
  1659. <p></p>
  1660. </div>
  1661. </div>
  1662. <!-- Unnamed (Table cell) -->
  1663. <div id="u16115" class="ax_default table_cell1 transition">
  1664. <svg data="images/骑手快递员/u16115.svg" id="u16115_img" class="img generatedImage" viewbox="122 252 75 38">
  1665. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 252 )" class="fill" />
  1666. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 252 )" class="stroke" />
  1667. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 252 )" class="stroke" />
  1668. </svg>
  1669. <div id="u16115_text" class="text " style="display:none; visibility: hidden">
  1670. <p></p>
  1671. </div>
  1672. </div>
  1673. <!-- Unnamed (Table cell) -->
  1674. <div id="u16116" class="ax_default table_cell1 transition">
  1675. <svg data="images/骑手快递员/u16116.svg" id="u16116_img" class="img generatedImage" viewbox="197 252 75 38">
  1676. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 252 )" class="fill" />
  1677. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 252 )" class="stroke" />
  1678. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 252 )" class="stroke" />
  1679. </svg>
  1680. <div id="u16116_text" class="text " style="display:none; visibility: hidden">
  1681. <p></p>
  1682. </div>
  1683. </div>
  1684. <!-- Unnamed (Table cell) -->
  1685. <div id="u16117" class="ax_default table_cell1 transition">
  1686. <svg data="images/骑手快递员/u16117.svg" id="u16117_img" class="img generatedImage" viewbox="272 252 75 38">
  1687. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 252 )" class="fill" />
  1688. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 252 )" class="stroke" />
  1689. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 252 )" class="stroke" />
  1690. </svg>
  1691. <div id="u16117_text" class="text " style="display:none; visibility: hidden">
  1692. <p></p>
  1693. </div>
  1694. </div>
  1695. <!-- Unnamed (Table cell) -->
  1696. <div id="u16118" class="ax_default table_cell1 transition">
  1697. <svg data="images/骑手快递员/u16118.svg" id="u16118_img" class="img generatedImage" viewbox="347 252 75 38">
  1698. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 252 )" class="fill" />
  1699. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 252 )" class="stroke" />
  1700. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 252 )" class="stroke" />
  1701. </svg>
  1702. <div id="u16118_text" class="text " style="display:none; visibility: hidden">
  1703. <p></p>
  1704. </div>
  1705. </div>
  1706. <!-- Unnamed (Table cell) -->
  1707. <div id="u16119" class="ax_default table_cell1 transition">
  1708. <svg data="images/骑手快递员/u16119.svg" id="u16119_img" class="img generatedImage" viewbox="422 252 75 38">
  1709. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 252 )" class="fill" />
  1710. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 252 )" class="stroke" />
  1711. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 252 )" class="stroke" />
  1712. </svg>
  1713. <div id="u16119_text" class="text " style="display:none; visibility: hidden">
  1714. <p></p>
  1715. </div>
  1716. </div>
  1717. <!-- Unnamed (Table cell) -->
  1718. <div id="u16120" class="ax_default table_cell1 transition">
  1719. <svg data="images/骑手快递员/u16120.svg" id="u16120_img" class="img generatedImage" viewbox="497 252 95 38">
  1720. <path d="M 1 1 L 95 1 L 95 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 252 )" class="fill" />
  1721. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 252 )" class="stroke" />
  1722. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 252 )" class="stroke" />
  1723. </svg>
  1724. <div id="u16120_text" class="text " style="display:none; visibility: hidden">
  1725. <p></p>
  1726. </div>
  1727. </div>
  1728. <!-- Unnamed (Table cell) -->
  1729. <div id="u16121" class="ax_default table_cell1 transition">
  1730. <svg data="images/骑手快递员/u16121.svg" id="u16121_img" class="img generatedImage" viewbox="592 252 76 38">
  1731. <path d="M 1 1 L 76 1 L 76 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 252 )" class="fill" />
  1732. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 252 )" class="stroke" />
  1733. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 252 )" class="stroke" />
  1734. </svg>
  1735. <div id="u16121_text" class="text " style="display:none; visibility: hidden">
  1736. <p></p>
  1737. </div>
  1738. </div>
  1739. <!-- Unnamed (Table cell) -->
  1740. <div id="u16122" class="ax_default table_cell1 transition">
  1741. <svg data="images/骑手快递员/u16122.svg" id="u16122_img" class="img generatedImage" viewbox="668 252 75 38">
  1742. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 252 )" class="fill" />
  1743. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 252 )" class="stroke" />
  1744. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 252 )" class="stroke" />
  1745. </svg>
  1746. <div id="u16122_text" class="text " style="display:none; visibility: hidden">
  1747. <p></p>
  1748. </div>
  1749. </div>
  1750. <!-- Unnamed (Table cell) -->
  1751. <div id="u16123" class="ax_default table_cell1 transition">
  1752. <svg data="images/骑手快递员/u16123.svg" id="u16123_img" class="img generatedImage" viewbox="743 252 75 38">
  1753. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 252 )" class="fill" />
  1754. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 252 )" class="stroke" />
  1755. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 252 )" class="stroke" />
  1756. </svg>
  1757. <div id="u16123_text" class="text " style="display:none; visibility: hidden">
  1758. <p></p>
  1759. </div>
  1760. </div>
  1761. <!-- Unnamed (Table cell) -->
  1762. <div id="u16124" class="ax_default table_cell1 transition">
  1763. <svg data="images/骑手快递员/u16124.svg" id="u16124_img" class="img generatedImage" viewbox="818 252 75 38">
  1764. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 252 )" class="fill" />
  1765. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 252 )" class="stroke" />
  1766. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 252 )" class="stroke" />
  1767. </svg>
  1768. <div id="u16124_text" class="text " style="display:none; visibility: hidden">
  1769. <p></p>
  1770. </div>
  1771. </div>
  1772. <!-- Unnamed (Table cell) -->
  1773. <div id="u16125" class="ax_default table_cell1 transition">
  1774. <svg data="images/骑手快递员/u16125.svg" id="u16125_img" class="img generatedImage" viewbox="893 252 75 38">
  1775. <path d="M 1 1 L 75 1 L 75 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 252 )" class="fill" />
  1776. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 252 )" class="stroke" />
  1777. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 252 )" class="stroke" />
  1778. </svg>
  1779. <div id="u16125_text" class="text " style="display:none; visibility: hidden">
  1780. <p></p>
  1781. </div>
  1782. </div>
  1783. <!-- Unnamed (Table cell) -->
  1784. <div id="u16126" class="ax_default table_cell1 transition">
  1785. <svg data="images/骑手快递员/u16126.svg" id="u16126_img" class="img generatedImage" viewbox="968 252 76 38">
  1786. <path d="M 1 1 L 76 1 L 76 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 252 )" class="fill" />
  1787. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 252 )" class="stroke" />
  1788. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 252 )" class="stroke" />
  1789. </svg>
  1790. <div id="u16126_text" class="text " style="display:none; visibility: hidden">
  1791. <p></p>
  1792. </div>
  1793. </div>
  1794. <!-- Unnamed (Table cell) -->
  1795. <div id="u16127" class="ax_default table_cell1 transition">
  1796. <svg data="images/骑手快递员/u16127.svg" id="u16127_img" class="img generatedImage" viewbox="1044 252 76 38">
  1797. <path d="M 1 1 L 76 1 L 76 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 252 )" class="fill" />
  1798. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 252 )" class="stroke" />
  1799. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 252 )" class="stroke" />
  1800. </svg>
  1801. <div id="u16127_text" class="text " style="display:none; visibility: hidden">
  1802. <p></p>
  1803. </div>
  1804. </div>
  1805. <!-- Unnamed (Table cell) -->
  1806. <div id="u16128" class="ax_default table_cell1 transition">
  1807. <svg data="images/骑手快递员/u16128.svg" id="u16128_img" class="img generatedImage" viewbox="1120 252 99 38">
  1808. <path d="M 1 1 L 98 1 L 98 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 252 )" class="fill" />
  1809. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 252 )" class="stroke" />
  1810. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 252 )" class="stroke" />
  1811. <path d="M 98.5 1 L 98.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 252 )" class="stroke" />
  1812. </svg>
  1813. <div id="u16128_text" class="text " style="display:none; visibility: hidden">
  1814. <p></p>
  1815. </div>
  1816. </div>
  1817. <!-- Unnamed (Table cell) -->
  1818. <div id="u16129" class="ax_default table_cell1 transition">
  1819. <svg data="images/骑手快递员/u16129.svg" id="u16129_img" class="img generatedImage" viewbox="0 290 47 38">
  1820. <path d="M 1 1 L 47 1 L 47 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 290 )" class="fill" />
  1821. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 290 )" class="stroke" />
  1822. <path d="M 0 0.5 L 47 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 290 )" class="stroke" />
  1823. <path d="M 0 37.5 L 47 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 290 )" class="stroke" />
  1824. </svg>
  1825. <div id="u16129_text" class="text " style="display:none; visibility: hidden">
  1826. <p></p>
  1827. </div>
  1828. </div>
  1829. <!-- Unnamed (Table cell) -->
  1830. <div id="u16130" class="ax_default table_cell1 transition">
  1831. <svg data="images/骑手快递员/u16130.svg" id="u16130_img" class="img generatedImage" viewbox="47 290 75 38">
  1832. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 47 290 )" class="fill" />
  1833. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 290 )" class="stroke" />
  1834. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 290 )" class="stroke" />
  1835. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 47 290 )" class="stroke" />
  1836. </svg>
  1837. <div id="u16130_text" class="text " style="display:none; visibility: hidden">
  1838. <p></p>
  1839. </div>
  1840. </div>
  1841. <!-- Unnamed (Table cell) -->
  1842. <div id="u16131" class="ax_default table_cell1 transition">
  1843. <svg data="images/骑手快递员/u16131.svg" id="u16131_img" class="img generatedImage" viewbox="122 290 75 38">
  1844. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 122 290 )" class="fill" />
  1845. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 290 )" class="stroke" />
  1846. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 290 )" class="stroke" />
  1847. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 122 290 )" class="stroke" />
  1848. </svg>
  1849. <div id="u16131_text" class="text " style="display:none; visibility: hidden">
  1850. <p></p>
  1851. </div>
  1852. </div>
  1853. <!-- Unnamed (Table cell) -->
  1854. <div id="u16132" class="ax_default table_cell1 transition">
  1855. <svg data="images/骑手快递员/u16132.svg" id="u16132_img" class="img generatedImage" viewbox="197 290 75 38">
  1856. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 197 290 )" class="fill" />
  1857. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 290 )" class="stroke" />
  1858. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 290 )" class="stroke" />
  1859. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 197 290 )" class="stroke" />
  1860. </svg>
  1861. <div id="u16132_text" class="text " style="display:none; visibility: hidden">
  1862. <p></p>
  1863. </div>
  1864. </div>
  1865. <!-- Unnamed (Table cell) -->
  1866. <div id="u16133" class="ax_default table_cell1 transition">
  1867. <svg data="images/骑手快递员/u16133.svg" id="u16133_img" class="img generatedImage" viewbox="272 290 75 38">
  1868. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 272 290 )" class="fill" />
  1869. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 290 )" class="stroke" />
  1870. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 290 )" class="stroke" />
  1871. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 272 290 )" class="stroke" />
  1872. </svg>
  1873. <div id="u16133_text" class="text " style="display:none; visibility: hidden">
  1874. <p></p>
  1875. </div>
  1876. </div>
  1877. <!-- Unnamed (Table cell) -->
  1878. <div id="u16134" class="ax_default table_cell1 transition">
  1879. <svg data="images/骑手快递员/u16134.svg" id="u16134_img" class="img generatedImage" viewbox="347 290 75 38">
  1880. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 347 290 )" class="fill" />
  1881. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 290 )" class="stroke" />
  1882. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 290 )" class="stroke" />
  1883. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 347 290 )" class="stroke" />
  1884. </svg>
  1885. <div id="u16134_text" class="text " style="display:none; visibility: hidden">
  1886. <p></p>
  1887. </div>
  1888. </div>
  1889. <!-- Unnamed (Table cell) -->
  1890. <div id="u16135" class="ax_default table_cell1 transition">
  1891. <svg data="images/骑手快递员/u16135.svg" id="u16135_img" class="img generatedImage" viewbox="422 290 75 38">
  1892. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 422 290 )" class="fill" />
  1893. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 290 )" class="stroke" />
  1894. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 290 )" class="stroke" />
  1895. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 422 290 )" class="stroke" />
  1896. </svg>
  1897. <div id="u16135_text" class="text " style="display:none; visibility: hidden">
  1898. <p></p>
  1899. </div>
  1900. </div>
  1901. <!-- Unnamed (Table cell) -->
  1902. <div id="u16136" class="ax_default table_cell1 transition">
  1903. <svg data="images/骑手快递员/u16136.svg" id="u16136_img" class="img generatedImage" viewbox="497 290 95 38">
  1904. <path d="M 1 1 L 95 1 L 95 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 497 290 )" class="fill" />
  1905. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 290 )" class="stroke" />
  1906. <path d="M 0 0.5 L 95 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 290 )" class="stroke" />
  1907. <path d="M 0 37.5 L 95 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 497 290 )" class="stroke" />
  1908. </svg>
  1909. <div id="u16136_text" class="text " style="display:none; visibility: hidden">
  1910. <p></p>
  1911. </div>
  1912. </div>
  1913. <!-- Unnamed (Table cell) -->
  1914. <div id="u16137" class="ax_default table_cell1 transition">
  1915. <svg data="images/骑手快递员/u16137.svg" id="u16137_img" class="img generatedImage" viewbox="592 290 76 38">
  1916. <path d="M 1 1 L 76 1 L 76 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 592 290 )" class="fill" />
  1917. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 290 )" class="stroke" />
  1918. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 290 )" class="stroke" />
  1919. <path d="M 0 37.5 L 76 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 592 290 )" class="stroke" />
  1920. </svg>
  1921. <div id="u16137_text" class="text " style="display:none; visibility: hidden">
  1922. <p></p>
  1923. </div>
  1924. </div>
  1925. <!-- Unnamed (Table cell) -->
  1926. <div id="u16138" class="ax_default table_cell1 transition">
  1927. <svg data="images/骑手快递员/u16138.svg" id="u16138_img" class="img generatedImage" viewbox="668 290 75 38">
  1928. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 668 290 )" class="fill" />
  1929. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 290 )" class="stroke" />
  1930. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 290 )" class="stroke" />
  1931. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 668 290 )" class="stroke" />
  1932. </svg>
  1933. <div id="u16138_text" class="text " style="display:none; visibility: hidden">
  1934. <p></p>
  1935. </div>
  1936. </div>
  1937. <!-- Unnamed (Table cell) -->
  1938. <div id="u16139" class="ax_default table_cell1 transition">
  1939. <svg data="images/骑手快递员/u16139.svg" id="u16139_img" class="img generatedImage" viewbox="743 290 75 38">
  1940. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 743 290 )" class="fill" />
  1941. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 290 )" class="stroke" />
  1942. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 290 )" class="stroke" />
  1943. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 743 290 )" class="stroke" />
  1944. </svg>
  1945. <div id="u16139_text" class="text " style="display:none; visibility: hidden">
  1946. <p></p>
  1947. </div>
  1948. </div>
  1949. <!-- Unnamed (Table cell) -->
  1950. <div id="u16140" class="ax_default table_cell1 transition">
  1951. <svg data="images/骑手快递员/u16140.svg" id="u16140_img" class="img generatedImage" viewbox="818 290 75 38">
  1952. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 818 290 )" class="fill" />
  1953. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 290 )" class="stroke" />
  1954. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 290 )" class="stroke" />
  1955. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 818 290 )" class="stroke" />
  1956. </svg>
  1957. <div id="u16140_text" class="text " style="display:none; visibility: hidden">
  1958. <p></p>
  1959. </div>
  1960. </div>
  1961. <!-- Unnamed (Table cell) -->
  1962. <div id="u16141" class="ax_default table_cell1 transition">
  1963. <svg data="images/骑手快递员/u16141.svg" id="u16141_img" class="img generatedImage" viewbox="893 290 75 38">
  1964. <path d="M 1 1 L 75 1 L 75 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 893 290 )" class="fill" />
  1965. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 290 )" class="stroke" />
  1966. <path d="M 0 0.5 L 75 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 290 )" class="stroke" />
  1967. <path d="M 0 37.5 L 75 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 893 290 )" class="stroke" />
  1968. </svg>
  1969. <div id="u16141_text" class="text " style="display:none; visibility: hidden">
  1970. <p></p>
  1971. </div>
  1972. </div>
  1973. <!-- Unnamed (Table cell) -->
  1974. <div id="u16142" class="ax_default table_cell1 transition">
  1975. <svg data="images/骑手快递员/u16142.svg" id="u16142_img" class="img generatedImage" viewbox="968 290 76 38">
  1976. <path d="M 1 1 L 76 1 L 76 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 968 290 )" class="fill" />
  1977. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 290 )" class="stroke" />
  1978. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 290 )" class="stroke" />
  1979. <path d="M 0 37.5 L 76 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 968 290 )" class="stroke" />
  1980. </svg>
  1981. <div id="u16142_text" class="text " style="display:none; visibility: hidden">
  1982. <p></p>
  1983. </div>
  1984. </div>
  1985. <!-- Unnamed (Table cell) -->
  1986. <div id="u16143" class="ax_default table_cell1 transition">
  1987. <svg data="images/骑手快递员/u16143.svg" id="u16143_img" class="img generatedImage" viewbox="1044 290 76 38">
  1988. <path d="M 1 1 L 76 1 L 76 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1044 290 )" class="fill" />
  1989. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 290 )" class="stroke" />
  1990. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 290 )" class="stroke" />
  1991. <path d="M 0 37.5 L 76 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1044 290 )" class="stroke" />
  1992. </svg>
  1993. <div id="u16143_text" class="text " style="display:none; visibility: hidden">
  1994. <p></p>
  1995. </div>
  1996. </div>
  1997. <!-- Unnamed (Table cell) -->
  1998. <div id="u16144" class="ax_default table_cell1 transition">
  1999. <svg data="images/骑手快递员/u16144.svg" id="u16144_img" class="img generatedImage" viewbox="1120 290 99 38">
  2000. <path d="M 1 1 L 98 1 L 98 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1120 290 )" class="fill" />
  2001. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 290 )" class="stroke" />
  2002. <path d="M 0 0.5 L 99 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 290 )" class="stroke" />
  2003. <path d="M 98.5 1 L 98.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 290 )" class="stroke" />
  2004. <path d="M 0 37.5 L 99 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1120 290 )" class="stroke" />
  2005. </svg>
  2006. <div id="u16144_text" class="text " style="display:none; visibility: hidden">
  2007. <p></p>
  2008. </div>
  2009. </div>
  2010. </div>
  2011. <!-- Unnamed (Group) -->
  2012. <div id="u16145" class="ax_default" data-left="350" data-top="194" data-width="130" data-height="30" layer-opacity="1">
  2013. <!-- Unnamed (Rectangle) -->
  2014. <div id="u16146" class="ax_default box_1 transition">
  2015. <div id="u16146_div" class=""></div>
  2016. <div id="u16146_text" class="text ">
  2017. <p><span>搜索</span></p>
  2018. </div>
  2019. </div>
  2020. <!-- Unnamed (Rectangle) -->
  2021. <div id="u16147" class="ax_default box_1 transition">
  2022. <div id="u16147_div" class=""></div>
  2023. <div id="u16147_text" class="text ">
  2024. <p><span>重置</span></p>
  2025. </div>
  2026. </div>
  2027. </div>
  2028. <!-- Unnamed (Group) -->
  2029. <div id="u16148" class="ax_default" data-left="650" data-top="156" data-width="140" data-height="30" layer-opacity="1">
  2030. <!-- Unnamed (Rectangle) -->
  2031. <div id="u16149" class="ax_default box_1 transition">
  2032. <div id="u16149_div" class=""></div>
  2033. <div id="u16149_text" class="text " style="display:none; visibility: hidden">
  2034. <p></p>
  2035. </div>
  2036. </div>
  2037. <!-- Unnamed (Droplist) -->
  2038. <div id="u16150" class="ax_default droplist transition">
  2039. <div id="u16150_div" class=""></div>
  2040. <select id="u16150_input" class="u16150_input">
  2041. <option class="u16150_input_option" value="性别">性别</option>
  2042. </select>
  2043. </div>
  2044. </div>
  2045. <!-- Unnamed (Group) -->
  2046. <div id="u16151" class="ax_default" data-left="800" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2047. <!-- Unnamed (Rectangle) -->
  2048. <div id="u16152" class="ax_default shape transition">
  2049. <div id="u16152_div" class=""></div>
  2050. <div id="u16152_text" class="text " style="display:none; visibility: hidden">
  2051. <p></p>
  2052. </div>
  2053. </div>
  2054. <!-- 选项内容 (Text field) -->
  2055. <div id="u16153" class="ax_default text_field transition" data-label="选项内容">
  2056. <div id="u16153_div" class=""></div>
  2057. <input id="u16153_input" type="text" value="" class="u16153_input"/>
  2058. </div>
  2059. </div>
  2060. <!-- Unnamed (Group) -->
  2061. <div id="u16154" class="ax_default" data-left="950" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2062. <!-- Unnamed (Rectangle) -->
  2063. <div id="u16155" class="ax_default box_1 transition">
  2064. <div id="u16155_div" class=""></div>
  2065. <div id="u16155_text" class="text " style="display:none; visibility: hidden">
  2066. <p></p>
  2067. </div>
  2068. </div>
  2069. <!-- Unnamed (Droplist) -->
  2070. <div id="u16156" class="ax_default droplist transition">
  2071. <div id="u16156_div" class=""></div>
  2072. <select id="u16156_input" class="u16156_input">
  2073. <option class="u16156_input_option" value="授权状态">授权状态</option>
  2074. </select>
  2075. </div>
  2076. </div>
  2077. <!-- Unnamed (Group) -->
  2078. <div id="u16157" class="ax_default" data-left="1250" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2079. <!-- Unnamed (Rectangle) -->
  2080. <div id="u16158" class="ax_default shape transition">
  2081. <div id="u16158_div" class=""></div>
  2082. <div id="u16158_text" class="text " style="display:none; visibility: hidden">
  2083. <p></p>
  2084. </div>
  2085. </div>
  2086. <!-- 选项内容 (Text field) -->
  2087. <div id="u16159" class="ax_default text_field transition" data-label="选项内容">
  2088. <div id="u16159_div" class=""></div>
  2089. <input id="u16159_input" type="text" value="" class="u16159_input"/>
  2090. </div>
  2091. </div>
  2092. <!-- Unnamed (Group) -->
  2093. <div id="u16160" class="ax_default" data-left="1100" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2094. <!-- Unnamed (Rectangle) -->
  2095. <div id="u16161" class="ax_default box_1 transition">
  2096. <div id="u16161_div" class=""></div>
  2097. <div id="u16161_text" class="text " style="display:none; visibility: hidden">
  2098. <p></p>
  2099. </div>
  2100. </div>
  2101. <!-- Unnamed (Droplist) -->
  2102. <div id="u16162" class="ax_default droplist transition">
  2103. <div id="u16162_div" class=""></div>
  2104. <select id="u16162_input" class="u16162_input">
  2105. <option class="u16162_input_option" value="证件类型">证件类型</option>
  2106. <option class="u16162_input_option" value="身份证">身份证</option>
  2107. <option class="u16162_input_option" value="营业执照">营业执照</option>
  2108. </select>
  2109. </div>
  2110. </div>
  2111. <!-- Unnamed (Rectangle) -->
  2112. <div id="u16163" class="ax_default box_1 transition">
  2113. <div id="u16163_div" class=""></div>
  2114. <div id="u16163_text" class="text ">
  2115. <p><span>设置</span></p>
  2116. </div>
  2117. </div>
  2118. <!-- Unnamed (Group) -->
  2119. <div id="u16164" class="ax_default" data-left="1400" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2120. <!-- Unnamed (Rectangle) -->
  2121. <div id="u16165" class="ax_default box_1 transition">
  2122. <div id="u16165_div" class=""></div>
  2123. <div id="u16165_text" class="text " style="display:none; visibility: hidden">
  2124. <p></p>
  2125. </div>
  2126. </div>
  2127. <!-- Unnamed (Droplist) -->
  2128. <div id="u16166" class="ax_default droplist transition">
  2129. <div id="u16166_div" class=""></div>
  2130. <select id="u16166_input" class="u16166_input">
  2131. <option class="u16166_input_option" value="登记起止时间">登记起止时间</option>
  2132. </select>
  2133. </div>
  2134. </div>
  2135. <!-- Unnamed (Group) -->
  2136. <div id="u16167" class="ax_default" data-left="500" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2137. <!-- Unnamed (Rectangle) -->
  2138. <div id="u16168" class="ax_default shape transition">
  2139. <div id="u16168_div" class=""></div>
  2140. <div id="u16168_text" class="text " style="display:none; visibility: hidden">
  2141. <p></p>
  2142. </div>
  2143. </div>
  2144. <!-- 选项内容 (Text field) -->
  2145. <div id="u16169" class="ax_default text_field transition" data-label="选项内容">
  2146. <div id="u16169_div" class=""></div>
  2147. <input id="u16169_input" type="text" value="" class="u16169_input"/>
  2148. </div>
  2149. </div>
  2150. <!-- Unnamed (客户-人员中心) -->
  2151. <div id="u16170" class="nopointer ax_default">
  2152. <!-- Unnamed (Group) -->
  2153. <div id="u16171" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
  2154. <!-- Unnamed (Rectangle) -->
  2155. <div id="u16172" class="ax_default box_2 transition">
  2156. <div id="u16172_div" class=""></div>
  2157. <div id="u16172_text" class="text " style="display:none; visibility: hidden">
  2158. <p></p>
  2159. </div>
  2160. </div>
  2161. <!-- Unnamed (Rectangle) -->
  2162. <div id="u16173" class="ax_default label transition">
  2163. <div id="u16173_div" class=""></div>
  2164. <div id="u16173_text" class="text ">
  2165. <p><span>客户中心</span></p>
  2166. </div>
  2167. </div>
  2168. <!-- Unnamed (Rectangle) -->
  2169. <div id="u16174" class="ax_default label transition">
  2170. <div id="u16174_div" class=""></div>
  2171. <div id="u16174_text" class="text ">
  2172. <p><span>入驻企业</span></p>
  2173. </div>
  2174. </div>
  2175. <!-- Unnamed (Rectangle) -->
  2176. <div id="u16175" class="ax_default label transition">
  2177. <div id="u16175_div" class=""></div>
  2178. <div id="u16175_text" class="text ">
  2179. <p><span>入驻机构</span></p>
  2180. </div>
  2181. </div>
  2182. <!-- Unnamed (Rectangle) -->
  2183. <div id="u16176" class="ax_default label transition">
  2184. <div id="u16176_div" class=""></div>
  2185. <div id="u16176_text" class="text ">
  2186. <p><span>人员登记</span></p>
  2187. </div>
  2188. </div>
  2189. <!-- Unnamed (Rectangle) -->
  2190. <div id="u16177" class="ax_default label transition">
  2191. <div id="u16177_div" class=""></div>
  2192. <div id="u16177_text" class="text ">
  2193. <p><span>房屋住户</span></p>
  2194. </div>
  2195. </div>
  2196. <!-- Unnamed (Line) -->
  2197. <div id="u16178" class="ax_default line1 transition">
  2198. <svg data="images/项目列表/u4861.svg" id="u16178_img" class="img generatedImage">
  2199. <g transform="matrix(1 0 0 1 -1 -122 )">
  2200. <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" />
  2201. </g>
  2202. </svg>
  2203. <div id="u16178_text" class="text " style="display:none; visibility: hidden">
  2204. <p></p>
  2205. </div>
  2206. </div>
  2207. <!-- Unnamed (Rectangle) -->
  2208. <div id="u16179" class="ax_default label transition">
  2209. <div id="u16179_div" class=""></div>
  2210. <div id="u16179_text" class="text ">
  2211. <p><span>企业员工</span></p>
  2212. </div>
  2213. </div>
  2214. <!-- Unnamed (Rectangle) -->
  2215. <div id="u16180" class="ax_default label transition">
  2216. <div id="u16180_div" class=""></div>
  2217. <div id="u16180_text" class="text ">
  2218. <p><span>业主管理</span></p>
  2219. </div>
  2220. </div>
  2221. <!-- Unnamed (Line) -->
  2222. <div id="u16181" class="ax_default line1 transition">
  2223. <svg data="images/项目列表/u4861.svg" id="u16181_img" class="img generatedImage">
  2224. <g transform="matrix(1 0 0 1 -1 -122 )">
  2225. <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" />
  2226. </g>
  2227. </svg>
  2228. <div id="u16181_text" class="text " style="display:none; visibility: hidden">
  2229. <p></p>
  2230. </div>
  2231. </div>
  2232. <!-- Unnamed (Rectangle) -->
  2233. <div id="u16182" class="ax_default label transition">
  2234. <div id="u16182_div" class=""></div>
  2235. <div id="u16182_text" class="text ">
  2236. <p><span>房屋业主</span></p>
  2237. </div>
  2238. </div>
  2239. <!-- Unnamed (Rectangle) -->
  2240. <div id="u16183" class="ax_default label transition">
  2241. <div id="u16183_div" class=""></div>
  2242. <div id="u16183_text" class="text ">
  2243. <p><span>车位业主</span></p>
  2244. </div>
  2245. </div>
  2246. <!-- Unnamed (Rectangle) -->
  2247. <div id="u16184" class="ax_default label transition">
  2248. <div id="u16184_div" class=""></div>
  2249. <div id="u16184_text" class="text ">
  2250. <p><span>认证设置</span></p>
  2251. </div>
  2252. </div>
  2253. <!-- Unnamed (Rectangle) -->
  2254. <div id="u16185" class="ax_default label transition">
  2255. <div id="u16185_div" class=""></div>
  2256. <div id="u16185_text" class="text ">
  2257. <p><span>房屋业主认证</span></p>
  2258. </div>
  2259. </div>
  2260. <!-- Unnamed (Rectangle) -->
  2261. <div id="u16186" class="ax_default label transition">
  2262. <div id="u16186_div" class=""></div>
  2263. <div id="u16186_text" class="text ">
  2264. <p><span>身份认证</span></p>
  2265. </div>
  2266. </div>
  2267. <!-- Unnamed (Line) -->
  2268. <div id="u16187" class="ax_default line1 transition">
  2269. <svg data="images/项目列表/u4861.svg" id="u16187_img" class="img generatedImage">
  2270. <g transform="matrix(1 0 0 1 -1 -122 )">
  2271. <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" />
  2272. </g>
  2273. </svg>
  2274. <div id="u16187_text" class="text " style="display:none; visibility: hidden">
  2275. <p></p>
  2276. </div>
  2277. </div>
  2278. <!-- Unnamed (Rectangle) -->
  2279. <div id="u16188" class="ax_default label transition">
  2280. <div id="u16188_div" class=""></div>
  2281. <div id="u16188_text" class="text ">
  2282. <p><span>房源住户认证</span></p>
  2283. </div>
  2284. </div>
  2285. <!-- Unnamed (Rectangle) -->
  2286. <div id="u16189" class="ax_default label transition">
  2287. <div id="u16189_div" class=""></div>
  2288. <div id="u16189_text" class="text ">
  2289. <p><span>入驻企业认证</span></p>
  2290. </div>
  2291. </div>
  2292. <!-- Unnamed (Rectangle) -->
  2293. <div id="u16190" class="ax_default label transition">
  2294. <div id="u16190_div" class=""></div>
  2295. <div id="u16190_text" class="text ">
  2296. <p><span>人员档案</span></p>
  2297. </div>
  2298. </div>
  2299. <!-- Unnamed (Rectangle) -->
  2300. <div id="u16191" class="ax_default label transition">
  2301. <div id="u16191_div" class=""></div>
  2302. <div id="u16191_text" class="text ">
  2303. <p><span>客户档案</span></p>
  2304. </div>
  2305. </div>
  2306. <!-- Unnamed (Line) -->
  2307. <div id="u16192" class="ax_default line1 transition">
  2308. <svg data="images/项目列表/u4861.svg" id="u16192_img" class="img generatedImage">
  2309. <g transform="matrix(1 0 0 1 -1 -122 )">
  2310. <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" />
  2311. </g>
  2312. </svg>
  2313. <div id="u16192_text" class="text " style="display:none; visibility: hidden">
  2314. <p></p>
  2315. </div>
  2316. </div>
  2317. <!-- Unnamed (Rectangle) -->
  2318. <div id="u16193" class="ax_default label transition">
  2319. <div id="u16193_div" class=""></div>
  2320. <div id="u16193_text" class="text ">
  2321. <p><span>机构档案</span></p>
  2322. </div>
  2323. </div>
  2324. <!-- Unnamed (Rectangle) -->
  2325. <div id="u16194" class="ax_default label transition">
  2326. <div id="u16194_div" class=""></div>
  2327. <div id="u16194_text" class="text ">
  2328. <p><span>物业人员认证</span></p>
  2329. </div>
  2330. </div>
  2331. <!-- Unnamed (Rectangle) -->
  2332. <div id="u16195" class="ax_default label transition">
  2333. <div id="u16195_div" class=""></div>
  2334. <div id="u16195_text" class="text ">
  2335. <p><span>业主委员会</span></p>
  2336. </div>
  2337. </div>
  2338. <!-- Unnamed (Rectangle) -->
  2339. <div id="u16196" class="ax_default label transition">
  2340. <div id="u16196_div" class=""></div>
  2341. <div id="u16196_text" class="text ">
  2342. <p><span>车位业主认证</span></p>
  2343. </div>
  2344. </div>
  2345. <!-- Unnamed (Rectangle) -->
  2346. <div id="u16197" class="ax_default label transition">
  2347. <div id="u16197_div" class=""></div>
  2348. <div id="u16197_text" class="text ">
  2349. <p><span>物业员工</span></p>
  2350. </div>
  2351. </div>
  2352. <!-- Unnamed (Rectangle) -->
  2353. <div id="u16198" class="ax_default label transition">
  2354. <div id="u16198_div" class=""></div>
  2355. <div id="u16198_text" class="text ">
  2356. <p><span>骑手快递员</span></p>
  2357. </div>
  2358. </div>
  2359. <!-- Unnamed (Rectangle) -->
  2360. <div id="u16199" class="ax_default label transition">
  2361. <div id="u16199_div" class=""></div>
  2362. <div id="u16199_text" class="text ">
  2363. <p><span>装修工人</span></p>
  2364. </div>
  2365. </div>
  2366. <!-- Unnamed (Rectangle) -->
  2367. <div id="u16200" class="ax_default label transition">
  2368. <div id="u16200_div" class=""></div>
  2369. <div id="u16200_text" class="text ">
  2370. <p><span>临时登记人员</span></p>
  2371. </div>
  2372. </div>
  2373. <!-- Unnamed (Line) -->
  2374. <div id="u16201" class="ax_default line1 transition">
  2375. <svg data="images/项目列表/u4861.svg" id="u16201_img" class="img generatedImage">
  2376. <g transform="matrix(1 0 0 1 -1 -122 )">
  2377. <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" />
  2378. </g>
  2379. </svg>
  2380. <div id="u16201_text" class="text " style="display:none; visibility: hidden">
  2381. <p></p>
  2382. </div>
  2383. </div>
  2384. </div>
  2385. </div>
  2386. <!-- Unnamed (Rectangle) -->
  2387. <div id="u16202" class="ax_default paragraph transition">
  2388. <div id="u16202_div" class=""></div>
  2389. <div id="u16202_text" class="text ">
  2390. <p><span>通过确认的骑手快递员,默认授予相关门禁点的通行1个月的有效期;门禁点、有效期可前往「设置」进行修改。</span></p>
  2391. </div>
  2392. </div>
  2393. <!-- Unnamed (Rectangle) -->
  2394. <div id="u16203" class="ax_default paragraph transition">
  2395. <div id="u16203_div" class=""></div>
  2396. <div id="u16203_text" class="text ">
  2397. <p><span>骑手快递员</span></p>
  2398. </div>
  2399. </div>
  2400. <!-- Unnamed (Group) -->
  2401. <div id="u16204" class="ax_default" data-left="350" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2402. <!-- Unnamed (Rectangle) -->
  2403. <div id="u16205" class="ax_default box_1 transition">
  2404. <div id="u16205_div" class=""></div>
  2405. <div id="u16205_text" class="text " style="display:none; visibility: hidden">
  2406. <p></p>
  2407. </div>
  2408. </div>
  2409. <!-- Unnamed (Droplist) -->
  2410. <div id="u16206" class="ax_default droplist transition">
  2411. <div id="u16206_div" class=""></div>
  2412. <select id="u16206_input" class="u16206_input">
  2413. <option class="u16206_input_option" value="美团">美团</option>
  2414. <option class="u16206_input_option" value="饿了么">饿了么</option>
  2415. <option class="u16206_input_option" value="京东">京东</option>
  2416. <option class="u16206_input_option" value="顺丰">顺丰</option>
  2417. <option class="u16206_input_option" value="…">…</option>
  2418. </select>
  2419. </div>
  2420. </div>
  2421. <!-- Unnamed (Rectangle) -->
  2422. <div id="u16207" class="ax_default box_1 transition">
  2423. <div id="u16207_div" class=""></div>
  2424. <div id="u16207_text" class="text ">
  2425. <p><span>导出</span></p>
  2426. </div>
  2427. </div>
  2428. <!-- Unnamed (Group) -->
  2429. <div id="u16208" class="ax_default" data-left="808" data-top="906" data-width="380" data-height="160" layer-opacity="1">
  2430. <!-- Unnamed (Group) -->
  2431. <div id="u16209" class="ax_default" data-left="808" data-top="906" data-width="380" data-height="160" layer-opacity="1">
  2432. <!-- Unnamed (Rectangle) -->
  2433. <div id="u16210" class="ax_default shape transition">
  2434. <div id="u16210_div" class=""></div>
  2435. <div id="u16210_text" class="text " style="display:none; visibility: hidden">
  2436. <p></p>
  2437. </div>
  2438. </div>
  2439. <!-- Unnamed (Rectangle) -->
  2440. <div id="u16211" class="ax_default paragraph transition">
  2441. <div id="u16211_div" class=""></div>
  2442. <div id="u16211_text" class="text ">
  2443. <p><span>确定删除人员?</span></p>
  2444. </div>
  2445. </div>
  2446. <!-- Unnamed (Rectangle) -->
  2447. <div id="u16212" class="ax_default shape transition">
  2448. <div id="u16212_div" class=""></div>
  2449. <div id="u16212_text" class="text ">
  2450. <p><span>确定</span></p>
  2451. </div>
  2452. </div>
  2453. <!-- Unnamed (Shape) -->
  2454. <div id="u16213" class="ax_default icon transition">
  2455. <svg data="images/项目列表/u4791.svg" id="u16213_img" class="img generatedImage">
  2456. <defs>
  2457. <pattern id="u16213_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2458. <mask fill="white" id="u16213_img_cl2936">
  2459. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2460. </mask>
  2461. </defs>
  2462. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2463. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2464. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16213_img_cl2936)" />
  2465. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16213_img_cl2936)" />
  2466. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16213_img_cl2936)" />
  2467. </g>
  2468. </svg>
  2469. <div id="u16213_text" class="text " style="display:none; visibility: hidden">
  2470. <p></p>
  2471. </div>
  2472. </div>
  2473. <!-- Unnamed (Rectangle) -->
  2474. <div id="u16214" class="ax_default paragraph transition">
  2475. <div id="u16214_div" class=""></div>
  2476. <div id="u16214_text" class="text ">
  2477. <p><span>删除之后,系统将同步清除人员相关的通行权限。</span></p>
  2478. </div>
  2479. </div>
  2480. <!-- Unnamed (Rectangle) -->
  2481. <div id="u16215" class="ax_default shape transition">
  2482. <div id="u16215_div" class=""></div>
  2483. <div id="u16215_text" class="text ">
  2484. <p><span>取 消</span></p>
  2485. </div>
  2486. </div>
  2487. </div>
  2488. </div>
  2489. <!-- Unnamed (Group) -->
  2490. <div id="u16216" class="ax_default" data-left="808" data-top="468" data-width="380" data-height="160" layer-opacity="1">
  2491. <!-- Unnamed (Group) -->
  2492. <div id="u16217" class="ax_default" data-left="808" data-top="468" data-width="380" data-height="160" layer-opacity="1">
  2493. <!-- Unnamed (Rectangle) -->
  2494. <div id="u16218" class="ax_default shape transition">
  2495. <div id="u16218_div" class=""></div>
  2496. <div id="u16218_text" class="text " style="display:none; visibility: hidden">
  2497. <p></p>
  2498. </div>
  2499. </div>
  2500. <!-- Unnamed (Rectangle) -->
  2501. <div id="u16219" class="ax_default paragraph transition">
  2502. <div id="u16219_div" class=""></div>
  2503. <div id="u16219_text" class="text ">
  2504. <p><span>确定批量通过?</span></p>
  2505. </div>
  2506. </div>
  2507. <!-- Unnamed (Rectangle) -->
  2508. <div id="u16220" class="ax_default shape transition">
  2509. <div id="u16220_div" class=""></div>
  2510. <div id="u16220_text" class="text ">
  2511. <p><span>确定</span></p>
  2512. </div>
  2513. </div>
  2514. <!-- Unnamed (Shape) -->
  2515. <div id="u16221" class="ax_default icon transition">
  2516. <svg data="images/项目列表/u4791.svg" id="u16221_img" class="img generatedImage">
  2517. <defs>
  2518. <pattern id="u16221_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2519. <mask fill="white" id="u16221_img_cl2936">
  2520. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2521. </mask>
  2522. </defs>
  2523. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2524. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2525. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16221_img_cl2936)" />
  2526. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16221_img_cl2936)" />
  2527. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16221_img_cl2936)" />
  2528. </g>
  2529. </svg>
  2530. <div id="u16221_text" class="text " style="display:none; visibility: hidden">
  2531. <p></p>
  2532. </div>
  2533. </div>
  2534. <!-- Unnamed (Rectangle) -->
  2535. <div id="u16222" class="ax_default paragraph transition">
  2536. <div id="u16222_div" class=""></div>
  2537. <div id="u16222_text" class="text ">
  2538. <p><span>通过之后,相关人员身份以及相关通行权限将生效。</span></p>
  2539. </div>
  2540. </div>
  2541. <!-- Unnamed (Rectangle) -->
  2542. <div id="u16223" class="ax_default shape transition">
  2543. <div id="u16223_div" class=""></div>
  2544. <div id="u16223_text" class="text ">
  2545. <p><span>取 消</span></p>
  2546. </div>
  2547. </div>
  2548. </div>
  2549. </div>
  2550. <!-- Unnamed (Group) -->
  2551. <div id="u16224" class="ax_default" data-left="808" data-top="646" data-width="380" data-height="240" layer-opacity="1">
  2552. <!-- Unnamed (Group) -->
  2553. <div id="u16225" class="ax_default" data-left="808" data-top="646" data-width="380" data-height="240" layer-opacity="1">
  2554. <!-- Unnamed (Rectangle) -->
  2555. <div id="u16226" class="ax_default shape transition">
  2556. <div id="u16226_div" class=""></div>
  2557. <div id="u16226_text" class="text " style="display:none; visibility: hidden">
  2558. <p></p>
  2559. </div>
  2560. </div>
  2561. <!-- Unnamed (Rectangle) -->
  2562. <div id="u16227" class="ax_default paragraph transition">
  2563. <div id="u16227_div" class=""></div>
  2564. <div id="u16227_text" class="text ">
  2565. <p><span>确定批量驳回?</span></p>
  2566. </div>
  2567. </div>
  2568. <!-- Unnamed (Rectangle) -->
  2569. <div id="u16228" class="ax_default shape transition">
  2570. <div id="u16228_div" class=""></div>
  2571. <div id="u16228_text" class="text ">
  2572. <p><span>确定</span></p>
  2573. </div>
  2574. </div>
  2575. <!-- Unnamed (Shape) -->
  2576. <div id="u16229" class="ax_default icon transition">
  2577. <svg data="images/项目列表/u4791.svg" id="u16229_img" class="img generatedImage">
  2578. <defs>
  2579. <pattern id="u16229_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2580. <mask fill="white" id="u16229_img_cl2936">
  2581. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2582. </mask>
  2583. </defs>
  2584. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2585. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2586. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16229_img_cl2936)" />
  2587. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16229_img_cl2936)" />
  2588. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u16229_img_cl2936)" />
  2589. </g>
  2590. </svg>
  2591. <div id="u16229_text" class="text " style="display:none; visibility: hidden">
  2592. <p></p>
  2593. </div>
  2594. </div>
  2595. <!-- Unnamed (Rectangle) -->
  2596. <div id="u16230" class="ax_default paragraph transition">
  2597. <div id="u16230_div" class=""></div>
  2598. <div id="u16230_text" class="text ">
  2599. <p><span>驳回之后,相关人员将无法获取相关通行权限。</span></p>
  2600. </div>
  2601. </div>
  2602. <!-- Unnamed (Rectangle) -->
  2603. <div id="u16231" class="ax_default shape transition">
  2604. <div id="u16231_div" class=""></div>
  2605. <div id="u16231_text" class="text ">
  2606. <p><span>取 消</span></p>
  2607. </div>
  2608. </div>
  2609. <!-- Unnamed (Group) -->
  2610. <div id="u16232" class="ax_default" data-left="868" data-top="746" data-width="300" data-height="80" layer-opacity="1">
  2611. <!-- Unnamed (Rectangle) -->
  2612. <div id="u16233" class="ax_default shape transition">
  2613. <div id="u16233_div" class=""></div>
  2614. <div id="u16233_text" class="text " style="display:none; visibility: hidden">
  2615. <p></p>
  2616. </div>
  2617. </div>
  2618. <!-- Unnamed (Text area) -->
  2619. <div id="u16234" class="ax_default text_area transition">
  2620. <div id="u16234_div" class=""></div>
  2621. <textarea id="u16234_input" class="u16234_input"></textarea>
  2622. </div>
  2623. </div>
  2624. </div>
  2625. </div>
  2626. <!-- Unnamed (Group) -->
  2627. <div id="u16235" class="ax_default" data-left="1215" data-top="436" data-width="145" data-height="46" layer-opacity="1">
  2628. <!-- Unnamed (Shape) -->
  2629. <div id="u16236" class="ax_default icon transition">
  2630. <svg data="images/骑手快递员/u16236.svg" id="u16236_img" class="img generatedImage">
  2631. <defs>
  2632. <pattern id="u16236_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2633. <mask fill="white" id="u16236_img_cl3579">
  2634. <path d="M 6.608072916666666 8.274739583333334 C 6.647135416666666 8.235677083333334 6.666666666666666 8.18576388888889 6.666666666666666 8.125 L 6.666666666666666 7.083333333333332 C 6.666666666666666 7.022569444444445 6.647135416666666 6.97265625 6.608072916666666 6.93359375 C 6.569010416666666 6.89453125 6.519097222222222 6.875 6.458333333333334 6.875 L 5.833333333333334 6.875 L 5.833333333333334 3.541666666666666 C 5.833333333333334 3.4809027777777777 5.813802083333334 3.430989583333334 5.774739583333334 3.391927083333334 C 5.735677083333334 3.352864583333334 5.685763888888889 3.333333333333334 5.625 3.333333333333334 L 3.541666666666667 3.333333333333334 C 3.4809027777777786 3.333333333333334 3.430989583333333 3.352864583333334 3.391927083333333 3.391927083333334 C 3.352864583333333 3.430989583333334 3.333333333333333 3.4809027777777777 3.333333333333333 3.541666666666666 L 3.333333333333333 4.583333333333334 C 3.333333333333333 4.644097222222222 3.352864583333333 4.694010416666666 3.391927083333333 4.733072916666666 C 3.430989583333333 4.772135416666666 3.4809027777777786 4.791666666666666 3.541666666666667 4.791666666666666 L 4.166666666666667 4.791666666666666 L 4.166666666666667 6.875 L 3.541666666666667 6.875 C 3.4809027777777786 6.875 3.430989583333333 6.89453125 3.391927083333333 6.93359375 C 3.352864583333333 6.97265625 3.333333333333333 7.022569444444445 3.333333333333333 7.083333333333332 L 3.333333333333333 8.125 C 3.333333333333333 8.18576388888889 3.352864583333333 8.235677083333334 3.391927083333333 8.274739583333334 C 3.430989583333333 8.313802083333334 3.4809027777777786 8.333333333333334 3.541666666666667 8.333333333333334 L 6.458333333333334 8.333333333333334 C 6.519097222222222 8.333333333333334 6.569010416666666 8.313802083333334 6.608072916666666 8.274739583333334 Z M 5.774739583333334 2.44140625 C 5.813802083333334 2.40234375 5.833333333333334 2.3524305555555545 5.833333333333334 2.291666666666666 L 5.833333333333334 1.25 C 5.833333333333334 1.1892361111111105 5.813802083333334 1.1393229166666663 5.774739583333334 1.1002604166666663 C 5.735677083333334 1.0611979166666663 5.685763888888889 1.0416666666666663 5.625 1.0416666666666663 L 4.375 1.0416666666666663 C 4.314236111111112 1.0416666666666663 4.264322916666667 1.0611979166666663 4.225260416666667 1.1002604166666663 C 4.186197916666667 1.1393229166666663 4.166666666666667 1.1892361111111105 4.166666666666667 1.25 L 4.166666666666667 2.291666666666666 C 4.166666666666667 2.3524305555555545 4.186197916666667 2.40234375 4.225260416666667 2.44140625 C 4.264322916666667 2.48046875 4.314236111111112 2.5 4.375 2.5 L 5.625 2.5 C 5.685763888888889 2.5 5.735677083333334 2.48046875 5.774739583333334 2.44140625 Z M 9.329427083333334 2.490234375 C 9.776475694444443 3.256293402777777 10 4.092881944444443 10 5 C 10 5.907118055555555 9.776475694444443 6.743706597222221 9.329427083333334 7.509765625 C 8.882378472222223 8.275824652777779 8.275824652777779 8.882378472222221 7.509765625 9.329427083333334 C 6.743706597222223 9.776475694444445 5.907118055555555 10 5 10 C 4.092881944444445 10 3.2562934027777777 9.776475694444445 2.490234375 9.329427083333334 C 1.7241753472222223 8.882378472222221 1.117621527777778 8.275824652777779 0.6705729166666667 7.509765625 C 0.22352430555555552 6.743706597222221 0 5.907118055555555 0 5 C 0 4.092881944444443 0.22352430555555552 3.256293402777777 0.6705729166666667 2.490234375 C 1.117621527777778 1.724175347222222 1.7241753472222223 1.1176215277777768 2.490234375 0.6705729166666663 C 3.2562934027777777 0.2235243055555547 4.092881944444445 0 5 0 C 5.907118055555555 0 6.743706597222223 0.2235243055555547 7.509765625 0.6705729166666663 C 8.275824652777779 1.1176215277777768 8.882378472222223 1.724175347222222 9.329427083333334 2.490234375 Z " fill-rule="evenodd" />
  2635. </mask>
  2636. </defs>
  2637. <g transform="matrix(1 0 0 1 -1220 -472 )">
  2638. <path d="M 6.608072916666666 8.274739583333334 C 6.647135416666666 8.235677083333334 6.666666666666666 8.18576388888889 6.666666666666666 8.125 L 6.666666666666666 7.083333333333332 C 6.666666666666666 7.022569444444445 6.647135416666666 6.97265625 6.608072916666666 6.93359375 C 6.569010416666666 6.89453125 6.519097222222222 6.875 6.458333333333334 6.875 L 5.833333333333334 6.875 L 5.833333333333334 3.541666666666666 C 5.833333333333334 3.4809027777777777 5.813802083333334 3.430989583333334 5.774739583333334 3.391927083333334 C 5.735677083333334 3.352864583333334 5.685763888888889 3.333333333333334 5.625 3.333333333333334 L 3.541666666666667 3.333333333333334 C 3.4809027777777786 3.333333333333334 3.430989583333333 3.352864583333334 3.391927083333333 3.391927083333334 C 3.352864583333333 3.430989583333334 3.333333333333333 3.4809027777777777 3.333333333333333 3.541666666666666 L 3.333333333333333 4.583333333333334 C 3.333333333333333 4.644097222222222 3.352864583333333 4.694010416666666 3.391927083333333 4.733072916666666 C 3.430989583333333 4.772135416666666 3.4809027777777786 4.791666666666666 3.541666666666667 4.791666666666666 L 4.166666666666667 4.791666666666666 L 4.166666666666667 6.875 L 3.541666666666667 6.875 C 3.4809027777777786 6.875 3.430989583333333 6.89453125 3.391927083333333 6.93359375 C 3.352864583333333 6.97265625 3.333333333333333 7.022569444444445 3.333333333333333 7.083333333333332 L 3.333333333333333 8.125 C 3.333333333333333 8.18576388888889 3.352864583333333 8.235677083333334 3.391927083333333 8.274739583333334 C 3.430989583333333 8.313802083333334 3.4809027777777786 8.333333333333334 3.541666666666667 8.333333333333334 L 6.458333333333334 8.333333333333334 C 6.519097222222222 8.333333333333334 6.569010416666666 8.313802083333334 6.608072916666666 8.274739583333334 Z M 5.774739583333334 2.44140625 C 5.813802083333334 2.40234375 5.833333333333334 2.3524305555555545 5.833333333333334 2.291666666666666 L 5.833333333333334 1.25 C 5.833333333333334 1.1892361111111105 5.813802083333334 1.1393229166666663 5.774739583333334 1.1002604166666663 C 5.735677083333334 1.0611979166666663 5.685763888888889 1.0416666666666663 5.625 1.0416666666666663 L 4.375 1.0416666666666663 C 4.314236111111112 1.0416666666666663 4.264322916666667 1.0611979166666663 4.225260416666667 1.1002604166666663 C 4.186197916666667 1.1393229166666663 4.166666666666667 1.1892361111111105 4.166666666666667 1.25 L 4.166666666666667 2.291666666666666 C 4.166666666666667 2.3524305555555545 4.186197916666667 2.40234375 4.225260416666667 2.44140625 C 4.264322916666667 2.48046875 4.314236111111112 2.5 4.375 2.5 L 5.625 2.5 C 5.685763888888889 2.5 5.735677083333334 2.48046875 5.774739583333334 2.44140625 Z M 9.329427083333334 2.490234375 C 9.776475694444443 3.256293402777777 10 4.092881944444443 10 5 C 10 5.907118055555555 9.776475694444443 6.743706597222221 9.329427083333334 7.509765625 C 8.882378472222223 8.275824652777779 8.275824652777779 8.882378472222221 7.509765625 9.329427083333334 C 6.743706597222223 9.776475694444445 5.907118055555555 10 5 10 C 4.092881944444445 10 3.2562934027777777 9.776475694444445 2.490234375 9.329427083333334 C 1.7241753472222223 8.882378472222221 1.117621527777778 8.275824652777779 0.6705729166666667 7.509765625 C 0.22352430555555552 6.743706597222221 0 5.907118055555555 0 5 C 0 4.092881944444443 0.22352430555555552 3.256293402777777 0.6705729166666667 2.490234375 C 1.117621527777778 1.724175347222222 1.7241753472222223 1.1176215277777768 2.490234375 0.6705729166666663 C 3.2562934027777777 0.2235243055555547 4.092881944444445 0 5 0 C 5.907118055555555 0 6.743706597222223 0.2235243055555547 7.509765625 0.6705729166666663 C 8.275824652777779 1.1176215277777768 8.882378472222223 1.724175347222222 9.329427083333334 2.490234375 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1220 472 )" class="fill" />
  2639. <path d="M 6.608072916666666 8.274739583333334 C 6.647135416666666 8.235677083333334 6.666666666666666 8.18576388888889 6.666666666666666 8.125 L 6.666666666666666 7.083333333333332 C 6.666666666666666 7.022569444444445 6.647135416666666 6.97265625 6.608072916666666 6.93359375 C 6.569010416666666 6.89453125 6.519097222222222 6.875 6.458333333333334 6.875 L 5.833333333333334 6.875 L 5.833333333333334 3.541666666666666 C 5.833333333333334 3.4809027777777777 5.813802083333334 3.430989583333334 5.774739583333334 3.391927083333334 C 5.735677083333334 3.352864583333334 5.685763888888889 3.333333333333334 5.625 3.333333333333334 L 3.541666666666667 3.333333333333334 C 3.4809027777777786 3.333333333333334 3.430989583333333 3.352864583333334 3.391927083333333 3.391927083333334 C 3.352864583333333 3.430989583333334 3.333333333333333 3.4809027777777777 3.333333333333333 3.541666666666666 L 3.333333333333333 4.583333333333334 C 3.333333333333333 4.644097222222222 3.352864583333333 4.694010416666666 3.391927083333333 4.733072916666666 C 3.430989583333333 4.772135416666666 3.4809027777777786 4.791666666666666 3.541666666666667 4.791666666666666 L 4.166666666666667 4.791666666666666 L 4.166666666666667 6.875 L 3.541666666666667 6.875 C 3.4809027777777786 6.875 3.430989583333333 6.89453125 3.391927083333333 6.93359375 C 3.352864583333333 6.97265625 3.333333333333333 7.022569444444445 3.333333333333333 7.083333333333332 L 3.333333333333333 8.125 C 3.333333333333333 8.18576388888889 3.352864583333333 8.235677083333334 3.391927083333333 8.274739583333334 C 3.430989583333333 8.313802083333334 3.4809027777777786 8.333333333333334 3.541666666666667 8.333333333333334 L 6.458333333333334 8.333333333333334 C 6.519097222222222 8.333333333333334 6.569010416666666 8.313802083333334 6.608072916666666 8.274739583333334 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1220 472 )" class="stroke" mask="url(#u16236_img_cl3579)" />
  2640. <path d="M 5.774739583333334 2.44140625 C 5.813802083333334 2.40234375 5.833333333333334 2.3524305555555545 5.833333333333334 2.291666666666666 L 5.833333333333334 1.25 C 5.833333333333334 1.1892361111111105 5.813802083333334 1.1393229166666663 5.774739583333334 1.1002604166666663 C 5.735677083333334 1.0611979166666663 5.685763888888889 1.0416666666666663 5.625 1.0416666666666663 L 4.375 1.0416666666666663 C 4.314236111111112 1.0416666666666663 4.264322916666667 1.0611979166666663 4.225260416666667 1.1002604166666663 C 4.186197916666667 1.1393229166666663 4.166666666666667 1.1892361111111105 4.166666666666667 1.25 L 4.166666666666667 2.291666666666666 C 4.166666666666667 2.3524305555555545 4.186197916666667 2.40234375 4.225260416666667 2.44140625 C 4.264322916666667 2.48046875 4.314236111111112 2.5 4.375 2.5 L 5.625 2.5 C 5.685763888888889 2.5 5.735677083333334 2.48046875 5.774739583333334 2.44140625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1220 472 )" class="stroke" mask="url(#u16236_img_cl3579)" />
  2641. <path d="M 9.329427083333334 2.490234375 C 9.776475694444443 3.256293402777777 10 4.092881944444443 10 5 C 10 5.907118055555555 9.776475694444443 6.743706597222221 9.329427083333334 7.509765625 C 8.882378472222223 8.275824652777779 8.275824652777779 8.882378472222221 7.509765625 9.329427083333334 C 6.743706597222223 9.776475694444445 5.907118055555555 10 5 10 C 4.092881944444445 10 3.2562934027777777 9.776475694444445 2.490234375 9.329427083333334 C 1.7241753472222223 8.882378472222221 1.117621527777778 8.275824652777779 0.6705729166666667 7.509765625 C 0.22352430555555552 6.743706597222221 0 5.907118055555555 0 5 C 0 4.092881944444443 0.22352430555555552 3.256293402777777 0.6705729166666667 2.490234375 C 1.117621527777778 1.724175347222222 1.7241753472222223 1.1176215277777768 2.490234375 0.6705729166666663 C 3.2562934027777777 0.2235243055555547 4.092881944444445 0 5 0 C 5.907118055555555 0 6.743706597222223 0.2235243055555547 7.509765625 0.6705729166666663 C 8.275824652777779 1.1176215277777768 8.882378472222223 1.724175347222222 9.329427083333334 2.490234375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1220 472 )" class="stroke" mask="url(#u16236_img_cl3579)" />
  2642. </g>
  2643. </svg>
  2644. <div id="u16236_text" class="text " style="display:none; visibility: hidden">
  2645. <p></p>
  2646. </div>
  2647. </div>
  2648. <!-- Unnamed (Rectangle) -->
  2649. <div id="u16237" class="ax_default shape transition">
  2650. <div id="u16237_div" class=""></div>
  2651. <div id="u16237_text" class="text ">
  2652. <p><span>显示驳回备注信息</span></p>
  2653. </div>
  2654. </div>
  2655. </div>
  2656. </div>
  2657. <script src="resources/scripts/axure/ios.js"></script>
  2658. </body>
  2659. </html>