styles.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-108px;
  6. width:2164px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u13023_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:240px;
  25. height:1497px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(170, 170, 170, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:none;
  34. -webkit-box-shadow:none;
  35. box-shadow:none;
  36. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  37. font-weight:400;
  38. font-style:normal;
  39. }
  40. #u13023 {
  41. border-width:0px;
  42. position:absolute;
  43. left:1271px;
  44. top:120px;
  45. width:240px;
  46. height:1497px;
  47. display:flex;
  48. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  49. font-weight:400;
  50. font-style:normal;
  51. }
  52. #u13023 .text {
  53. position:absolute;
  54. align-self:center;
  55. padding:2px 2px 2px 2px;
  56. box-sizing:border-box;
  57. width:100%;
  58. }
  59. #u13023_text {
  60. border-width:0px;
  61. word-wrap:break-word;
  62. text-transform:none;
  63. visibility:hidden;
  64. }
  65. #u13024_div {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:435px;
  71. height:863px;
  72. background:inherit;
  73. background-color:rgba(255, 255, 255, 1);
  74. box-sizing:border-box;
  75. border-width:1px;
  76. border-style:solid;
  77. border-color:rgba(170, 170, 170, 1);
  78. border-radius:0px;
  79. -moz-box-shadow:none;
  80. -webkit-box-shadow:none;
  81. box-shadow:none;
  82. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  83. font-weight:400;
  84. font-style:normal;
  85. }
  86. #u13024 {
  87. border-width:0px;
  88. position:absolute;
  89. left:108px;
  90. top:120px;
  91. width:435px;
  92. height:863px;
  93. display:flex;
  94. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  95. font-weight:400;
  96. font-style:normal;
  97. }
  98. #u13024 .text {
  99. position:absolute;
  100. align-self:center;
  101. padding:2px 2px 2px 2px;
  102. box-sizing:border-box;
  103. width:100%;
  104. }
  105. #u13024_text {
  106. border-width:0px;
  107. word-wrap:break-word;
  108. text-transform:none;
  109. visibility:hidden;
  110. }
  111. #u13025_div {
  112. border-width:0px;
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:100px;
  117. height:60px;
  118. background:inherit;
  119. background-color:rgba(255, 255, 255, 1);
  120. box-sizing:border-box;
  121. border-width:1px;
  122. border-style:solid;
  123. border-color:rgba(51, 51, 51, 1);
  124. border-radius:50px;
  125. -moz-box-shadow:none;
  126. -webkit-box-shadow:none;
  127. box-shadow:none;
  128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  129. font-weight:400;
  130. font-style:normal;
  131. }
  132. #u13025 {
  133. border-width:0px;
  134. position:absolute;
  135. left:178px;
  136. top:188px;
  137. width:100px;
  138. height:60px;
  139. display:flex;
  140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  141. font-weight:400;
  142. font-style:normal;
  143. }
  144. #u13025 .text {
  145. position:absolute;
  146. align-self:center;
  147. padding:2px 2px 2px 2px;
  148. box-sizing:border-box;
  149. width:100%;
  150. }
  151. #u13025_text {
  152. border-width:0px;
  153. word-wrap:break-word;
  154. text-transform:none;
  155. }
  156. #u13026_div {
  157. border-width:0px;
  158. position:absolute;
  159. left:0px;
  160. top:0px;
  161. width:150px;
  162. height:69px;
  163. background:inherit;
  164. background-color:rgba(255, 255, 255, 1);
  165. box-sizing:border-box;
  166. border-width:1px;
  167. border-style:solid;
  168. border-color:rgba(51, 51, 51, 1);
  169. border-radius:0px;
  170. -moz-box-shadow:none;
  171. -webkit-box-shadow:none;
  172. box-shadow:none;
  173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  174. font-weight:400;
  175. font-style:normal;
  176. }
  177. #u13026 {
  178. border-width:0px;
  179. position:absolute;
  180. left:153px;
  181. top:277px;
  182. width:150px;
  183. height:69px;
  184. display:flex;
  185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  186. font-weight:400;
  187. font-style:normal;
  188. }
  189. #u13026 .text {
  190. position:absolute;
  191. align-self:center;
  192. padding:2px 2px 2px 2px;
  193. box-sizing:border-box;
  194. width:100%;
  195. }
  196. #u13026_text {
  197. border-width:0px;
  198. word-wrap:break-word;
  199. text-transform:none;
  200. }
  201. #u13027_div {
  202. border-width:0px;
  203. position:absolute;
  204. left:0px;
  205. top:0px;
  206. width:241px;
  207. height:33px;
  208. background:inherit;
  209. background-color:rgba(255, 255, 255, 0);
  210. border:none;
  211. border-radius:0px;
  212. -moz-box-shadow:none;
  213. -webkit-box-shadow:none;
  214. box-shadow:none;
  215. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  216. font-weight:500;
  217. font-style:normal;
  218. font-size:24px;
  219. }
  220. #u13027 {
  221. border-width:0px;
  222. position:absolute;
  223. left:108px;
  224. top:67px;
  225. width:241px;
  226. height:33px;
  227. display:flex;
  228. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  229. font-weight:500;
  230. font-style:normal;
  231. font-size:24px;
  232. }
  233. #u13027 .text {
  234. position:absolute;
  235. align-self:flex-start;
  236. padding:0px 0px 0px 0px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u13027_text {
  241. border-width:0px;
  242. white-space:nowrap;
  243. text-transform:none;
  244. }
  245. #u13028_div {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:73px;
  251. height:25px;
  252. background:inherit;
  253. background-color:rgba(255, 255, 255, 0);
  254. border:none;
  255. border-radius:0px;
  256. -moz-box-shadow:none;
  257. -webkit-box-shadow:none;
  258. box-shadow:none;
  259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  260. font-weight:500;
  261. font-style:normal;
  262. font-size:18px;
  263. }
  264. #u13028 {
  265. border-width:0px;
  266. position:absolute;
  267. left:192px;
  268. top:140px;
  269. width:73px;
  270. height:25px;
  271. display:flex;
  272. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  273. font-weight:500;
  274. font-style:normal;
  275. font-size:18px;
  276. }
  277. #u13028 .text {
  278. position:absolute;
  279. align-self:flex-start;
  280. padding:0px 0px 0px 0px;
  281. box-sizing:border-box;
  282. width:100%;
  283. }
  284. #u13028_text {
  285. border-width:0px;
  286. white-space:nowrap;
  287. text-transform:none;
  288. }
  289. #u13029_div {
  290. border-width:0px;
  291. position:absolute;
  292. left:0px;
  293. top:0px;
  294. width:150px;
  295. height:69px;
  296. background:inherit;
  297. background-color:rgba(255, 255, 255, 1);
  298. box-sizing:border-box;
  299. border-width:1px;
  300. border-style:solid;
  301. border-color:rgba(51, 51, 51, 1);
  302. border-radius:0px;
  303. -moz-box-shadow:none;
  304. -webkit-box-shadow:none;
  305. box-shadow:none;
  306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  307. font-weight:400;
  308. font-style:normal;
  309. }
  310. #u13029 {
  311. border-width:0px;
  312. position:absolute;
  313. left:153px;
  314. top:376px;
  315. width:150px;
  316. height:69px;
  317. display:flex;
  318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  319. font-weight:400;
  320. font-style:normal;
  321. }
  322. #u13029 .text {
  323. position:absolute;
  324. align-self:center;
  325. padding:2px 2px 2px 2px;
  326. box-sizing:border-box;
  327. width:100%;
  328. }
  329. #u13029_text {
  330. border-width:0px;
  331. word-wrap:break-word;
  332. text-transform:none;
  333. }
  334. #u13030_div {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:150px;
  340. height:69px;
  341. background:inherit;
  342. background-color:rgba(255, 255, 255, 1);
  343. box-sizing:border-box;
  344. border-width:1px;
  345. border-style:solid;
  346. border-color:rgba(51, 51, 51, 1);
  347. border-radius:0px;
  348. -moz-box-shadow:none;
  349. -webkit-box-shadow:none;
  350. box-shadow:none;
  351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  352. font-weight:400;
  353. font-style:normal;
  354. }
  355. #u13030 {
  356. border-width:0px;
  357. position:absolute;
  358. left:153px;
  359. top:475px;
  360. width:150px;
  361. height:69px;
  362. display:flex;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. }
  367. #u13030 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u13030_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. }
  379. #u13031 {
  380. border-width:0px;
  381. position:absolute;
  382. left:228px;
  383. top:248px;
  384. width:0px;
  385. height:0px;
  386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  387. font-weight:400;
  388. font-style:normal;
  389. font-size:12px;
  390. color:#333333;
  391. }
  392. #u13031_seg0 {
  393. border-width:0px;
  394. position:absolute;
  395. left:-5px;
  396. top:0px;
  397. width:10px;
  398. height:34px;
  399. }
  400. #u13031_seg1 {
  401. border-width:0px;
  402. position:absolute;
  403. left:-17px;
  404. top:10px;
  405. width:34px;
  406. height:34px;
  407. }
  408. #u13031_text {
  409. border-width:0px;
  410. position:absolute;
  411. left:-50px;
  412. top:6px;
  413. width:100px;
  414. word-wrap:break-word;
  415. text-transform:none;
  416. visibility:hidden;
  417. }
  418. #u13032 {
  419. border-width:0px;
  420. position:absolute;
  421. left:228px;
  422. top:346px;
  423. width:0px;
  424. height:0px;
  425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  426. font-weight:400;
  427. font-style:normal;
  428. font-size:12px;
  429. color:#333333;
  430. }
  431. #u13032_seg0 {
  432. border-width:0px;
  433. position:absolute;
  434. left:-5px;
  435. top:0px;
  436. width:10px;
  437. height:35px;
  438. }
  439. #u13032_seg1 {
  440. border-width:0px;
  441. position:absolute;
  442. left:-17px;
  443. top:11px;
  444. width:34px;
  445. height:34px;
  446. }
  447. #u13032_text {
  448. border-width:0px;
  449. position:absolute;
  450. left:-50px;
  451. top:7px;
  452. width:100px;
  453. word-wrap:break-word;
  454. text-transform:none;
  455. visibility:hidden;
  456. }
  457. #u13033 {
  458. border-width:0px;
  459. position:absolute;
  460. left:228px;
  461. top:445px;
  462. width:0px;
  463. height:0px;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. font-size:12px;
  468. color:#333333;
  469. }
  470. #u13033_seg0 {
  471. border-width:0px;
  472. position:absolute;
  473. left:-5px;
  474. top:0px;
  475. width:10px;
  476. height:35px;
  477. }
  478. #u13033_seg1 {
  479. border-width:0px;
  480. position:absolute;
  481. left:-17px;
  482. top:11px;
  483. width:34px;
  484. height:34px;
  485. }
  486. #u13033_text {
  487. border-width:0px;
  488. position:absolute;
  489. left:-50px;
  490. top:7px;
  491. width:100px;
  492. word-wrap:break-word;
  493. text-transform:none;
  494. visibility:hidden;
  495. }
  496. #u13034_div {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:100px;
  502. height:60px;
  503. background:inherit;
  504. background-color:rgba(255, 255, 255, 1);
  505. box-sizing:border-box;
  506. border-width:1px;
  507. border-style:solid;
  508. border-color:rgba(51, 51, 51, 1);
  509. border-radius:50px;
  510. -moz-box-shadow:none;
  511. -webkit-box-shadow:none;
  512. box-shadow:none;
  513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  514. font-weight:400;
  515. font-style:normal;
  516. }
  517. #u13034 {
  518. border-width:0px;
  519. position:absolute;
  520. left:178px;
  521. top:867px;
  522. width:100px;
  523. height:60px;
  524. display:flex;
  525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  526. font-weight:400;
  527. font-style:normal;
  528. }
  529. #u13034 .text {
  530. position:absolute;
  531. align-self:center;
  532. padding:2px 2px 2px 2px;
  533. box-sizing:border-box;
  534. width:100%;
  535. }
  536. #u13034_text {
  537. border-width:0px;
  538. word-wrap:break-word;
  539. text-transform:none;
  540. }
  541. #u13035_div {
  542. border-width:0px;
  543. position:absolute;
  544. left:0px;
  545. top:0px;
  546. width:241px;
  547. height:1497px;
  548. background:inherit;
  549. background-color:rgba(255, 255, 255, 1);
  550. box-sizing:border-box;
  551. border-width:1px;
  552. border-style:solid;
  553. border-color:rgba(170, 170, 170, 1);
  554. border-radius:0px;
  555. -moz-box-shadow:none;
  556. -webkit-box-shadow:none;
  557. box-shadow:none;
  558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  559. font-weight:400;
  560. font-style:normal;
  561. }
  562. #u13035 {
  563. border-width:0px;
  564. position:absolute;
  565. left:614px;
  566. top:120px;
  567. width:241px;
  568. height:1497px;
  569. display:flex;
  570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  571. font-weight:400;
  572. font-style:normal;
  573. }
  574. #u13035 .text {
  575. position:absolute;
  576. align-self:center;
  577. padding:2px 2px 2px 2px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u13035_text {
  582. border-width:0px;
  583. word-wrap:break-word;
  584. text-transform:none;
  585. visibility:hidden;
  586. }
  587. #u13036_div {
  588. border-width:0px;
  589. position:absolute;
  590. left:0px;
  591. top:0px;
  592. width:100px;
  593. height:60px;
  594. background:inherit;
  595. background-color:rgba(255, 255, 255, 1);
  596. box-sizing:border-box;
  597. border-width:1px;
  598. border-style:solid;
  599. border-color:rgba(51, 51, 51, 1);
  600. border-radius:50px;
  601. -moz-box-shadow:none;
  602. -webkit-box-shadow:none;
  603. box-shadow:none;
  604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  605. font-weight:400;
  606. font-style:normal;
  607. }
  608. #u13036 {
  609. border-width:0px;
  610. position:absolute;
  611. left:684px;
  612. top:198px;
  613. width:100px;
  614. height:60px;
  615. display:flex;
  616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  617. font-weight:400;
  618. font-style:normal;
  619. }
  620. #u13036 .text {
  621. position:absolute;
  622. align-self:center;
  623. padding:2px 2px 2px 2px;
  624. box-sizing:border-box;
  625. width:100%;
  626. }
  627. #u13036_text {
  628. border-width:0px;
  629. word-wrap:break-word;
  630. text-transform:none;
  631. }
  632. #u13037_div {
  633. border-width:0px;
  634. position:absolute;
  635. left:0px;
  636. top:0px;
  637. width:150px;
  638. height:69px;
  639. background:inherit;
  640. background-color:rgba(255, 255, 255, 1);
  641. box-sizing:border-box;
  642. border-width:1px;
  643. border-style:solid;
  644. border-color:rgba(51, 51, 51, 1);
  645. border-radius:0px;
  646. -moz-box-shadow:none;
  647. -webkit-box-shadow:none;
  648. box-shadow:none;
  649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  650. font-weight:400;
  651. font-style:normal;
  652. }
  653. #u13037 {
  654. border-width:0px;
  655. position:absolute;
  656. left:659px;
  657. top:277px;
  658. width:150px;
  659. height:69px;
  660. display:flex;
  661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  662. font-weight:400;
  663. font-style:normal;
  664. }
  665. #u13037 .text {
  666. position:absolute;
  667. align-self:center;
  668. padding:2px 2px 2px 2px;
  669. box-sizing:border-box;
  670. width:100%;
  671. }
  672. #u13037_text {
  673. border-width:0px;
  674. word-wrap:break-word;
  675. text-transform:none;
  676. }
  677. #u13038_div {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:241px;
  683. height:33px;
  684. background:inherit;
  685. background-color:rgba(255, 255, 255, 0);
  686. border:none;
  687. border-radius:0px;
  688. -moz-box-shadow:none;
  689. -webkit-box-shadow:none;
  690. box-shadow:none;
  691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  692. font-weight:500;
  693. font-style:normal;
  694. font-size:24px;
  695. }
  696. #u13038 {
  697. border-width:0px;
  698. position:absolute;
  699. left:614px;
  700. top:67px;
  701. width:241px;
  702. height:33px;
  703. display:flex;
  704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  705. font-weight:500;
  706. font-style:normal;
  707. font-size:24px;
  708. }
  709. #u13038 .text {
  710. position:absolute;
  711. align-self:flex-start;
  712. padding:0px 0px 0px 0px;
  713. box-sizing:border-box;
  714. width:100%;
  715. }
  716. #u13038_text {
  717. border-width:0px;
  718. white-space:nowrap;
  719. text-transform:none;
  720. }
  721. #u13039_div {
  722. border-width:0px;
  723. position:absolute;
  724. left:0px;
  725. top:0px;
  726. width:73px;
  727. height:25px;
  728. background:inherit;
  729. background-color:rgba(255, 255, 255, 0);
  730. border:none;
  731. border-radius:0px;
  732. -moz-box-shadow:none;
  733. -webkit-box-shadow:none;
  734. box-shadow:none;
  735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  736. font-weight:500;
  737. font-style:normal;
  738. font-size:18px;
  739. }
  740. #u13039 {
  741. border-width:0px;
  742. position:absolute;
  743. left:698px;
  744. top:140px;
  745. width:73px;
  746. height:25px;
  747. display:flex;
  748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  749. font-weight:500;
  750. font-style:normal;
  751. font-size:18px;
  752. }
  753. #u13039 .text {
  754. position:absolute;
  755. align-self:flex-start;
  756. padding:0px 0px 0px 0px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u13039_text {
  761. border-width:0px;
  762. white-space:nowrap;
  763. text-transform:none;
  764. }
  765. #u13040 {
  766. border-width:0px;
  767. position:absolute;
  768. left:734px;
  769. top:258px;
  770. width:0px;
  771. height:0px;
  772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  773. font-weight:400;
  774. font-style:normal;
  775. font-size:12px;
  776. color:#333333;
  777. }
  778. #u13040_seg0 {
  779. border-width:0px;
  780. position:absolute;
  781. left:-5px;
  782. top:0px;
  783. width:10px;
  784. height:24px;
  785. }
  786. #u13040_seg1 {
  787. border-width:0px;
  788. position:absolute;
  789. left:-17px;
  790. top:0px;
  791. width:34px;
  792. height:34px;
  793. }
  794. #u13040_text {
  795. border-width:0px;
  796. position:absolute;
  797. left:-50px;
  798. top:2px;
  799. width:100px;
  800. word-wrap:break-word;
  801. text-transform:none;
  802. visibility:hidden;
  803. }
  804. #u13041_div {
  805. border-width:0px;
  806. position:absolute;
  807. left:0px;
  808. top:0px;
  809. width:150px;
  810. height:69px;
  811. background:inherit;
  812. background-color:rgba(255, 255, 255, 1);
  813. box-sizing:border-box;
  814. border-width:1px;
  815. border-style:solid;
  816. border-color:rgba(51, 51, 51, 1);
  817. border-radius:0px;
  818. -moz-box-shadow:none;
  819. -webkit-box-shadow:none;
  820. box-shadow:none;
  821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  822. font-weight:400;
  823. font-style:normal;
  824. }
  825. #u13041 {
  826. border-width:0px;
  827. position:absolute;
  828. left:153px;
  829. top:574px;
  830. width:150px;
  831. height:69px;
  832. display:flex;
  833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  834. font-weight:400;
  835. font-style:normal;
  836. }
  837. #u13041 .text {
  838. position:absolute;
  839. align-self:center;
  840. padding:2px 2px 2px 2px;
  841. box-sizing:border-box;
  842. width:100%;
  843. }
  844. #u13041_text {
  845. border-width:0px;
  846. word-wrap:break-word;
  847. text-transform:none;
  848. }
  849. #u13042_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:150px;
  855. height:69px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 1);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(51, 51, 51, 1);
  862. border-radius:0px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. }
  870. #u13042 {
  871. border-width:0px;
  872. position:absolute;
  873. left:344px;
  874. top:574px;
  875. width:150px;
  876. height:69px;
  877. display:flex;
  878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  879. font-weight:400;
  880. font-style:normal;
  881. }
  882. #u13042 .text {
  883. position:absolute;
  884. align-self:center;
  885. padding:2px 2px 2px 2px;
  886. box-sizing:border-box;
  887. width:100%;
  888. }
  889. #u13042_text {
  890. border-width:0px;
  891. word-wrap:break-word;
  892. text-transform:none;
  893. }
  894. #u13043_div {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:150px;
  900. height:69px;
  901. background:inherit;
  902. background-color:rgba(255, 255, 255, 1);
  903. box-sizing:border-box;
  904. border-width:1px;
  905. border-style:solid;
  906. border-color:rgba(51, 51, 51, 1);
  907. border-radius:0px;
  908. -moz-box-shadow:none;
  909. -webkit-box-shadow:none;
  910. box-shadow:none;
  911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  912. font-weight:400;
  913. font-style:normal;
  914. }
  915. #u13043 {
  916. border-width:0px;
  917. position:absolute;
  918. left:344px;
  919. top:673px;
  920. width:150px;
  921. height:69px;
  922. display:flex;
  923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  924. font-weight:400;
  925. font-style:normal;
  926. }
  927. #u13043 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u13043_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. }
  939. #u13044_img {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:100px;
  945. height:60px;
  946. }
  947. #u13044 {
  948. border-width:0px;
  949. position:absolute;
  950. left:369px;
  951. top:771px;
  952. width:100px;
  953. height:60px;
  954. display:flex;
  955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. }
  959. #u13044 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u13044_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. }
  971. #u13045_div {
  972. border-width:0px;
  973. position:absolute;
  974. left:0px;
  975. top:0px;
  976. width:150px;
  977. height:69px;
  978. background:inherit;
  979. background-color:rgba(255, 255, 255, 1);
  980. box-sizing:border-box;
  981. border-width:1px;
  982. border-style:solid;
  983. border-color:rgba(51, 51, 51, 1);
  984. border-radius:0px;
  985. -moz-box-shadow:none;
  986. -webkit-box-shadow:none;
  987. box-shadow:none;
  988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  989. font-weight:400;
  990. font-style:normal;
  991. }
  992. #u13045 {
  993. border-width:0px;
  994. position:absolute;
  995. left:153px;
  996. top:766px;
  997. width:150px;
  998. height:69px;
  999. display:flex;
  1000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1001. font-weight:400;
  1002. font-style:normal;
  1003. }
  1004. #u13045 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u13045_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. }
  1016. #u13046 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:228px;
  1020. top:544px;
  1021. width:0px;
  1022. height:0px;
  1023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1024. font-weight:400;
  1025. font-style:normal;
  1026. font-size:12px;
  1027. color:#333333;
  1028. }
  1029. #u13046_seg0 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:-5px;
  1033. top:0px;
  1034. width:10px;
  1035. height:35px;
  1036. }
  1037. #u13046_seg1 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:-17px;
  1041. top:11px;
  1042. width:34px;
  1043. height:34px;
  1044. }
  1045. #u13046_text {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:-50px;
  1049. top:7px;
  1050. width:100px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u13047 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:303px;
  1059. top:609px;
  1060. width:0px;
  1061. height:0px;
  1062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1063. font-weight:400;
  1064. font-style:normal;
  1065. font-size:12px;
  1066. color:#333333;
  1067. }
  1068. #u13047_seg0 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:-5px;
  1073. width:46px;
  1074. height:10px;
  1075. }
  1076. #u13047_seg1 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:22px;
  1080. top:-17px;
  1081. width:34px;
  1082. height:34px;
  1083. }
  1084. #u13047_text {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:-30px;
  1088. top:-8px;
  1089. width:100px;
  1090. word-wrap:break-word;
  1091. text-transform:none;
  1092. visibility:hidden;
  1093. }
  1094. #u13048 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:419px;
  1098. top:643px;
  1099. width:0px;
  1100. height:0px;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:12px;
  1105. color:#333333;
  1106. }
  1107. #u13048_seg0 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:-5px;
  1111. top:0px;
  1112. width:10px;
  1113. height:35px;
  1114. }
  1115. #u13048_seg1 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:-17px;
  1119. top:11px;
  1120. width:34px;
  1121. height:34px;
  1122. }
  1123. #u13048_text {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:-50px;
  1127. top:7px;
  1128. width:100px;
  1129. word-wrap:break-word;
  1130. text-transform:none;
  1131. visibility:hidden;
  1132. }
  1133. #u13049 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:419px;
  1137. top:742px;
  1138. width:0px;
  1139. height:0px;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:12px;
  1144. color:#333333;
  1145. }
  1146. #u13049_seg0 {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:-5px;
  1150. top:0px;
  1151. width:10px;
  1152. height:34px;
  1153. }
  1154. #u13049_seg1 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:-17px;
  1158. top:10px;
  1159. width:34px;
  1160. height:34px;
  1161. }
  1162. #u13049_text {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:-50px;
  1166. top:6px;
  1167. width:100px;
  1168. word-wrap:break-word;
  1169. text-transform:none;
  1170. visibility:hidden;
  1171. }
  1172. #u13050 {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:369px;
  1176. top:801px;
  1177. width:0px;
  1178. height:0px;
  1179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1180. font-weight:400;
  1181. font-style:normal;
  1182. font-size:12px;
  1183. color:#333333;
  1184. }
  1185. #u13050_seg0 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:-66px;
  1189. top:-5px;
  1190. width:71px;
  1191. height:10px;
  1192. }
  1193. #u13050_seg1 {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:-81px;
  1197. top:-17px;
  1198. width:34px;
  1199. height:34px;
  1200. }
  1201. #u13050_text {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:-83px;
  1205. top:-8px;
  1206. width:100px;
  1207. word-wrap:break-word;
  1208. text-transform:none;
  1209. }
  1210. #u13051 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:419px;
  1214. top:831px;
  1215. width:0px;
  1216. height:0px;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:12px;
  1221. color:#333333;
  1222. }
  1223. #u13051_seg0 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:-5px;
  1227. top:0px;
  1228. width:10px;
  1229. height:71px;
  1230. }
  1231. #u13051_seg1 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:-141px;
  1235. top:61px;
  1236. width:146px;
  1237. height:10px;
  1238. }
  1239. #u13051_seg2 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:-156px;
  1243. top:49px;
  1244. width:34px;
  1245. height:34px;
  1246. }
  1247. #u13051_text {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:-88px;
  1251. top:58px;
  1252. width:100px;
  1253. word-wrap:break-word;
  1254. text-transform:none;
  1255. }
  1256. #u13052 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:228px;
  1260. top:835px;
  1261. width:0px;
  1262. height:0px;
  1263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1264. font-weight:400;
  1265. font-style:normal;
  1266. font-size:12px;
  1267. color:#333333;
  1268. }
  1269. #u13052_seg0 {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:-5px;
  1273. top:0px;
  1274. width:10px;
  1275. height:37px;
  1276. }
  1277. #u13052_seg1 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:-17px;
  1281. top:13px;
  1282. width:34px;
  1283. height:34px;
  1284. }
  1285. #u13052_text {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:-50px;
  1289. top:8px;
  1290. width:100px;
  1291. word-wrap:break-word;
  1292. text-transform:none;
  1293. visibility:hidden;
  1294. }
  1295. #u13053_div {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:416px;
  1301. height:1497px;
  1302. background:inherit;
  1303. background-color:rgba(255, 255, 255, 1);
  1304. box-sizing:border-box;
  1305. border-width:1px;
  1306. border-style:solid;
  1307. border-color:rgba(170, 170, 170, 1);
  1308. border-radius:0px;
  1309. -moz-box-shadow:none;
  1310. -webkit-box-shadow:none;
  1311. box-shadow:none;
  1312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1313. font-weight:400;
  1314. font-style:normal;
  1315. }
  1316. #u13053 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:855px;
  1320. top:120px;
  1321. width:416px;
  1322. height:1497px;
  1323. display:flex;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. }
  1328. #u13053 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:2px 2px 2px 2px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u13053_text {
  1336. border-width:0px;
  1337. word-wrap:break-word;
  1338. text-transform:none;
  1339. visibility:hidden;
  1340. }
  1341. #u13054_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:142px;
  1347. height:25px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 0);
  1350. border:none;
  1351. border-radius:0px;
  1352. -moz-box-shadow:none;
  1353. -webkit-box-shadow:none;
  1354. box-shadow:none;
  1355. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1356. font-weight:500;
  1357. font-style:normal;
  1358. font-size:18px;
  1359. }
  1360. #u13054 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:992px;
  1364. top:140px;
  1365. width:142px;
  1366. height:25px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1369. font-weight:500;
  1370. font-style:normal;
  1371. font-size:18px;
  1372. }
  1373. #u13054 .text {
  1374. position:absolute;
  1375. align-self:flex-start;
  1376. padding:0px 0px 0px 0px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u13054_text {
  1381. border-width:0px;
  1382. white-space:nowrap;
  1383. text-transform:none;
  1384. }
  1385. #u13055_div {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:150px;
  1391. height:69px;
  1392. background:inherit;
  1393. background-color:rgba(255, 255, 255, 1);
  1394. box-sizing:border-box;
  1395. border-width:1px;
  1396. border-style:solid;
  1397. border-color:rgba(51, 51, 51, 1);
  1398. border-radius:0px;
  1399. -moz-box-shadow:none;
  1400. -webkit-box-shadow:none;
  1401. box-shadow:none;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. }
  1406. #u13055 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:905px;
  1410. top:277px;
  1411. width:150px;
  1412. height:69px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. }
  1418. #u13055 .text {
  1419. position:absolute;
  1420. align-self:center;
  1421. padding:2px 2px 2px 2px;
  1422. box-sizing:border-box;
  1423. width:100%;
  1424. }
  1425. #u13055_text {
  1426. border-width:0px;
  1427. word-wrap:break-word;
  1428. text-transform:none;
  1429. }
  1430. #u13056_img {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:100px;
  1436. height:60px;
  1437. }
  1438. #u13056 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:930px;
  1442. top:634px;
  1443. width:100px;
  1444. height:60px;
  1445. display:flex;
  1446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1447. font-weight:400;
  1448. font-style:normal;
  1449. }
  1450. #u13056 .text {
  1451. position:absolute;
  1452. align-self:center;
  1453. padding:2px 2px 2px 2px;
  1454. box-sizing:border-box;
  1455. width:100%;
  1456. }
  1457. #u13056_text {
  1458. border-width:0px;
  1459. word-wrap:break-word;
  1460. text-transform:none;
  1461. }
  1462. #u13057_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:150px;
  1468. height:69px;
  1469. background:inherit;
  1470. background-color:rgba(255, 255, 255, 1);
  1471. box-sizing:border-box;
  1472. border-width:1px;
  1473. border-style:solid;
  1474. border-color:rgba(51, 51, 51, 1);
  1475. border-radius:0px;
  1476. -moz-box-shadow:none;
  1477. -webkit-box-shadow:none;
  1478. box-shadow:none;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. }
  1483. #u13057 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:905px;
  1487. top:366px;
  1488. width:150px;
  1489. height:69px;
  1490. display:flex;
  1491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1492. font-weight:400;
  1493. font-style:normal;
  1494. }
  1495. #u13057 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:2px 2px 2px 2px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u13057_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. }
  1507. #u13058_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:150px;
  1513. height:69px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 1);
  1516. box-sizing:border-box;
  1517. border-width:1px;
  1518. border-style:solid;
  1519. border-color:rgba(51, 51, 51, 1);
  1520. border-radius:0px;
  1521. -moz-box-shadow:none;
  1522. -webkit-box-shadow:none;
  1523. box-shadow:none;
  1524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1525. font-weight:400;
  1526. font-style:normal;
  1527. }
  1528. #u13058 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:905px;
  1532. top:455px;
  1533. width:150px;
  1534. height:69px;
  1535. display:flex;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. }
  1540. #u13058 .text {
  1541. position:absolute;
  1542. align-self:center;
  1543. padding:2px 2px 2px 2px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u13058_text {
  1548. border-width:0px;
  1549. word-wrap:break-word;
  1550. text-transform:none;
  1551. }
  1552. #u13059_div {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:150px;
  1558. height:69px;
  1559. background:inherit;
  1560. background-color:rgba(255, 255, 255, 1);
  1561. box-sizing:border-box;
  1562. border-width:1px;
  1563. border-style:solid;
  1564. border-color:rgba(51, 51, 51, 1);
  1565. border-radius:0px;
  1566. -moz-box-shadow:none;
  1567. -webkit-box-shadow:none;
  1568. box-shadow:none;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. }
  1573. #u13059 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:905px;
  1577. top:544px;
  1578. width:150px;
  1579. height:69px;
  1580. display:flex;
  1581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. }
  1585. #u13059 .text {
  1586. position:absolute;
  1587. align-self:center;
  1588. padding:2px 2px 2px 2px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u13059_text {
  1593. border-width:0px;
  1594. word-wrap:break-word;
  1595. text-transform:none;
  1596. }
  1597. #u13060_div {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:150px;
  1603. height:69px;
  1604. background:inherit;
  1605. background-color:rgba(255, 255, 255, 1);
  1606. box-sizing:border-box;
  1607. border-width:1px;
  1608. border-style:solid;
  1609. border-color:rgba(51, 51, 51, 1);
  1610. border-radius:0px;
  1611. -moz-box-shadow:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. }
  1618. #u13060 {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:1063px;
  1622. top:629px;
  1623. width:150px;
  1624. height:69px;
  1625. display:flex;
  1626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1627. font-weight:400;
  1628. font-style:normal;
  1629. }
  1630. #u13060 .text {
  1631. position:absolute;
  1632. align-self:center;
  1633. padding:2px 2px 2px 2px;
  1634. box-sizing:border-box;
  1635. width:100%;
  1636. }
  1637. #u13060_text {
  1638. border-width:0px;
  1639. word-wrap:break-word;
  1640. text-transform:none;
  1641. }
  1642. #u13061_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:150px;
  1648. height:69px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(51, 51, 51, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. }
  1663. #u13061 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:905px;
  1667. top:724px;
  1668. width:150px;
  1669. height:69px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. }
  1675. #u13061 .text {
  1676. position:absolute;
  1677. align-self:center;
  1678. padding:2px 2px 2px 2px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u13061_text {
  1683. border-width:0px;
  1684. word-wrap:break-word;
  1685. text-transform:none;
  1686. }
  1687. #u13062_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:150px;
  1693. height:69px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 1);
  1696. box-sizing:border-box;
  1697. border-width:1px;
  1698. border-style:solid;
  1699. border-color:rgba(51, 51, 51, 1);
  1700. border-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. }
  1708. #u13062 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:905px;
  1712. top:1008px;
  1713. width:150px;
  1714. height:69px;
  1715. display:flex;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. }
  1720. #u13062 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:2px 2px 2px 2px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u13062_text {
  1728. border-width:0px;
  1729. word-wrap:break-word;
  1730. text-transform:none;
  1731. }
  1732. #u13063_img {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:100px;
  1738. height:60px;
  1739. }
  1740. #u13063 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:930px;
  1744. top:918px;
  1745. width:100px;
  1746. height:60px;
  1747. display:flex;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. }
  1752. #u13063 .text {
  1753. position:absolute;
  1754. align-self:center;
  1755. padding:2px 2px 2px 2px;
  1756. box-sizing:border-box;
  1757. width:100%;
  1758. }
  1759. #u13063_text {
  1760. border-width:0px;
  1761. word-wrap:break-word;
  1762. text-transform:none;
  1763. }
  1764. #u13064_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:150px;
  1770. height:69px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 1);
  1773. box-sizing:border-box;
  1774. border-width:1px;
  1775. border-style:solid;
  1776. border-color:rgba(51, 51, 51, 1);
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. }
  1785. #u13064 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:905px;
  1789. top:821px;
  1790. width:150px;
  1791. height:69px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. }
  1797. #u13064 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 2px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u13064_text {
  1805. border-width:0px;
  1806. word-wrap:break-word;
  1807. text-transform:none;
  1808. }
  1809. #u13065_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:150px;
  1815. height:69px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 255, 1);
  1818. box-sizing:border-box;
  1819. border-width:1px;
  1820. border-style:solid;
  1821. border-color:rgba(51, 51, 51, 1);
  1822. border-radius:0px;
  1823. -moz-box-shadow:none;
  1824. -webkit-box-shadow:none;
  1825. box-shadow:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. }
  1830. #u13065 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:1316px;
  1834. top:751px;
  1835. width:150px;
  1836. height:69px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. }
  1842. #u13065 .text {
  1843. position:absolute;
  1844. align-self:center;
  1845. padding:2px 2px 2px 2px;
  1846. box-sizing:border-box;
  1847. width:100%;
  1848. }
  1849. #u13065_text {
  1850. border-width:0px;
  1851. word-wrap:break-word;
  1852. text-transform:none;
  1853. }
  1854. #u13066_div {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:91px;
  1860. height:25px;
  1861. background:inherit;
  1862. background-color:rgba(255, 255, 255, 0);
  1863. border:none;
  1864. border-radius:0px;
  1865. -moz-box-shadow:none;
  1866. -webkit-box-shadow:none;
  1867. box-shadow:none;
  1868. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1869. font-weight:500;
  1870. font-style:normal;
  1871. font-size:18px;
  1872. }
  1873. #u13066 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:1341px;
  1877. top:140px;
  1878. width:91px;
  1879. height:25px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1882. font-weight:500;
  1883. font-style:normal;
  1884. font-size:18px;
  1885. }
  1886. #u13066 .text {
  1887. position:absolute;
  1888. align-self:flex-start;
  1889. padding:0px 0px 0px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u13066_text {
  1894. border-width:0px;
  1895. white-space:nowrap;
  1896. text-transform:none;
  1897. }
  1898. #u13067_div {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:150px;
  1904. height:69px;
  1905. background:inherit;
  1906. background-color:rgba(255, 255, 255, 1);
  1907. box-sizing:border-box;
  1908. border-width:1px;
  1909. border-style:solid;
  1910. border-color:rgba(51, 51, 51, 1);
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. }
  1919. #u13067 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:1316px;
  1923. top:840px;
  1924. width:150px;
  1925. height:69px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. }
  1931. #u13067 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u13067_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u13068_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:761px;
  1949. height:1497px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 1);
  1952. box-sizing:border-box;
  1953. border-width:1px;
  1954. border-style:solid;
  1955. border-color:rgba(170, 170, 170, 1);
  1956. border-radius:0px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. }
  1964. #u13068 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:1511px;
  1968. top:120px;
  1969. width:761px;
  1970. height:1497px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. }
  1976. #u13068 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 2px 2px 2px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u13068_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. visibility:hidden;
  1988. }
  1989. #u13069_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:118px;
  1995. height:25px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2004. font-weight:500;
  2005. font-style:normal;
  2006. font-size:18px;
  2007. }
  2008. #u13069 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:1855px;
  2012. top:140px;
  2013. width:118px;
  2014. height:25px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2017. font-weight:500;
  2018. font-style:normal;
  2019. font-size:18px;
  2020. }
  2021. #u13069 .text {
  2022. position:absolute;
  2023. align-self:flex-start;
  2024. padding:0px 0px 0px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u13069_text {
  2029. border-width:0px;
  2030. white-space:nowrap;
  2031. text-transform:none;
  2032. }
  2033. #u13070_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:150px;
  2039. height:69px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 1);
  2042. box-sizing:border-box;
  2043. border-width:1px;
  2044. border-style:solid;
  2045. border-color:rgba(51, 51, 51, 1);
  2046. border-radius:0px;
  2047. -moz-box-shadow:none;
  2048. -webkit-box-shadow:none;
  2049. box-shadow:none;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. }
  2054. #u13070 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:1551px;
  2058. top:751px;
  2059. width:150px;
  2060. height:69px;
  2061. display:flex;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. }
  2066. #u13070 .text {
  2067. position:absolute;
  2068. align-self:center;
  2069. padding:2px 2px 2px 2px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u13070_text {
  2074. border-width:0px;
  2075. word-wrap:break-word;
  2076. text-transform:none;
  2077. }
  2078. #u13071_div {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:150px;
  2084. height:69px;
  2085. background:inherit;
  2086. background-color:rgba(255, 255, 255, 1);
  2087. box-sizing:border-box;
  2088. border-width:1px;
  2089. border-style:solid;
  2090. border-color:rgba(51, 51, 51, 1);
  2091. border-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. }
  2099. #u13071 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:1551px;
  2103. top:840px;
  2104. width:150px;
  2105. height:69px;
  2106. display:flex;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. }
  2111. #u13071 .text {
  2112. position:absolute;
  2113. align-self:center;
  2114. padding:2px 2px 2px 2px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u13071_text {
  2119. border-width:0px;
  2120. word-wrap:break-word;
  2121. text-transform:none;
  2122. }
  2123. #u13072_img {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:100px;
  2129. height:60px;
  2130. }
  2131. #u13072 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:1748px;
  2135. top:845px;
  2136. width:100px;
  2137. height:60px;
  2138. display:flex;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. }
  2143. #u13072 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u13072_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. }
  2155. #u13073_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:150px;
  2161. height:69px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 1);
  2164. box-sizing:border-box;
  2165. border-width:1px;
  2166. border-style:solid;
  2167. border-color:rgba(51, 51, 51, 1);
  2168. border-radius:0px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. }
  2176. #u13073 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:1723px;
  2180. top:936px;
  2181. width:150px;
  2182. height:69px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. }
  2188. #u13073 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 2px 2px 2px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u13073_text {
  2196. border-width:0px;
  2197. word-wrap:break-word;
  2198. text-transform:none;
  2199. }
  2200. #u13074_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:150px;
  2206. height:69px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 1);
  2209. box-sizing:border-box;
  2210. border-width:1px;
  2211. border-style:solid;
  2212. border-color:rgba(51, 51, 51, 1);
  2213. border-radius:0px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. }
  2221. #u13074 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:1723px;
  2225. top:1026px;
  2226. width:150px;
  2227. height:69px;
  2228. display:flex;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. }
  2233. #u13074 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u13074_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. }
  2245. #u13075_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:150px;
  2251. height:69px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 1);
  2254. box-sizing:border-box;
  2255. border-width:1px;
  2256. border-style:solid;
  2257. border-color:rgba(51, 51, 51, 1);
  2258. border-radius:0px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. }
  2266. #u13075 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:1316px;
  2270. top:1026px;
  2271. width:150px;
  2272. height:69px;
  2273. display:flex;
  2274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. }
  2278. #u13075 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 2px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u13075_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }
  2290. #u13076_div {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:150px;
  2296. height:69px;
  2297. background:inherit;
  2298. background-color:rgba(255, 255, 255, 1);
  2299. box-sizing:border-box;
  2300. border-width:1px;
  2301. border-style:solid;
  2302. border-color:rgba(51, 51, 51, 1);
  2303. border-radius:0px;
  2304. -moz-box-shadow:none;
  2305. -webkit-box-shadow:none;
  2306. box-shadow:none;
  2307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2308. font-weight:400;
  2309. font-style:normal;
  2310. }
  2311. #u13076 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:1316px;
  2315. top:1115px;
  2316. width:150px;
  2317. height:69px;
  2318. display:flex;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. }
  2323. #u13076 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 2px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u13076_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. }
  2335. #u13077_div {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:150px;
  2341. height:69px;
  2342. background:inherit;
  2343. background-color:rgba(255, 255, 255, 1);
  2344. box-sizing:border-box;
  2345. border-width:1px;
  2346. border-style:solid;
  2347. border-color:rgba(51, 51, 51, 1);
  2348. border-radius:0px;
  2349. -moz-box-shadow:none;
  2350. -webkit-box-shadow:none;
  2351. box-shadow:none;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. }
  2356. #u13077 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:1316px;
  2360. top:1204px;
  2361. width:150px;
  2362. height:69px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. }
  2368. #u13077 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u13077_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u13078_div {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:150px;
  2386. height:69px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 1);
  2389. box-sizing:border-box;
  2390. border-width:1px;
  2391. border-style:solid;
  2392. border-color:rgba(51, 51, 51, 1);
  2393. border-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. }
  2401. #u13078 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:1908px;
  2405. top:1103px;
  2406. width:150px;
  2407. height:69px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. }
  2413. #u13078 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 2px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u13078_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. }
  2425. #u13079_div {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:150px;
  2431. height:69px;
  2432. background:inherit;
  2433. background-color:rgba(255, 255, 255, 1);
  2434. box-sizing:border-box;
  2435. border-width:1px;
  2436. border-style:solid;
  2437. border-color:rgba(51, 51, 51, 1);
  2438. border-radius:0px;
  2439. -moz-box-shadow:none;
  2440. -webkit-box-shadow:none;
  2441. box-shadow:none;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. }
  2446. #u13079 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:1908px;
  2450. top:1204px;
  2451. width:150px;
  2452. height:69px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. }
  2458. #u13079 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 2px 2px 2px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u13079_text {
  2466. border-width:0px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. }
  2470. #u13080_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:100px;
  2476. height:60px;
  2477. }
  2478. #u13080 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:2108px;
  2482. top:1209px;
  2483. width:100px;
  2484. height:60px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. }
  2490. #u13080 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u13080_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. }
  2502. #u13081_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:150px;
  2508. height:69px;
  2509. background:inherit;
  2510. background-color:rgba(255, 255, 255, 1);
  2511. box-sizing:border-box;
  2512. border-width:1px;
  2513. border-style:solid;
  2514. border-color:rgba(51, 51, 51, 1);
  2515. border-radius:0px;
  2516. -moz-box-shadow:none;
  2517. -webkit-box-shadow:none;
  2518. box-shadow:none;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. }
  2523. #u13081 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:2083px;
  2527. top:1319px;
  2528. width:150px;
  2529. height:69px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. }
  2535. #u13081 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u13081_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. }
  2547. #u13082_div {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:150px;
  2553. height:69px;
  2554. background:inherit;
  2555. background-color:rgba(255, 255, 255, 1);
  2556. box-sizing:border-box;
  2557. border-width:1px;
  2558. border-style:solid;
  2559. border-color:rgba(51, 51, 51, 1);
  2560. border-radius:0px;
  2561. -moz-box-shadow:none;
  2562. -webkit-box-shadow:none;
  2563. box-shadow:none;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. }
  2568. #u13082 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:2083px;
  2572. top:1417px;
  2573. width:150px;
  2574. height:69px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. }
  2580. #u13082 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u13082_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u13083_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:150px;
  2598. height:69px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 1);
  2601. box-sizing:border-box;
  2602. border-width:1px;
  2603. border-style:solid;
  2604. border-color:rgba(51, 51, 51, 1);
  2605. border-radius:0px;
  2606. -moz-box-shadow:none;
  2607. -webkit-box-shadow:none;
  2608. box-shadow:none;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. }
  2613. #u13083 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:1316px;
  2617. top:1417px;
  2618. width:150px;
  2619. height:69px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. }
  2625. #u13083 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u13083_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. }
  2637. #u13084_div {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:100px;
  2643. height:60px;
  2644. background:inherit;
  2645. background-color:rgba(255, 255, 255, 1);
  2646. box-sizing:border-box;
  2647. border-width:1px;
  2648. border-style:solid;
  2649. border-color:rgba(51, 51, 51, 1);
  2650. border-radius:50px;
  2651. -moz-box-shadow:none;
  2652. -webkit-box-shadow:none;
  2653. box-shadow:none;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. }
  2658. #u13084 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:1341px;
  2662. top:1518px;
  2663. width:100px;
  2664. height:60px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. }
  2670. #u13084 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 2px 2px 2px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u13084_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. }
  2682. #u13085_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:150px;
  2688. height:69px;
  2689. background:inherit;
  2690. background-color:rgba(255, 255, 255, 1);
  2691. box-sizing:border-box;
  2692. border-width:1px;
  2693. border-style:solid;
  2694. border-color:rgba(51, 51, 51, 1);
  2695. border-radius:0px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. }
  2703. #u13085 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:659px;
  2707. top:724px;
  2708. width:150px;
  2709. height:69px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. }
  2715. #u13085 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 2px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u13085_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. }
  2727. #u13086_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:150px;
  2733. height:69px;
  2734. background:inherit;
  2735. background-color:rgba(255, 255, 255, 1);
  2736. box-sizing:border-box;
  2737. border-width:1px;
  2738. border-style:solid;
  2739. border-color:rgba(51, 51, 51, 1);
  2740. border-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2745. font-weight:400;
  2746. font-style:normal;
  2747. }
  2748. #u13086 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:659px;
  2752. top:1008px;
  2753. width:150px;
  2754. height:69px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. }
  2760. #u13086 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 2px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u13086_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. }
  2772. #u13087_div {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:150px;
  2778. height:69px;
  2779. background:inherit;
  2780. background-color:rgba(255, 255, 255, 1);
  2781. box-sizing:border-box;
  2782. border-width:1px;
  2783. border-style:solid;
  2784. border-color:rgba(51, 51, 51, 1);
  2785. border-radius:0px;
  2786. -moz-box-shadow:none;
  2787. -webkit-box-shadow:none;
  2788. box-shadow:none;
  2789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2790. font-weight:400;
  2791. font-style:normal;
  2792. }
  2793. #u13087 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:905px;
  2797. top:189px;
  2798. width:150px;
  2799. height:69px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. }
  2805. #u13087 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u13087_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. }
  2817. #u13088 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:980px;
  2821. top:258px;
  2822. width:0px;
  2823. height:0px;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:12px;
  2828. color:#333333;
  2829. }
  2830. #u13088_seg0 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:-5px;
  2834. top:0px;
  2835. width:10px;
  2836. height:24px;
  2837. }
  2838. #u13088_seg1 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:-17px;
  2842. top:0px;
  2843. width:34px;
  2844. height:34px;
  2845. }
  2846. #u13088_text {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:-50px;
  2850. top:2px;
  2851. width:100px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u13089 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:980px;
  2860. top:346px;
  2861. width:0px;
  2862. height:0px;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. color:#333333;
  2868. }
  2869. #u13089_seg0 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:-5px;
  2873. top:0px;
  2874. width:10px;
  2875. height:25px;
  2876. }
  2877. #u13089_seg1 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:-17px;
  2881. top:1px;
  2882. width:34px;
  2883. height:34px;
  2884. }
  2885. #u13089_text {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:-50px;
  2889. top:2px;
  2890. width:100px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u13090 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:980px;
  2899. top:435px;
  2900. width:0px;
  2901. height:0px;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:12px;
  2906. color:#333333;
  2907. }
  2908. #u13090_seg0 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:-5px;
  2912. top:0px;
  2913. width:10px;
  2914. height:25px;
  2915. }
  2916. #u13090_seg1 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:-17px;
  2920. top:1px;
  2921. width:34px;
  2922. height:34px;
  2923. }
  2924. #u13090_text {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:-50px;
  2928. top:2px;
  2929. width:100px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u13091 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:980px;
  2938. top:524px;
  2939. width:0px;
  2940. height:0px;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:12px;
  2945. color:#333333;
  2946. }
  2947. #u13091_seg0 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:-5px;
  2951. top:0px;
  2952. width:10px;
  2953. height:25px;
  2954. }
  2955. #u13091_seg1 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:-17px;
  2959. top:1px;
  2960. width:34px;
  2961. height:34px;
  2962. }
  2963. #u13091_text {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:-50px;
  2967. top:2px;
  2968. width:100px;
  2969. word-wrap:break-word;
  2970. text-transform:none;
  2971. visibility:hidden;
  2972. }
  2973. #u13092 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:980px;
  2977. top:613px;
  2978. width:0px;
  2979. height:0px;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. color:#333333;
  2985. }
  2986. #u13092_seg0 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:-5px;
  2990. top:0px;
  2991. width:10px;
  2992. height:26px;
  2993. }
  2994. #u13092_seg1 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:-17px;
  2998. top:2px;
  2999. width:34px;
  3000. height:34px;
  3001. }
  3002. #u13092_text {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:-50px;
  3006. top:2px;
  3007. width:100px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. visibility:hidden;
  3011. }
  3012. #u13093 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:1030px;
  3016. top:664px;
  3017. width:0px;
  3018. height:0px;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. color:#333333;
  3024. }
  3025. #u13093_seg0 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:-5px;
  3030. width:38px;
  3031. height:10px;
  3032. }
  3033. #u13093_seg1 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:14px;
  3037. top:-17px;
  3038. width:34px;
  3039. height:34px;
  3040. }
  3041. #u13093_text {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:-34px;
  3045. top:-8px;
  3046. width:100px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. }
  3050. #u13094 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:1138px;
  3054. top:698px;
  3055. width:0px;
  3056. height:0px;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:12px;
  3061. color:#333333;
  3062. }
  3063. #u13094_seg0 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:-5px;
  3067. top:0px;
  3068. width:10px;
  3069. height:66px;
  3070. }
  3071. #u13094_seg1 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:-83px;
  3075. top:56px;
  3076. width:88px;
  3077. height:10px;
  3078. }
  3079. #u13094_seg2 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:-98px;
  3083. top:44px;
  3084. width:34px;
  3085. height:34px;
  3086. }
  3087. #u13094_text {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:-61px;
  3091. top:53px;
  3092. width:100px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u13095 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:980px;
  3101. top:694px;
  3102. width:0px;
  3103. height:0px;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:12px;
  3108. color:#333333;
  3109. }
  3110. #u13095_seg0 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:-5px;
  3114. top:0px;
  3115. width:10px;
  3116. height:35px;
  3117. }
  3118. #u13095_seg1 {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:-17px;
  3122. top:11px;
  3123. width:34px;
  3124. height:34px;
  3125. }
  3126. #u13095_text {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:-50px;
  3130. top:6px;
  3131. width:100px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. }
  3135. #u13096 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:980px;
  3139. top:793px;
  3140. width:0px;
  3141. height:0px;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:12px;
  3146. color:#333333;
  3147. }
  3148. #u13096_seg0 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:-5px;
  3152. top:0px;
  3153. width:10px;
  3154. height:33px;
  3155. }
  3156. #u13096_seg1 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:-17px;
  3160. top:9px;
  3161. width:34px;
  3162. height:34px;
  3163. }
  3164. #u13096_text {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:-50px;
  3168. top:6px;
  3169. width:100px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u13097 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:1030px;
  3178. top:948px;
  3179. width:0px;
  3180. height:0px;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. color:#333333;
  3186. }
  3187. #u13097_seg0 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:-5px;
  3192. width:45px;
  3193. height:10px;
  3194. }
  3195. #u13097_seg1 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:35px;
  3199. top:-97px;
  3200. width:10px;
  3201. height:102px;
  3202. }
  3203. #u13097_seg2 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:25px;
  3207. top:-97px;
  3208. width:20px;
  3209. height:10px;
  3210. }
  3211. #u13097_seg3 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:10px;
  3215. top:-109px;
  3216. width:34px;
  3217. height:34px;
  3218. }
  3219. #u13097_text {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:-10px;
  3223. top:-42px;
  3224. width:100px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. }
  3228. #u13098 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:980px;
  3232. top:978px;
  3233. width:0px;
  3234. height:0px;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:12px;
  3239. color:#333333;
  3240. }
  3241. #u13098_seg0 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:-5px;
  3245. top:0px;
  3246. width:10px;
  3247. height:35px;
  3248. }
  3249. #u13098_seg1 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:-17px;
  3253. top:11px;
  3254. width:34px;
  3255. height:34px;
  3256. }
  3257. #u13098_text {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:-50px;
  3261. top:6px;
  3262. width:100px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. }
  3266. #u13099 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:980px;
  3270. top:890px;
  3271. width:0px;
  3272. height:0px;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. color:#333333;
  3278. }
  3279. #u13099_seg0 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:-5px;
  3283. top:0px;
  3284. width:10px;
  3285. height:33px;
  3286. }
  3287. #u13099_seg1 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:-17px;
  3291. top:9px;
  3292. width:34px;
  3293. height:34px;
  3294. }
  3295. #u13099_text {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:-50px;
  3299. top:6px;
  3300. width:100px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u13100 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:1316px;
  3309. top:786px;
  3310. width:0px;
  3311. height:0px;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:12px;
  3316. color:#333333;
  3317. }
  3318. #u13100_seg0 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:-136px;
  3322. top:-5px;
  3323. width:136px;
  3324. height:10px;
  3325. }
  3326. #u13100_seg1 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:-136px;
  3330. top:-5px;
  3331. width:10px;
  3332. height:267px;
  3333. }
  3334. #u13100_seg2 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:-261px;
  3338. top:252px;
  3339. width:135px;
  3340. height:10px;
  3341. }
  3342. #u13100_seg3 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:-276px;
  3346. top:240px;
  3347. width:34px;
  3348. height:34px;
  3349. }
  3350. #u13100_text {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:-181px;
  3354. top:120px;
  3355. width:100px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u13101 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:1391px;
  3364. top:820px;
  3365. width:0px;
  3366. height:0px;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:12px;
  3371. color:#333333;
  3372. }
  3373. #u13101_seg0 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:-5px;
  3377. top:0px;
  3378. width:10px;
  3379. height:25px;
  3380. }
  3381. #u13101_seg1 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:-17px;
  3385. top:1px;
  3386. width:34px;
  3387. height:34px;
  3388. }
  3389. #u13101_text {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:-50px;
  3393. top:2px;
  3394. width:100px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u13102 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:1626px;
  3403. top:820px;
  3404. width:0px;
  3405. height:0px;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:12px;
  3410. color:#333333;
  3411. }
  3412. #u13102_seg0 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:-5px;
  3416. top:0px;
  3417. width:10px;
  3418. height:25px;
  3419. }
  3420. #u13102_seg1 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:-17px;
  3424. top:1px;
  3425. width:34px;
  3426. height:34px;
  3427. }
  3428. #u13102_text {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:-50px;
  3432. top:2px;
  3433. width:100px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u13103 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:1466px;
  3442. top:875px;
  3443. width:0px;
  3444. height:0px;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. color:#333333;
  3450. }
  3451. #u13103_seg0 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:-5px;
  3456. width:90px;
  3457. height:10px;
  3458. }
  3459. #u13103_seg1 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:66px;
  3463. top:-17px;
  3464. width:34px;
  3465. height:34px;
  3466. }
  3467. #u13103_text {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:-8px;
  3471. top:-8px;
  3472. width:100px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u13104 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1701px;
  3481. top:875px;
  3482. width:0px;
  3483. height:0px;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#333333;
  3489. }
  3490. #u13104_seg0 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:-5px;
  3495. width:52px;
  3496. height:10px;
  3497. }
  3498. #u13104_seg1 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:28px;
  3502. top:-17px;
  3503. width:34px;
  3504. height:34px;
  3505. }
  3506. #u13104_text {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:-26px;
  3510. top:-8px;
  3511. width:100px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u13105 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:1798px;
  3520. top:905px;
  3521. width:0px;
  3522. height:0px;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:12px;
  3527. color:#333333;
  3528. }
  3529. #u13105_seg0 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:-5px;
  3533. top:0px;
  3534. width:10px;
  3535. height:36px;
  3536. }
  3537. #u13105_seg1 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:-17px;
  3541. top:12px;
  3542. width:34px;
  3543. height:34px;
  3544. }
  3545. #u13105_text {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:-50px;
  3549. top:7px;
  3550. width:100px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. }
  3554. #u13106 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:1798px;
  3558. top:1005px;
  3559. width:0px;
  3560. height:0px;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. color:#333333;
  3566. }
  3567. #u13106_seg0 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:-5px;
  3571. top:0px;
  3572. width:10px;
  3573. height:26px;
  3574. }
  3575. #u13106_seg1 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:-17px;
  3579. top:2px;
  3580. width:34px;
  3581. height:34px;
  3582. }
  3583. #u13106_text {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:-50px;
  3587. top:2px;
  3588. width:100px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u13107 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:1723px;
  3597. top:1061px;
  3598. width:0px;
  3599. height:0px;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:12px;
  3604. color:#333333;
  3605. }
  3606. #u13107_seg0 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:-257px;
  3610. top:-5px;
  3611. width:262px;
  3612. height:10px;
  3613. }
  3614. #u13107_seg1 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:-272px;
  3618. top:-17px;
  3619. width:34px;
  3620. height:34px;
  3621. }
  3622. #u13107_text {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:-178px;
  3626. top:-8px;
  3627. width:100px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u13108 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:1391px;
  3636. top:1095px;
  3637. width:0px;
  3638. height:0px;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#333333;
  3644. }
  3645. #u13108_seg0 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:-5px;
  3649. top:0px;
  3650. width:10px;
  3651. height:25px;
  3652. }
  3653. #u13108_seg1 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:-17px;
  3657. top:1px;
  3658. width:34px;
  3659. height:34px;
  3660. }
  3661. #u13108_text {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:-50px;
  3665. top:2px;
  3666. width:100px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u13109 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:1466px;
  3675. top:1239px;
  3676. width:0px;
  3677. height:0px;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#333333;
  3683. }
  3684. #u13109_seg0 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:-5px;
  3689. width:447px;
  3690. height:10px;
  3691. }
  3692. #u13109_seg1 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:423px;
  3696. top:-17px;
  3697. width:34px;
  3698. height:34px;
  3699. }
  3700. #u13109_text {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:171px;
  3704. top:-8px;
  3705. width:100px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u13110 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:1983px;
  3714. top:1172px;
  3715. width:0px;
  3716. height:0px;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:12px;
  3721. color:#333333;
  3722. }
  3723. #u13110_seg0 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:-5px;
  3727. top:0px;
  3728. width:10px;
  3729. height:37px;
  3730. }
  3731. #u13110_seg1 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:-17px;
  3735. top:13px;
  3736. width:34px;
  3737. height:34px;
  3738. }
  3739. #u13110_text {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:-50px;
  3743. top:8px;
  3744. width:100px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u13111 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:2058px;
  3753. top:1239px;
  3754. width:0px;
  3755. height:0px;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. color:#333333;
  3761. }
  3762. #u13111_seg0 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:-5px;
  3767. width:55px;
  3768. height:10px;
  3769. }
  3770. #u13111_seg1 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:31px;
  3774. top:-17px;
  3775. width:34px;
  3776. height:34px;
  3777. }
  3778. #u13111_text {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:-25px;
  3782. top:-8px;
  3783. width:100px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u13112 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:2158px;
  3792. top:1269px;
  3793. width:0px;
  3794. height:0px;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:12px;
  3799. color:#333333;
  3800. }
  3801. #u13112_seg0 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:-5px;
  3805. top:0px;
  3806. width:10px;
  3807. height:55px;
  3808. }
  3809. #u13112_seg1 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:-17px;
  3813. top:31px;
  3814. width:34px;
  3815. height:34px;
  3816. }
  3817. #u13112_text {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:-50px;
  3821. top:16px;
  3822. width:100px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. }
  3826. #u13113 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:2158px;
  3830. top:1388px;
  3831. width:0px;
  3832. height:0px;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:12px;
  3837. color:#333333;
  3838. }
  3839. #u13113_seg0 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:-5px;
  3843. top:0px;
  3844. width:10px;
  3845. height:34px;
  3846. }
  3847. #u13113_seg1 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:-17px;
  3851. top:10px;
  3852. width:34px;
  3853. height:34px;
  3854. }
  3855. #u13113_text {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:-50px;
  3859. top:6px;
  3860. width:100px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u13114 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:2083px;
  3869. top:1452px;
  3870. width:0px;
  3871. height:0px;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#333333;
  3877. }
  3878. #u13114_seg0 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:-617px;
  3882. top:-5px;
  3883. width:622px;
  3884. height:10px;
  3885. }
  3886. #u13114_seg1 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:-632px;
  3890. top:-17px;
  3891. width:34px;
  3892. height:34px;
  3893. }
  3894. #u13114_text {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:-358px;
  3898. top:-8px;
  3899. width:100px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u13115 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:1391px;
  3908. top:1486px;
  3909. width:0px;
  3910. height:0px;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:#333333;
  3916. }
  3917. #u13115_seg0 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:-5px;
  3921. top:0px;
  3922. width:10px;
  3923. height:37px;
  3924. }
  3925. #u13115_seg1 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:-17px;
  3929. top:13px;
  3930. width:34px;
  3931. height:34px;
  3932. }
  3933. #u13115_text {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:-50px;
  3937. top:8px;
  3938. width:100px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u13116 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:1391px;
  3947. top:1184px;
  3948. width:0px;
  3949. height:0px;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:12px;
  3954. color:#333333;
  3955. }
  3956. #u13116_seg0 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:-5px;
  3960. top:0px;
  3961. width:10px;
  3962. height:25px;
  3963. }
  3964. #u13116_seg1 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:-17px;
  3968. top:1px;
  3969. width:34px;
  3970. height:34px;
  3971. }
  3972. #u13116_text {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:-50px;
  3976. top:2px;
  3977. width:100px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. visibility:hidden;
  3981. }
  3982. #u13117 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:905px;
  3986. top:759px;
  3987. width:0px;
  3988. height:0px;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. color:#333333;
  3994. }
  3995. #u13117_seg0 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:-96px;
  3999. top:-5px;
  4000. width:101px;
  4001. height:10px;
  4002. }
  4003. #u13117_seg1 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:-111px;
  4007. top:-17px;
  4008. width:34px;
  4009. height:34px;
  4010. }
  4011. #u13117_text {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:-98px;
  4015. top:-8px;
  4016. width:100px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u13118 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:905px;
  4025. top:1043px;
  4026. width:0px;
  4027. height:0px;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. font-size:12px;
  4032. color:#333333;
  4033. }
  4034. #u13118_seg0 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:-96px;
  4038. top:-5px;
  4039. width:101px;
  4040. height:10px;
  4041. }
  4042. #u13118_seg1 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:-111px;
  4046. top:-17px;
  4047. width:34px;
  4048. height:34px;
  4049. }
  4050. #u13118_text {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:-98px;
  4054. top:-8px;
  4055. width:100px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }