骑手快递员.html 236 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072
  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="u14430" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u14431" class="ax_default box_2 transition">
  57. <div id="u14431_div" class=""></div>
  58. <div id="u14431_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u14432" class="ax_default label transition">
  64. <div id="u14432_div" class=""></div>
  65. <div id="u14432_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u14433" class="ax_default box_2 transition">
  71. <div id="u14433_div" class=""></div>
  72. <div id="u14433_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u14434" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u14435" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u14435_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u14435_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u14435_img_cl1">
  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(#u14435_img_cl1)" />
  90. </g>
  91. </svg>
  92. <div id="u14435_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u14436" class="ax_default label transition">
  98. <div id="u14436_div" class=""></div>
  99. <div id="u14436_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u14437" class="ax_default box_2 transition">
  106. <div id="u14437_div" class=""></div>
  107. <div id="u14437_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u14438" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u14439" class="ax_default label transition">
  115. <div id="u14439_div" class=""></div>
  116. <div id="u14439_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u14440" class="ax_default placeholder transition">
  122. <svg data="images/骑手快递员/u14440.svg" id="u14440_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u14440_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u14440_img_cl998">
  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(#u14440_img_cl998)" />
  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="u14440_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u14441" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u14442" class="ax_default label transition">
  144. <div id="u14442_div" class=""></div>
  145. <div id="u14442_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u14443" class="ax_default placeholder transition">
  151. <svg data="images/骑手快递员/u14443.svg" id="u14443_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u14443_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u14443_img_cl999">
  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(#u14443_img_cl999)" />
  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="u14443_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u14444" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u14445" class="ax_default label transition">
  173. <div id="u14445_div" class=""></div>
  174. <div id="u14445_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u14446" class="ax_default placeholder transition">
  180. <svg data="images/骑手快递员/u14446.svg" id="u14446_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u14446_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u14446_img_cl1000">
  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(#u14446_img_cl1000)" />
  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="u14446_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u14447" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u14448" class="ax_default label transition">
  202. <div id="u14448_div" class=""></div>
  203. <div id="u14448_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u14449" class="ax_default placeholder transition">
  209. <svg data="images/骑手快递员/u14449.svg" id="u14449_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u14449_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u14449_img_cl1001">
  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(#u14449_img_cl1001)" />
  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="u14449_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u14450" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u14451" class="ax_default label transition">
  231. <div id="u14451_div" class=""></div>
  232. <div id="u14451_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u14452" class="ax_default placeholder transition">
  238. <svg data="images/骑手快递员/u14452.svg" id="u14452_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u14452_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u14452_img_cl1002">
  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(#u14452_img_cl1002)" />
  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="u14452_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u14453" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u14454" class="ax_default label transition">
  260. <div id="u14454_div" class=""></div>
  261. <div id="u14454_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u14455" class="ax_default placeholder transition">
  267. <svg data="images/骑手快递员/u14455.svg" id="u14455_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u14455_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u14455_img_cl1003">
  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(#u14455_img_cl1003)" />
  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="u14455_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u14456" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u14457" class="ax_default label transition">
  289. <div id="u14457_div" class=""></div>
  290. <div id="u14457_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u14458" class="ax_default placeholder transition">
  296. <svg data="images/骑手快递员/u14458.svg" id="u14458_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u14458_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u14458_img_cl1004">
  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(#u14458_img_cl1004)" />
  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="u14458_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u14459" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u14460" class="ax_default label transition">
  318. <div id="u14460_div" class=""></div>
  319. <div id="u14460_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u14461" class="ax_default placeholder transition">
  325. <svg data="images/骑手快递员/u14461.svg" id="u14461_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u14461_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u14461_img_cl1005">
  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(#u14461_img_cl1005)" />
  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="u14461_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u14462" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u14463" class="ax_default label transition">
  347. <div id="u14463_div" class=""></div>
  348. <div id="u14463_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u14464" class="ax_default placeholder transition">
  354. <svg data="images/骑手快递员/u14464.svg" id="u14464_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u14464_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u14464_img_cl1006">
  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(#u14464_img_cl1006)" />
  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="u14464_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u14465" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u14466" class="ax_default label transition">
  376. <div id="u14466_div" class=""></div>
  377. <div id="u14466_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u14467" class="ax_default placeholder transition">
  383. <svg data="images/骑手快递员/u14467.svg" id="u14467_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u14467_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u14467_img_cl1007">
  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(#u14467_img_cl1007)" />
  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="u14467_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u14468" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u14469" class="ax_default label transition">
  405. <div id="u14469_div" class=""></div>
  406. <div id="u14469_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u14470" class="ax_default placeholder transition">
  412. <svg data="images/骑手快递员/u14470.svg" id="u14470_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u14470_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u14470_img_cl1008">
  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(#u14470_img_cl1008)" />
  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="u14470_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u14471" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u14472" class="ax_default droplist transition">
  434. <div id="u14472_div" class=""></div>
  435. <select id="u14472_input" class="u14472_input">
  436. <option class="u14472_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u14473" class="ax_default placeholder transition">
  441. <svg data="images/骑手快递员/u14473.svg" id="u14473_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u14473_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u14473_img_cl1009">
  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(#u14473_img_cl1009)" />
  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="u14473_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u14474" class="ax_default label transition">
  460. <div id="u14474_div" class=""></div>
  461. <div id="u14474_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u14475" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u14475_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="u14475_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u14476" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u14477" class="ax_default label transition">
  481. <div id="u14477_div" class=""></div>
  482. <div id="u14477_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u14478" class="ax_default placeholder transition">
  488. <svg data="images/骑手快递员/u14478.svg" id="u14478_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u14478_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u14478_img_cl1010">
  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(#u14478_img_cl1010)" />
  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="u14478_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u14479" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u14479_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="u14479_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u14480" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u14480_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="u14480_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u14481" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u14481_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="u14481_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u14482" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u14483" class="ax_default label transition">
  543. <div id="u14483_div" class=""></div>
  544. <div id="u14483_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u14484" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u14484_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u14484_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u14484_img_cl15">
  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(#u14484_img_cl15)" />
  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(#u14484_img_cl15)" />
  561. </g>
  562. </svg>
  563. <div id="u14484_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="u14485" class="ax_default box_2 transition">
  571. <div id="u14485_div" class=""></div>
  572. <div id="u14485_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Table) -->
  577. <div id="u14486" class="ax_default">
  578. <!-- Unnamed (Table cell) -->
  579. <div id="u14487" class="ax_default table_cell1 transition">
  580. <svg data="images/骑手快递员/u14487.svg" id="u14487_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="u14487_text" class="text ">
  586. <p><span>序号</span></p>
  587. </div>
  588. </div>
  589. <!-- Unnamed (Table cell) -->
  590. <div id="u14488" class="ax_default table_cell1 transition">
  591. <svg data="images/骑手快递员/u14488.svg" id="u14488_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="u14488_text" class="text ">
  597. <p><span>姓名</span></p>
  598. </div>
  599. </div>
  600. <!-- Unnamed (Table cell) -->
  601. <div id="u14489" class="ax_default table_cell1 transition">
  602. <svg data="images/骑手快递员/u14489.svg" id="u14489_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="u14489_text" class="text ">
  608. <p><span>人脸照片</span></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u14490" class="ax_default table_cell1 transition">
  613. <svg data="images/骑手快递员/u14490.svg" id="u14490_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="u14490_text" class="text ">
  619. <p><span>性别</span></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Table cell) -->
  623. <div id="u14491" class="ax_default table_cell1 transition">
  624. <svg data="images/骑手快递员/u14491.svg" id="u14491_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="u14491_text" class="text ">
  630. <p><span>证件类型</span></p>
  631. </div>
  632. </div>
  633. <!-- Unnamed (Table cell) -->
  634. <div id="u14492" class="ax_default table_cell1 transition">
  635. <svg data="images/骑手快递员/u14492.svg" id="u14492_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="u14492_text" class="text ">
  641. <p><span>证件号码</span></p>
  642. </div>
  643. </div>
  644. <!-- Unnamed (Table cell) -->
  645. <div id="u14493" class="ax_default table_cell1 transition">
  646. <svg data="images/骑手快递员/u14493.svg" id="u14493_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="u14493_text" class="text ">
  652. <p><span>手机号码</span></p>
  653. </div>
  654. </div>
  655. <!-- Unnamed (Table cell) -->
  656. <div id="u14494" class="ax_default table_cell1 transition">
  657. <svg data="images/骑手快递员/u14494.svg" id="u14494_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="u14494_text" class="text ">
  663. <p><span>微信用户账号</span></p>
  664. </div>
  665. </div>
  666. <!-- Unnamed (Table cell) -->
  667. <div id="u14495" class="ax_default table_cell1 transition">
  668. <svg data="images/骑手快递员/u14495.svg" id="u14495_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="u14495_text" class="text ">
  674. <p><span>认证平台</span></p>
  675. </div>
  676. </div>
  677. <!-- Unnamed (Table cell) -->
  678. <div id="u14496" class="ax_default table_cell1 transition">
  679. <svg data="images/骑手快递员/u14496.svg" id="u14496_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="u14496_text" class="text ">
  685. <p><span>授权范围</span></p>
  686. </div>
  687. </div>
  688. <!-- Unnamed (Table cell) -->
  689. <div id="u14497" class="ax_default table_cell1 transition">
  690. <svg data="images/骑手快递员/u14497.svg" id="u14497_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="u14497_text" class="text ">
  696. <p><span>授权有效期</span></p>
  697. </div>
  698. </div>
  699. <!-- Unnamed (Table cell) -->
  700. <div id="u14498" class="ax_default table_cell1 transition">
  701. <svg data="images/骑手快递员/u14498.svg" id="u14498_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="u14498_text" class="text ">
  707. <p><span>授权状态</span></p>
  708. </div>
  709. </div>
  710. <!-- Unnamed (Table cell) -->
  711. <div id="u14499" class="ax_default table_cell1 transition">
  712. <svg data="images/骑手快递员/u14499.svg" id="u14499_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="u14499_text" class="text ">
  718. <p><span>登记时间</span></p>
  719. </div>
  720. </div>
  721. <!-- Unnamed (Table cell) -->
  722. <div id="u14500" class="ax_default table_cell1 transition">
  723. <svg data="images/骑手快递员/u14500.svg" id="u14500_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="u14500_text" class="text ">
  729. <p><span>确认人员</span></p>
  730. </div>
  731. </div>
  732. <!-- Unnamed (Table cell) -->
  733. <div id="u14501" class="ax_default table_cell1 transition">
  734. <svg data="images/骑手快递员/u14501.svg" id="u14501_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="u14501_text" class="text ">
  740. <p><span>确认时间</span></p>
  741. </div>
  742. </div>
  743. <!-- Unnamed (Table cell) -->
  744. <div id="u14502" class="ax_default table_cell1 transition">
  745. <svg data="images/骑手快递员/u14502.svg" id="u14502_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="u14502_text" class="text ">
  752. <p><span>操作</span></p>
  753. </div>
  754. </div>
  755. <!-- Unnamed (Table cell) -->
  756. <div id="u14503" class="ax_default table_cell1 transition">
  757. <svg data="images/骑手快递员/u14503.svg" id="u14503_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="u14503_text" class="text " style="display:none; visibility: hidden">
  763. <p></p>
  764. </div>
  765. </div>
  766. <!-- Unnamed (Table cell) -->
  767. <div id="u14504" class="ax_default table_cell1 transition">
  768. <svg data="images/骑手快递员/u14504.svg" id="u14504_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="u14504_text" class="text " style="display:none; visibility: hidden">
  774. <p></p>
  775. </div>
  776. </div>
  777. <!-- Unnamed (Table cell) -->
  778. <div id="u14505" class="ax_default table_cell1 transition">
  779. <svg data="images/骑手快递员/u14505.svg" id="u14505_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="u14505_text" class="text " style="display:none; visibility: hidden">
  785. <p></p>
  786. </div>
  787. </div>
  788. <!-- Unnamed (Table cell) -->
  789. <div id="u14506" class="ax_default table_cell1 transition">
  790. <svg data="images/骑手快递员/u14506.svg" id="u14506_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="u14506_text" class="text " style="display:none; visibility: hidden">
  796. <p></p>
  797. </div>
  798. </div>
  799. <!-- Unnamed (Table cell) -->
  800. <div id="u14507" class="ax_default table_cell1 transition">
  801. <svg data="images/骑手快递员/u14507.svg" id="u14507_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="u14507_text" class="text " style="display:none; visibility: hidden">
  807. <p></p>
  808. </div>
  809. </div>
  810. <!-- Unnamed (Table cell) -->
  811. <div id="u14508" class="ax_default table_cell1 transition">
  812. <svg data="images/骑手快递员/u14508.svg" id="u14508_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="u14508_text" class="text " style="display:none; visibility: hidden">
  818. <p></p>
  819. </div>
  820. </div>
  821. <!-- Unnamed (Table cell) -->
  822. <div id="u14509" class="ax_default table_cell1 transition">
  823. <svg data="images/骑手快递员/u14509.svg" id="u14509_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="u14509_text" class="text " style="display:none; visibility: hidden">
  829. <p></p>
  830. </div>
  831. </div>
  832. <!-- Unnamed (Table cell) -->
  833. <div id="u14510" class="ax_default table_cell1 transition">
  834. <svg data="images/骑手快递员/u14510.svg" id="u14510_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="u14510_text" class="text " style="display:none; visibility: hidden">
  840. <p></p>
  841. </div>
  842. </div>
  843. <!-- Unnamed (Table cell) -->
  844. <div id="u14511" class="ax_default table_cell1 transition">
  845. <svg data="images/骑手快递员/u14511.svg" id="u14511_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="u14511_text" class="text ">
  851. <p><span>未认证</span></p>
  852. </div>
  853. </div>
  854. <!-- Unnamed (Table cell) -->
  855. <div id="u14512" class="ax_default table_cell1 transition">
  856. <svg data="images/骑手快递员/u14512.svg" id="u14512_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="u14512_text" class="text " style="display:none; visibility: hidden">
  862. <p></p>
  863. </div>
  864. </div>
  865. <!-- Unnamed (Table cell) -->
  866. <div id="u14513" class="ax_default table_cell1 transition">
  867. <svg data="images/骑手快递员/u14513.svg" id="u14513_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="u14513_text" class="text " style="display:none; visibility: hidden">
  873. <p></p>
  874. </div>
  875. </div>
  876. <!-- Unnamed (Table cell) -->
  877. <div id="u14514" class="ax_default table_cell1 transition">
  878. <svg data="images/骑手快递员/u14514.svg" id="u14514_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="u14514_text" class="text ">
  884. <p><span>正常</span></p>
  885. </div>
  886. </div>
  887. <!-- Unnamed (Table cell) -->
  888. <div id="u14515" class="ax_default table_cell1 transition">
  889. <svg data="images/骑手快递员/u14515.svg" id="u14515_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="u14515_text" class="text " style="display:none; visibility: hidden">
  895. <p></p>
  896. </div>
  897. </div>
  898. <!-- Unnamed (Table cell) -->
  899. <div id="u14516" class="ax_default table_cell1 transition">
  900. <svg data="images/骑手快递员/u14516.svg" id="u14516_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="u14516_text" class="text " style="display:none; visibility: hidden">
  906. <p></p>
  907. </div>
  908. </div>
  909. <!-- Unnamed (Table cell) -->
  910. <div id="u14517" class="ax_default table_cell1 transition">
  911. <svg data="images/骑手快递员/u14517.svg" id="u14517_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="u14517_text" class="text " style="display:none; visibility: hidden">
  917. <p></p>
  918. </div>
  919. </div>
  920. <!-- Unnamed (Table cell) -->
  921. <div id="u14518" class="ax_default table_cell1 transition">
  922. <svg data="images/骑手快递员/u14518.svg" id="u14518_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="u14518_text" class="text ">
  929. <p><span>通过&nbsp; 驳回</span></p>
  930. </div>
  931. </div>
  932. <!-- Unnamed (Table cell) -->
  933. <div id="u14519" class="ax_default table_cell1 transition">
  934. <svg data="images/骑手快递员/u14519.svg" id="u14519_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="u14519_text" class="text " style="display:none; visibility: hidden">
  940. <p></p>
  941. </div>
  942. </div>
  943. <!-- Unnamed (Table cell) -->
  944. <div id="u14520" class="ax_default table_cell1 transition">
  945. <svg data="images/骑手快递员/u14520.svg" id="u14520_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="u14520_text" class="text " style="display:none; visibility: hidden">
  951. <p></p>
  952. </div>
  953. </div>
  954. <!-- Unnamed (Table cell) -->
  955. <div id="u14521" class="ax_default table_cell1 transition">
  956. <svg data="images/骑手快递员/u14521.svg" id="u14521_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="u14521_text" class="text " style="display:none; visibility: hidden">
  962. <p></p>
  963. </div>
  964. </div>
  965. <!-- Unnamed (Table cell) -->
  966. <div id="u14522" class="ax_default table_cell1 transition">
  967. <svg data="images/骑手快递员/u14522.svg" id="u14522_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="u14522_text" class="text " style="display:none; visibility: hidden">
  973. <p></p>
  974. </div>
  975. </div>
  976. <!-- Unnamed (Table cell) -->
  977. <div id="u14523" class="ax_default table_cell1 transition">
  978. <svg data="images/骑手快递员/u14523.svg" id="u14523_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="u14523_text" class="text " style="display:none; visibility: hidden">
  984. <p></p>
  985. </div>
  986. </div>
  987. <!-- Unnamed (Table cell) -->
  988. <div id="u14524" class="ax_default table_cell1 transition">
  989. <svg data="images/骑手快递员/u14524.svg" id="u14524_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="u14524_text" class="text " style="display:none; visibility: hidden">
  995. <p></p>
  996. </div>
  997. </div>
  998. <!-- Unnamed (Table cell) -->
  999. <div id="u14525" class="ax_default table_cell1 transition">
  1000. <svg data="images/骑手快递员/u14525.svg" id="u14525_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="u14525_text" class="text " style="display:none; visibility: hidden">
  1006. <p></p>
  1007. </div>
  1008. </div>
  1009. <!-- Unnamed (Table cell) -->
  1010. <div id="u14526" class="ax_default table_cell1 transition">
  1011. <svg data="images/骑手快递员/u14526.svg" id="u14526_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="u14526_text" class="text " style="display:none; visibility: hidden">
  1017. <p></p>
  1018. </div>
  1019. </div>
  1020. <!-- Unnamed (Table cell) -->
  1021. <div id="u14527" class="ax_default table_cell1 transition">
  1022. <svg data="images/骑手快递员/u14527.svg" id="u14527_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="u14527_text" class="text ">
  1028. <p><span>饿了么</span></p>
  1029. </div>
  1030. </div>
  1031. <!-- Unnamed (Table cell) -->
  1032. <div id="u14528" class="ax_default table_cell1 transition">
  1033. <svg data="images/骑手快递员/u14528.svg" id="u14528_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="u14528_text" class="text " style="display:none; visibility: hidden">
  1039. <p></p>
  1040. </div>
  1041. </div>
  1042. <!-- Unnamed (Table cell) -->
  1043. <div id="u14529" class="ax_default table_cell1 transition">
  1044. <svg data="images/骑手快递员/u14529.svg" id="u14529_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="u14529_text" class="text " style="display:none; visibility: hidden">
  1050. <p></p>
  1051. </div>
  1052. </div>
  1053. <!-- Unnamed (Table cell) -->
  1054. <div id="u14530" class="ax_default table_cell1 transition">
  1055. <svg data="images/骑手快递员/u14530.svg" id="u14530_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="u14530_text" class="text ">
  1061. <p><span>过期</span></p>
  1062. </div>
  1063. </div>
  1064. <!-- Unnamed (Table cell) -->
  1065. <div id="u14531" class="ax_default table_cell1 transition">
  1066. <svg data="images/骑手快递员/u14531.svg" id="u14531_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="u14531_text" class="text " style="display:none; visibility: hidden">
  1072. <p></p>
  1073. </div>
  1074. </div>
  1075. <!-- Unnamed (Table cell) -->
  1076. <div id="u14532" class="ax_default table_cell1 transition">
  1077. <svg data="images/骑手快递员/u14532.svg" id="u14532_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="u14532_text" class="text " style="display:none; visibility: hidden">
  1083. <p></p>
  1084. </div>
  1085. </div>
  1086. <!-- Unnamed (Table cell) -->
  1087. <div id="u14533" class="ax_default table_cell1 transition">
  1088. <svg data="images/骑手快递员/u14533.svg" id="u14533_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="u14533_text" class="text " style="display:none; visibility: hidden">
  1094. <p></p>
  1095. </div>
  1096. </div>
  1097. <!-- Unnamed (Table cell) -->
  1098. <div id="u14534" class="ax_default table_cell1 transition">
  1099. <svg data="images/骑手快递员/u14534.svg" id="u14534_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="u14534_text" class="text ">
  1106. <p><span>通过&nbsp; 驳回</span></p>
  1107. </div>
  1108. </div>
  1109. <!-- Unnamed (Table cell) -->
  1110. <div id="u14535" class="ax_default table_cell1 transition">
  1111. <svg data="images/骑手快递员/u14535.svg" id="u14535_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="u14535_text" class="text " style="display:none; visibility: hidden">
  1117. <p></p>
  1118. </div>
  1119. </div>
  1120. <!-- Unnamed (Table cell) -->
  1121. <div id="u14536" class="ax_default table_cell1 transition">
  1122. <svg data="images/骑手快递员/u14536.svg" id="u14536_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="u14536_text" class="text " style="display:none; visibility: hidden">
  1128. <p></p>
  1129. </div>
  1130. </div>
  1131. <!-- Unnamed (Table cell) -->
  1132. <div id="u14537" class="ax_default table_cell1 transition">
  1133. <svg data="images/骑手快递员/u14537.svg" id="u14537_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="u14537_text" class="text " style="display:none; visibility: hidden">
  1139. <p></p>
  1140. </div>
  1141. </div>
  1142. <!-- Unnamed (Table cell) -->
  1143. <div id="u14538" class="ax_default table_cell1 transition">
  1144. <svg data="images/骑手快递员/u14538.svg" id="u14538_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="u14538_text" class="text " style="display:none; visibility: hidden">
  1150. <p></p>
  1151. </div>
  1152. </div>
  1153. <!-- Unnamed (Table cell) -->
  1154. <div id="u14539" class="ax_default table_cell1 transition">
  1155. <svg data="images/骑手快递员/u14539.svg" id="u14539_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="u14539_text" class="text " style="display:none; visibility: hidden">
  1161. <p></p>
  1162. </div>
  1163. </div>
  1164. <!-- Unnamed (Table cell) -->
  1165. <div id="u14540" class="ax_default table_cell1 transition">
  1166. <svg data="images/骑手快递员/u14540.svg" id="u14540_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="u14540_text" class="text " style="display:none; visibility: hidden">
  1172. <p></p>
  1173. </div>
  1174. </div>
  1175. <!-- Unnamed (Table cell) -->
  1176. <div id="u14541" class="ax_default table_cell1 transition">
  1177. <svg data="images/骑手快递员/u14541.svg" id="u14541_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="u14541_text" class="text " style="display:none; visibility: hidden">
  1183. <p></p>
  1184. </div>
  1185. </div>
  1186. <!-- Unnamed (Table cell) -->
  1187. <div id="u14542" class="ax_default table_cell1 transition">
  1188. <svg data="images/骑手快递员/u14542.svg" id="u14542_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="u14542_text" class="text " style="display:none; visibility: hidden">
  1194. <p></p>
  1195. </div>
  1196. </div>
  1197. <!-- Unnamed (Table cell) -->
  1198. <div id="u14543" class="ax_default table_cell1 transition">
  1199. <svg data="images/骑手快递员/u14543.svg" id="u14543_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="u14543_text" class="text " style="display:none; visibility: hidden">
  1205. <p></p>
  1206. </div>
  1207. </div>
  1208. <!-- Unnamed (Table cell) -->
  1209. <div id="u14544" class="ax_default table_cell1 transition">
  1210. <svg data="images/骑手快递员/u14544.svg" id="u14544_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="u14544_text" class="text " style="display:none; visibility: hidden">
  1216. <p></p>
  1217. </div>
  1218. </div>
  1219. <!-- Unnamed (Table cell) -->
  1220. <div id="u14545" class="ax_default table_cell1 transition">
  1221. <svg data="images/骑手快递员/u14545.svg" id="u14545_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="u14545_text" class="text " style="display:none; visibility: hidden">
  1227. <p></p>
  1228. </div>
  1229. </div>
  1230. <!-- Unnamed (Table cell) -->
  1231. <div id="u14546" class="ax_default table_cell1 transition">
  1232. <svg data="images/骑手快递员/u14546.svg" id="u14546_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="u14546_text" class="text ">
  1238. <p><span>待确认</span></p>
  1239. </div>
  1240. </div>
  1241. <!-- Unnamed (Table cell) -->
  1242. <div id="u14547" class="ax_default table_cell1 transition">
  1243. <svg data="images/骑手快递员/u14547.svg" id="u14547_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="u14547_text" class="text " style="display:none; visibility: hidden">
  1249. <p></p>
  1250. </div>
  1251. </div>
  1252. <!-- Unnamed (Table cell) -->
  1253. <div id="u14548" class="ax_default table_cell1 transition">
  1254. <svg data="images/骑手快递员/u14548.svg" id="u14548_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="u14548_text" class="text " style="display:none; visibility: hidden">
  1260. <p></p>
  1261. </div>
  1262. </div>
  1263. <!-- Unnamed (Table cell) -->
  1264. <div id="u14549" class="ax_default table_cell1 transition">
  1265. <svg data="images/骑手快递员/u14549.svg" id="u14549_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="u14549_text" class="text " style="display:none; visibility: hidden">
  1271. <p></p>
  1272. </div>
  1273. </div>
  1274. <!-- Unnamed (Table cell) -->
  1275. <div id="u14550" class="ax_default table_cell1 transition">
  1276. <svg data="images/骑手快递员/u14550.svg" id="u14550_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="u14550_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="u14551" class="ax_default table_cell1 transition">
  1288. <svg data="images/骑手快递员/u14551.svg" id="u14551_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="u14551_text" class="text " style="display:none; visibility: hidden">
  1294. <p></p>
  1295. </div>
  1296. </div>
  1297. <!-- Unnamed (Table cell) -->
  1298. <div id="u14552" class="ax_default table_cell1 transition">
  1299. <svg data="images/骑手快递员/u14552.svg" id="u14552_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="u14552_text" class="text " style="display:none; visibility: hidden">
  1305. <p></p>
  1306. </div>
  1307. </div>
  1308. <!-- Unnamed (Table cell) -->
  1309. <div id="u14553" class="ax_default table_cell1 transition">
  1310. <svg data="images/骑手快递员/u14553.svg" id="u14553_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="u14553_text" class="text " style="display:none; visibility: hidden">
  1316. <p></p>
  1317. </div>
  1318. </div>
  1319. <!-- Unnamed (Table cell) -->
  1320. <div id="u14554" class="ax_default table_cell1 transition">
  1321. <svg data="images/骑手快递员/u14554.svg" id="u14554_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="u14554_text" class="text " style="display:none; visibility: hidden">
  1327. <p></p>
  1328. </div>
  1329. </div>
  1330. <!-- Unnamed (Table cell) -->
  1331. <div id="u14555" class="ax_default table_cell1 transition">
  1332. <svg data="images/骑手快递员/u14555.svg" id="u14555_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="u14555_text" class="text " style="display:none; visibility: hidden">
  1338. <p></p>
  1339. </div>
  1340. </div>
  1341. <!-- Unnamed (Table cell) -->
  1342. <div id="u14556" class="ax_default table_cell1 transition">
  1343. <svg data="images/骑手快递员/u14556.svg" id="u14556_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="u14556_text" class="text " style="display:none; visibility: hidden">
  1349. <p></p>
  1350. </div>
  1351. </div>
  1352. <!-- Unnamed (Table cell) -->
  1353. <div id="u14557" class="ax_default table_cell1 transition">
  1354. <svg data="images/骑手快递员/u14557.svg" id="u14557_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="u14557_text" class="text " style="display:none; visibility: hidden">
  1360. <p></p>
  1361. </div>
  1362. </div>
  1363. <!-- Unnamed (Table cell) -->
  1364. <div id="u14558" class="ax_default table_cell1 transition">
  1365. <svg data="images/骑手快递员/u14558.svg" id="u14558_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="u14558_text" class="text " style="display:none; visibility: hidden">
  1371. <p></p>
  1372. </div>
  1373. </div>
  1374. <!-- Unnamed (Table cell) -->
  1375. <div id="u14559" class="ax_default table_cell1 transition">
  1376. <svg data="images/骑手快递员/u14559.svg" id="u14559_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="u14559_text" class="text " style="display:none; visibility: hidden">
  1382. <p></p>
  1383. </div>
  1384. </div>
  1385. <!-- Unnamed (Table cell) -->
  1386. <div id="u14560" class="ax_default table_cell1 transition">
  1387. <svg data="images/骑手快递员/u14560.svg" id="u14560_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="u14560_text" class="text " style="display:none; visibility: hidden">
  1393. <p></p>
  1394. </div>
  1395. </div>
  1396. <!-- Unnamed (Table cell) -->
  1397. <div id="u14561" class="ax_default table_cell1 transition">
  1398. <svg data="images/骑手快递员/u14561.svg" id="u14561_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="u14561_text" class="text " style="display:none; visibility: hidden">
  1404. <p></p>
  1405. </div>
  1406. </div>
  1407. <!-- Unnamed (Table cell) -->
  1408. <div id="u14562" class="ax_default table_cell1 transition">
  1409. <svg data="images/骑手快递员/u14562.svg" id="u14562_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="u14562_text" class="text ">
  1415. <p><span>驳回</span></p>
  1416. </div>
  1417. </div>
  1418. <!-- Unnamed (Table cell) -->
  1419. <div id="u14563" class="ax_default table_cell1 transition">
  1420. <svg data="images/骑手快递员/u14563.svg" id="u14563_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="u14563_text" class="text " style="display:none; visibility: hidden">
  1426. <p></p>
  1427. </div>
  1428. </div>
  1429. <!-- Unnamed (Table cell) -->
  1430. <div id="u14564" class="ax_default table_cell1 transition">
  1431. <svg data="images/骑手快递员/u14564.svg" id="u14564_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="u14564_text" class="text " style="display:none; visibility: hidden">
  1437. <p></p>
  1438. </div>
  1439. </div>
  1440. <!-- Unnamed (Table cell) -->
  1441. <div id="u14565" class="ax_default table_cell1 transition">
  1442. <svg data="images/骑手快递员/u14565.svg" id="u14565_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="u14565_text" class="text " style="display:none; visibility: hidden">
  1448. <p></p>
  1449. </div>
  1450. </div>
  1451. <!-- Unnamed (Table cell) -->
  1452. <div id="u14566" class="ax_default table_cell1 transition">
  1453. <svg data="images/骑手快递员/u14566.svg" id="u14566_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="u14566_text" class="text ">
  1460. <p><span>通过&nbsp; 驳回</span></p>
  1461. </div>
  1462. </div>
  1463. <!-- Unnamed (Table cell) -->
  1464. <div id="u14567" class="ax_default table_cell1 transition">
  1465. <svg data="images/骑手快递员/u14567.svg" id="u14567_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="u14567_text" class="text " style="display:none; visibility: hidden">
  1471. <p></p>
  1472. </div>
  1473. </div>
  1474. <!-- Unnamed (Table cell) -->
  1475. <div id="u14568" class="ax_default table_cell1 transition">
  1476. <svg data="images/骑手快递员/u14568.svg" id="u14568_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="u14568_text" class="text " style="display:none; visibility: hidden">
  1482. <p></p>
  1483. </div>
  1484. </div>
  1485. <!-- Unnamed (Table cell) -->
  1486. <div id="u14569" class="ax_default table_cell1 transition">
  1487. <svg data="images/骑手快递员/u14569.svg" id="u14569_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="u14569_text" class="text " style="display:none; visibility: hidden">
  1493. <p></p>
  1494. </div>
  1495. </div>
  1496. <!-- Unnamed (Table cell) -->
  1497. <div id="u14570" class="ax_default table_cell1 transition">
  1498. <svg data="images/骑手快递员/u14570.svg" id="u14570_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="u14570_text" class="text " style="display:none; visibility: hidden">
  1504. <p></p>
  1505. </div>
  1506. </div>
  1507. <!-- Unnamed (Table cell) -->
  1508. <div id="u14571" class="ax_default table_cell1 transition">
  1509. <svg data="images/骑手快递员/u14571.svg" id="u14571_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="u14571_text" class="text " style="display:none; visibility: hidden">
  1515. <p></p>
  1516. </div>
  1517. </div>
  1518. <!-- Unnamed (Table cell) -->
  1519. <div id="u14572" class="ax_default table_cell1 transition">
  1520. <svg data="images/骑手快递员/u14572.svg" id="u14572_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="u14572_text" class="text " style="display:none; visibility: hidden">
  1526. <p></p>
  1527. </div>
  1528. </div>
  1529. <!-- Unnamed (Table cell) -->
  1530. <div id="u14573" class="ax_default table_cell1 transition">
  1531. <svg data="images/骑手快递员/u14573.svg" id="u14573_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="u14573_text" class="text " style="display:none; visibility: hidden">
  1537. <p></p>
  1538. </div>
  1539. </div>
  1540. <!-- Unnamed (Table cell) -->
  1541. <div id="u14574" class="ax_default table_cell1 transition">
  1542. <svg data="images/骑手快递员/u14574.svg" id="u14574_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="u14574_text" class="text " style="display:none; visibility: hidden">
  1548. <p></p>
  1549. </div>
  1550. </div>
  1551. <!-- Unnamed (Table cell) -->
  1552. <div id="u14575" class="ax_default table_cell1 transition">
  1553. <svg data="images/骑手快递员/u14575.svg" id="u14575_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="u14575_text" class="text " style="display:none; visibility: hidden">
  1559. <p></p>
  1560. </div>
  1561. </div>
  1562. <!-- Unnamed (Table cell) -->
  1563. <div id="u14576" class="ax_default table_cell1 transition">
  1564. <svg data="images/骑手快递员/u14576.svg" id="u14576_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="u14576_text" class="text " style="display:none; visibility: hidden">
  1570. <p></p>
  1571. </div>
  1572. </div>
  1573. <!-- Unnamed (Table cell) -->
  1574. <div id="u14577" class="ax_default table_cell1 transition">
  1575. <svg data="images/骑手快递员/u14577.svg" id="u14577_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="u14577_text" class="text " style="display:none; visibility: hidden">
  1581. <p></p>
  1582. </div>
  1583. </div>
  1584. <!-- Unnamed (Table cell) -->
  1585. <div id="u14578" class="ax_default table_cell1 transition">
  1586. <svg data="images/骑手快递员/u14578.svg" id="u14578_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="u14578_text" class="text " style="display:none; visibility: hidden">
  1592. <p></p>
  1593. </div>
  1594. </div>
  1595. <!-- Unnamed (Table cell) -->
  1596. <div id="u14579" class="ax_default table_cell1 transition">
  1597. <svg data="images/骑手快递员/u14579.svg" id="u14579_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="u14579_text" class="text " style="display:none; visibility: hidden">
  1603. <p></p>
  1604. </div>
  1605. </div>
  1606. <!-- Unnamed (Table cell) -->
  1607. <div id="u14580" class="ax_default table_cell1 transition">
  1608. <svg data="images/骑手快递员/u14580.svg" id="u14580_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="u14580_text" class="text " style="display:none; visibility: hidden">
  1614. <p></p>
  1615. </div>
  1616. </div>
  1617. <!-- Unnamed (Table cell) -->
  1618. <div id="u14581" class="ax_default table_cell1 transition">
  1619. <svg data="images/骑手快递员/u14581.svg" id="u14581_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="u14581_text" class="text " style="display:none; visibility: hidden">
  1625. <p></p>
  1626. </div>
  1627. </div>
  1628. <!-- Unnamed (Table cell) -->
  1629. <div id="u14582" class="ax_default table_cell1 transition">
  1630. <svg data="images/骑手快递员/u14582.svg" id="u14582_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="u14582_text" class="text " style="display:none; visibility: hidden">
  1637. <p></p>
  1638. </div>
  1639. </div>
  1640. <!-- Unnamed (Table cell) -->
  1641. <div id="u14583" class="ax_default table_cell1 transition">
  1642. <svg data="images/骑手快递员/u14583.svg" id="u14583_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="u14583_text" class="text " style="display:none; visibility: hidden">
  1648. <p></p>
  1649. </div>
  1650. </div>
  1651. <!-- Unnamed (Table cell) -->
  1652. <div id="u14584" class="ax_default table_cell1 transition">
  1653. <svg data="images/骑手快递员/u14584.svg" id="u14584_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="u14584_text" class="text " style="display:none; visibility: hidden">
  1659. <p></p>
  1660. </div>
  1661. </div>
  1662. <!-- Unnamed (Table cell) -->
  1663. <div id="u14585" class="ax_default table_cell1 transition">
  1664. <svg data="images/骑手快递员/u14585.svg" id="u14585_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="u14585_text" class="text " style="display:none; visibility: hidden">
  1670. <p></p>
  1671. </div>
  1672. </div>
  1673. <!-- Unnamed (Table cell) -->
  1674. <div id="u14586" class="ax_default table_cell1 transition">
  1675. <svg data="images/骑手快递员/u14586.svg" id="u14586_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="u14586_text" class="text " style="display:none; visibility: hidden">
  1681. <p></p>
  1682. </div>
  1683. </div>
  1684. <!-- Unnamed (Table cell) -->
  1685. <div id="u14587" class="ax_default table_cell1 transition">
  1686. <svg data="images/骑手快递员/u14587.svg" id="u14587_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="u14587_text" class="text " style="display:none; visibility: hidden">
  1692. <p></p>
  1693. </div>
  1694. </div>
  1695. <!-- Unnamed (Table cell) -->
  1696. <div id="u14588" class="ax_default table_cell1 transition">
  1697. <svg data="images/骑手快递员/u14588.svg" id="u14588_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="u14588_text" class="text " style="display:none; visibility: hidden">
  1703. <p></p>
  1704. </div>
  1705. </div>
  1706. <!-- Unnamed (Table cell) -->
  1707. <div id="u14589" class="ax_default table_cell1 transition">
  1708. <svg data="images/骑手快递员/u14589.svg" id="u14589_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="u14589_text" class="text " style="display:none; visibility: hidden">
  1714. <p></p>
  1715. </div>
  1716. </div>
  1717. <!-- Unnamed (Table cell) -->
  1718. <div id="u14590" class="ax_default table_cell1 transition">
  1719. <svg data="images/骑手快递员/u14590.svg" id="u14590_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="u14590_text" class="text " style="display:none; visibility: hidden">
  1725. <p></p>
  1726. </div>
  1727. </div>
  1728. <!-- Unnamed (Table cell) -->
  1729. <div id="u14591" class="ax_default table_cell1 transition">
  1730. <svg data="images/骑手快递员/u14591.svg" id="u14591_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="u14591_text" class="text " style="display:none; visibility: hidden">
  1736. <p></p>
  1737. </div>
  1738. </div>
  1739. <!-- Unnamed (Table cell) -->
  1740. <div id="u14592" class="ax_default table_cell1 transition">
  1741. <svg data="images/骑手快递员/u14592.svg" id="u14592_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="u14592_text" class="text " style="display:none; visibility: hidden">
  1747. <p></p>
  1748. </div>
  1749. </div>
  1750. <!-- Unnamed (Table cell) -->
  1751. <div id="u14593" class="ax_default table_cell1 transition">
  1752. <svg data="images/骑手快递员/u14593.svg" id="u14593_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="u14593_text" class="text " style="display:none; visibility: hidden">
  1758. <p></p>
  1759. </div>
  1760. </div>
  1761. <!-- Unnamed (Table cell) -->
  1762. <div id="u14594" class="ax_default table_cell1 transition">
  1763. <svg data="images/骑手快递员/u14594.svg" id="u14594_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="u14594_text" class="text " style="display:none; visibility: hidden">
  1769. <p></p>
  1770. </div>
  1771. </div>
  1772. <!-- Unnamed (Table cell) -->
  1773. <div id="u14595" class="ax_default table_cell1 transition">
  1774. <svg data="images/骑手快递员/u14595.svg" id="u14595_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="u14595_text" class="text " style="display:none; visibility: hidden">
  1780. <p></p>
  1781. </div>
  1782. </div>
  1783. <!-- Unnamed (Table cell) -->
  1784. <div id="u14596" class="ax_default table_cell1 transition">
  1785. <svg data="images/骑手快递员/u14596.svg" id="u14596_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="u14596_text" class="text " style="display:none; visibility: hidden">
  1791. <p></p>
  1792. </div>
  1793. </div>
  1794. <!-- Unnamed (Table cell) -->
  1795. <div id="u14597" class="ax_default table_cell1 transition">
  1796. <svg data="images/骑手快递员/u14597.svg" id="u14597_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="u14597_text" class="text " style="display:none; visibility: hidden">
  1802. <p></p>
  1803. </div>
  1804. </div>
  1805. <!-- Unnamed (Table cell) -->
  1806. <div id="u14598" class="ax_default table_cell1 transition">
  1807. <svg data="images/骑手快递员/u14598.svg" id="u14598_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="u14598_text" class="text " style="display:none; visibility: hidden">
  1814. <p></p>
  1815. </div>
  1816. </div>
  1817. <!-- Unnamed (Table cell) -->
  1818. <div id="u14599" class="ax_default table_cell1 transition">
  1819. <svg data="images/骑手快递员/u14599.svg" id="u14599_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="u14599_text" class="text " style="display:none; visibility: hidden">
  1826. <p></p>
  1827. </div>
  1828. </div>
  1829. <!-- Unnamed (Table cell) -->
  1830. <div id="u14600" class="ax_default table_cell1 transition">
  1831. <svg data="images/骑手快递员/u14600.svg" id="u14600_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="u14600_text" class="text " style="display:none; visibility: hidden">
  1838. <p></p>
  1839. </div>
  1840. </div>
  1841. <!-- Unnamed (Table cell) -->
  1842. <div id="u14601" class="ax_default table_cell1 transition">
  1843. <svg data="images/骑手快递员/u14601.svg" id="u14601_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="u14601_text" class="text " style="display:none; visibility: hidden">
  1850. <p></p>
  1851. </div>
  1852. </div>
  1853. <!-- Unnamed (Table cell) -->
  1854. <div id="u14602" class="ax_default table_cell1 transition">
  1855. <svg data="images/骑手快递员/u14602.svg" id="u14602_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="u14602_text" class="text " style="display:none; visibility: hidden">
  1862. <p></p>
  1863. </div>
  1864. </div>
  1865. <!-- Unnamed (Table cell) -->
  1866. <div id="u14603" class="ax_default table_cell1 transition">
  1867. <svg data="images/骑手快递员/u14603.svg" id="u14603_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="u14603_text" class="text " style="display:none; visibility: hidden">
  1874. <p></p>
  1875. </div>
  1876. </div>
  1877. <!-- Unnamed (Table cell) -->
  1878. <div id="u14604" class="ax_default table_cell1 transition">
  1879. <svg data="images/骑手快递员/u14604.svg" id="u14604_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="u14604_text" class="text " style="display:none; visibility: hidden">
  1886. <p></p>
  1887. </div>
  1888. </div>
  1889. <!-- Unnamed (Table cell) -->
  1890. <div id="u14605" class="ax_default table_cell1 transition">
  1891. <svg data="images/骑手快递员/u14605.svg" id="u14605_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="u14605_text" class="text " style="display:none; visibility: hidden">
  1898. <p></p>
  1899. </div>
  1900. </div>
  1901. <!-- Unnamed (Table cell) -->
  1902. <div id="u14606" class="ax_default table_cell1 transition">
  1903. <svg data="images/骑手快递员/u14606.svg" id="u14606_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="u14606_text" class="text " style="display:none; visibility: hidden">
  1910. <p></p>
  1911. </div>
  1912. </div>
  1913. <!-- Unnamed (Table cell) -->
  1914. <div id="u14607" class="ax_default table_cell1 transition">
  1915. <svg data="images/骑手快递员/u14607.svg" id="u14607_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="u14607_text" class="text " style="display:none; visibility: hidden">
  1922. <p></p>
  1923. </div>
  1924. </div>
  1925. <!-- Unnamed (Table cell) -->
  1926. <div id="u14608" class="ax_default table_cell1 transition">
  1927. <svg data="images/骑手快递员/u14608.svg" id="u14608_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="u14608_text" class="text " style="display:none; visibility: hidden">
  1934. <p></p>
  1935. </div>
  1936. </div>
  1937. <!-- Unnamed (Table cell) -->
  1938. <div id="u14609" class="ax_default table_cell1 transition">
  1939. <svg data="images/骑手快递员/u14609.svg" id="u14609_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="u14609_text" class="text " style="display:none; visibility: hidden">
  1946. <p></p>
  1947. </div>
  1948. </div>
  1949. <!-- Unnamed (Table cell) -->
  1950. <div id="u14610" class="ax_default table_cell1 transition">
  1951. <svg data="images/骑手快递员/u14610.svg" id="u14610_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="u14610_text" class="text " style="display:none; visibility: hidden">
  1958. <p></p>
  1959. </div>
  1960. </div>
  1961. <!-- Unnamed (Table cell) -->
  1962. <div id="u14611" class="ax_default table_cell1 transition">
  1963. <svg data="images/骑手快递员/u14611.svg" id="u14611_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="u14611_text" class="text " style="display:none; visibility: hidden">
  1970. <p></p>
  1971. </div>
  1972. </div>
  1973. <!-- Unnamed (Table cell) -->
  1974. <div id="u14612" class="ax_default table_cell1 transition">
  1975. <svg data="images/骑手快递员/u14612.svg" id="u14612_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="u14612_text" class="text " style="display:none; visibility: hidden">
  1982. <p></p>
  1983. </div>
  1984. </div>
  1985. <!-- Unnamed (Table cell) -->
  1986. <div id="u14613" class="ax_default table_cell1 transition">
  1987. <svg data="images/骑手快递员/u14613.svg" id="u14613_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="u14613_text" class="text " style="display:none; visibility: hidden">
  1994. <p></p>
  1995. </div>
  1996. </div>
  1997. <!-- Unnamed (Table cell) -->
  1998. <div id="u14614" class="ax_default table_cell1 transition">
  1999. <svg data="images/骑手快递员/u14614.svg" id="u14614_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="u14614_text" class="text " style="display:none; visibility: hidden">
  2007. <p></p>
  2008. </div>
  2009. </div>
  2010. </div>
  2011. <!-- Unnamed (Group) -->
  2012. <div id="u14615" class="ax_default" data-left="350" data-top="194" data-width="130" data-height="30" layer-opacity="1">
  2013. <!-- Unnamed (Rectangle) -->
  2014. <div id="u14616" class="ax_default box_1 transition">
  2015. <div id="u14616_div" class=""></div>
  2016. <div id="u14616_text" class="text ">
  2017. <p><span>搜索</span></p>
  2018. </div>
  2019. </div>
  2020. <!-- Unnamed (Rectangle) -->
  2021. <div id="u14617" class="ax_default box_1 transition">
  2022. <div id="u14617_div" class=""></div>
  2023. <div id="u14617_text" class="text ">
  2024. <p><span>重置</span></p>
  2025. </div>
  2026. </div>
  2027. </div>
  2028. <!-- Unnamed (Group) -->
  2029. <div id="u14618" class="ax_default" data-left="650" data-top="156" data-width="140" data-height="30" layer-opacity="1">
  2030. <!-- Unnamed (Rectangle) -->
  2031. <div id="u14619" class="ax_default box_1 transition">
  2032. <div id="u14619_div" class=""></div>
  2033. <div id="u14619_text" class="text " style="display:none; visibility: hidden">
  2034. <p></p>
  2035. </div>
  2036. </div>
  2037. <!-- Unnamed (Droplist) -->
  2038. <div id="u14620" class="ax_default droplist transition">
  2039. <div id="u14620_div" class=""></div>
  2040. <select id="u14620_input" class="u14620_input">
  2041. <option class="u14620_input_option" value="性别">性别</option>
  2042. </select>
  2043. </div>
  2044. </div>
  2045. <!-- Unnamed (Group) -->
  2046. <div id="u14621" class="ax_default" data-left="800" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2047. <!-- Unnamed (Rectangle) -->
  2048. <div id="u14622" class="ax_default shape transition">
  2049. <div id="u14622_div" class=""></div>
  2050. <div id="u14622_text" class="text " style="display:none; visibility: hidden">
  2051. <p></p>
  2052. </div>
  2053. </div>
  2054. <!-- 选项内容 (Text field) -->
  2055. <div id="u14623" class="ax_default text_field transition" data-label="选项内容">
  2056. <div id="u14623_div" class=""></div>
  2057. <input id="u14623_input" type="text" value="" class="u14623_input"/>
  2058. </div>
  2059. </div>
  2060. <!-- Unnamed (Group) -->
  2061. <div id="u14624" class="ax_default" data-left="950" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2062. <!-- Unnamed (Rectangle) -->
  2063. <div id="u14625" class="ax_default box_1 transition">
  2064. <div id="u14625_div" class=""></div>
  2065. <div id="u14625_text" class="text " style="display:none; visibility: hidden">
  2066. <p></p>
  2067. </div>
  2068. </div>
  2069. <!-- Unnamed (Droplist) -->
  2070. <div id="u14626" class="ax_default droplist transition">
  2071. <div id="u14626_div" class=""></div>
  2072. <select id="u14626_input" class="u14626_input">
  2073. <option class="u14626_input_option" value="授权状态">授权状态</option>
  2074. </select>
  2075. </div>
  2076. </div>
  2077. <!-- Unnamed (Group) -->
  2078. <div id="u14627" class="ax_default" data-left="1250" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2079. <!-- Unnamed (Rectangle) -->
  2080. <div id="u14628" class="ax_default shape transition">
  2081. <div id="u14628_div" class=""></div>
  2082. <div id="u14628_text" class="text " style="display:none; visibility: hidden">
  2083. <p></p>
  2084. </div>
  2085. </div>
  2086. <!-- 选项内容 (Text field) -->
  2087. <div id="u14629" class="ax_default text_field transition" data-label="选项内容">
  2088. <div id="u14629_div" class=""></div>
  2089. <input id="u14629_input" type="text" value="" class="u14629_input"/>
  2090. </div>
  2091. </div>
  2092. <!-- Unnamed (Group) -->
  2093. <div id="u14630" class="ax_default" data-left="1100" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2094. <!-- Unnamed (Rectangle) -->
  2095. <div id="u14631" class="ax_default box_1 transition">
  2096. <div id="u14631_div" class=""></div>
  2097. <div id="u14631_text" class="text " style="display:none; visibility: hidden">
  2098. <p></p>
  2099. </div>
  2100. </div>
  2101. <!-- Unnamed (Droplist) -->
  2102. <div id="u14632" class="ax_default droplist transition">
  2103. <div id="u14632_div" class=""></div>
  2104. <select id="u14632_input" class="u14632_input">
  2105. <option class="u14632_input_option" value="证件类型">证件类型</option>
  2106. <option class="u14632_input_option" value="身份证">身份证</option>
  2107. <option class="u14632_input_option" value="营业执照">营业执照</option>
  2108. </select>
  2109. </div>
  2110. </div>
  2111. <!-- Unnamed (Rectangle) -->
  2112. <div id="u14633" class="ax_default box_1 transition">
  2113. <div id="u14633_div" class=""></div>
  2114. <div id="u14633_text" class="text ">
  2115. <p><span>设置</span></p>
  2116. </div>
  2117. </div>
  2118. <!-- Unnamed (Group) -->
  2119. <div id="u14634" class="ax_default" data-left="1400" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2120. <!-- Unnamed (Rectangle) -->
  2121. <div id="u14635" class="ax_default box_1 transition">
  2122. <div id="u14635_div" class=""></div>
  2123. <div id="u14635_text" class="text " style="display:none; visibility: hidden">
  2124. <p></p>
  2125. </div>
  2126. </div>
  2127. <!-- Unnamed (Droplist) -->
  2128. <div id="u14636" class="ax_default droplist transition">
  2129. <div id="u14636_div" class=""></div>
  2130. <select id="u14636_input" class="u14636_input">
  2131. <option class="u14636_input_option" value="登记起止时间">登记起止时间</option>
  2132. </select>
  2133. </div>
  2134. </div>
  2135. <!-- Unnamed (Group) -->
  2136. <div id="u14637" class="ax_default" data-left="500" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2137. <!-- Unnamed (Rectangle) -->
  2138. <div id="u14638" class="ax_default shape transition">
  2139. <div id="u14638_div" class=""></div>
  2140. <div id="u14638_text" class="text " style="display:none; visibility: hidden">
  2141. <p></p>
  2142. </div>
  2143. </div>
  2144. <!-- 选项内容 (Text field) -->
  2145. <div id="u14639" class="ax_default text_field transition" data-label="选项内容">
  2146. <div id="u14639_div" class=""></div>
  2147. <input id="u14639_input" type="text" value="" class="u14639_input"/>
  2148. </div>
  2149. </div>
  2150. <!-- Unnamed (客户-人员中心) -->
  2151. <div id="u14640" class="nopointer ax_default">
  2152. <!-- Unnamed (Group) -->
  2153. <div id="u14641" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
  2154. <!-- Unnamed (Rectangle) -->
  2155. <div id="u14642" class="ax_default box_2 transition">
  2156. <div id="u14642_div" class=""></div>
  2157. <div id="u14642_text" class="text " style="display:none; visibility: hidden">
  2158. <p></p>
  2159. </div>
  2160. </div>
  2161. <!-- Unnamed (Rectangle) -->
  2162. <div id="u14643" class="ax_default label transition">
  2163. <div id="u14643_div" class=""></div>
  2164. <div id="u14643_text" class="text ">
  2165. <p><span>客户中心</span></p>
  2166. </div>
  2167. </div>
  2168. <!-- Unnamed (Rectangle) -->
  2169. <div id="u14644" class="ax_default label transition">
  2170. <div id="u14644_div" class=""></div>
  2171. <div id="u14644_text" class="text ">
  2172. <p><span>入驻企业</span></p>
  2173. </div>
  2174. </div>
  2175. <!-- Unnamed (Rectangle) -->
  2176. <div id="u14645" class="ax_default label transition">
  2177. <div id="u14645_div" class=""></div>
  2178. <div id="u14645_text" class="text ">
  2179. <p><span>入驻机构</span></p>
  2180. </div>
  2181. </div>
  2182. <!-- Unnamed (Rectangle) -->
  2183. <div id="u14646" class="ax_default label transition">
  2184. <div id="u14646_div" class=""></div>
  2185. <div id="u14646_text" class="text ">
  2186. <p><span>人员登记</span></p>
  2187. </div>
  2188. </div>
  2189. <!-- Unnamed (Rectangle) -->
  2190. <div id="u14647" class="ax_default label transition">
  2191. <div id="u14647_div" class=""></div>
  2192. <div id="u14647_text" class="text ">
  2193. <p><span>房屋住户</span></p>
  2194. </div>
  2195. </div>
  2196. <!-- Unnamed (Line) -->
  2197. <div id="u14648" class="ax_default line1 transition">
  2198. <svg data="images/项目列表/u4863.svg" id="u14648_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="u14648_text" class="text " style="display:none; visibility: hidden">
  2204. <p></p>
  2205. </div>
  2206. </div>
  2207. <!-- Unnamed (Rectangle) -->
  2208. <div id="u14649" class="ax_default label transition">
  2209. <div id="u14649_div" class=""></div>
  2210. <div id="u14649_text" class="text ">
  2211. <p><span>企业员工</span></p>
  2212. </div>
  2213. </div>
  2214. <!-- Unnamed (Rectangle) -->
  2215. <div id="u14650" class="ax_default label transition">
  2216. <div id="u14650_div" class=""></div>
  2217. <div id="u14650_text" class="text ">
  2218. <p><span>业主管理</span></p>
  2219. </div>
  2220. </div>
  2221. <!-- Unnamed (Line) -->
  2222. <div id="u14651" class="ax_default line1 transition">
  2223. <svg data="images/项目列表/u4863.svg" id="u14651_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="u14651_text" class="text " style="display:none; visibility: hidden">
  2229. <p></p>
  2230. </div>
  2231. </div>
  2232. <!-- Unnamed (Rectangle) -->
  2233. <div id="u14652" class="ax_default label transition">
  2234. <div id="u14652_div" class=""></div>
  2235. <div id="u14652_text" class="text ">
  2236. <p><span>房屋业主</span></p>
  2237. </div>
  2238. </div>
  2239. <!-- Unnamed (Rectangle) -->
  2240. <div id="u14653" class="ax_default label transition">
  2241. <div id="u14653_div" class=""></div>
  2242. <div id="u14653_text" class="text ">
  2243. <p><span>车位业主</span></p>
  2244. </div>
  2245. </div>
  2246. <!-- Unnamed (Rectangle) -->
  2247. <div id="u14654" class="ax_default label transition">
  2248. <div id="u14654_div" class=""></div>
  2249. <div id="u14654_text" class="text ">
  2250. <p><span>认证设置</span></p>
  2251. </div>
  2252. </div>
  2253. <!-- Unnamed (Rectangle) -->
  2254. <div id="u14655" class="ax_default label transition">
  2255. <div id="u14655_div" class=""></div>
  2256. <div id="u14655_text" class="text ">
  2257. <p><span>房屋业主认证</span></p>
  2258. </div>
  2259. </div>
  2260. <!-- Unnamed (Rectangle) -->
  2261. <div id="u14656" class="ax_default label transition">
  2262. <div id="u14656_div" class=""></div>
  2263. <div id="u14656_text" class="text ">
  2264. <p><span>身份认证</span></p>
  2265. </div>
  2266. </div>
  2267. <!-- Unnamed (Line) -->
  2268. <div id="u14657" class="ax_default line1 transition">
  2269. <svg data="images/项目列表/u4863.svg" id="u14657_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="u14657_text" class="text " style="display:none; visibility: hidden">
  2275. <p></p>
  2276. </div>
  2277. </div>
  2278. <!-- Unnamed (Rectangle) -->
  2279. <div id="u14658" class="ax_default label transition">
  2280. <div id="u14658_div" class=""></div>
  2281. <div id="u14658_text" class="text ">
  2282. <p><span>房源住户认证</span></p>
  2283. </div>
  2284. </div>
  2285. <!-- Unnamed (Rectangle) -->
  2286. <div id="u14659" class="ax_default label transition">
  2287. <div id="u14659_div" class=""></div>
  2288. <div id="u14659_text" class="text ">
  2289. <p><span>入驻企业认证</span></p>
  2290. </div>
  2291. </div>
  2292. <!-- Unnamed (Rectangle) -->
  2293. <div id="u14660" class="ax_default label transition">
  2294. <div id="u14660_div" class=""></div>
  2295. <div id="u14660_text" class="text ">
  2296. <p><span>人员档案</span></p>
  2297. </div>
  2298. </div>
  2299. <!-- Unnamed (Rectangle) -->
  2300. <div id="u14661" class="ax_default label transition">
  2301. <div id="u14661_div" class=""></div>
  2302. <div id="u14661_text" class="text ">
  2303. <p><span>客户档案</span></p>
  2304. </div>
  2305. </div>
  2306. <!-- Unnamed (Line) -->
  2307. <div id="u14662" class="ax_default line1 transition">
  2308. <svg data="images/项目列表/u4863.svg" id="u14662_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="u14662_text" class="text " style="display:none; visibility: hidden">
  2314. <p></p>
  2315. </div>
  2316. </div>
  2317. <!-- Unnamed (Rectangle) -->
  2318. <div id="u14663" class="ax_default label transition">
  2319. <div id="u14663_div" class=""></div>
  2320. <div id="u14663_text" class="text ">
  2321. <p><span>机构档案</span></p>
  2322. </div>
  2323. </div>
  2324. <!-- Unnamed (Rectangle) -->
  2325. <div id="u14664" class="ax_default label transition">
  2326. <div id="u14664_div" class=""></div>
  2327. <div id="u14664_text" class="text ">
  2328. <p><span>物业人员认证</span></p>
  2329. </div>
  2330. </div>
  2331. <!-- Unnamed (Rectangle) -->
  2332. <div id="u14665" class="ax_default label transition">
  2333. <div id="u14665_div" class=""></div>
  2334. <div id="u14665_text" class="text ">
  2335. <p><span>业主委员会</span></p>
  2336. </div>
  2337. </div>
  2338. <!-- Unnamed (Rectangle) -->
  2339. <div id="u14666" class="ax_default label transition">
  2340. <div id="u14666_div" class=""></div>
  2341. <div id="u14666_text" class="text ">
  2342. <p><span>车位业主认证</span></p>
  2343. </div>
  2344. </div>
  2345. <!-- Unnamed (Rectangle) -->
  2346. <div id="u14667" class="ax_default label transition">
  2347. <div id="u14667_div" class=""></div>
  2348. <div id="u14667_text" class="text ">
  2349. <p><span>物业员工</span></p>
  2350. </div>
  2351. </div>
  2352. <!-- Unnamed (Rectangle) -->
  2353. <div id="u14668" class="ax_default label transition">
  2354. <div id="u14668_div" class=""></div>
  2355. <div id="u14668_text" class="text ">
  2356. <p><span>骑手快递员</span></p>
  2357. </div>
  2358. </div>
  2359. <!-- Unnamed (Rectangle) -->
  2360. <div id="u14669" class="ax_default label transition">
  2361. <div id="u14669_div" class=""></div>
  2362. <div id="u14669_text" class="text ">
  2363. <p><span>装修工人</span></p>
  2364. </div>
  2365. </div>
  2366. </div>
  2367. </div>
  2368. <!-- Unnamed (Rectangle) -->
  2369. <div id="u14670" class="ax_default paragraph transition">
  2370. <div id="u14670_div" class=""></div>
  2371. <div id="u14670_text" class="text ">
  2372. <p><span>通过确认的骑手快递员,默认授予相关门禁点的通行1个月的有效期;门禁点、有效期可前往「设置」进行修改。</span></p>
  2373. </div>
  2374. </div>
  2375. <!-- Unnamed (Rectangle) -->
  2376. <div id="u14671" class="ax_default paragraph transition">
  2377. <div id="u14671_div" class=""></div>
  2378. <div id="u14671_text" class="text ">
  2379. <p><span>骑手快递员</span></p>
  2380. </div>
  2381. </div>
  2382. <!-- Unnamed (Group) -->
  2383. <div id="u14672" class="ax_default" data-left="350" data-top="155" data-width="140" data-height="30" layer-opacity="1">
  2384. <!-- Unnamed (Rectangle) -->
  2385. <div id="u14673" class="ax_default box_1 transition">
  2386. <div id="u14673_div" class=""></div>
  2387. <div id="u14673_text" class="text " style="display:none; visibility: hidden">
  2388. <p></p>
  2389. </div>
  2390. </div>
  2391. <!-- Unnamed (Droplist) -->
  2392. <div id="u14674" class="ax_default droplist transition">
  2393. <div id="u14674_div" class=""></div>
  2394. <select id="u14674_input" class="u14674_input">
  2395. <option class="u14674_input_option" value="美团">美团</option>
  2396. <option class="u14674_input_option" value="饿了么">饿了么</option>
  2397. <option class="u14674_input_option" value="京东">京东</option>
  2398. <option class="u14674_input_option" value="顺丰">顺丰</option>
  2399. <option class="u14674_input_option" value="…">…</option>
  2400. </select>
  2401. </div>
  2402. </div>
  2403. <!-- Unnamed (Rectangle) -->
  2404. <div id="u14675" class="ax_default box_1 transition">
  2405. <div id="u14675_div" class=""></div>
  2406. <div id="u14675_text" class="text ">
  2407. <p><span>导出</span></p>
  2408. </div>
  2409. </div>
  2410. <!-- Unnamed (Group) -->
  2411. <div id="u14676" class="ax_default" data-left="808" data-top="906" data-width="380" data-height="160" layer-opacity="1">
  2412. <!-- Unnamed (Group) -->
  2413. <div id="u14677" class="ax_default" data-left="808" data-top="906" data-width="380" data-height="160" layer-opacity="1">
  2414. <!-- Unnamed (Rectangle) -->
  2415. <div id="u14678" class="ax_default shape transition">
  2416. <div id="u14678_div" class=""></div>
  2417. <div id="u14678_text" class="text " style="display:none; visibility: hidden">
  2418. <p></p>
  2419. </div>
  2420. </div>
  2421. <!-- Unnamed (Rectangle) -->
  2422. <div id="u14679" class="ax_default paragraph transition">
  2423. <div id="u14679_div" class=""></div>
  2424. <div id="u14679_text" class="text ">
  2425. <p><span>确定删除人员?</span></p>
  2426. </div>
  2427. </div>
  2428. <!-- Unnamed (Rectangle) -->
  2429. <div id="u14680" class="ax_default shape transition">
  2430. <div id="u14680_div" class=""></div>
  2431. <div id="u14680_text" class="text ">
  2432. <p><span>确定</span></p>
  2433. </div>
  2434. </div>
  2435. <!-- Unnamed (Shape) -->
  2436. <div id="u14681" class="ax_default icon transition">
  2437. <svg data="images/项目列表/u4793.svg" id="u14681_img" class="img generatedImage">
  2438. <defs>
  2439. <pattern id="u14681_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2440. <mask fill="white" id="u14681_img_cl398">
  2441. <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" />
  2442. </mask>
  2443. </defs>
  2444. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2445. <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" />
  2446. <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(#u14681_img_cl398)" />
  2447. <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(#u14681_img_cl398)" />
  2448. <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(#u14681_img_cl398)" />
  2449. </g>
  2450. </svg>
  2451. <div id="u14681_text" class="text " style="display:none; visibility: hidden">
  2452. <p></p>
  2453. </div>
  2454. </div>
  2455. <!-- Unnamed (Rectangle) -->
  2456. <div id="u14682" class="ax_default paragraph transition">
  2457. <div id="u14682_div" class=""></div>
  2458. <div id="u14682_text" class="text ">
  2459. <p><span>删除之后,系统将同步清除人员相关的通行权限。</span></p>
  2460. </div>
  2461. </div>
  2462. <!-- Unnamed (Rectangle) -->
  2463. <div id="u14683" class="ax_default shape transition">
  2464. <div id="u14683_div" class=""></div>
  2465. <div id="u14683_text" class="text ">
  2466. <p><span>取 消</span></p>
  2467. </div>
  2468. </div>
  2469. </div>
  2470. </div>
  2471. <!-- Unnamed (Group) -->
  2472. <div id="u14684" class="ax_default" data-left="808" data-top="468" data-width="380" data-height="160" layer-opacity="1">
  2473. <!-- Unnamed (Group) -->
  2474. <div id="u14685" class="ax_default" data-left="808" data-top="468" data-width="380" data-height="160" layer-opacity="1">
  2475. <!-- Unnamed (Rectangle) -->
  2476. <div id="u14686" class="ax_default shape transition">
  2477. <div id="u14686_div" class=""></div>
  2478. <div id="u14686_text" class="text " style="display:none; visibility: hidden">
  2479. <p></p>
  2480. </div>
  2481. </div>
  2482. <!-- Unnamed (Rectangle) -->
  2483. <div id="u14687" class="ax_default paragraph transition">
  2484. <div id="u14687_div" class=""></div>
  2485. <div id="u14687_text" class="text ">
  2486. <p><span>确定批量通过?</span></p>
  2487. </div>
  2488. </div>
  2489. <!-- Unnamed (Rectangle) -->
  2490. <div id="u14688" class="ax_default shape transition">
  2491. <div id="u14688_div" class=""></div>
  2492. <div id="u14688_text" class="text ">
  2493. <p><span>确定</span></p>
  2494. </div>
  2495. </div>
  2496. <!-- Unnamed (Shape) -->
  2497. <div id="u14689" class="ax_default icon transition">
  2498. <svg data="images/项目列表/u4793.svg" id="u14689_img" class="img generatedImage">
  2499. <defs>
  2500. <pattern id="u14689_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2501. <mask fill="white" id="u14689_img_cl398">
  2502. <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" />
  2503. </mask>
  2504. </defs>
  2505. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2506. <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" />
  2507. <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(#u14689_img_cl398)" />
  2508. <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(#u14689_img_cl398)" />
  2509. <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(#u14689_img_cl398)" />
  2510. </g>
  2511. </svg>
  2512. <div id="u14689_text" class="text " style="display:none; visibility: hidden">
  2513. <p></p>
  2514. </div>
  2515. </div>
  2516. <!-- Unnamed (Rectangle) -->
  2517. <div id="u14690" class="ax_default paragraph transition">
  2518. <div id="u14690_div" class=""></div>
  2519. <div id="u14690_text" class="text ">
  2520. <p><span>通过之后,相关人员身份以及相关通行权限将生效。</span></p>
  2521. </div>
  2522. </div>
  2523. <!-- Unnamed (Rectangle) -->
  2524. <div id="u14691" class="ax_default shape transition">
  2525. <div id="u14691_div" class=""></div>
  2526. <div id="u14691_text" class="text ">
  2527. <p><span>取 消</span></p>
  2528. </div>
  2529. </div>
  2530. </div>
  2531. </div>
  2532. <!-- Unnamed (Group) -->
  2533. <div id="u14692" class="ax_default" data-left="808" data-top="646" data-width="380" data-height="240" layer-opacity="1">
  2534. <!-- Unnamed (Group) -->
  2535. <div id="u14693" class="ax_default" data-left="808" data-top="646" data-width="380" data-height="240" layer-opacity="1">
  2536. <!-- Unnamed (Rectangle) -->
  2537. <div id="u14694" class="ax_default shape transition">
  2538. <div id="u14694_div" class=""></div>
  2539. <div id="u14694_text" class="text " style="display:none; visibility: hidden">
  2540. <p></p>
  2541. </div>
  2542. </div>
  2543. <!-- Unnamed (Rectangle) -->
  2544. <div id="u14695" class="ax_default paragraph transition">
  2545. <div id="u14695_div" class=""></div>
  2546. <div id="u14695_text" class="text ">
  2547. <p><span>确定批量驳回?</span></p>
  2548. </div>
  2549. </div>
  2550. <!-- Unnamed (Rectangle) -->
  2551. <div id="u14696" class="ax_default shape transition">
  2552. <div id="u14696_div" class=""></div>
  2553. <div id="u14696_text" class="text ">
  2554. <p><span>确定</span></p>
  2555. </div>
  2556. </div>
  2557. <!-- Unnamed (Shape) -->
  2558. <div id="u14697" class="ax_default icon transition">
  2559. <svg data="images/项目列表/u4793.svg" id="u14697_img" class="img generatedImage">
  2560. <defs>
  2561. <pattern id="u14697_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2562. <mask fill="white" id="u14697_img_cl398">
  2563. <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" />
  2564. </mask>
  2565. </defs>
  2566. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2567. <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" />
  2568. <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(#u14697_img_cl398)" />
  2569. <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(#u14697_img_cl398)" />
  2570. <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(#u14697_img_cl398)" />
  2571. </g>
  2572. </svg>
  2573. <div id="u14697_text" class="text " style="display:none; visibility: hidden">
  2574. <p></p>
  2575. </div>
  2576. </div>
  2577. <!-- Unnamed (Rectangle) -->
  2578. <div id="u14698" class="ax_default paragraph transition">
  2579. <div id="u14698_div" class=""></div>
  2580. <div id="u14698_text" class="text ">
  2581. <p><span>驳回之后,相关人员将无法获取相关通行权限。</span></p>
  2582. </div>
  2583. </div>
  2584. <!-- Unnamed (Rectangle) -->
  2585. <div id="u14699" class="ax_default shape transition">
  2586. <div id="u14699_div" class=""></div>
  2587. <div id="u14699_text" class="text ">
  2588. <p><span>取 消</span></p>
  2589. </div>
  2590. </div>
  2591. <!-- Unnamed (Group) -->
  2592. <div id="u14700" class="ax_default" data-left="868" data-top="746" data-width="300" data-height="80" layer-opacity="1">
  2593. <!-- Unnamed (Rectangle) -->
  2594. <div id="u14701" class="ax_default shape transition">
  2595. <div id="u14701_div" class=""></div>
  2596. <div id="u14701_text" class="text " style="display:none; visibility: hidden">
  2597. <p></p>
  2598. </div>
  2599. </div>
  2600. <!-- Unnamed (Text area) -->
  2601. <div id="u14702" class="ax_default text_area transition">
  2602. <div id="u14702_div" class=""></div>
  2603. <textarea id="u14702_input" class="u14702_input"></textarea>
  2604. </div>
  2605. </div>
  2606. </div>
  2607. </div>
  2608. <!-- Unnamed (Group) -->
  2609. <div id="u14703" class="ax_default" data-left="1215" data-top="436" data-width="145" data-height="46" layer-opacity="1">
  2610. <!-- Unnamed (Shape) -->
  2611. <div id="u14704" class="ax_default icon transition">
  2612. <svg data="images/骑手快递员/u14704.svg" id="u14704_img" class="img generatedImage">
  2613. <defs>
  2614. <pattern id="u14704_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2615. <mask fill="white" id="u14704_img_cl1011">
  2616. <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" />
  2617. </mask>
  2618. </defs>
  2619. <g transform="matrix(1 0 0 1 -1220 -472 )">
  2620. <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" />
  2621. <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(#u14704_img_cl1011)" />
  2622. <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(#u14704_img_cl1011)" />
  2623. <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(#u14704_img_cl1011)" />
  2624. </g>
  2625. </svg>
  2626. <div id="u14704_text" class="text " style="display:none; visibility: hidden">
  2627. <p></p>
  2628. </div>
  2629. </div>
  2630. <!-- Unnamed (Rectangle) -->
  2631. <div id="u14705" class="ax_default shape transition">
  2632. <div id="u14705_div" class=""></div>
  2633. <div id="u14705_text" class="text ">
  2634. <p><span>显示驳回备注信息</span></p>
  2635. </div>
  2636. </div>
  2637. </div>
  2638. </div>
  2639. <script src="resources/scripts/axure/ios.js"></script>
  2640. </body>
  2641. </html>