styles.css 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-47px;
  6. width:1807px;
  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. #u2288 {
  20. border-width:0px;
  21. position:absolute;
  22. left:47px;
  23. top:44px;
  24. width:1807px;
  25. height:1442px;
  26. }
  27. #u2289_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:100px;
  33. height:40px;
  34. }
  35. #u2289 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:100px;
  41. height:40px;
  42. display:flex;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#FFFFFF;
  48. text-align:left;
  49. line-height:30px;
  50. }
  51. #u2289 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:5px 10px 5px 10px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u2289_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. }
  63. #u2290_img {
  64. border-width:0px;
  65. position:absolute;
  66. left:0px;
  67. top:0px;
  68. width:121px;
  69. height:40px;
  70. }
  71. #u2290 {
  72. border-width:0px;
  73. position:absolute;
  74. left:100px;
  75. top:0px;
  76. width:121px;
  77. height:40px;
  78. display:flex;
  79. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  80. font-weight:400;
  81. font-style:normal;
  82. font-size:14px;
  83. color:#FFFFFF;
  84. text-align:left;
  85. line-height:30px;
  86. }
  87. #u2290 .text {
  88. position:absolute;
  89. align-self:center;
  90. padding:5px 10px 5px 10px;
  91. box-sizing:border-box;
  92. width:100%;
  93. }
  94. #u2290_text {
  95. border-width:0px;
  96. word-wrap:break-word;
  97. text-transform:none;
  98. }
  99. #u2291_img {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:149px;
  105. height:40px;
  106. }
  107. #u2291 {
  108. border-width:0px;
  109. position:absolute;
  110. left:221px;
  111. top:0px;
  112. width:149px;
  113. height:40px;
  114. display:flex;
  115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  116. font-weight:400;
  117. font-style:normal;
  118. font-size:14px;
  119. color:#FFFFFF;
  120. text-align:left;
  121. line-height:30px;
  122. }
  123. #u2291 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:5px 10px 5px 10px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u2291_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u2292_img {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:245px;
  141. height:40px;
  142. }
  143. #u2292 {
  144. border-width:0px;
  145. position:absolute;
  146. left:370px;
  147. top:0px;
  148. width:245px;
  149. height:40px;
  150. display:flex;
  151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  152. font-weight:400;
  153. font-style:normal;
  154. font-size:14px;
  155. color:#FFFFFF;
  156. text-align:left;
  157. line-height:30px;
  158. }
  159. #u2292 .text {
  160. position:absolute;
  161. align-self:center;
  162. padding:5px 10px 5px 10px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u2292_text {
  167. border-width:0px;
  168. word-wrap:break-word;
  169. text-transform:none;
  170. }
  171. #u2293_img {
  172. border-width:0px;
  173. position:absolute;
  174. left:0px;
  175. top:0px;
  176. width:99px;
  177. height:40px;
  178. }
  179. #u2293 {
  180. border-width:0px;
  181. position:absolute;
  182. left:615px;
  183. top:0px;
  184. width:99px;
  185. height:40px;
  186. display:flex;
  187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  188. font-weight:400;
  189. font-style:normal;
  190. font-size:14px;
  191. color:#FFFFFF;
  192. text-align:left;
  193. line-height:30px;
  194. }
  195. #u2293 .text {
  196. position:absolute;
  197. align-self:center;
  198. padding:5px 10px 5px 10px;
  199. box-sizing:border-box;
  200. width:100%;
  201. }
  202. #u2293_text {
  203. border-width:0px;
  204. word-wrap:break-word;
  205. text-transform:none;
  206. }
  207. #u2294_img {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:601px;
  213. height:40px;
  214. }
  215. #u2294 {
  216. border-width:0px;
  217. position:absolute;
  218. left:714px;
  219. top:0px;
  220. width:601px;
  221. height:40px;
  222. display:flex;
  223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  224. font-weight:400;
  225. font-style:normal;
  226. font-size:14px;
  227. color:#FFFFFF;
  228. text-align:left;
  229. line-height:30px;
  230. }
  231. #u2294 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 10px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u2294_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u2295_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:492px;
  249. height:40px;
  250. }
  251. #u2295 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1315px;
  255. top:0px;
  256. width:492px;
  257. height:40px;
  258. display:flex;
  259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  260. font-weight:400;
  261. font-style:normal;
  262. font-size:14px;
  263. color:#FFFFFF;
  264. text-align:left;
  265. line-height:30px;
  266. }
  267. #u2295 .text {
  268. position:absolute;
  269. align-self:center;
  270. padding:5px 10px 5px 10px;
  271. box-sizing:border-box;
  272. width:100%;
  273. }
  274. #u2295_text {
  275. border-width:0px;
  276. word-wrap:break-word;
  277. text-transform:none;
  278. }
  279. #u2296_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:100px;
  285. height:40px;
  286. }
  287. #u2296 {
  288. border-width:0px;
  289. position:absolute;
  290. left:0px;
  291. top:40px;
  292. width:100px;
  293. height:40px;
  294. display:flex;
  295. font-size:14px;
  296. text-align:left;
  297. line-height:30px;
  298. }
  299. #u2296 .text {
  300. position:absolute;
  301. align-self:center;
  302. padding:5px 10px 5px 10px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u2296_text {
  307. border-width:0px;
  308. word-wrap:break-word;
  309. text-transform:none;
  310. }
  311. #u2297_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:121px;
  317. height:40px;
  318. }
  319. #u2297 {
  320. border-width:0px;
  321. position:absolute;
  322. left:100px;
  323. top:40px;
  324. width:121px;
  325. height:40px;
  326. display:flex;
  327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  328. font-weight:400;
  329. font-style:normal;
  330. font-size:14px;
  331. text-align:left;
  332. line-height:30px;
  333. }
  334. #u2297 .text {
  335. position:absolute;
  336. align-self:center;
  337. padding:5px 10px 5px 10px;
  338. box-sizing:border-box;
  339. width:100%;
  340. }
  341. #u2297_text {
  342. border-width:0px;
  343. word-wrap:break-word;
  344. text-transform:none;
  345. }
  346. #u2298_img {
  347. border-width:0px;
  348. position:absolute;
  349. left:0px;
  350. top:0px;
  351. width:149px;
  352. height:40px;
  353. }
  354. #u2298 {
  355. border-width:0px;
  356. position:absolute;
  357. left:221px;
  358. top:40px;
  359. width:149px;
  360. height:40px;
  361. display:flex;
  362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  363. font-weight:400;
  364. font-style:normal;
  365. font-size:14px;
  366. text-align:left;
  367. line-height:30px;
  368. }
  369. #u2298 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:5px 10px 5px 10px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u2298_text {
  377. border-width:0px;
  378. word-wrap:break-word;
  379. text-transform:none;
  380. }
  381. #u2299_img {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:245px;
  387. height:40px;
  388. }
  389. #u2299 {
  390. border-width:0px;
  391. position:absolute;
  392. left:370px;
  393. top:40px;
  394. width:245px;
  395. height:40px;
  396. display:flex;
  397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  398. font-weight:400;
  399. font-style:normal;
  400. font-size:14px;
  401. text-align:left;
  402. line-height:30px;
  403. }
  404. #u2299 .text {
  405. position:absolute;
  406. align-self:center;
  407. padding:5px 10px 5px 10px;
  408. box-sizing:border-box;
  409. width:100%;
  410. }
  411. #u2299_text {
  412. border-width:0px;
  413. word-wrap:break-word;
  414. text-transform:none;
  415. }
  416. #u2300_img {
  417. border-width:0px;
  418. position:absolute;
  419. left:0px;
  420. top:0px;
  421. width:99px;
  422. height:40px;
  423. }
  424. #u2300 {
  425. border-width:0px;
  426. position:absolute;
  427. left:615px;
  428. top:40px;
  429. width:99px;
  430. height:40px;
  431. display:flex;
  432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  433. font-weight:400;
  434. font-style:normal;
  435. font-size:14px;
  436. text-align:left;
  437. line-height:30px;
  438. }
  439. #u2300 .text {
  440. position:absolute;
  441. align-self:center;
  442. padding:5px 10px 5px 10px;
  443. box-sizing:border-box;
  444. width:100%;
  445. }
  446. #u2300_text {
  447. border-width:0px;
  448. word-wrap:break-word;
  449. text-transform:none;
  450. }
  451. #u2301_img {
  452. border-width:0px;
  453. position:absolute;
  454. left:0px;
  455. top:0px;
  456. width:601px;
  457. height:40px;
  458. }
  459. #u2301 {
  460. border-width:0px;
  461. position:absolute;
  462. left:714px;
  463. top:40px;
  464. width:601px;
  465. height:40px;
  466. display:flex;
  467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  468. font-weight:400;
  469. font-style:normal;
  470. font-size:14px;
  471. text-align:left;
  472. line-height:30px;
  473. }
  474. #u2301 .text {
  475. position:absolute;
  476. align-self:center;
  477. padding:5px 10px 5px 10px;
  478. box-sizing:border-box;
  479. width:100%;
  480. }
  481. #u2301_text {
  482. border-width:0px;
  483. word-wrap:break-word;
  484. text-transform:none;
  485. }
  486. #u2302_img {
  487. border-width:0px;
  488. position:absolute;
  489. left:0px;
  490. top:0px;
  491. width:492px;
  492. height:40px;
  493. }
  494. #u2302 {
  495. border-width:0px;
  496. position:absolute;
  497. left:1315px;
  498. top:40px;
  499. width:492px;
  500. height:40px;
  501. display:flex;
  502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  503. font-weight:400;
  504. font-style:normal;
  505. font-size:14px;
  506. text-align:left;
  507. line-height:30px;
  508. }
  509. #u2302 .text {
  510. position:absolute;
  511. align-self:center;
  512. padding:5px 10px 5px 10px;
  513. box-sizing:border-box;
  514. width:100%;
  515. }
  516. #u2302_text {
  517. border-width:0px;
  518. word-wrap:break-word;
  519. text-transform:none;
  520. visibility:hidden;
  521. }
  522. #u2303_img {
  523. border-width:0px;
  524. position:absolute;
  525. left:0px;
  526. top:0px;
  527. width:100px;
  528. height:70px;
  529. }
  530. #u2303 {
  531. border-width:0px;
  532. position:absolute;
  533. left:0px;
  534. top:80px;
  535. width:100px;
  536. height:70px;
  537. display:flex;
  538. font-size:14px;
  539. text-align:left;
  540. line-height:30px;
  541. }
  542. #u2303 .text {
  543. position:absolute;
  544. align-self:center;
  545. padding:5px 10px 5px 10px;
  546. box-sizing:border-box;
  547. width:100%;
  548. }
  549. #u2303_text {
  550. border-width:0px;
  551. word-wrap:break-word;
  552. text-transform:none;
  553. }
  554. #u2304_img {
  555. border-width:0px;
  556. position:absolute;
  557. left:0px;
  558. top:0px;
  559. width:121px;
  560. height:70px;
  561. }
  562. #u2304 {
  563. border-width:0px;
  564. position:absolute;
  565. left:100px;
  566. top:80px;
  567. width:121px;
  568. height:70px;
  569. display:flex;
  570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  571. font-weight:400;
  572. font-style:normal;
  573. font-size:14px;
  574. text-align:left;
  575. line-height:30px;
  576. }
  577. #u2304 .text {
  578. position:absolute;
  579. align-self:center;
  580. padding:5px 10px 5px 10px;
  581. box-sizing:border-box;
  582. width:100%;
  583. }
  584. #u2304_text {
  585. border-width:0px;
  586. word-wrap:break-word;
  587. text-transform:none;
  588. }
  589. #u2305_img {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:149px;
  595. height:70px;
  596. }
  597. #u2305 {
  598. border-width:0px;
  599. position:absolute;
  600. left:221px;
  601. top:80px;
  602. width:149px;
  603. height:70px;
  604. display:flex;
  605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  606. font-weight:400;
  607. font-style:normal;
  608. font-size:14px;
  609. text-align:left;
  610. line-height:30px;
  611. }
  612. #u2305 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:5px 10px 5px 10px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u2305_text {
  620. border-width:0px;
  621. word-wrap:break-word;
  622. text-transform:none;
  623. }
  624. #u2306_img {
  625. border-width:0px;
  626. position:absolute;
  627. left:0px;
  628. top:0px;
  629. width:245px;
  630. height:70px;
  631. }
  632. #u2306 {
  633. border-width:0px;
  634. position:absolute;
  635. left:370px;
  636. top:80px;
  637. width:245px;
  638. height:70px;
  639. display:flex;
  640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  641. font-weight:400;
  642. font-style:normal;
  643. font-size:14px;
  644. text-align:left;
  645. line-height:30px;
  646. }
  647. #u2306 .text {
  648. position:absolute;
  649. align-self:center;
  650. padding:5px 10px 5px 10px;
  651. box-sizing:border-box;
  652. width:100%;
  653. }
  654. #u2306_text {
  655. border-width:0px;
  656. word-wrap:break-word;
  657. text-transform:none;
  658. }
  659. #u2307_img {
  660. border-width:0px;
  661. position:absolute;
  662. left:0px;
  663. top:0px;
  664. width:99px;
  665. height:70px;
  666. }
  667. #u2307 {
  668. border-width:0px;
  669. position:absolute;
  670. left:615px;
  671. top:80px;
  672. width:99px;
  673. height:70px;
  674. display:flex;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:14px;
  679. text-align:left;
  680. line-height:30px;
  681. }
  682. #u2307 .text {
  683. position:absolute;
  684. align-self:center;
  685. padding:5px 10px 5px 10px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u2307_text {
  690. border-width:0px;
  691. word-wrap:break-word;
  692. text-transform:none;
  693. }
  694. #u2308_img {
  695. border-width:0px;
  696. position:absolute;
  697. left:0px;
  698. top:0px;
  699. width:601px;
  700. height:70px;
  701. }
  702. #u2308 {
  703. border-width:0px;
  704. position:absolute;
  705. left:714px;
  706. top:80px;
  707. width:601px;
  708. height:70px;
  709. display:flex;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:14px;
  714. text-align:left;
  715. line-height:30px;
  716. }
  717. #u2308 .text {
  718. position:absolute;
  719. align-self:center;
  720. padding:5px 10px 5px 10px;
  721. box-sizing:border-box;
  722. width:100%;
  723. }
  724. #u2308_text {
  725. border-width:0px;
  726. word-wrap:break-word;
  727. text-transform:none;
  728. }
  729. #u2309_img {
  730. border-width:0px;
  731. position:absolute;
  732. left:0px;
  733. top:0px;
  734. width:492px;
  735. height:70px;
  736. }
  737. #u2309 {
  738. border-width:0px;
  739. position:absolute;
  740. left:1315px;
  741. top:80px;
  742. width:492px;
  743. height:70px;
  744. display:flex;
  745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  746. font-weight:400;
  747. font-style:normal;
  748. font-size:14px;
  749. text-align:left;
  750. line-height:30px;
  751. }
  752. #u2309 .text {
  753. position:absolute;
  754. align-self:center;
  755. padding:5px 10px 5px 10px;
  756. box-sizing:border-box;
  757. width:100%;
  758. }
  759. #u2309_text {
  760. border-width:0px;
  761. word-wrap:break-word;
  762. text-transform:none;
  763. visibility:hidden;
  764. }
  765. #u2310_img {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:100px;
  771. height:70px;
  772. }
  773. #u2310 {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:150px;
  778. width:100px;
  779. height:70px;
  780. display:flex;
  781. font-size:14px;
  782. text-align:left;
  783. line-height:30px;
  784. }
  785. #u2310 .text {
  786. position:absolute;
  787. align-self:center;
  788. padding:5px 10px 5px 10px;
  789. box-sizing:border-box;
  790. width:100%;
  791. }
  792. #u2310_text {
  793. border-width:0px;
  794. word-wrap:break-word;
  795. text-transform:none;
  796. }
  797. #u2311_img {
  798. border-width:0px;
  799. position:absolute;
  800. left:0px;
  801. top:0px;
  802. width:121px;
  803. height:70px;
  804. }
  805. #u2311 {
  806. border-width:0px;
  807. position:absolute;
  808. left:100px;
  809. top:150px;
  810. width:121px;
  811. height:70px;
  812. display:flex;
  813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  814. font-weight:400;
  815. font-style:normal;
  816. font-size:14px;
  817. text-align:left;
  818. line-height:30px;
  819. }
  820. #u2311 .text {
  821. position:absolute;
  822. align-self:center;
  823. padding:5px 10px 5px 10px;
  824. box-sizing:border-box;
  825. width:100%;
  826. }
  827. #u2311_text {
  828. border-width:0px;
  829. word-wrap:break-word;
  830. text-transform:none;
  831. }
  832. #u2312_img {
  833. border-width:0px;
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:149px;
  838. height:70px;
  839. }
  840. #u2312 {
  841. border-width:0px;
  842. position:absolute;
  843. left:221px;
  844. top:150px;
  845. width:149px;
  846. height:70px;
  847. display:flex;
  848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  849. font-weight:400;
  850. font-style:normal;
  851. font-size:14px;
  852. text-align:left;
  853. line-height:30px;
  854. }
  855. #u2312 .text {
  856. position:absolute;
  857. align-self:center;
  858. padding:5px 10px 5px 10px;
  859. box-sizing:border-box;
  860. width:100%;
  861. }
  862. #u2312_text {
  863. border-width:0px;
  864. word-wrap:break-word;
  865. text-transform:none;
  866. }
  867. #u2313_img {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:245px;
  873. height:70px;
  874. }
  875. #u2313 {
  876. border-width:0px;
  877. position:absolute;
  878. left:370px;
  879. top:150px;
  880. width:245px;
  881. height:70px;
  882. display:flex;
  883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  884. font-weight:400;
  885. font-style:normal;
  886. font-size:14px;
  887. text-align:left;
  888. line-height:30px;
  889. }
  890. #u2313 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:5px 10px 5px 10px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u2313_text {
  898. border-width:0px;
  899. word-wrap:break-word;
  900. text-transform:none;
  901. }
  902. #u2314_img {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:99px;
  908. height:70px;
  909. }
  910. #u2314 {
  911. border-width:0px;
  912. position:absolute;
  913. left:615px;
  914. top:150px;
  915. width:99px;
  916. height:70px;
  917. display:flex;
  918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  919. font-weight:400;
  920. font-style:normal;
  921. font-size:14px;
  922. text-align:left;
  923. line-height:30px;
  924. }
  925. #u2314 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:5px 10px 5px 10px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u2314_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. }
  937. #u2315_img {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:601px;
  943. height:70px;
  944. }
  945. #u2315 {
  946. border-width:0px;
  947. position:absolute;
  948. left:714px;
  949. top:150px;
  950. width:601px;
  951. height:70px;
  952. display:flex;
  953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  954. font-weight:400;
  955. font-style:normal;
  956. font-size:14px;
  957. text-align:left;
  958. line-height:30px;
  959. }
  960. #u2315 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:5px 10px 5px 10px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u2315_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. }
  972. #u2316_img {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:492px;
  978. height:70px;
  979. }
  980. #u2316 {
  981. border-width:0px;
  982. position:absolute;
  983. left:1315px;
  984. top:150px;
  985. width:492px;
  986. height:70px;
  987. display:flex;
  988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  989. font-weight:400;
  990. font-style:normal;
  991. font-size:14px;
  992. text-align:left;
  993. line-height:30px;
  994. }
  995. #u2316 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:5px 10px 5px 10px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u2316_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u2317_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:100px;
  1014. height:40px;
  1015. }
  1016. #u2317 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:220px;
  1021. width:100px;
  1022. height:40px;
  1023. display:flex;
  1024. font-size:14px;
  1025. text-align:left;
  1026. line-height:30px;
  1027. }
  1028. #u2317 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:5px 10px 5px 10px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u2317_text {
  1036. border-width:0px;
  1037. word-wrap:break-word;
  1038. text-transform:none;
  1039. }
  1040. #u2318_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:121px;
  1046. height:40px;
  1047. }
  1048. #u2318 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:100px;
  1052. top:220px;
  1053. width:121px;
  1054. height:40px;
  1055. display:flex;
  1056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1057. font-weight:400;
  1058. font-style:normal;
  1059. font-size:14px;
  1060. text-align:left;
  1061. line-height:30px;
  1062. }
  1063. #u2318 .text {
  1064. position:absolute;
  1065. align-self:center;
  1066. padding:5px 10px 5px 10px;
  1067. box-sizing:border-box;
  1068. width:100%;
  1069. }
  1070. #u2318_text {
  1071. border-width:0px;
  1072. word-wrap:break-word;
  1073. text-transform:none;
  1074. }
  1075. #u2319_img {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:149px;
  1081. height:40px;
  1082. }
  1083. #u2319 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:221px;
  1087. top:220px;
  1088. width:149px;
  1089. height:40px;
  1090. display:flex;
  1091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1092. font-weight:400;
  1093. font-style:normal;
  1094. font-size:14px;
  1095. text-align:left;
  1096. line-height:30px;
  1097. }
  1098. #u2319 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:5px 10px 5px 10px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u2319_text {
  1106. border-width:0px;
  1107. word-wrap:break-word;
  1108. text-transform:none;
  1109. }
  1110. #u2320_img {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:245px;
  1116. height:40px;
  1117. }
  1118. #u2320 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:370px;
  1122. top:220px;
  1123. width:245px;
  1124. height:40px;
  1125. display:flex;
  1126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1127. font-weight:400;
  1128. font-style:normal;
  1129. font-size:14px;
  1130. text-align:left;
  1131. line-height:30px;
  1132. }
  1133. #u2320 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:5px 10px 5px 10px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u2320_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. }
  1145. #u2321_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:99px;
  1151. height:40px;
  1152. }
  1153. #u2321 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:615px;
  1157. top:220px;
  1158. width:99px;
  1159. height:40px;
  1160. display:flex;
  1161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1162. font-weight:400;
  1163. font-style:normal;
  1164. font-size:14px;
  1165. text-align:left;
  1166. line-height:30px;
  1167. }
  1168. #u2321 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:5px 10px 5px 10px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u2321_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u2322_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:601px;
  1186. height:40px;
  1187. }
  1188. #u2322 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:714px;
  1192. top:220px;
  1193. width:601px;
  1194. height:40px;
  1195. display:flex;
  1196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1197. font-weight:400;
  1198. font-style:normal;
  1199. font-size:14px;
  1200. text-align:left;
  1201. line-height:30px;
  1202. }
  1203. #u2322 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:5px 10px 5px 10px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u2322_text {
  1211. border-width:0px;
  1212. word-wrap:break-word;
  1213. text-transform:none;
  1214. }
  1215. #u2323_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:492px;
  1221. height:40px;
  1222. }
  1223. #u2323 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:1315px;
  1227. top:220px;
  1228. width:492px;
  1229. height:40px;
  1230. display:flex;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. text-align:left;
  1236. line-height:30px;
  1237. }
  1238. #u2323 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:5px 10px 5px 10px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u2323_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. visibility:hidden;
  1250. }
  1251. #u2324_img {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:100px;
  1257. height:70px;
  1258. }
  1259. #u2324 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:260px;
  1264. width:100px;
  1265. height:70px;
  1266. display:flex;
  1267. font-size:14px;
  1268. text-align:left;
  1269. line-height:30px;
  1270. }
  1271. #u2324 .text {
  1272. position:absolute;
  1273. align-self:center;
  1274. padding:5px 10px 5px 10px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u2324_text {
  1279. border-width:0px;
  1280. word-wrap:break-word;
  1281. text-transform:none;
  1282. }
  1283. #u2325_img {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:121px;
  1289. height:70px;
  1290. }
  1291. #u2325 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:100px;
  1295. top:260px;
  1296. width:121px;
  1297. height:70px;
  1298. display:flex;
  1299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1300. font-weight:400;
  1301. font-style:normal;
  1302. font-size:14px;
  1303. text-align:left;
  1304. line-height:30px;
  1305. }
  1306. #u2325 .text {
  1307. position:absolute;
  1308. align-self:center;
  1309. padding:5px 10px 5px 10px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u2325_text {
  1314. border-width:0px;
  1315. word-wrap:break-word;
  1316. text-transform:none;
  1317. }
  1318. #u2326_img {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:0px;
  1322. top:0px;
  1323. width:149px;
  1324. height:70px;
  1325. }
  1326. #u2326 {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:221px;
  1330. top:260px;
  1331. width:149px;
  1332. height:70px;
  1333. display:flex;
  1334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1335. font-weight:400;
  1336. font-style:normal;
  1337. font-size:14px;
  1338. text-align:left;
  1339. line-height:30px;
  1340. }
  1341. #u2326 .text {
  1342. position:absolute;
  1343. align-self:center;
  1344. padding:5px 10px 5px 10px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u2326_text {
  1349. border-width:0px;
  1350. word-wrap:break-word;
  1351. text-transform:none;
  1352. }
  1353. #u2327_img {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:245px;
  1359. height:70px;
  1360. }
  1361. #u2327 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:370px;
  1365. top:260px;
  1366. width:245px;
  1367. height:70px;
  1368. display:flex;
  1369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1370. font-weight:400;
  1371. font-style:normal;
  1372. font-size:14px;
  1373. text-align:left;
  1374. line-height:30px;
  1375. }
  1376. #u2327 .text {
  1377. position:absolute;
  1378. align-self:center;
  1379. padding:5px 10px 5px 10px;
  1380. box-sizing:border-box;
  1381. width:100%;
  1382. }
  1383. #u2327_text {
  1384. border-width:0px;
  1385. word-wrap:break-word;
  1386. text-transform:none;
  1387. }
  1388. #u2328_img {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:99px;
  1394. height:70px;
  1395. }
  1396. #u2328 {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:615px;
  1400. top:260px;
  1401. width:99px;
  1402. height:70px;
  1403. display:flex;
  1404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1405. font-weight:400;
  1406. font-style:normal;
  1407. font-size:14px;
  1408. text-align:left;
  1409. line-height:30px;
  1410. }
  1411. #u2328 .text {
  1412. position:absolute;
  1413. align-self:center;
  1414. padding:5px 10px 5px 10px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u2328_text {
  1419. border-width:0px;
  1420. word-wrap:break-word;
  1421. text-transform:none;
  1422. }
  1423. #u2329_img {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:601px;
  1429. height:70px;
  1430. }
  1431. #u2329 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:714px;
  1435. top:260px;
  1436. width:601px;
  1437. height:70px;
  1438. display:flex;
  1439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:14px;
  1443. text-align:left;
  1444. line-height:30px;
  1445. }
  1446. #u2329 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:5px 10px 5px 10px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u2329_text {
  1454. border-width:0px;
  1455. word-wrap:break-word;
  1456. text-transform:none;
  1457. }
  1458. #u2330_img {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:492px;
  1464. height:70px;
  1465. }
  1466. #u2330 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:1315px;
  1470. top:260px;
  1471. width:492px;
  1472. height:70px;
  1473. display:flex;
  1474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1475. font-weight:400;
  1476. font-style:normal;
  1477. font-size:14px;
  1478. text-align:left;
  1479. line-height:30px;
  1480. }
  1481. #u2330 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:5px 10px 5px 10px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u2330_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. visibility:hidden;
  1493. }
  1494. #u2331_img {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:100px;
  1500. height:70px;
  1501. }
  1502. #u2331 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:0px;
  1506. top:330px;
  1507. width:100px;
  1508. height:70px;
  1509. display:flex;
  1510. font-size:14px;
  1511. text-align:left;
  1512. line-height:30px;
  1513. }
  1514. #u2331 .text {
  1515. position:absolute;
  1516. align-self:center;
  1517. padding:5px 10px 5px 10px;
  1518. box-sizing:border-box;
  1519. width:100%;
  1520. }
  1521. #u2331_text {
  1522. border-width:0px;
  1523. word-wrap:break-word;
  1524. text-transform:none;
  1525. }
  1526. #u2332_img {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:121px;
  1532. height:70px;
  1533. }
  1534. #u2332 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:100px;
  1538. top:330px;
  1539. width:121px;
  1540. height:70px;
  1541. display:flex;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:14px;
  1546. text-align:left;
  1547. line-height:30px;
  1548. }
  1549. #u2332 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:5px 10px 5px 10px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u2332_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. }
  1561. #u2333_img {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:149px;
  1567. height:70px;
  1568. }
  1569. #u2333 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:221px;
  1573. top:330px;
  1574. width:149px;
  1575. height:70px;
  1576. display:flex;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. font-size:14px;
  1581. text-align:left;
  1582. line-height:30px;
  1583. }
  1584. #u2333 .text {
  1585. position:absolute;
  1586. align-self:center;
  1587. padding:5px 10px 5px 10px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u2333_text {
  1592. border-width:0px;
  1593. word-wrap:break-word;
  1594. text-transform:none;
  1595. }
  1596. #u2334_img {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:245px;
  1602. height:70px;
  1603. }
  1604. #u2334 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:370px;
  1608. top:330px;
  1609. width:245px;
  1610. height:70px;
  1611. display:flex;
  1612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1613. font-weight:400;
  1614. font-style:normal;
  1615. font-size:14px;
  1616. text-align:left;
  1617. line-height:30px;
  1618. }
  1619. #u2334 .text {
  1620. position:absolute;
  1621. align-self:center;
  1622. padding:5px 10px 5px 10px;
  1623. box-sizing:border-box;
  1624. width:100%;
  1625. }
  1626. #u2334_text {
  1627. border-width:0px;
  1628. word-wrap:break-word;
  1629. text-transform:none;
  1630. }
  1631. #u2335_img {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:99px;
  1637. height:70px;
  1638. }
  1639. #u2335 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:615px;
  1643. top:330px;
  1644. width:99px;
  1645. height:70px;
  1646. display:flex;
  1647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1648. font-weight:400;
  1649. font-style:normal;
  1650. font-size:14px;
  1651. text-align:left;
  1652. line-height:30px;
  1653. }
  1654. #u2335 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:5px 10px 5px 10px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u2335_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. }
  1666. #u2336_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:601px;
  1672. height:70px;
  1673. }
  1674. #u2336 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:714px;
  1678. top:330px;
  1679. width:601px;
  1680. height:70px;
  1681. display:flex;
  1682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1683. font-weight:400;
  1684. font-style:normal;
  1685. font-size:14px;
  1686. text-align:left;
  1687. line-height:30px;
  1688. }
  1689. #u2336 .text {
  1690. position:absolute;
  1691. align-self:center;
  1692. padding:5px 10px 5px 10px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u2336_text {
  1697. border-width:0px;
  1698. word-wrap:break-word;
  1699. text-transform:none;
  1700. }
  1701. #u2337_img {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:492px;
  1707. height:70px;
  1708. }
  1709. #u2337 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:1315px;
  1713. top:330px;
  1714. width:492px;
  1715. height:70px;
  1716. display:flex;
  1717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1718. font-weight:400;
  1719. font-style:normal;
  1720. font-size:14px;
  1721. text-align:left;
  1722. line-height:30px;
  1723. }
  1724. #u2337 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:5px 10px 5px 10px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u2337_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. visibility:hidden;
  1736. }
  1737. #u2338_img {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:100px;
  1743. height:130px;
  1744. }
  1745. #u2338 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:400px;
  1750. width:100px;
  1751. height:130px;
  1752. display:flex;
  1753. font-size:14px;
  1754. text-align:left;
  1755. line-height:30px;
  1756. }
  1757. #u2338 .text {
  1758. position:absolute;
  1759. align-self:center;
  1760. padding:5px 10px 5px 10px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u2338_text {
  1765. border-width:0px;
  1766. word-wrap:break-word;
  1767. text-transform:none;
  1768. }
  1769. #u2339_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:121px;
  1775. height:130px;
  1776. }
  1777. #u2339 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:100px;
  1781. top:400px;
  1782. width:121px;
  1783. height:130px;
  1784. display:flex;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. text-align:left;
  1790. line-height:30px;
  1791. }
  1792. #u2339 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:5px 10px 5px 10px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u2339_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u2340_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:149px;
  1810. height:130px;
  1811. }
  1812. #u2340 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:221px;
  1816. top:400px;
  1817. width:149px;
  1818. height:130px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. text-align:left;
  1825. line-height:30px;
  1826. }
  1827. #u2340 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:5px 10px 5px 10px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u2340_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u2341_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:245px;
  1845. height:130px;
  1846. }
  1847. #u2341 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:370px;
  1851. top:400px;
  1852. width:245px;
  1853. height:130px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:14px;
  1859. text-align:left;
  1860. line-height:30px;
  1861. }
  1862. #u2341 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:5px 10px 5px 10px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u2341_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u2342_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:99px;
  1880. height:130px;
  1881. }
  1882. #u2342 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:615px;
  1886. top:400px;
  1887. width:99px;
  1888. height:130px;
  1889. display:flex;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:14px;
  1894. text-align:left;
  1895. line-height:30px;
  1896. }
  1897. #u2342 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:5px 10px 5px 10px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u2342_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u2343_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:601px;
  1915. height:130px;
  1916. }
  1917. #u2343 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:714px;
  1921. top:400px;
  1922. width:601px;
  1923. height:130px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:14px;
  1929. text-align:left;
  1930. line-height:30px;
  1931. }
  1932. #u2343 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:5px 10px 5px 10px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u2343_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. }
  1944. #u2344_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:492px;
  1950. height:130px;
  1951. }
  1952. #u2344 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:1315px;
  1956. top:400px;
  1957. width:492px;
  1958. height:130px;
  1959. display:flex;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. text-align:left;
  1965. line-height:30px;
  1966. }
  1967. #u2344 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:5px 10px 5px 10px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u2344_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. visibility:hidden;
  1979. }
  1980. #u2345_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:100px;
  1986. height:40px;
  1987. }
  1988. #u2345 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:530px;
  1993. width:100px;
  1994. height:40px;
  1995. display:flex;
  1996. font-size:14px;
  1997. text-align:left;
  1998. line-height:30px;
  1999. }
  2000. #u2345 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:5px 10px 5px 10px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u2345_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. }
  2012. #u2346_img {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:121px;
  2018. height:40px;
  2019. }
  2020. #u2346 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:100px;
  2024. top:530px;
  2025. width:121px;
  2026. height:40px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:14px;
  2032. text-align:left;
  2033. line-height:30px;
  2034. }
  2035. #u2346 .text {
  2036. position:absolute;
  2037. align-self:center;
  2038. padding:5px 10px 5px 10px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u2346_text {
  2043. border-width:0px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. }
  2047. #u2347_img {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:149px;
  2053. height:40px;
  2054. }
  2055. #u2347 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:221px;
  2059. top:530px;
  2060. width:149px;
  2061. height:40px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. text-align:left;
  2068. line-height:30px;
  2069. }
  2070. #u2347 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:5px 10px 5px 10px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u2347_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. }
  2082. #u2348_img {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:245px;
  2088. height:40px;
  2089. }
  2090. #u2348 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:370px;
  2094. top:530px;
  2095. width:245px;
  2096. height:40px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:14px;
  2102. text-align:left;
  2103. line-height:30px;
  2104. }
  2105. #u2348 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:5px 10px 5px 10px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u2348_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u2349_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:99px;
  2123. height:40px;
  2124. }
  2125. #u2349 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:615px;
  2129. top:530px;
  2130. width:99px;
  2131. height:40px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:14px;
  2137. text-align:left;
  2138. line-height:30px;
  2139. }
  2140. #u2349 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:5px 10px 5px 10px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u2349_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. }
  2152. #u2350_img {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:601px;
  2158. height:40px;
  2159. }
  2160. #u2350 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:714px;
  2164. top:530px;
  2165. width:601px;
  2166. height:40px;
  2167. display:flex;
  2168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2169. font-weight:400;
  2170. font-style:normal;
  2171. font-size:14px;
  2172. text-align:left;
  2173. line-height:30px;
  2174. }
  2175. #u2350 .text {
  2176. position:absolute;
  2177. align-self:center;
  2178. padding:5px 10px 5px 10px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u2350_text {
  2183. border-width:0px;
  2184. word-wrap:break-word;
  2185. text-transform:none;
  2186. visibility:hidden;
  2187. }
  2188. #u2351_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:492px;
  2194. height:40px;
  2195. }
  2196. #u2351 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:1315px;
  2200. top:530px;
  2201. width:492px;
  2202. height:40px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:14px;
  2208. text-align:left;
  2209. line-height:30px;
  2210. }
  2211. #u2351 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:5px 10px 5px 10px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u2351_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. visibility:hidden;
  2223. }
  2224. #u2352_img {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:100px;
  2230. height:130px;
  2231. }
  2232. #u2352 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:570px;
  2237. width:100px;
  2238. height:130px;
  2239. display:flex;
  2240. font-size:14px;
  2241. text-align:left;
  2242. line-height:30px;
  2243. }
  2244. #u2352 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:5px 10px 5px 10px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u2352_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. }
  2256. #u2353_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:121px;
  2262. height:130px;
  2263. }
  2264. #u2353 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:100px;
  2268. top:570px;
  2269. width:121px;
  2270. height:130px;
  2271. display:flex;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. text-align:left;
  2277. line-height:30px;
  2278. }
  2279. #u2353 .text {
  2280. position:absolute;
  2281. align-self:center;
  2282. padding:5px 10px 5px 10px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u2353_text {
  2287. border-width:0px;
  2288. word-wrap:break-word;
  2289. text-transform:none;
  2290. }
  2291. #u2354_img {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:149px;
  2297. height:130px;
  2298. }
  2299. #u2354 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:221px;
  2303. top:570px;
  2304. width:149px;
  2305. height:130px;
  2306. display:flex;
  2307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2308. font-weight:400;
  2309. font-style:normal;
  2310. font-size:14px;
  2311. text-align:left;
  2312. line-height:30px;
  2313. }
  2314. #u2354 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:5px 10px 5px 10px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u2354_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }
  2326. #u2355_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:245px;
  2332. height:130px;
  2333. }
  2334. #u2355 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:370px;
  2338. top:570px;
  2339. width:245px;
  2340. height:130px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:14px;
  2346. text-align:left;
  2347. line-height:30px;
  2348. }
  2349. #u2355 .text {
  2350. position:absolute;
  2351. align-self:center;
  2352. padding:5px 10px 5px 10px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u2355_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. }
  2361. #u2356_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:99px;
  2367. height:130px;
  2368. }
  2369. #u2356 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:615px;
  2373. top:570px;
  2374. width:99px;
  2375. height:130px;
  2376. display:flex;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:14px;
  2381. text-align:left;
  2382. line-height:30px;
  2383. }
  2384. #u2356 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:5px 10px 5px 10px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u2356_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. }
  2396. #u2357_img {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:601px;
  2402. height:130px;
  2403. }
  2404. #u2357 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:714px;
  2408. top:570px;
  2409. width:601px;
  2410. height:130px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:14px;
  2416. text-align:left;
  2417. line-height:30px;
  2418. }
  2419. #u2357 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:5px 10px 5px 10px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u2357_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. }
  2431. #u2358_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:492px;
  2437. height:130px;
  2438. }
  2439. #u2358 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:1315px;
  2443. top:570px;
  2444. width:492px;
  2445. height:130px;
  2446. display:flex;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. text-align:left;
  2452. line-height:30px;
  2453. }
  2454. #u2358 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:5px 10px 5px 10px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u2358_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u2359_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:100px;
  2473. height:40px;
  2474. }
  2475. #u2359 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:700px;
  2480. width:100px;
  2481. height:40px;
  2482. display:flex;
  2483. font-size:14px;
  2484. text-align:left;
  2485. line-height:30px;
  2486. }
  2487. #u2359 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:5px 10px 5px 10px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u2359_text {
  2495. border-width:0px;
  2496. word-wrap:break-word;
  2497. text-transform:none;
  2498. }
  2499. #u2360_img {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:121px;
  2505. height:40px;
  2506. }
  2507. #u2360 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:100px;
  2511. top:700px;
  2512. width:121px;
  2513. height:40px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. text-align:left;
  2520. line-height:30px;
  2521. }
  2522. #u2360 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:5px 10px 5px 10px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u2360_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. }
  2534. #u2361_img {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:149px;
  2540. height:40px;
  2541. }
  2542. #u2361 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:221px;
  2546. top:700px;
  2547. width:149px;
  2548. height:40px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:14px;
  2554. text-align:left;
  2555. line-height:30px;
  2556. }
  2557. #u2361 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:5px 10px 5px 10px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u2361_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u2362_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:245px;
  2575. height:40px;
  2576. }
  2577. #u2362 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:370px;
  2581. top:700px;
  2582. width:245px;
  2583. height:40px;
  2584. display:flex;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:14px;
  2589. text-align:left;
  2590. line-height:30px;
  2591. }
  2592. #u2362 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:5px 10px 5px 10px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u2362_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. }
  2604. #u2363_img {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:99px;
  2610. height:40px;
  2611. }
  2612. #u2363 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:615px;
  2616. top:700px;
  2617. width:99px;
  2618. height:40px;
  2619. display:flex;
  2620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:14px;
  2624. text-align:left;
  2625. line-height:30px;
  2626. }
  2627. #u2363 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:5px 10px 5px 10px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u2363_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. }
  2639. #u2364_img {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:601px;
  2645. height:40px;
  2646. }
  2647. #u2364 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:714px;
  2651. top:700px;
  2652. width:601px;
  2653. height:40px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:14px;
  2659. text-align:left;
  2660. line-height:30px;
  2661. }
  2662. #u2364 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:5px 10px 5px 10px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u2364_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. }
  2674. #u2365_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:492px;
  2680. height:40px;
  2681. }
  2682. #u2365 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:1315px;
  2686. top:700px;
  2687. width:492px;
  2688. height:40px;
  2689. display:flex;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:14px;
  2694. text-align:left;
  2695. line-height:30px;
  2696. }
  2697. #u2365 .text {
  2698. position:absolute;
  2699. align-self:center;
  2700. padding:5px 10px 5px 10px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u2365_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. visibility:hidden;
  2709. }
  2710. #u2366_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:100px;
  2716. height:100px;
  2717. }
  2718. #u2366 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:740px;
  2723. width:100px;
  2724. height:100px;
  2725. display:flex;
  2726. font-size:14px;
  2727. text-align:left;
  2728. line-height:30px;
  2729. }
  2730. #u2366 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:5px 10px 5px 10px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u2366_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u2367_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:121px;
  2748. height:100px;
  2749. }
  2750. #u2367 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:100px;
  2754. top:740px;
  2755. width:121px;
  2756. height:100px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:14px;
  2762. text-align:left;
  2763. line-height:30px;
  2764. }
  2765. #u2367 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:5px 10px 5px 10px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u2367_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. }
  2777. #u2368_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:149px;
  2783. height:100px;
  2784. }
  2785. #u2368 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:221px;
  2789. top:740px;
  2790. width:149px;
  2791. height:100px;
  2792. display:flex;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:14px;
  2797. text-align:left;
  2798. line-height:30px;
  2799. }
  2800. #u2368 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:5px 10px 5px 10px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u2368_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. }
  2812. #u2369_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:245px;
  2818. height:100px;
  2819. }
  2820. #u2369 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:370px;
  2824. top:740px;
  2825. width:245px;
  2826. height:100px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. text-align:left;
  2833. line-height:30px;
  2834. }
  2835. #u2369 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:5px 10px 5px 10px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u2369_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. }
  2847. #u2370_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:99px;
  2853. height:100px;
  2854. }
  2855. #u2370 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:615px;
  2859. top:740px;
  2860. width:99px;
  2861. height:100px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:14px;
  2867. text-align:left;
  2868. line-height:30px;
  2869. }
  2870. #u2370 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:5px 10px 5px 10px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u2370_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. }
  2882. #u2371_img {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:601px;
  2888. height:100px;
  2889. }
  2890. #u2371 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:714px;
  2894. top:740px;
  2895. width:601px;
  2896. height:100px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:14px;
  2902. text-align:left;
  2903. line-height:30px;
  2904. }
  2905. #u2371 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:5px 10px 5px 10px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u2371_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. }
  2917. #u2372_img {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:492px;
  2923. height:100px;
  2924. }
  2925. #u2372 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:1315px;
  2929. top:740px;
  2930. width:492px;
  2931. height:100px;
  2932. display:flex;
  2933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:14px;
  2937. text-align:left;
  2938. line-height:30px;
  2939. }
  2940. #u2372 .text {
  2941. position:absolute;
  2942. align-self:center;
  2943. padding:5px 10px 5px 10px;
  2944. box-sizing:border-box;
  2945. width:100%;
  2946. }
  2947. #u2372_text {
  2948. border-width:0px;
  2949. word-wrap:break-word;
  2950. text-transform:none;
  2951. visibility:hidden;
  2952. }
  2953. #u2373_img {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:100px;
  2959. height:40px;
  2960. }
  2961. #u2373 {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:840px;
  2966. width:100px;
  2967. height:40px;
  2968. display:flex;
  2969. font-size:14px;
  2970. text-align:left;
  2971. line-height:30px;
  2972. }
  2973. #u2373 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:5px 10px 5px 10px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u2373_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. }
  2985. #u2374_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:121px;
  2991. height:40px;
  2992. }
  2993. #u2374 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:100px;
  2997. top:840px;
  2998. width:121px;
  2999. height:40px;
  3000. display:flex;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:14px;
  3005. text-align:left;
  3006. line-height:30px;
  3007. }
  3008. #u2374 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:5px 10px 5px 10px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u2374_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. }
  3020. #u2375_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:149px;
  3026. height:40px;
  3027. }
  3028. #u2375 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:221px;
  3032. top:840px;
  3033. width:149px;
  3034. height:40px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:14px;
  3040. text-align:left;
  3041. line-height:30px;
  3042. }
  3043. #u2375 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:5px 10px 5px 10px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u2375_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. }
  3055. #u2376_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:245px;
  3061. height:40px;
  3062. }
  3063. #u2376 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:370px;
  3067. top:840px;
  3068. width:245px;
  3069. height:40px;
  3070. display:flex;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:14px;
  3075. text-align:left;
  3076. line-height:30px;
  3077. }
  3078. #u2376 .text {
  3079. position:absolute;
  3080. align-self:center;
  3081. padding:5px 10px 5px 10px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u2376_text {
  3086. border-width:0px;
  3087. word-wrap:break-word;
  3088. text-transform:none;
  3089. }
  3090. #u2377_img {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:99px;
  3096. height:40px;
  3097. }
  3098. #u2377 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:615px;
  3102. top:840px;
  3103. width:99px;
  3104. height:40px;
  3105. display:flex;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:14px;
  3110. text-align:left;
  3111. line-height:30px;
  3112. }
  3113. #u2377 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:5px 10px 5px 10px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u2377_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. }
  3125. #u2378_img {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:0px;
  3129. top:0px;
  3130. width:601px;
  3131. height:40px;
  3132. }
  3133. #u2378 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:714px;
  3137. top:840px;
  3138. width:601px;
  3139. height:40px;
  3140. display:flex;
  3141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3142. font-weight:400;
  3143. font-style:normal;
  3144. font-size:14px;
  3145. text-align:left;
  3146. line-height:30px;
  3147. }
  3148. #u2378 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:5px 10px 5px 10px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u2378_text {
  3156. border-width:0px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. }
  3160. #u2379_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:492px;
  3166. height:40px;
  3167. }
  3168. #u2379 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:1315px;
  3172. top:840px;
  3173. width:492px;
  3174. height:40px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:14px;
  3180. text-align:left;
  3181. line-height:30px;
  3182. }
  3183. #u2379 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:5px 10px 5px 10px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u2379_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. }
  3195. #u2380_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:100px;
  3201. height:40px;
  3202. }
  3203. #u2380 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:880px;
  3208. width:100px;
  3209. height:40px;
  3210. display:flex;
  3211. font-size:14px;
  3212. text-align:left;
  3213. line-height:30px;
  3214. }
  3215. #u2380 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:5px 10px 5px 10px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u2380_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. }
  3227. #u2381_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:121px;
  3233. height:40px;
  3234. }
  3235. #u2381 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:100px;
  3239. top:880px;
  3240. width:121px;
  3241. height:40px;
  3242. display:flex;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:14px;
  3247. text-align:left;
  3248. line-height:30px;
  3249. }
  3250. #u2381 .text {
  3251. position:absolute;
  3252. align-self:center;
  3253. padding:5px 10px 5px 10px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u2381_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. }
  3262. #u2382_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:149px;
  3268. height:40px;
  3269. }
  3270. #u2382 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:221px;
  3274. top:880px;
  3275. width:149px;
  3276. height:40px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:14px;
  3282. text-align:left;
  3283. line-height:30px;
  3284. }
  3285. #u2382 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:5px 10px 5px 10px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u2382_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u2383_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:245px;
  3303. height:40px;
  3304. }
  3305. #u2383 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:370px;
  3309. top:880px;
  3310. width:245px;
  3311. height:40px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:14px;
  3317. text-align:left;
  3318. line-height:30px;
  3319. }
  3320. #u2383 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:5px 10px 5px 10px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u2383_text {
  3328. border-width:0px;
  3329. word-wrap:break-word;
  3330. text-transform:none;
  3331. }
  3332. #u2384_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:99px;
  3338. height:40px;
  3339. }
  3340. #u2384 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:615px;
  3344. top:880px;
  3345. width:99px;
  3346. height:40px;
  3347. display:flex;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:14px;
  3352. text-align:left;
  3353. line-height:30px;
  3354. }
  3355. #u2384 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:5px 10px 5px 10px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u2384_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. }
  3367. #u2385_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:601px;
  3373. height:40px;
  3374. }
  3375. #u2385 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:714px;
  3379. top:880px;
  3380. width:601px;
  3381. height:40px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:14px;
  3387. text-align:left;
  3388. line-height:30px;
  3389. }
  3390. #u2385 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:5px 10px 5px 10px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u2385_text {
  3398. border-width:0px;
  3399. word-wrap:break-word;
  3400. text-transform:none;
  3401. }
  3402. #u2386_img {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:492px;
  3408. height:40px;
  3409. }
  3410. #u2386 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:1315px;
  3414. top:880px;
  3415. width:492px;
  3416. height:40px;
  3417. display:flex;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:14px;
  3422. text-align:left;
  3423. line-height:30px;
  3424. }
  3425. #u2386 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:5px 10px 5px 10px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u2386_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. visibility:hidden;
  3437. }
  3438. #u2387_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:100px;
  3444. height:70px;
  3445. }
  3446. #u2387 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:920px;
  3451. width:100px;
  3452. height:70px;
  3453. display:flex;
  3454. font-size:14px;
  3455. text-align:left;
  3456. line-height:30px;
  3457. }
  3458. #u2387 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:5px 10px 5px 10px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u2387_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. }
  3470. #u2388_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:121px;
  3476. height:70px;
  3477. }
  3478. #u2388 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:100px;
  3482. top:920px;
  3483. width:121px;
  3484. height:70px;
  3485. display:flex;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:14px;
  3490. text-align:left;
  3491. line-height:30px;
  3492. }
  3493. #u2388 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:5px 10px 5px 10px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u2388_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u2389_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:149px;
  3511. height:70px;
  3512. }
  3513. #u2389 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:221px;
  3517. top:920px;
  3518. width:149px;
  3519. height:70px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:14px;
  3525. text-align:left;
  3526. line-height:30px;
  3527. }
  3528. #u2389 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:5px 10px 5px 10px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u2389_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. }
  3540. #u2390_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:245px;
  3546. height:70px;
  3547. }
  3548. #u2390 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:370px;
  3552. top:920px;
  3553. width:245px;
  3554. height:70px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:14px;
  3560. text-align:left;
  3561. line-height:30px;
  3562. }
  3563. #u2390 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:5px 10px 5px 10px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u2390_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. }
  3575. #u2391_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:99px;
  3581. height:70px;
  3582. }
  3583. #u2391 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:615px;
  3587. top:920px;
  3588. width:99px;
  3589. height:70px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:14px;
  3595. text-align:left;
  3596. line-height:30px;
  3597. }
  3598. #u2391 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:5px 10px 5px 10px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u2391_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. }
  3610. #u2392_img {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:601px;
  3616. height:70px;
  3617. }
  3618. #u2392 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:714px;
  3622. top:920px;
  3623. width:601px;
  3624. height:70px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:14px;
  3630. text-align:left;
  3631. line-height:30px;
  3632. }
  3633. #u2392 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:5px 10px 5px 10px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u2392_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. }
  3645. #u2393_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:492px;
  3651. height:70px;
  3652. }
  3653. #u2393 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:1315px;
  3657. top:920px;
  3658. width:492px;
  3659. height:70px;
  3660. display:flex;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:14px;
  3665. text-align:left;
  3666. line-height:30px;
  3667. }
  3668. #u2393 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:5px 10px 5px 10px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u2393_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. }
  3680. #u2394_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:100px;
  3686. height:70px;
  3687. }
  3688. #u2394 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:990px;
  3693. width:100px;
  3694. height:70px;
  3695. display:flex;
  3696. font-size:14px;
  3697. text-align:left;
  3698. line-height:30px;
  3699. }
  3700. #u2394 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:5px 10px 5px 10px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u2394_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. }
  3712. #u2395_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:121px;
  3718. height:70px;
  3719. }
  3720. #u2395 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:100px;
  3724. top:990px;
  3725. width:121px;
  3726. height:70px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:14px;
  3732. text-align:left;
  3733. line-height:30px;
  3734. }
  3735. #u2395 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:5px 10px 5px 10px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u2395_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. }
  3747. #u2396_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:149px;
  3753. height:70px;
  3754. }
  3755. #u2396 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:221px;
  3759. top:990px;
  3760. width:149px;
  3761. height:70px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:14px;
  3767. text-align:left;
  3768. line-height:30px;
  3769. }
  3770. #u2396 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:5px 10px 5px 10px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u2396_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. }
  3782. #u2397_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:245px;
  3788. height:70px;
  3789. }
  3790. #u2397 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:370px;
  3794. top:990px;
  3795. width:245px;
  3796. height:70px;
  3797. display:flex;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:14px;
  3802. text-align:left;
  3803. line-height:30px;
  3804. }
  3805. #u2397 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:5px 10px 5px 10px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u2397_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. }
  3817. #u2398_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:99px;
  3823. height:70px;
  3824. }
  3825. #u2398 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:615px;
  3829. top:990px;
  3830. width:99px;
  3831. height:70px;
  3832. display:flex;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:14px;
  3837. text-align:left;
  3838. line-height:30px;
  3839. }
  3840. #u2398 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:5px 10px 5px 10px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u2398_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. }
  3852. #u2399_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:601px;
  3858. height:70px;
  3859. }
  3860. #u2399 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:714px;
  3864. top:990px;
  3865. width:601px;
  3866. height:70px;
  3867. display:flex;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:14px;
  3872. text-align:left;
  3873. line-height:30px;
  3874. }
  3875. #u2399 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:5px 10px 5px 10px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u2399_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. }
  3887. #u2400_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:492px;
  3893. height:70px;
  3894. }
  3895. #u2400 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:1315px;
  3899. top:990px;
  3900. width:492px;
  3901. height:70px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:14px;
  3907. text-align:left;
  3908. line-height:30px;
  3909. }
  3910. #u2400 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:5px 10px 5px 10px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u2400_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. }
  3922. #u2401_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:100px;
  3928. height:40px;
  3929. }
  3930. #u2401 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:1060px;
  3935. width:100px;
  3936. height:40px;
  3937. display:flex;
  3938. font-size:14px;
  3939. text-align:left;
  3940. line-height:30px;
  3941. }
  3942. #u2401 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:5px 10px 5px 10px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u2401_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. }
  3954. #u2402_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:121px;
  3960. height:40px;
  3961. }
  3962. #u2402 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:100px;
  3966. top:1060px;
  3967. width:121px;
  3968. height:40px;
  3969. display:flex;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:14px;
  3974. text-align:left;
  3975. line-height:30px;
  3976. }
  3977. #u2402 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:5px 10px 5px 10px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u2402_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. }
  3989. #u2403_img {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:149px;
  3995. height:40px;
  3996. }
  3997. #u2403 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:221px;
  4001. top:1060px;
  4002. width:149px;
  4003. height:40px;
  4004. display:flex;
  4005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:14px;
  4009. text-align:left;
  4010. line-height:30px;
  4011. }
  4012. #u2403 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:5px 10px 5px 10px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u2403_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. }
  4024. #u2404_img {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:245px;
  4030. height:40px;
  4031. }
  4032. #u2404 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:370px;
  4036. top:1060px;
  4037. width:245px;
  4038. height:40px;
  4039. display:flex;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:14px;
  4044. text-align:left;
  4045. line-height:30px;
  4046. }
  4047. #u2404 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:5px 10px 5px 10px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u2404_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. }
  4059. #u2405_img {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:99px;
  4065. height:40px;
  4066. }
  4067. #u2405 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:615px;
  4071. top:1060px;
  4072. width:99px;
  4073. height:40px;
  4074. display:flex;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:14px;
  4079. text-align:left;
  4080. line-height:30px;
  4081. }
  4082. #u2405 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:5px 10px 5px 10px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u2405_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. }
  4094. #u2406_img {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:601px;
  4100. height:40px;
  4101. }
  4102. #u2406 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:714px;
  4106. top:1060px;
  4107. width:601px;
  4108. height:40px;
  4109. display:flex;
  4110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:14px;
  4114. text-align:left;
  4115. line-height:30px;
  4116. }
  4117. #u2406 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:5px 10px 5px 10px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u2406_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. }
  4129. #u2407_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:492px;
  4135. height:40px;
  4136. }
  4137. #u2407 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:1315px;
  4141. top:1060px;
  4142. width:492px;
  4143. height:40px;
  4144. display:flex;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:14px;
  4149. text-align:left;
  4150. line-height:30px;
  4151. }
  4152. #u2407 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:5px 10px 5px 10px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u2407_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u2408_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:100px;
  4171. height:130px;
  4172. }
  4173. #u2408 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:1100px;
  4178. width:100px;
  4179. height:130px;
  4180. display:flex;
  4181. font-size:14px;
  4182. text-align:left;
  4183. line-height:30px;
  4184. }
  4185. #u2408 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:5px 10px 5px 10px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u2408_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. }
  4197. #u2409_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:121px;
  4203. height:130px;
  4204. }
  4205. #u2409 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:100px;
  4209. top:1100px;
  4210. width:121px;
  4211. height:130px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. text-align:left;
  4218. line-height:30px;
  4219. }
  4220. #u2409 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:5px 10px 5px 10px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u2409_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. }
  4232. #u2410_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:149px;
  4238. height:130px;
  4239. }
  4240. #u2410 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:221px;
  4244. top:1100px;
  4245. width:149px;
  4246. height:130px;
  4247. display:flex;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:14px;
  4252. text-align:left;
  4253. line-height:30px;
  4254. }
  4255. #u2410 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:5px 10px 5px 10px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u2410_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. }
  4267. #u2411_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:245px;
  4273. height:130px;
  4274. }
  4275. #u2411 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:370px;
  4279. top:1100px;
  4280. width:245px;
  4281. height:130px;
  4282. display:flex;
  4283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:14px;
  4287. text-align:left;
  4288. line-height:30px;
  4289. }
  4290. #u2411 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:5px 10px 5px 10px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u2411_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. }
  4302. #u2412_img {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:99px;
  4308. height:130px;
  4309. }
  4310. #u2412 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:615px;
  4314. top:1100px;
  4315. width:99px;
  4316. height:130px;
  4317. display:flex;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:14px;
  4322. text-align:left;
  4323. line-height:30px;
  4324. }
  4325. #u2412 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:5px 10px 5px 10px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u2412_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. }
  4337. #u2413_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:601px;
  4343. height:130px;
  4344. }
  4345. #u2413 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:714px;
  4349. top:1100px;
  4350. width:601px;
  4351. height:130px;
  4352. display:flex;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:14px;
  4357. text-align:left;
  4358. line-height:30px;
  4359. }
  4360. #u2413 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:5px 10px 5px 10px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u2413_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. }
  4372. #u2414_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:492px;
  4378. height:130px;
  4379. }
  4380. #u2414 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:1315px;
  4384. top:1100px;
  4385. width:492px;
  4386. height:130px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:14px;
  4392. text-align:left;
  4393. line-height:30px;
  4394. }
  4395. #u2414 .text {
  4396. position:absolute;
  4397. align-self:center;
  4398. padding:5px 10px 5px 10px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u2414_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. visibility:hidden;
  4407. }
  4408. #u2415_img {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:100px;
  4414. height:100px;
  4415. }
  4416. #u2415 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:1230px;
  4421. width:100px;
  4422. height:100px;
  4423. display:flex;
  4424. font-size:14px;
  4425. text-align:left;
  4426. line-height:30px;
  4427. }
  4428. #u2415 .text {
  4429. position:absolute;
  4430. align-self:center;
  4431. padding:5px 10px 5px 10px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u2415_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. }
  4440. #u2416_img {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:121px;
  4446. height:100px;
  4447. }
  4448. #u2416 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:100px;
  4452. top:1230px;
  4453. width:121px;
  4454. height:100px;
  4455. display:flex;
  4456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4457. font-weight:400;
  4458. font-style:normal;
  4459. font-size:14px;
  4460. text-align:left;
  4461. line-height:30px;
  4462. }
  4463. #u2416 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:5px 10px 5px 10px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u2416_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. }
  4475. #u2417_img {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:149px;
  4481. height:100px;
  4482. }
  4483. #u2417 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:221px;
  4487. top:1230px;
  4488. width:149px;
  4489. height:100px;
  4490. display:flex;
  4491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4492. font-weight:400;
  4493. font-style:normal;
  4494. font-size:14px;
  4495. text-align:left;
  4496. line-height:30px;
  4497. }
  4498. #u2417 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:5px 10px 5px 10px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u2417_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. }
  4510. #u2418_img {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:245px;
  4516. height:100px;
  4517. }
  4518. #u2418 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:370px;
  4522. top:1230px;
  4523. width:245px;
  4524. height:100px;
  4525. display:flex;
  4526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4527. font-weight:400;
  4528. font-style:normal;
  4529. font-size:14px;
  4530. text-align:left;
  4531. line-height:30px;
  4532. }
  4533. #u2418 .text {
  4534. position:absolute;
  4535. align-self:center;
  4536. padding:5px 10px 5px 10px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u2418_text {
  4541. border-width:0px;
  4542. word-wrap:break-word;
  4543. text-transform:none;
  4544. }
  4545. #u2419_img {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:99px;
  4551. height:100px;
  4552. }
  4553. #u2419 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:615px;
  4557. top:1230px;
  4558. width:99px;
  4559. height:100px;
  4560. display:flex;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:14px;
  4565. text-align:left;
  4566. line-height:30px;
  4567. }
  4568. #u2419 .text {
  4569. position:absolute;
  4570. align-self:center;
  4571. padding:5px 10px 5px 10px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u2419_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. }
  4580. #u2420_img {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:0px;
  4584. top:0px;
  4585. width:601px;
  4586. height:100px;
  4587. }
  4588. #u2420 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:714px;
  4592. top:1230px;
  4593. width:601px;
  4594. height:100px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4597. font-weight:400;
  4598. font-style:normal;
  4599. font-size:14px;
  4600. text-align:left;
  4601. line-height:30px;
  4602. }
  4603. #u2420 .text {
  4604. position:absolute;
  4605. align-self:center;
  4606. padding:5px 10px 5px 10px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u2420_text {
  4611. border-width:0px;
  4612. word-wrap:break-word;
  4613. text-transform:none;
  4614. }
  4615. #u2421_img {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:492px;
  4621. height:100px;
  4622. }
  4623. #u2421 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:1315px;
  4627. top:1230px;
  4628. width:492px;
  4629. height:100px;
  4630. display:flex;
  4631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4632. font-weight:400;
  4633. font-style:normal;
  4634. font-size:14px;
  4635. text-align:left;
  4636. line-height:30px;
  4637. }
  4638. #u2421 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:5px 10px 5px 10px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u2421_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u2422_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:100px;
  4657. height:70px;
  4658. }
  4659. #u2422 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:1330px;
  4664. width:100px;
  4665. height:70px;
  4666. display:flex;
  4667. font-size:14px;
  4668. text-align:left;
  4669. line-height:30px;
  4670. }
  4671. #u2422 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:5px 10px 5px 10px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u2422_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. }
  4683. #u2423_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:121px;
  4689. height:70px;
  4690. }
  4691. #u2423 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:100px;
  4695. top:1330px;
  4696. width:121px;
  4697. height:70px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:14px;
  4703. text-align:left;
  4704. line-height:30px;
  4705. }
  4706. #u2423 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:5px 10px 5px 10px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u2423_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. }
  4718. #u2424_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:149px;
  4724. height:70px;
  4725. }
  4726. #u2424 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:221px;
  4730. top:1330px;
  4731. width:149px;
  4732. height:70px;
  4733. display:flex;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:14px;
  4738. text-align:left;
  4739. line-height:30px;
  4740. }
  4741. #u2424 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:5px 10px 5px 10px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u2424_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. }
  4753. #u2425_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:245px;
  4759. height:70px;
  4760. }
  4761. #u2425 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:370px;
  4765. top:1330px;
  4766. width:245px;
  4767. height:70px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:14px;
  4773. text-align:left;
  4774. line-height:30px;
  4775. }
  4776. #u2425 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:5px 10px 5px 10px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u2425_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. }
  4788. #u2426_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:99px;
  4794. height:70px;
  4795. }
  4796. #u2426 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:615px;
  4800. top:1330px;
  4801. width:99px;
  4802. height:70px;
  4803. display:flex;
  4804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:14px;
  4808. text-align:left;
  4809. line-height:30px;
  4810. }
  4811. #u2426 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:5px 10px 5px 10px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u2426_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. }
  4823. #u2427_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:601px;
  4829. height:70px;
  4830. }
  4831. #u2427 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:714px;
  4835. top:1330px;
  4836. width:601px;
  4837. height:70px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:14px;
  4843. text-align:left;
  4844. line-height:30px;
  4845. }
  4846. #u2427 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:5px 10px 5px 10px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u2427_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. }
  4858. #u2428_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:492px;
  4864. height:70px;
  4865. }
  4866. #u2428 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:1315px;
  4870. top:1330px;
  4871. width:492px;
  4872. height:70px;
  4873. display:flex;
  4874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:14px;
  4878. text-align:left;
  4879. line-height:30px;
  4880. }
  4881. #u2428 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:5px 10px 5px 10px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u2428_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u2429_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:100px;
  4900. height:40px;
  4901. }
  4902. #u2429 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:1400px;
  4907. width:100px;
  4908. height:40px;
  4909. display:flex;
  4910. font-size:14px;
  4911. text-align:left;
  4912. line-height:30px;
  4913. }
  4914. #u2429 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:5px 10px 5px 10px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u2429_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. }
  4926. #u2430_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:121px;
  4932. height:40px;
  4933. }
  4934. #u2430 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:100px;
  4938. top:1400px;
  4939. width:121px;
  4940. height:40px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:14px;
  4946. text-align:left;
  4947. line-height:30px;
  4948. }
  4949. #u2430 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:5px 10px 5px 10px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u2430_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. }
  4961. #u2431_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:149px;
  4967. height:40px;
  4968. }
  4969. #u2431 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:221px;
  4973. top:1400px;
  4974. width:149px;
  4975. height:40px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:14px;
  4981. text-align:left;
  4982. line-height:30px;
  4983. }
  4984. #u2431 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:5px 10px 5px 10px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u2431_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. }
  4996. #u2432_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:245px;
  5002. height:40px;
  5003. }
  5004. #u2432 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:370px;
  5008. top:1400px;
  5009. width:245px;
  5010. height:40px;
  5011. display:flex;
  5012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:14px;
  5016. text-align:left;
  5017. line-height:30px;
  5018. }
  5019. #u2432 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:5px 10px 5px 10px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u2432_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. }
  5031. #u2433_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:99px;
  5037. height:40px;
  5038. }
  5039. #u2433 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:615px;
  5043. top:1400px;
  5044. width:99px;
  5045. height:40px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:14px;
  5051. text-align:left;
  5052. line-height:30px;
  5053. }
  5054. #u2433 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:5px 10px 5px 10px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u2433_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. }
  5066. #u2434_img {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:601px;
  5072. height:40px;
  5073. }
  5074. #u2434 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:714px;
  5078. top:1400px;
  5079. width:601px;
  5080. height:40px;
  5081. display:flex;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:14px;
  5086. text-align:left;
  5087. line-height:30px;
  5088. }
  5089. #u2434 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:5px 10px 5px 10px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u2434_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. }
  5101. #u2435_img {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:492px;
  5107. height:40px;
  5108. }
  5109. #u2435 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:1315px;
  5113. top:1400px;
  5114. width:492px;
  5115. height:40px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:14px;
  5121. text-align:left;
  5122. line-height:30px;
  5123. }
  5124. #u2435 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:5px 10px 5px 10px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u2435_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }