styles.css 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u29103_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u29103 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u29103 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u29103_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u29104_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u29104 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u29104 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u29104_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u29105_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u29105 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u29105 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u29105_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u29106 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u29107_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u29107 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u29107 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u29107_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u29108_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u29108 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u29108 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u29108_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u29109_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u29109 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u29109 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u29109_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u29110 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u29111_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u29111 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u29111 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u29111_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u29112_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u29112 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u29112 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u29112_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u29113 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u29114_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u29114 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u29114 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u29114_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u29115_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u29115 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u29115 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u29115_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u29116 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u29117_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u29117 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u29117 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u29117_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u29118_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u29118 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u29118 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u29118_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u29119 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u29120_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u29120 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u29120 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u29120_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u29121_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u29121 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u29121 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u29121_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u29122 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u29123_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u29123 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u29123 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u29123_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u29124_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u29124 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u29124 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u29124_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u29125 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u29126_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u29126 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u29126 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u29126_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u29127_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u29127 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u29127 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u29127_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u29128 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u29129_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u29129 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u29129 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u29129_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u29130_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u29130 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u29130 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u29130_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u29131 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u29132_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u29132 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u29132 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u29132_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u29133_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u29133 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u29133 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u29133_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u29134 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u29135_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u29135 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u29135 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u29135_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u29136_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u29136 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u29136 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u29136_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u29137_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u29137 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u29137 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u29137_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u29138_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u29138 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u29138 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u29138_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u29139_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u29139 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u29139 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u29139_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u29140_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u29140 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u29140 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u29140_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u29141 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u29142_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u29142 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u29142 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u29142_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u29143_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u29143 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u29143 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u29143_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u29144 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u29145_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u29145 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u29145 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u29145_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u29146_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u29146 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u29146 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u29146_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u29147 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u29148_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u29148_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u29148_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u29148 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u29148 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u29148_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u29148.disabled {
  1428. }
  1429. .u29148_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u29149_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u29149 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u29149 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u29149_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u29150_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u29150 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u29150 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u29150_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u29151_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u29151 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u29151 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u29151_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u29152_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:910px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u29152 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:320px;
  1558. width:1260px;
  1559. height:910px;
  1560. display:flex;
  1561. }
  1562. #u29152 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u29152_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u29153_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:1260px;
  1581. height:260px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. }
  1590. #u29153 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:330px;
  1594. top:50px;
  1595. width:1260px;
  1596. height:260px;
  1597. display:flex;
  1598. }
  1599. #u29153 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u29153_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u29154_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:109px;
  1618. height:50px;
  1619. background:inherit;
  1620. background-color:rgba(224, 231, 247, 0);
  1621. border:none;
  1622. border-radius:0px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1627. font-weight:500;
  1628. font-style:normal;
  1629. font-size:18px;
  1630. }
  1631. #u29154 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:350px;
  1635. top:50px;
  1636. width:109px;
  1637. height:50px;
  1638. display:flex;
  1639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1640. font-weight:500;
  1641. font-style:normal;
  1642. font-size:18px;
  1643. }
  1644. #u29154 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:0px 0px 0px 0px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u29154_text {
  1652. border-width:0px;
  1653. white-space:nowrap;
  1654. text-transform:none;
  1655. }
  1656. #u29155 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:352px;
  1660. top:391px;
  1661. width:1218px;
  1662. height:190px;
  1663. }
  1664. #u29156_img {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:152px;
  1670. height:38px;
  1671. }
  1672. #u29156 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:152px;
  1678. height:38px;
  1679. display:flex;
  1680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:14px;
  1684. color:#FFFFFF;
  1685. line-height:30px;
  1686. }
  1687. #u29156 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 0px 2px 0px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u29156_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. }
  1699. #u29157_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:152px;
  1705. height:38px;
  1706. }
  1707. #u29157 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:152px;
  1711. top:0px;
  1712. width:152px;
  1713. height:38px;
  1714. display:flex;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:14px;
  1719. color:#FFFFFF;
  1720. line-height:30px;
  1721. }
  1722. #u29157 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 0px 2px 0px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u29157_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. }
  1734. #u29158_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:152px;
  1740. height:38px;
  1741. }
  1742. #u29158 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:304px;
  1746. top:0px;
  1747. width:152px;
  1748. height:38px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:14px;
  1754. color:#FFFFFF;
  1755. line-height:30px;
  1756. }
  1757. #u29158 .text {
  1758. position:absolute;
  1759. align-self:center;
  1760. padding:2px 0px 2px 0px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u29158_text {
  1765. border-width:0px;
  1766. word-wrap:break-word;
  1767. text-transform:none;
  1768. }
  1769. #u29159_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:152px;
  1775. height:38px;
  1776. }
  1777. #u29159 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:456px;
  1781. top:0px;
  1782. width:152px;
  1783. height:38px;
  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. color:#FFFFFF;
  1790. line-height:30px;
  1791. }
  1792. #u29159 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 0px 2px 0px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u29159_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u29160_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:152px;
  1810. height:38px;
  1811. }
  1812. #u29160 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:608px;
  1816. top:0px;
  1817. width:152px;
  1818. height:38px;
  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. color:#FFFFFF;
  1825. line-height:30px;
  1826. }
  1827. #u29160 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 0px 2px 0px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u29160_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u29161_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:152px;
  1845. height:38px;
  1846. }
  1847. #u29161 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:760px;
  1851. top:0px;
  1852. width:152px;
  1853. height:38px;
  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. color:#FFFFFF;
  1860. line-height:30px;
  1861. }
  1862. #u29161 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 0px 2px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u29161_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u29162_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:152px;
  1880. height:38px;
  1881. }
  1882. #u29162 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:912px;
  1886. top:0px;
  1887. width:152px;
  1888. height:38px;
  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. color:#FFFFFF;
  1895. line-height:30px;
  1896. }
  1897. #u29162 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 0px 2px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u29162_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u29163_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:154px;
  1915. height:38px;
  1916. }
  1917. #u29163 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:1064px;
  1921. top:0px;
  1922. width:154px;
  1923. height:38px;
  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. color:#FFFFFF;
  1930. line-height:30px;
  1931. }
  1932. #u29163 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 0px 2px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u29163_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. }
  1944. #u29164_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:152px;
  1950. height:38px;
  1951. }
  1952. #u29164 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:38px;
  1957. width:152px;
  1958. height:38px;
  1959. display:flex;
  1960. font-size:14px;
  1961. line-height:30px;
  1962. }
  1963. #u29164 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:2px 0px 2px 0px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u29164_text {
  1971. border-width:0px;
  1972. word-wrap:break-word;
  1973. text-transform:none;
  1974. visibility:hidden;
  1975. }
  1976. #u29165_img {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:152px;
  1982. height:38px;
  1983. }
  1984. #u29165 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:152px;
  1988. top:38px;
  1989. width:152px;
  1990. height:38px;
  1991. display:flex;
  1992. font-size:14px;
  1993. line-height:30px;
  1994. }
  1995. #u29165 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 0px 2px 0px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u29165_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. visibility:hidden;
  2007. }
  2008. #u29166_img {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:152px;
  2014. height:38px;
  2015. }
  2016. #u29166 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:304px;
  2020. top:38px;
  2021. width:152px;
  2022. height:38px;
  2023. display:flex;
  2024. font-size:14px;
  2025. line-height:30px;
  2026. }
  2027. #u29166 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 0px 2px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u29166_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. visibility:hidden;
  2039. }
  2040. #u29167_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:152px;
  2046. height:38px;
  2047. }
  2048. #u29167 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:456px;
  2052. top:38px;
  2053. width:152px;
  2054. height:38px;
  2055. display:flex;
  2056. font-size:14px;
  2057. line-height:30px;
  2058. }
  2059. #u29167 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 0px 2px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u29167_text {
  2067. border-width:0px;
  2068. word-wrap:break-word;
  2069. text-transform:none;
  2070. visibility:hidden;
  2071. }
  2072. #u29168_img {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:152px;
  2078. height:38px;
  2079. }
  2080. #u29168 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:608px;
  2084. top:38px;
  2085. width:152px;
  2086. height:38px;
  2087. display:flex;
  2088. font-size:14px;
  2089. line-height:30px;
  2090. }
  2091. #u29168 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 0px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u29168_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u29169_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:152px;
  2110. height:38px;
  2111. }
  2112. #u29169 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:760px;
  2116. top:38px;
  2117. width:152px;
  2118. height:38px;
  2119. display:flex;
  2120. font-size:14px;
  2121. line-height:30px;
  2122. }
  2123. #u29169 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 0px 2px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u29169_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u29170_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:152px;
  2142. height:38px;
  2143. }
  2144. #u29170 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:912px;
  2148. top:38px;
  2149. width:152px;
  2150. height:38px;
  2151. display:flex;
  2152. font-size:14px;
  2153. line-height:30px;
  2154. }
  2155. #u29170 .text {
  2156. position:absolute;
  2157. align-self:center;
  2158. padding:2px 0px 2px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u29170_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. visibility:hidden;
  2167. }
  2168. #u29171_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:154px;
  2174. height:38px;
  2175. }
  2176. #u29171 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:1064px;
  2180. top:38px;
  2181. width:154px;
  2182. height:38px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:14px;
  2188. color:#1890FF;
  2189. line-height:30px;
  2190. }
  2191. #u29171 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 0px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u29171_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. }
  2203. #u29172_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:152px;
  2209. height:38px;
  2210. }
  2211. #u29172 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:76px;
  2216. width:152px;
  2217. height:38px;
  2218. display:flex;
  2219. font-size:14px;
  2220. line-height:30px;
  2221. }
  2222. #u29172 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 0px 2px 0px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u29172_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. visibility:hidden;
  2234. }
  2235. #u29173_img {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:152px;
  2241. height:38px;
  2242. }
  2243. #u29173 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:152px;
  2247. top:76px;
  2248. width:152px;
  2249. height:38px;
  2250. display:flex;
  2251. font-size:14px;
  2252. line-height:30px;
  2253. }
  2254. #u29173 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 0px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u29173_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u29174_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:152px;
  2273. height:38px;
  2274. }
  2275. #u29174 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:304px;
  2279. top:76px;
  2280. width:152px;
  2281. height:38px;
  2282. display:flex;
  2283. font-size:14px;
  2284. line-height:30px;
  2285. }
  2286. #u29174 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 0px 2px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u29174_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u29175_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:152px;
  2305. height:38px;
  2306. }
  2307. #u29175 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:456px;
  2311. top:76px;
  2312. width:152px;
  2313. height:38px;
  2314. display:flex;
  2315. font-size:14px;
  2316. line-height:30px;
  2317. }
  2318. #u29175 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 0px 2px 0px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u29175_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u29176_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:152px;
  2337. height:38px;
  2338. }
  2339. #u29176 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:608px;
  2343. top:76px;
  2344. width:152px;
  2345. height:38px;
  2346. display:flex;
  2347. font-size:14px;
  2348. line-height:30px;
  2349. }
  2350. #u29176 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 0px 2px 0px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u29176_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u29177_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:152px;
  2369. height:38px;
  2370. }
  2371. #u29177 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:760px;
  2375. top:76px;
  2376. width:152px;
  2377. height:38px;
  2378. display:flex;
  2379. font-size:14px;
  2380. line-height:30px;
  2381. }
  2382. #u29177 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 0px 2px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u29177_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u29178_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:152px;
  2401. height:38px;
  2402. }
  2403. #u29178 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:912px;
  2407. top:76px;
  2408. width:152px;
  2409. height:38px;
  2410. display:flex;
  2411. font-size:14px;
  2412. line-height:30px;
  2413. }
  2414. #u29178 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 0px 2px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u29178_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u29179_img {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:154px;
  2433. height:38px;
  2434. }
  2435. #u29179 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:1064px;
  2439. top:76px;
  2440. width:154px;
  2441. height:38px;
  2442. display:flex;
  2443. font-size:14px;
  2444. line-height:30px;
  2445. }
  2446. #u29179 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 0px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u29179_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u29180_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:152px;
  2465. height:38px;
  2466. }
  2467. #u29180 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:114px;
  2472. width:152px;
  2473. height:38px;
  2474. display:flex;
  2475. font-size:14px;
  2476. line-height:30px;
  2477. }
  2478. #u29180 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 0px 2px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u29180_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. visibility:hidden;
  2490. }
  2491. #u29181_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:152px;
  2497. height:38px;
  2498. }
  2499. #u29181 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:152px;
  2503. top:114px;
  2504. width:152px;
  2505. height:38px;
  2506. display:flex;
  2507. font-size:14px;
  2508. line-height:30px;
  2509. }
  2510. #u29181 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 0px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u29181_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u29182_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:152px;
  2529. height:38px;
  2530. }
  2531. #u29182 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:304px;
  2535. top:114px;
  2536. width:152px;
  2537. height:38px;
  2538. display:flex;
  2539. font-size:14px;
  2540. line-height:30px;
  2541. }
  2542. #u29182 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 0px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u29182_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u29183_img {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:152px;
  2561. height:38px;
  2562. }
  2563. #u29183 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:456px;
  2567. top:114px;
  2568. width:152px;
  2569. height:38px;
  2570. display:flex;
  2571. font-size:14px;
  2572. line-height:30px;
  2573. }
  2574. #u29183 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 0px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u29183_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u29184_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:152px;
  2593. height:38px;
  2594. }
  2595. #u29184 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:608px;
  2599. top:114px;
  2600. width:152px;
  2601. height:38px;
  2602. display:flex;
  2603. font-size:14px;
  2604. line-height:30px;
  2605. }
  2606. #u29184 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 0px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u29184_text {
  2614. border-width:0px;
  2615. word-wrap:break-word;
  2616. text-transform:none;
  2617. visibility:hidden;
  2618. }
  2619. #u29185_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:152px;
  2625. height:38px;
  2626. }
  2627. #u29185 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:760px;
  2631. top:114px;
  2632. width:152px;
  2633. height:38px;
  2634. display:flex;
  2635. font-size:14px;
  2636. line-height:30px;
  2637. }
  2638. #u29185 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 0px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u29185_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u29186_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:152px;
  2657. height:38px;
  2658. }
  2659. #u29186 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:912px;
  2663. top:114px;
  2664. width:152px;
  2665. height:38px;
  2666. display:flex;
  2667. font-size:14px;
  2668. line-height:30px;
  2669. }
  2670. #u29186 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 0px 2px 0px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u29186_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. visibility:hidden;
  2682. }
  2683. #u29187_img {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:154px;
  2689. height:38px;
  2690. }
  2691. #u29187 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:1064px;
  2695. top:114px;
  2696. width:154px;
  2697. height:38px;
  2698. display:flex;
  2699. font-size:14px;
  2700. line-height:30px;
  2701. }
  2702. #u29187 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 0px 2px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u29187_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. visibility:hidden;
  2714. }
  2715. #u29188_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:152px;
  2721. height:38px;
  2722. }
  2723. #u29188 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:152px;
  2728. width:152px;
  2729. height:38px;
  2730. display:flex;
  2731. font-size:14px;
  2732. line-height:30px;
  2733. }
  2734. #u29188 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 0px 2px 0px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u29188_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. visibility:hidden;
  2746. }
  2747. #u29189_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:152px;
  2753. height:38px;
  2754. }
  2755. #u29189 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:152px;
  2759. top:152px;
  2760. width:152px;
  2761. height:38px;
  2762. display:flex;
  2763. font-size:14px;
  2764. line-height:30px;
  2765. }
  2766. #u29189 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 0px 2px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u29189_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u29190_img {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:152px;
  2785. height:38px;
  2786. }
  2787. #u29190 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:304px;
  2791. top:152px;
  2792. width:152px;
  2793. height:38px;
  2794. display:flex;
  2795. font-size:14px;
  2796. line-height:30px;
  2797. }
  2798. #u29190 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 0px 2px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u29190_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. visibility:hidden;
  2810. }
  2811. #u29191_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:152px;
  2817. height:38px;
  2818. }
  2819. #u29191 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:456px;
  2823. top:152px;
  2824. width:152px;
  2825. height:38px;
  2826. display:flex;
  2827. font-size:14px;
  2828. line-height:30px;
  2829. }
  2830. #u29191 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 0px 2px 0px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u29191_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u29192_img {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:152px;
  2849. height:38px;
  2850. }
  2851. #u29192 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:608px;
  2855. top:152px;
  2856. width:152px;
  2857. height:38px;
  2858. display:flex;
  2859. font-size:14px;
  2860. line-height:30px;
  2861. }
  2862. #u29192 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 0px 2px 0px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u29192_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. visibility:hidden;
  2874. }
  2875. #u29193_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:152px;
  2881. height:38px;
  2882. }
  2883. #u29193 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:760px;
  2887. top:152px;
  2888. width:152px;
  2889. height:38px;
  2890. display:flex;
  2891. font-size:14px;
  2892. line-height:30px;
  2893. }
  2894. #u29193 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 0px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u29193_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u29194_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:152px;
  2913. height:38px;
  2914. }
  2915. #u29194 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:912px;
  2919. top:152px;
  2920. width:152px;
  2921. height:38px;
  2922. display:flex;
  2923. font-size:14px;
  2924. line-height:30px;
  2925. }
  2926. #u29194 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 0px 2px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u29194_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u29195_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:154px;
  2945. height:38px;
  2946. }
  2947. #u29195 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:1064px;
  2951. top:152px;
  2952. width:154px;
  2953. height:38px;
  2954. display:flex;
  2955. font-size:14px;
  2956. line-height:30px;
  2957. }
  2958. #u29195 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 0px 2px 0px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u29195_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u29196 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:0px;
  2977. height:0px;
  2978. }
  2979. #u29197_div {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:61px;
  2985. height:32px;
  2986. background:inherit;
  2987. background-color:rgba(24, 144, 255, 1);
  2988. border:none;
  2989. border-radius:4px;
  2990. -moz-box-shadow:none;
  2991. -webkit-box-shadow:none;
  2992. box-shadow:none;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:14px;
  2997. color:#FFFFFF;
  2998. }
  2999. #u29197 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:802px;
  3003. top:340px;
  3004. width:61px;
  3005. height:32px;
  3006. display:flex;
  3007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:14px;
  3011. color:#FFFFFF;
  3012. }
  3013. #u29197 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 16px 2px 16px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u29197_text {
  3021. border-width:0px;
  3022. white-space:nowrap;
  3023. text-transform:none;
  3024. }
  3025. #u29198_div {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:61px;
  3031. height:32px;
  3032. background:inherit;
  3033. background-color:rgba(255, 255, 255, 1);
  3034. box-sizing:border-box;
  3035. border-width:1px;
  3036. border-style:solid;
  3037. border-color:rgba(217, 217, 217, 1);
  3038. border-radius:4px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. color:rgba(0, 0, 0, 0.647058823529412);
  3047. line-height:21px;
  3048. }
  3049. #u29198 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:877px;
  3053. top:340px;
  3054. width:61px;
  3055. height:32px;
  3056. display:flex;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:14px;
  3061. color:rgba(0, 0, 0, 0.647058823529412);
  3062. line-height:21px;
  3063. }
  3064. #u29198 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 16px 2px 16px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u29198_text {
  3072. border-width:0px;
  3073. white-space:nowrap;
  3074. text-transform:none;
  3075. }
  3076. #u29199_div {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:61px;
  3082. height:32px;
  3083. background:inherit;
  3084. background-color:rgba(255, 255, 255, 1);
  3085. box-sizing:border-box;
  3086. border-width:1px;
  3087. border-style:solid;
  3088. border-color:rgba(217, 217, 217, 1);
  3089. border-radius:4px;
  3090. -moz-box-shadow:none;
  3091. -webkit-box-shadow:none;
  3092. box-shadow:none;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:14px;
  3097. color:rgba(0, 0, 0, 0.647058823529412);
  3098. line-height:21px;
  3099. }
  3100. #u29199 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:1509px;
  3104. top:59px;
  3105. width:61px;
  3106. height:32px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. color:rgba(0, 0, 0, 0.647058823529412);
  3113. line-height:21px;
  3114. }
  3115. #u29199 .text {
  3116. position:absolute;
  3117. align-self:center;
  3118. padding:2px 16px 2px 16px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u29199_text {
  3123. border-width:0px;
  3124. white-space:nowrap;
  3125. text-transform:none;
  3126. }
  3127. #u29200 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:0px;
  3133. height:0px;
  3134. }
  3135. #u29201_div {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:140px;
  3141. height:30px;
  3142. background:inherit;
  3143. background-color:rgba(255, 255, 255, 1);
  3144. box-sizing:border-box;
  3145. border-width:1px;
  3146. border-style:solid;
  3147. border-color:rgba(201, 201, 201, 1);
  3148. border-radius:4px;
  3149. -moz-box-shadow:none;
  3150. -webkit-box-shadow:none;
  3151. box-shadow:none;
  3152. font-family:'Microsoft YaHei', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:14px;
  3156. color:#CCCCCC;
  3157. text-align:left;
  3158. }
  3159. #u29201 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:502px;
  3163. top:341px;
  3164. width:140px;
  3165. height:30px;
  3166. display:flex;
  3167. font-family:'Microsoft YaHei', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:14px;
  3171. color:#CCCCCC;
  3172. text-align:left;
  3173. }
  3174. #u29201 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 8px 2px 8px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u29201_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u29202_input {
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:130px;
  3192. height:25px;
  3193. padding:2px 2px 2px 2px;
  3194. font-family:'Microsoft YaHei', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:13px;
  3198. letter-spacing:normal;
  3199. color:#000000;
  3200. vertical-align:none;
  3201. text-align:left;
  3202. text-transform:none;
  3203. background-color:transparent;
  3204. border-color:transparent;
  3205. }
  3206. #u29202_input.disabled {
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:130px;
  3211. height:25px;
  3212. padding:2px 2px 2px 2px;
  3213. font-family:'Microsoft YaHei', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:13px;
  3217. letter-spacing:normal;
  3218. color:#000000;
  3219. vertical-align:none;
  3220. text-align:left;
  3221. text-transform:none;
  3222. background-color:transparent;
  3223. border-color:transparent;
  3224. }
  3225. #u29202_div {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:130px;
  3231. height:25px;
  3232. background:inherit;
  3233. background-color:rgba(255, 255, 255, 1);
  3234. border:none;
  3235. border-radius:0px;
  3236. -moz-box-shadow:none;
  3237. -webkit-box-shadow:none;
  3238. box-shadow:none;
  3239. font-family:'Microsoft YaHei', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. }
  3243. #u29202 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:507px;
  3247. top:342px;
  3248. width:130px;
  3249. height:25px;
  3250. display:flex;
  3251. font-family:'Microsoft YaHei', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. }
  3255. #u29202 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u29202_div.disabled {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:130px;
  3268. height:25px;
  3269. background:inherit;
  3270. background-color:rgba(240, 240, 240, 1);
  3271. border:none;
  3272. border-radius:0px;
  3273. -moz-box-shadow:none;
  3274. -webkit-box-shadow:none;
  3275. box-shadow:none;
  3276. font-family:'Microsoft YaHei', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. }
  3280. #u29202.disabled {
  3281. }
  3282. #u29203 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:0px;
  3288. height:0px;
  3289. }
  3290. #u29204_div {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:140px;
  3296. height:30px;
  3297. background:inherit;
  3298. background-color:rgba(255, 255, 255, 1);
  3299. box-sizing:border-box;
  3300. border-width:1px;
  3301. border-style:solid;
  3302. border-color:rgba(201, 201, 201, 1);
  3303. border-radius:4px;
  3304. -moz-box-shadow:none;
  3305. -webkit-box-shadow:none;
  3306. box-shadow:none;
  3307. font-family:'Microsoft YaHei', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:14px;
  3311. color:#CCCCCC;
  3312. text-align:left;
  3313. }
  3314. #u29204 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:652px;
  3318. top:341px;
  3319. width:140px;
  3320. height:30px;
  3321. display:flex;
  3322. font-family:'Microsoft YaHei', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:14px;
  3326. color:#CCCCCC;
  3327. text-align:left;
  3328. }
  3329. #u29204 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 8px 2px 8px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u29204_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u29205_input {
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:130px;
  3347. height:25px;
  3348. padding:2px 2px 2px 2px;
  3349. font-family:'Microsoft YaHei', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:13px;
  3353. letter-spacing:normal;
  3354. color:#000000;
  3355. vertical-align:none;
  3356. text-align:left;
  3357. text-transform:none;
  3358. background-color:transparent;
  3359. border-color:transparent;
  3360. }
  3361. #u29205_input.disabled {
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:130px;
  3366. height:25px;
  3367. padding:2px 2px 2px 2px;
  3368. font-family:'Microsoft YaHei', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:13px;
  3372. letter-spacing:normal;
  3373. color:#000000;
  3374. vertical-align:none;
  3375. text-align:left;
  3376. text-transform:none;
  3377. background-color:transparent;
  3378. border-color:transparent;
  3379. }
  3380. #u29205_div {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:130px;
  3386. height:25px;
  3387. background:inherit;
  3388. background-color:rgba(255, 255, 255, 1);
  3389. border:none;
  3390. border-radius:0px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'Microsoft YaHei', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. }
  3398. #u29205 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:657px;
  3402. top:342px;
  3403. width:130px;
  3404. height:25px;
  3405. display:flex;
  3406. font-family:'Microsoft YaHei', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. }
  3410. #u29205 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u29205_div.disabled {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:130px;
  3423. height:25px;
  3424. background:inherit;
  3425. background-color:rgba(240, 240, 240, 1);
  3426. border:none;
  3427. border-radius:0px;
  3428. -moz-box-shadow:none;
  3429. -webkit-box-shadow:none;
  3430. box-shadow:none;
  3431. font-family:'Microsoft YaHei', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. }
  3435. #u29205.disabled {
  3436. }
  3437. #u29206 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:0px;
  3443. height:0px;
  3444. }
  3445. #u29207_div {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:140px;
  3451. height:30px;
  3452. background:inherit;
  3453. background-color:rgba(255, 255, 255, 1);
  3454. box-sizing:border-box;
  3455. border-width:1px;
  3456. border-style:solid;
  3457. border-color:rgba(215, 215, 215, 1);
  3458. border-radius:4px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. font-size:14px;
  3463. }
  3464. #u29207 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:352px;
  3468. top:341px;
  3469. width:140px;
  3470. height:30px;
  3471. display:flex;
  3472. font-size:14px;
  3473. }
  3474. #u29207 .text {
  3475. position:absolute;
  3476. align-self:center;
  3477. padding:2px 2px 2px 2px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u29207_text {
  3482. border-width:0px;
  3483. word-wrap:break-word;
  3484. text-transform:none;
  3485. visibility:hidden;
  3486. }
  3487. #u29208_input {
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:134px;
  3492. height:23px;
  3493. padding:2px 2px 2px 2px;
  3494. font-family:'ArialMT', 'Arial', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:14px;
  3498. letter-spacing:normal;
  3499. color:#AAAAAA;
  3500. vertical-align:none;
  3501. text-align:left;
  3502. text-transform:none;
  3503. background-color:transparent;
  3504. border-color:transparent;
  3505. }
  3506. #u29208_input.disabled {
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:134px;
  3511. height:23px;
  3512. padding:2px 2px 2px 2px;
  3513. font-family:'ArialMT', 'Arial', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:14px;
  3517. letter-spacing:normal;
  3518. color:#AAAAAA;
  3519. vertical-align:none;
  3520. text-align:left;
  3521. text-transform:none;
  3522. background-color:transparent;
  3523. border-color:transparent;
  3524. }
  3525. #u29208_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:134px;
  3531. height:23px;
  3532. background:inherit;
  3533. background-color:rgba(255, 255, 255, 1);
  3534. border:none;
  3535. border-radius:0px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-size:14px;
  3540. color:#AAAAAA;
  3541. }
  3542. #u29208 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:356px;
  3546. top:343px;
  3547. width:134px;
  3548. height:23px;
  3549. display:flex;
  3550. font-size:14px;
  3551. color:#AAAAAA;
  3552. }
  3553. #u29208 .text {
  3554. position:absolute;
  3555. align-self:flex-start;
  3556. padding:2px 2px 2px 2px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u29208_div.disabled {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:134px;
  3566. height:23px;
  3567. background:inherit;
  3568. background-color:rgba(240, 240, 240, 1);
  3569. border:none;
  3570. border-radius:0px;
  3571. -moz-box-shadow:none;
  3572. -webkit-box-shadow:none;
  3573. box-shadow:none;
  3574. font-size:14px;
  3575. color:#AAAAAA;
  3576. }
  3577. #u29208.disabled {
  3578. }
  3579. .u29208_input_option {
  3580. font-size:14px;
  3581. }
  3582. #u29209_div {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:1220px;
  3588. height:180px;
  3589. background:inherit;
  3590. background-color:rgba(255, 255, 255, 1);
  3591. box-sizing:border-box;
  3592. border-width:1px;
  3593. border-style:solid;
  3594. border-color:rgba(217, 217, 217, 1);
  3595. border-radius:4px;
  3596. -moz-box-shadow:none;
  3597. -webkit-box-shadow:none;
  3598. box-shadow:none;
  3599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:14px;
  3603. color:rgba(0, 0, 0, 0.647058823529412);
  3604. line-height:21px;
  3605. }
  3606. #u29209 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:350px;
  3610. top:110px;
  3611. width:1220px;
  3612. height:180px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. color:rgba(0, 0, 0, 0.647058823529412);
  3619. line-height:21px;
  3620. }
  3621. #u29209 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:2px 16px 2px 16px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u29209_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u29210_div {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:594px;
  3640. height:30px;
  3641. background:inherit;
  3642. background-color:rgba(224, 231, 247, 0);
  3643. border:none;
  3644. border-radius:0px;
  3645. -moz-box-shadow:none;
  3646. -webkit-box-shadow:none;
  3647. box-shadow:none;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. line-height:30px;
  3652. }
  3653. #u29210 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:370px;
  3657. top:120px;
  3658. width:594px;
  3659. height:30px;
  3660. display:flex;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. line-height:30px;
  3665. }
  3666. #u29210 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:0px 0px 0px 0px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u29210_text {
  3674. border-width:0px;
  3675. white-space:nowrap;
  3676. text-transform:none;
  3677. }
  3678. #u29211 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:0px;
  3684. height:0px;
  3685. }
  3686. #u29212_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:24px;
  3692. height:24px;
  3693. }
  3694. #u29212 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:370px;
  3698. top:158px;
  3699. width:24px;
  3700. height:24px;
  3701. display:flex;
  3702. font-size:14px;
  3703. color:#FFFFFF;
  3704. }
  3705. #u29212 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u29212_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. }
  3717. #u29213_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:92px;
  3723. height:20px;
  3724. background:inherit;
  3725. background-color:rgba(224, 231, 247, 0);
  3726. border:none;
  3727. border-radius:0px;
  3728. -moz-box-shadow:none;
  3729. -webkit-box-shadow:none;
  3730. box-shadow:none;
  3731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3732. font-weight:500;
  3733. font-style:normal;
  3734. }
  3735. #u29213 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:404px;
  3739. top:160px;
  3740. width:92px;
  3741. height:20px;
  3742. display:flex;
  3743. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3744. font-weight:500;
  3745. font-style:normal;
  3746. }
  3747. #u29213 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:0px 0px 0px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u29213_text {
  3755. border-width:0px;
  3756. white-space:nowrap;
  3757. text-transform:none;
  3758. }
  3759. #u29214 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:0px;
  3765. height:0px;
  3766. }
  3767. #u29215_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:24px;
  3773. height:24px;
  3774. }
  3775. #u29215 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:554px;
  3779. top:158px;
  3780. width:24px;
  3781. height:24px;
  3782. display:flex;
  3783. font-size:14px;
  3784. color:#FFFFFF;
  3785. }
  3786. #u29215 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 2px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u29215_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. }
  3798. #u29216_div {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:120px;
  3804. height:20px;
  3805. background:inherit;
  3806. background-color:rgba(224, 231, 247, 0);
  3807. border:none;
  3808. border-radius:0px;
  3809. -moz-box-shadow:none;
  3810. -webkit-box-shadow:none;
  3811. box-shadow:none;
  3812. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3813. font-weight:500;
  3814. font-style:normal;
  3815. }
  3816. #u29216 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:588px;
  3820. top:160px;
  3821. width:120px;
  3822. height:20px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3825. font-weight:500;
  3826. font-style:normal;
  3827. }
  3828. #u29216 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u29216_text {
  3836. border-width:0px;
  3837. white-space:nowrap;
  3838. text-transform:none;
  3839. }
  3840. #u29217 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:0px;
  3846. height:0px;
  3847. }
  3848. #u29218_img {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:24px;
  3854. height:24px;
  3855. }
  3856. #u29218 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:922px;
  3860. top:158px;
  3861. width:24px;
  3862. height:24px;
  3863. display:flex;
  3864. font-size:14px;
  3865. color:#FFFFFF;
  3866. }
  3867. #u29218 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:2px 2px 2px 2px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u29218_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. }
  3879. #u29219_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:85px;
  3885. height:20px;
  3886. background:inherit;
  3887. background-color:rgba(224, 231, 247, 0);
  3888. border:none;
  3889. border-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3894. font-weight:500;
  3895. font-style:normal;
  3896. }
  3897. #u29219 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:956px;
  3901. top:160px;
  3902. width:85px;
  3903. height:20px;
  3904. display:flex;
  3905. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3906. font-weight:500;
  3907. font-style:normal;
  3908. }
  3909. #u29219 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:0px 0px 0px 0px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u29219_text {
  3917. border-width:0px;
  3918. white-space:nowrap;
  3919. text-transform:none;
  3920. }
  3921. #u29220 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:0px;
  3927. height:0px;
  3928. }
  3929. #u29221_img {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:24px;
  3935. height:24px;
  3936. }
  3937. #u29221 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:1088px;
  3941. top:158px;
  3942. width:24px;
  3943. height:24px;
  3944. display:flex;
  3945. font-size:14px;
  3946. color:#FFFFFF;
  3947. }
  3948. #u29221 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 2px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u29221_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. }
  3960. #u29222_div {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:85px;
  3966. height:20px;
  3967. background:inherit;
  3968. background-color:rgba(224, 231, 247, 0);
  3969. border:none;
  3970. border-radius:0px;
  3971. -moz-box-shadow:none;
  3972. -webkit-box-shadow:none;
  3973. box-shadow:none;
  3974. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3975. font-weight:500;
  3976. font-style:normal;
  3977. }
  3978. #u29222 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:1122px;
  3982. top:160px;
  3983. width:85px;
  3984. height:20px;
  3985. display:flex;
  3986. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3987. font-weight:500;
  3988. font-style:normal;
  3989. }
  3990. #u29222 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:0px 0px 0px 0px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u29222_text {
  3998. border-width:0px;
  3999. white-space:nowrap;
  4000. text-transform:none;
  4001. }
  4002. #u29223_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:140px;
  4008. height:14px;
  4009. background:inherit;
  4010. background-color:rgba(255, 255, 255, 0);
  4011. border:none;
  4012. border-radius:0px;
  4013. -moz-box-shadow:none;
  4014. -webkit-box-shadow:none;
  4015. box-shadow:none;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:10px;
  4020. color:#1890FF;
  4021. }
  4022. #u29223 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:370px;
  4026. top:192px;
  4027. width:140px;
  4028. height:14px;
  4029. display:flex;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:10px;
  4034. color:#1890FF;
  4035. }
  4036. #u29223 .text {
  4037. position:absolute;
  4038. align-self:flex-start;
  4039. padding:0px 0px 0px 0px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u29223_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. }
  4048. #u29224_div {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:140px;
  4054. height:28px;
  4055. background:inherit;
  4056. background-color:rgba(255, 255, 255, 0);
  4057. border:none;
  4058. border-radius:0px;
  4059. -moz-box-shadow:none;
  4060. -webkit-box-shadow:none;
  4061. box-shadow:none;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:10px;
  4066. color:#1890FF;
  4067. }
  4068. #u29224 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:561px;
  4072. top:195px;
  4073. width:140px;
  4074. height:28px;
  4075. display:flex;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:10px;
  4080. color:#1890FF;
  4081. }
  4082. #u29224 .text {
  4083. position:absolute;
  4084. align-self:flex-start;
  4085. padding:0px 0px 0px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u29224_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. }
  4094. #u29225_div {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:140px;
  4100. height:28px;
  4101. background:inherit;
  4102. background-color:rgba(255, 255, 255, 0);
  4103. border:none;
  4104. border-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:10px;
  4112. color:#1890FF;
  4113. }
  4114. #u29225 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:755px;
  4118. top:195px;
  4119. width:140px;
  4120. height:28px;
  4121. display:flex;
  4122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:10px;
  4126. color:#1890FF;
  4127. }
  4128. #u29225 .text {
  4129. position:absolute;
  4130. align-self:flex-start;
  4131. padding:0px 0px 0px 0px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u29225_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. }
  4140. #u29226_div {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:140px;
  4146. height:28px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 0);
  4149. border:none;
  4150. border-radius:0px;
  4151. -moz-box-shadow:none;
  4152. -webkit-box-shadow:none;
  4153. box-shadow:none;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:10px;
  4158. color:#D9001B;
  4159. }
  4160. #u29226 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:755px;
  4164. top:230px;
  4165. width:140px;
  4166. height:28px;
  4167. display:flex;
  4168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4169. font-weight:400;
  4170. font-style:normal;
  4171. font-size:10px;
  4172. color:#D9001B;
  4173. }
  4174. #u29226 .text {
  4175. position:absolute;
  4176. align-self:flex-start;
  4177. padding:0px 0px 0px 0px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u29226_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. }
  4186. #u29227 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:0px;
  4192. height:0px;
  4193. }
  4194. #u29228_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:24px;
  4200. height:24px;
  4201. }
  4202. #u29228 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:755px;
  4206. top:158px;
  4207. width:24px;
  4208. height:24px;
  4209. display:flex;
  4210. font-size:14px;
  4211. color:#FFFFFF;
  4212. }
  4213. #u29228 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u29228_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. }
  4225. #u29229_div {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:85px;
  4231. height:20px;
  4232. background:inherit;
  4233. background-color:rgba(224, 231, 247, 0);
  4234. border:none;
  4235. border-radius:0px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4240. font-weight:500;
  4241. font-style:normal;
  4242. }
  4243. #u29229 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:789px;
  4247. top:160px;
  4248. width:85px;
  4249. height:20px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4252. font-weight:500;
  4253. font-style:normal;
  4254. }
  4255. #u29229 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:0px 0px 0px 0px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u29229_text {
  4263. border-width:0px;
  4264. white-space:nowrap;
  4265. text-transform:none;
  4266. }
  4267. #u29230 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:0px;
  4273. height:0px;
  4274. }
  4275. #u29231_img {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:24px;
  4281. height:24px;
  4282. }
  4283. #u29231 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:1255px;
  4287. top:158px;
  4288. width:24px;
  4289. height:24px;
  4290. display:flex;
  4291. font-size:14px;
  4292. color:#FFFFFF;
  4293. }
  4294. #u29231 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 2px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u29231_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. }
  4306. #u29232_div {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:85px;
  4312. height:20px;
  4313. background:inherit;
  4314. background-color:rgba(224, 231, 247, 0);
  4315. border:none;
  4316. border-radius:0px;
  4317. -moz-box-shadow:none;
  4318. -webkit-box-shadow:none;
  4319. box-shadow:none;
  4320. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4321. font-weight:500;
  4322. font-style:normal;
  4323. }
  4324. #u29232 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:1289px;
  4328. top:160px;
  4329. width:85px;
  4330. height:20px;
  4331. display:flex;
  4332. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4333. font-weight:500;
  4334. font-style:normal;
  4335. }
  4336. #u29232 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:0px 0px 0px 0px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u29232_text {
  4344. border-width:0px;
  4345. white-space:nowrap;
  4346. text-transform:none;
  4347. }
  4348. #u29233 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:0px;
  4354. height:0px;
  4355. }
  4356. #u29234_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:24px;
  4362. height:24px;
  4363. }
  4364. #u29234 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:1421px;
  4368. top:158px;
  4369. width:24px;
  4370. height:24px;
  4371. display:flex;
  4372. font-size:14px;
  4373. color:#FFFFFF;
  4374. }
  4375. #u29234 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 2px 2px 2px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u29234_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. }
  4387. #u29235_div {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:85px;
  4393. height:20px;
  4394. background:inherit;
  4395. background-color:rgba(224, 231, 247, 0);
  4396. border:none;
  4397. border-radius:0px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4402. font-weight:500;
  4403. font-style:normal;
  4404. }
  4405. #u29235 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:1455px;
  4409. top:160px;
  4410. width:85px;
  4411. height:20px;
  4412. display:flex;
  4413. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4414. font-weight:500;
  4415. font-style:normal;
  4416. }
  4417. #u29235 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:0px 0px 0px 0px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u29235_text {
  4425. border-width:0px;
  4426. white-space:nowrap;
  4427. text-transform:none;
  4428. }
  4429. #u29236_div {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:140px;
  4435. height:28px;
  4436. background:inherit;
  4437. background-color:rgba(255, 255, 255, 0);
  4438. border:none;
  4439. border-radius:0px;
  4440. -moz-box-shadow:none;
  4441. -webkit-box-shadow:none;
  4442. box-shadow:none;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:10px;
  4447. color:#D9001B;
  4448. }
  4449. #u29236 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:561px;
  4453. top:230px;
  4454. width:140px;
  4455. height:28px;
  4456. display:flex;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:10px;
  4461. color:#D9001B;
  4462. }
  4463. #u29236 .text {
  4464. position:absolute;
  4465. align-self:flex-start;
  4466. padding:0px 0px 0px 0px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u29236_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. }
  4475. #u29237_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:140px;
  4481. height:28px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:10px;
  4493. color:#1890FF;
  4494. }
  4495. #u29237 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:922px;
  4499. top:195px;
  4500. width:140px;
  4501. height:28px;
  4502. display:flex;
  4503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:10px;
  4507. color:#1890FF;
  4508. }
  4509. #u29237 .text {
  4510. position:absolute;
  4511. align-self:flex-start;
  4512. padding:0px 0px 0px 0px;
  4513. box-sizing:border-box;
  4514. width:100%;
  4515. }
  4516. #u29237_text {
  4517. border-width:0px;
  4518. word-wrap:break-word;
  4519. text-transform:none;
  4520. }
  4521. #u29238_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:140px;
  4527. height:28px;
  4528. background:inherit;
  4529. background-color:rgba(255, 255, 255, 0);
  4530. border:none;
  4531. border-radius:0px;
  4532. -moz-box-shadow:none;
  4533. -webkit-box-shadow:none;
  4534. box-shadow:none;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:10px;
  4539. color:#D9001B;
  4540. }
  4541. #u29238 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:922px;
  4545. top:230px;
  4546. width:140px;
  4547. height:28px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:10px;
  4553. color:#D9001B;
  4554. }
  4555. #u29238 .text {
  4556. position:absolute;
  4557. align-self:flex-start;
  4558. padding:0px 0px 0px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u29238_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. }
  4567. #u29239_div {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:140px;
  4573. height:14px;
  4574. background:inherit;
  4575. background-color:rgba(255, 255, 255, 0);
  4576. border:none;
  4577. border-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:10px;
  4585. color:#1890FF;
  4586. }
  4587. #u29239 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:1088px;
  4591. top:195px;
  4592. width:140px;
  4593. height:14px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:10px;
  4599. color:#1890FF;
  4600. }
  4601. #u29239 .text {
  4602. position:absolute;
  4603. align-self:flex-start;
  4604. padding:0px 0px 0px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u29239_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. }
  4613. #u29240_div {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:140px;
  4619. height:28px;
  4620. background:inherit;
  4621. background-color:rgba(255, 255, 255, 0);
  4622. border:none;
  4623. border-radius:0px;
  4624. -moz-box-shadow:none;
  4625. -webkit-box-shadow:none;
  4626. box-shadow:none;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:10px;
  4631. color:#D9001B;
  4632. }
  4633. #u29240 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:1090px;
  4637. top:216px;
  4638. width:140px;
  4639. height:28px;
  4640. display:flex;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:10px;
  4645. color:#D9001B;
  4646. }
  4647. #u29240 .text {
  4648. position:absolute;
  4649. align-self:flex-start;
  4650. padding:0px 0px 0px 0px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u29240_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. }
  4659. #u29241_div {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:140px;
  4665. height:42px;
  4666. background:inherit;
  4667. background-color:rgba(255, 255, 255, 0);
  4668. border:none;
  4669. border-radius:0px;
  4670. -moz-box-shadow:none;
  4671. -webkit-box-shadow:none;
  4672. box-shadow:none;
  4673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:10px;
  4677. color:#1890FF;
  4678. }
  4679. #u29241 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:1255px;
  4683. top:188px;
  4684. width:140px;
  4685. height:42px;
  4686. display:flex;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:10px;
  4691. color:#1890FF;
  4692. }
  4693. #u29241 .text {
  4694. position:absolute;
  4695. align-self:flex-start;
  4696. padding:0px 0px 0px 0px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u29241_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. }
  4705. #u29242_div {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:140px;
  4711. height:42px;
  4712. background:inherit;
  4713. background-color:rgba(255, 255, 255, 0);
  4714. border:none;
  4715. border-radius:0px;
  4716. -moz-box-shadow:none;
  4717. -webkit-box-shadow:none;
  4718. box-shadow:none;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:10px;
  4723. color:#1890FF;
  4724. }
  4725. #u29242 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:1421px;
  4729. top:188px;
  4730. width:140px;
  4731. height:42px;
  4732. display:flex;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:10px;
  4737. color:#1890FF;
  4738. }
  4739. #u29242 .text {
  4740. position:absolute;
  4741. align-self:flex-start;
  4742. padding:0px 0px 0px 0px;
  4743. box-sizing:border-box;
  4744. width:100%;
  4745. }
  4746. #u29242_text {
  4747. border-width:0px;
  4748. word-wrap:break-word;
  4749. text-transform:none;
  4750. }
  4751. #u29243_div {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:140px;
  4757. height:28px;
  4758. background:inherit;
  4759. background-color:rgba(255, 255, 255, 0);
  4760. border:none;
  4761. border-radius:0px;
  4762. -moz-box-shadow:none;
  4763. -webkit-box-shadow:none;
  4764. box-shadow:none;
  4765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4766. font-weight:400;
  4767. font-style:normal;
  4768. font-size:10px;
  4769. color:#D9001B;
  4770. }
  4771. #u29243 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:1421px;
  4775. top:240px;
  4776. width:140px;
  4777. height:28px;
  4778. display:flex;
  4779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:10px;
  4783. color:#D9001B;
  4784. }
  4785. #u29243 .text {
  4786. position:absolute;
  4787. align-self:flex-start;
  4788. padding:0px 0px 0px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u29243_text {
  4793. border-width:0px;
  4794. word-wrap:break-word;
  4795. text-transform:none;
  4796. }
  4797. #u29244_div {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:29px;
  4803. height:50px;
  4804. background:inherit;
  4805. background-color:rgba(224, 231, 247, 0);
  4806. border:none;
  4807. border-radius:0px;
  4808. -moz-box-shadow:none;
  4809. -webkit-box-shadow:none;
  4810. box-shadow:none;
  4811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4812. font-weight:500;
  4813. font-style:normal;
  4814. color:#1890FF;
  4815. text-align:right;
  4816. }
  4817. #u29244 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:1531px;
  4821. top:110px;
  4822. width:29px;
  4823. height:50px;
  4824. display:flex;
  4825. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4826. font-weight:500;
  4827. font-style:normal;
  4828. color:#1890FF;
  4829. text-align:right;
  4830. }
  4831. #u29244 .text {
  4832. position:absolute;
  4833. align-self:center;
  4834. padding:0px 0px 0px 0px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u29244_text {
  4839. border-width:0px;
  4840. white-space:nowrap;
  4841. text-transform:none;
  4842. }
  4843. #u29245 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:0px;
  4849. height:0px;
  4850. }
  4851. #u29246_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:200px;
  4857. height:1180px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 1);
  4860. border:none;
  4861. border-radius:0px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. }
  4866. #u29246 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:120px;
  4870. top:50px;
  4871. width:200px;
  4872. height:1180px;
  4873. display:flex;
  4874. }
  4875. #u29246 .text {
  4876. position:absolute;
  4877. align-self:center;
  4878. padding:2px 2px 2px 2px;
  4879. box-sizing:border-box;
  4880. width:100%;
  4881. }
  4882. #u29246_text {
  4883. border-width:0px;
  4884. word-wrap:break-word;
  4885. text-transform:none;
  4886. visibility:hidden;
  4887. }
  4888. #u29247_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:200px;
  4894. height:60px;
  4895. background:inherit;
  4896. background-color:rgba(224, 231, 247, 1);
  4897. border:none;
  4898. border-radius:0px;
  4899. -moz-box-shadow:none;
  4900. -webkit-box-shadow:none;
  4901. box-shadow:none;
  4902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4903. font-weight:500;
  4904. font-style:normal;
  4905. font-size:18px;
  4906. }
  4907. #u29247 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:120px;
  4911. top:50px;
  4912. width:200px;
  4913. height:60px;
  4914. display:flex;
  4915. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4916. font-weight:500;
  4917. font-style:normal;
  4918. font-size:18px;
  4919. }
  4920. #u29247 .text {
  4921. position:absolute;
  4922. align-self:center;
  4923. padding:0px 0px 0px 20px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u29247_text {
  4928. border-width:0px;
  4929. word-wrap:break-word;
  4930. text-transform:none;
  4931. }
  4932. #u29248_div {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:97px;
  4938. height:22px;
  4939. background:inherit;
  4940. background-color:rgba(255, 255, 255, 0);
  4941. border:none;
  4942. border-radius:0px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:16px;
  4950. }
  4951. #u29248 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:146px;
  4955. top:167px;
  4956. width:97px;
  4957. height:22px;
  4958. display:flex;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:16px;
  4963. }
  4964. #u29248 .text {
  4965. position:absolute;
  4966. align-self:flex-start;
  4967. padding:0px 0px 0px 0px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u29248_text {
  4972. border-width:0px;
  4973. white-space:nowrap;
  4974. text-transform:none;
  4975. }
  4976. #u29249_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:97px;
  4982. height:22px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 0);
  4985. border:none;
  4986. border-radius:0px;
  4987. -moz-box-shadow:none;
  4988. -webkit-box-shadow:none;
  4989. box-shadow:none;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:16px;
  4994. }
  4995. #u29249 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:146px;
  4999. top:209px;
  5000. width:97px;
  5001. height:22px;
  5002. display:flex;
  5003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:16px;
  5007. }
  5008. #u29249 .text {
  5009. position:absolute;
  5010. align-self:flex-start;
  5011. padding:0px 0px 0px 0px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u29249_text {
  5016. border-width:0px;
  5017. white-space:nowrap;
  5018. text-transform:none;
  5019. }
  5020. #u29250_div {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:73px;
  5026. height:17px;
  5027. background:inherit;
  5028. background-color:rgba(255, 255, 255, 0);
  5029. border:none;
  5030. border-radius:0px;
  5031. -moz-box-shadow:none;
  5032. -webkit-box-shadow:none;
  5033. box-shadow:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:12px;
  5038. color:#AAAAAA;
  5039. }
  5040. #u29250 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:146px;
  5044. top:130px;
  5045. width:73px;
  5046. height:17px;
  5047. display:flex;
  5048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#AAAAAA;
  5053. }
  5054. #u29250 .text {
  5055. position:absolute;
  5056. align-self:flex-start;
  5057. padding:0px 0px 0px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u29250_text {
  5062. border-width:0px;
  5063. white-space:nowrap;
  5064. text-transform:none;
  5065. }
  5066. #u29251_div {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:73px;
  5072. height:17px;
  5073. background:inherit;
  5074. background-color:rgba(255, 255, 255, 0);
  5075. border:none;
  5076. border-radius:0px;
  5077. -moz-box-shadow:none;
  5078. -webkit-box-shadow:none;
  5079. box-shadow:none;
  5080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. color:#AAAAAA;
  5085. }
  5086. #u29251 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:146px;
  5090. top:397px;
  5091. width:73px;
  5092. height:17px;
  5093. display:flex;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. color:#AAAAAA;
  5099. }
  5100. #u29251 .text {
  5101. position:absolute;
  5102. align-self:flex-start;
  5103. padding:0px 0px 0px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u29251_text {
  5108. border-width:0px;
  5109. white-space:nowrap;
  5110. text-transform:none;
  5111. }
  5112. #u29252_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:201px;
  5118. height:2px;
  5119. }
  5120. #u29252 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:120px;
  5124. top:375px;
  5125. width:200px;
  5126. height:1px;
  5127. display:flex;
  5128. }
  5129. #u29252 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 2px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u29252_text {
  5137. border-width:0px;
  5138. word-wrap:break-word;
  5139. text-transform:none;
  5140. visibility:hidden;
  5141. }
  5142. #u29253_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:97px;
  5148. height:22px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:16px;
  5160. }
  5161. #u29253 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:146px;
  5165. top:435px;
  5166. width:97px;
  5167. height:22px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:16px;
  5173. }
  5174. #u29253 .text {
  5175. position:absolute;
  5176. align-self:flex-start;
  5177. padding:0px 0px 0px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u29253_text {
  5182. border-width:0px;
  5183. white-space:nowrap;
  5184. text-transform:none;
  5185. }
  5186. #u29254_div {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:97px;
  5192. height:22px;
  5193. background:inherit;
  5194. background-color:rgba(255, 255, 255, 0);
  5195. border:none;
  5196. border-radius:0px;
  5197. -moz-box-shadow:none;
  5198. -webkit-box-shadow:none;
  5199. box-shadow:none;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:16px;
  5204. }
  5205. #u29254 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:146px;
  5209. top:477px;
  5210. width:97px;
  5211. height:22px;
  5212. display:flex;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:16px;
  5217. }
  5218. #u29254 .text {
  5219. position:absolute;
  5220. align-self:flex-start;
  5221. padding:0px 0px 0px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u29254_text {
  5226. border-width:0px;
  5227. white-space:nowrap;
  5228. text-transform:none;
  5229. }
  5230. #u29255_div {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:97px;
  5236. height:22px;
  5237. background:inherit;
  5238. background-color:rgba(255, 255, 255, 0);
  5239. border:none;
  5240. border-radius:0px;
  5241. -moz-box-shadow:none;
  5242. -webkit-box-shadow:none;
  5243. box-shadow:none;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:16px;
  5248. }
  5249. #u29255 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:146px;
  5253. top:251px;
  5254. width:97px;
  5255. height:22px;
  5256. display:flex;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:16px;
  5261. }
  5262. #u29255 .text {
  5263. position:absolute;
  5264. align-self:flex-start;
  5265. padding:0px 0px 0px 0px;
  5266. box-sizing:border-box;
  5267. width:100%;
  5268. }
  5269. #u29255_text {
  5270. border-width:0px;
  5271. white-space:nowrap;
  5272. text-transform:none;
  5273. }
  5274. #u29256_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:97px;
  5280. height:22px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 0);
  5283. border:none;
  5284. border-radius:0px;
  5285. -moz-box-shadow:none;
  5286. -webkit-box-shadow:none;
  5287. box-shadow:none;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:16px;
  5292. }
  5293. #u29256 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:146px;
  5297. top:293px;
  5298. width:97px;
  5299. height:22px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:16px;
  5305. }
  5306. #u29256 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:0px 0px 0px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u29256_text {
  5314. border-width:0px;
  5315. white-space:nowrap;
  5316. text-transform:none;
  5317. }
  5318. #u29257_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:97px;
  5324. height:22px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 255, 0);
  5327. border:none;
  5328. border-radius:0px;
  5329. -moz-box-shadow:none;
  5330. -webkit-box-shadow:none;
  5331. box-shadow:none;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:16px;
  5336. }
  5337. #u29257 {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:146px;
  5341. top:519px;
  5342. width:97px;
  5343. height:22px;
  5344. display:flex;
  5345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:16px;
  5349. }
  5350. #u29257 .text {
  5351. position:absolute;
  5352. align-self:flex-start;
  5353. padding:0px 0px 0px 0px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u29257_text {
  5358. border-width:0px;
  5359. white-space:nowrap;
  5360. text-transform:none;
  5361. }
  5362. #u29258_div {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:97px;
  5368. height:22px;
  5369. background:inherit;
  5370. background-color:rgba(255, 255, 255, 0);
  5371. border:none;
  5372. border-radius:0px;
  5373. -moz-box-shadow:none;
  5374. -webkit-box-shadow:none;
  5375. box-shadow:none;
  5376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5377. font-weight:400;
  5378. font-style:normal;
  5379. font-size:16px;
  5380. }
  5381. #u29258 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:146px;
  5385. top:561px;
  5386. width:97px;
  5387. height:22px;
  5388. display:flex;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:16px;
  5393. }
  5394. #u29258 .text {
  5395. position:absolute;
  5396. align-self:flex-start;
  5397. padding:0px 0px 0px 0px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u29258_text {
  5402. border-width:0px;
  5403. white-space:nowrap;
  5404. text-transform:none;
  5405. }
  5406. #u29259_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:122px;
  5412. height:22px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 0);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:16px;
  5424. }
  5425. #u29259 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:146px;
  5429. top:603px;
  5430. width:122px;
  5431. height:22px;
  5432. display:flex;
  5433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:16px;
  5437. }
  5438. #u29259 .text {
  5439. position:absolute;
  5440. align-self:flex-start;
  5441. padding:0px 0px 0px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u29259_text {
  5446. border-width:0px;
  5447. white-space:nowrap;
  5448. text-transform:none;
  5449. }
  5450. #u29260_div {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:49px;
  5456. height:17px;
  5457. background:inherit;
  5458. background-color:rgba(255, 255, 255, 0);
  5459. border:none;
  5460. border-radius:0px;
  5461. -moz-box-shadow:none;
  5462. -webkit-box-shadow:none;
  5463. box-shadow:none;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:12px;
  5468. color:#AAAAAA;
  5469. }
  5470. #u29260 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:146px;
  5474. top:809px;
  5475. width:49px;
  5476. height:17px;
  5477. display:flex;
  5478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:12px;
  5482. color:#AAAAAA;
  5483. }
  5484. #u29260 .text {
  5485. position:absolute;
  5486. align-self:flex-start;
  5487. padding:0px 0px 0px 0px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u29260_text {
  5492. border-width:0px;
  5493. white-space:nowrap;
  5494. text-transform:none;
  5495. }
  5496. #u29261_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:201px;
  5502. height:2px;
  5503. }
  5504. #u29261 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:120px;
  5508. top:787px;
  5509. width:200px;
  5510. height:1px;
  5511. display:flex;
  5512. }
  5513. #u29261 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:2px 2px 2px 2px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u29261_text {
  5521. border-width:0px;
  5522. word-wrap:break-word;
  5523. text-transform:none;
  5524. visibility:hidden;
  5525. }
  5526. #u29262_div {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:97px;
  5532. height:22px;
  5533. background:inherit;
  5534. background-color:rgba(255, 255, 255, 0);
  5535. border:none;
  5536. border-radius:0px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:16px;
  5544. }
  5545. #u29262 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:146px;
  5549. top:847px;
  5550. width:97px;
  5551. height:22px;
  5552. display:flex;
  5553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. font-size:16px;
  5557. }
  5558. #u29262 .text {
  5559. position:absolute;
  5560. align-self:flex-start;
  5561. padding:0px 0px 0px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u29262_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u29263_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:97px;
  5576. height:22px;
  5577. background:inherit;
  5578. background-color:rgba(255, 255, 255, 0);
  5579. border:none;
  5580. border-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:16px;
  5588. }
  5589. #u29263 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:146px;
  5593. top:889px;
  5594. width:97px;
  5595. height:22px;
  5596. display:flex;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:16px;
  5601. }
  5602. #u29263 .text {
  5603. position:absolute;
  5604. align-self:flex-start;
  5605. padding:0px 0px 0px 0px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u29263_text {
  5610. border-width:0px;
  5611. white-space:nowrap;
  5612. text-transform:none;
  5613. }
  5614. #u29264_div {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:97px;
  5620. height:22px;
  5621. background:inherit;
  5622. background-color:rgba(255, 255, 255, 0);
  5623. border:none;
  5624. border-radius:0px;
  5625. -moz-box-shadow:none;
  5626. -webkit-box-shadow:none;
  5627. box-shadow:none;
  5628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5629. font-weight:400;
  5630. font-style:normal;
  5631. font-size:16px;
  5632. }
  5633. #u29264 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:146px;
  5637. top:335px;
  5638. width:97px;
  5639. height:22px;
  5640. display:flex;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:16px;
  5645. }
  5646. #u29264 .text {
  5647. position:absolute;
  5648. align-self:flex-start;
  5649. padding:0px 0px 0px 0px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u29264_text {
  5654. border-width:0px;
  5655. white-space:nowrap;
  5656. text-transform:none;
  5657. }
  5658. #u29265_div {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:97px;
  5664. height:22px;
  5665. background:inherit;
  5666. background-color:rgba(255, 255, 255, 0);
  5667. border:none;
  5668. border-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:16px;
  5676. }
  5677. #u29265 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:146px;
  5681. top:931px;
  5682. width:97px;
  5683. height:22px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:16px;
  5689. }
  5690. #u29265 .text {
  5691. position:absolute;
  5692. align-self:flex-start;
  5693. padding:0px 0px 0px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u29265_text {
  5698. border-width:0px;
  5699. white-space:nowrap;
  5700. text-transform:none;
  5701. }
  5702. #u29266_div {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:49px;
  5708. height:17px;
  5709. background:inherit;
  5710. background-color:rgba(255, 255, 255, 0);
  5711. border:none;
  5712. border-radius:0px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:12px;
  5720. color:#AAAAAA;
  5721. }
  5722. #u29266 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:146px;
  5726. top:995px;
  5727. width:49px;
  5728. height:17px;
  5729. display:flex;
  5730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:12px;
  5734. color:#AAAAAA;
  5735. }
  5736. #u29266 .text {
  5737. position:absolute;
  5738. align-self:flex-start;
  5739. padding:0px 0px 0px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u29266_text {
  5744. border-width:0px;
  5745. white-space:nowrap;
  5746. text-transform:none;
  5747. }
  5748. #u29267_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:201px;
  5754. height:2px;
  5755. }
  5756. #u29267 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:120px;
  5760. top:973px;
  5761. width:200px;
  5762. height:1px;
  5763. display:flex;
  5764. }
  5765. #u29267 .text {
  5766. position:absolute;
  5767. align-self:center;
  5768. padding:2px 2px 2px 2px;
  5769. box-sizing:border-box;
  5770. width:100%;
  5771. }
  5772. #u29267_text {
  5773. border-width:0px;
  5774. word-wrap:break-word;
  5775. text-transform:none;
  5776. visibility:hidden;
  5777. }
  5778. #u29268_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:97px;
  5784. height:22px;
  5785. background:inherit;
  5786. background-color:rgba(255, 255, 255, 0);
  5787. border:none;
  5788. border-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:16px;
  5796. }
  5797. #u29268 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:146px;
  5801. top:1033px;
  5802. width:97px;
  5803. height:22px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:16px;
  5809. }
  5810. #u29268 .text {
  5811. position:absolute;
  5812. align-self:flex-start;
  5813. padding:0px 0px 0px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u29268_text {
  5818. border-width:0px;
  5819. white-space:nowrap;
  5820. text-transform:none;
  5821. }
  5822. #u29269_div {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:73px;
  5828. height:17px;
  5829. background:inherit;
  5830. background-color:rgba(255, 255, 255, 0);
  5831. border:none;
  5832. border-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:#AAAAAA;
  5841. }
  5842. #u29269 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:146px;
  5846. top:667px;
  5847. width:73px;
  5848. height:17px;
  5849. display:flex;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:12px;
  5854. color:#AAAAAA;
  5855. }
  5856. #u29269 .text {
  5857. position:absolute;
  5858. align-self:flex-start;
  5859. padding:0px 0px 0px 0px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u29269_text {
  5864. border-width:0px;
  5865. white-space:nowrap;
  5866. text-transform:none;
  5867. }
  5868. #u29270_img {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:201px;
  5874. height:2px;
  5875. }
  5876. #u29270 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:120px;
  5880. top:645px;
  5881. width:200px;
  5882. height:1px;
  5883. display:flex;
  5884. }
  5885. #u29270 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u29270_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u29271_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:97px;
  5904. height:22px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border:none;
  5908. border-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:16px;
  5916. }
  5917. #u29271 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:146px;
  5921. top:705px;
  5922. width:97px;
  5923. height:22px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:16px;
  5929. }
  5930. #u29271 .text {
  5931. position:absolute;
  5932. align-self:flex-start;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u29271_text {
  5938. border-width:0px;
  5939. white-space:nowrap;
  5940. text-transform:none;
  5941. }
  5942. #u29272_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:97px;
  5948. height:22px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 0);
  5951. border:none;
  5952. border-radius:0px;
  5953. -moz-box-shadow:none;
  5954. -webkit-box-shadow:none;
  5955. box-shadow:none;
  5956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5957. font-weight:400;
  5958. font-style:normal;
  5959. font-size:16px;
  5960. }
  5961. #u29272 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:146px;
  5965. top:747px;
  5966. width:97px;
  5967. height:22px;
  5968. display:flex;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:16px;
  5973. }
  5974. #u29272 .text {
  5975. position:absolute;
  5976. align-self:flex-start;
  5977. padding:0px 0px 0px 0px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u29272_text {
  5982. border-width:0px;
  5983. white-space:nowrap;
  5984. text-transform:none;
  5985. }