styles.css 109 KB

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