styles.css 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961
  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. #u62941_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. #u62941 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u62941 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u62941_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u62942_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. #u62942 {
  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. #u62942 .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. #u62942_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u62943_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. #u62943 {
  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. #u62943 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u62943_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u62944 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u62945_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u62945 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u62945 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u62945_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u62946_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. #u62946 {
  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. #u62946 .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. #u62946_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u62947_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. #u62947 {
  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. #u62947 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u62947_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u62948 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u62949_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. #u62949_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. #u62949_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. #u62949 {
  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. #u62949 .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. #u62949_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. #u62949.disabled {
  356. }
  357. .u62949_input_option {
  358. font-size:14px;
  359. }
  360. #u62950_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u62950 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u62950 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u62950_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u62951_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. #u62951 {
  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. #u62951 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u62951_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u62952_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. #u62952 {
  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. #u62952 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u62952_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u62953 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u62954_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. #u62954 {
  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. #u62954 .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. #u62954_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u62955_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u62955 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u62955 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u62955_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u62956 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u62957_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. #u62957 {
  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. #u62957 .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. #u62957_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u62958_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u62958 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u62958 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u62958_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u62959 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u62960_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. #u62960 {
  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. #u62960 .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. #u62960_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u62961_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u62961 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u62961 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u62961_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u62962 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u62963_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. #u62963 {
  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. #u62963 .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. #u62963_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u62964_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u62964 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u62964 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u62964_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u62965 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u62966_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. #u62966 {
  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. #u62966 .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. #u62966_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u62967_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u62967 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u62967 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u62967_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u62968 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u62969_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. #u62969 {
  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. #u62969 .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. #u62969_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u62970_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u62970 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u62970 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u62970_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u62971 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u62972_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. #u62972 {
  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. #u62972 .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. #u62972_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u62973_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u62973 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u62973 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u62973_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u62974 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u62975_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. #u62975 {
  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. #u62975 .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. #u62975_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u62976_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u62976 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u62976 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u62976_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u62977 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u62978_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. #u62978 {
  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. #u62978 .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. #u62978_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u62979_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u62979 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u62979 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u62979_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u62980 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u62981_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. #u62981 {
  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. #u62981 .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. #u62981_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u62982_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u62982 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u62982 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u62982_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u62983_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. #u62983 {
  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. #u62983 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u62983_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u62984_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u62984 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u62984 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u62984_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u62985_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. #u62985 {
  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. #u62985 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u62985_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u62986_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u62986 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u62986 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u62986_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u62987 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u62988_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. #u62988 {
  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. #u62988 .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. #u62988_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u62989_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u62989 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u62989 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u62989_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u62990 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u62991_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. #u62991 {
  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. #u62991 .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. #u62991_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u62992_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u62992 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u62992 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u62992_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u62993 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u62994_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:1257px;
  1652. height:1160px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. box-sizing:border-box;
  1656. border-width:1px;
  1657. border-style:solid;
  1658. border-color:rgba(242, 242, 242, 1);
  1659. border-radius:0px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. }
  1664. #u62994 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:330px;
  1668. top:50px;
  1669. width:1257px;
  1670. height:1160px;
  1671. display:flex;
  1672. }
  1673. #u62994 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 2px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u62994_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u62995 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:353px;
  1690. top:159px;
  1691. width:1220px;
  1692. height:238px;
  1693. }
  1694. #u62996_img {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:134px;
  1700. height:44px;
  1701. }
  1702. #u62996 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:134px;
  1708. height:44px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:14px;
  1714. color:#FFFFFF;
  1715. }
  1716. #u62996 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u62996_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. }
  1728. #u62997_img {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:134px;
  1734. height:44px;
  1735. }
  1736. #u62997 {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:134px;
  1740. top:0px;
  1741. width:134px;
  1742. height:44px;
  1743. display:flex;
  1744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1745. font-weight:400;
  1746. font-style:normal;
  1747. font-size:14px;
  1748. color:#FFFFFF;
  1749. }
  1750. #u62997 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 2px 2px 2px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u62997_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. }
  1762. #u62998_img {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:83px;
  1768. height:44px;
  1769. }
  1770. #u62998 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:268px;
  1774. top:0px;
  1775. width:83px;
  1776. height:44px;
  1777. display:flex;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:14px;
  1782. color:#FFFFFF;
  1783. }
  1784. #u62998 .text {
  1785. position:absolute;
  1786. align-self:center;
  1787. padding:2px 2px 2px 2px;
  1788. box-sizing:border-box;
  1789. width:100%;
  1790. }
  1791. #u62998_text {
  1792. border-width:0px;
  1793. word-wrap:break-word;
  1794. text-transform:none;
  1795. }
  1796. #u62999_img {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:83px;
  1802. height:44px;
  1803. }
  1804. #u62999 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:351px;
  1808. top:0px;
  1809. width:83px;
  1810. height:44px;
  1811. display:flex;
  1812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1813. font-weight:400;
  1814. font-style:normal;
  1815. font-size:14px;
  1816. color:#FFFFFF;
  1817. }
  1818. #u62999 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u62999_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. }
  1830. #u63000_img {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:90px;
  1836. height:44px;
  1837. }
  1838. #u63000 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:434px;
  1842. top:0px;
  1843. width:90px;
  1844. height:44px;
  1845. display:flex;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. color:#FFFFFF;
  1851. }
  1852. #u63000 .text {
  1853. position:absolute;
  1854. align-self:center;
  1855. padding:2px 2px 2px 2px;
  1856. box-sizing:border-box;
  1857. width:100%;
  1858. }
  1859. #u63000_text {
  1860. border-width:0px;
  1861. word-wrap:break-word;
  1862. text-transform:none;
  1863. }
  1864. #u63001_img {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:90px;
  1870. height:44px;
  1871. }
  1872. #u63001 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:524px;
  1876. top:0px;
  1877. width:90px;
  1878. height:44px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:14px;
  1884. color:#FFFFFF;
  1885. }
  1886. #u63001 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u63001_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. }
  1898. #u63002_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:83px;
  1904. height:44px;
  1905. }
  1906. #u63002 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:614px;
  1910. top:0px;
  1911. width:83px;
  1912. height:44px;
  1913. display:flex;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:14px;
  1918. color:#FFFFFF;
  1919. }
  1920. #u63002 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 2px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u63002_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. }
  1932. #u63003_img {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:83px;
  1938. height:44px;
  1939. }
  1940. #u63003 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:697px;
  1944. top:0px;
  1945. width:83px;
  1946. height:44px;
  1947. display:flex;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:14px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u63003 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 2px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u63003_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. }
  1966. #u63004_img {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:90px;
  1972. height:44px;
  1973. }
  1974. #u63004 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:780px;
  1978. top:0px;
  1979. width:90px;
  1980. height:44px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:14px;
  1986. color:#FFFFFF;
  1987. }
  1988. #u63004 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u63004_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. }
  2000. #u63005_img {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:83px;
  2006. height:44px;
  2007. }
  2008. #u63005 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:870px;
  2012. top:0px;
  2013. width:83px;
  2014. height:44px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:14px;
  2020. color:#FFFFFF;
  2021. }
  2022. #u63005 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 2px 2px 2px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u63005_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. }
  2034. #u63006_img {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:83px;
  2040. height:44px;
  2041. }
  2042. #u63006 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:953px;
  2046. top:0px;
  2047. width:83px;
  2048. height:44px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:14px;
  2054. color:#FFFFFF;
  2055. }
  2056. #u63006 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 2px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u63006_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. }
  2068. #u63007_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:90px;
  2074. height:44px;
  2075. }
  2076. #u63007 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:1036px;
  2080. top:0px;
  2081. width:90px;
  2082. height:44px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:14px;
  2088. color:#FFFFFF;
  2089. }
  2090. #u63007 .text {
  2091. position:absolute;
  2092. align-self:center;
  2093. padding:2px 2px 2px 2px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u63007_text {
  2098. border-width:0px;
  2099. word-wrap:break-word;
  2100. text-transform:none;
  2101. }
  2102. #u63008_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:94px;
  2108. height:44px;
  2109. }
  2110. #u63008 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:1126px;
  2114. top:0px;
  2115. width:94px;
  2116. height:44px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. color:#FFFFFF;
  2123. }
  2124. #u63008 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u63008_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. }
  2136. #u63009_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:134px;
  2142. height:44px;
  2143. }
  2144. #u63009 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:44px;
  2149. width:134px;
  2150. height:44px;
  2151. display:flex;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:14px;
  2156. }
  2157. #u63009 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 2px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u63009_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u63010_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:134px;
  2176. height:44px;
  2177. }
  2178. #u63010 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:134px;
  2182. top:44px;
  2183. width:134px;
  2184. height:44px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:14px;
  2190. }
  2191. #u63010 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 2px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u63010_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u63011_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:83px;
  2210. height:44px;
  2211. }
  2212. #u63011 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:268px;
  2216. top:44px;
  2217. width:83px;
  2218. height:44px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:14px;
  2224. }
  2225. #u63011 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 2px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u63011_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. visibility:hidden;
  2237. }
  2238. #u63012_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:83px;
  2244. height:44px;
  2245. }
  2246. #u63012 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:351px;
  2250. top:44px;
  2251. width:83px;
  2252. height:44px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:14px;
  2258. }
  2259. #u63012 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 2px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u63012_text {
  2267. border-width:0px;
  2268. word-wrap:break-word;
  2269. text-transform:none;
  2270. visibility:hidden;
  2271. }
  2272. #u63013_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:90px;
  2278. height:44px;
  2279. }
  2280. #u63013 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:434px;
  2284. top:44px;
  2285. width:90px;
  2286. height:44px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:14px;
  2292. }
  2293. #u63013 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u63013_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u63014_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:90px;
  2312. height:44px;
  2313. }
  2314. #u63014 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:524px;
  2318. top:44px;
  2319. width:90px;
  2320. height:44px;
  2321. display:flex;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:14px;
  2326. }
  2327. #u63014 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 2px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u63014_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. visibility:hidden;
  2339. }
  2340. #u63015_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:83px;
  2346. height:44px;
  2347. }
  2348. #u63015 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:614px;
  2352. top:44px;
  2353. width:83px;
  2354. height:44px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:14px;
  2360. }
  2361. #u63015 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 2px 2px 2px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u63015_text {
  2369. border-width:0px;
  2370. word-wrap:break-word;
  2371. text-transform:none;
  2372. visibility:hidden;
  2373. }
  2374. #u63016_img {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:83px;
  2380. height:44px;
  2381. }
  2382. #u63016 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:697px;
  2386. top:44px;
  2387. width:83px;
  2388. height:44px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:14px;
  2394. }
  2395. #u63016 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 2px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u63016_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u63017_img {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:90px;
  2414. height:44px;
  2415. }
  2416. #u63017 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:780px;
  2420. top:44px;
  2421. width:90px;
  2422. height:44px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2425. font-weight:400;
  2426. font-style:normal;
  2427. font-size:14px;
  2428. }
  2429. #u63017 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 2px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u63017_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. visibility:hidden;
  2441. }
  2442. #u63018_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:83px;
  2448. height:44px;
  2449. }
  2450. #u63018 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:870px;
  2454. top:44px;
  2455. width:83px;
  2456. height:44px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:14px;
  2462. }
  2463. #u63018 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u63018_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u63019_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:83px;
  2482. height:44px;
  2483. }
  2484. #u63019 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:953px;
  2488. top:44px;
  2489. width:83px;
  2490. height:44px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:14px;
  2496. }
  2497. #u63019 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u63019_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u63020_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:90px;
  2516. height:44px;
  2517. }
  2518. #u63020 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:1036px;
  2522. top:44px;
  2523. width:90px;
  2524. height:44px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. }
  2531. #u63020 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 2px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u63020_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. visibility:hidden;
  2543. }
  2544. #u63021_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:94px;
  2550. height:44px;
  2551. }
  2552. #u63021 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:1126px;
  2556. top:44px;
  2557. width:94px;
  2558. height:44px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. }
  2565. #u63021 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u63021_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u63022_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:134px;
  2584. height:30px;
  2585. }
  2586. #u63022 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:88px;
  2591. width:134px;
  2592. height:30px;
  2593. display:flex;
  2594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2595. font-weight:400;
  2596. font-style:normal;
  2597. font-size:14px;
  2598. }
  2599. #u63022 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 2px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u63022_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u63023_img {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:134px;
  2618. height:30px;
  2619. }
  2620. #u63023 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:134px;
  2624. top:88px;
  2625. width:134px;
  2626. height:30px;
  2627. display:flex;
  2628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:14px;
  2632. }
  2633. #u63023 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 2px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u63023_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. visibility:hidden;
  2645. }
  2646. #u63024_img {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:83px;
  2652. height:30px;
  2653. }
  2654. #u63024 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:268px;
  2658. top:88px;
  2659. width:83px;
  2660. height:30px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:14px;
  2666. }
  2667. #u63024 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u63024_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u63025_img {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:83px;
  2686. height:30px;
  2687. }
  2688. #u63025 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:351px;
  2692. top:88px;
  2693. width:83px;
  2694. height:30px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:14px;
  2700. }
  2701. #u63025 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 2px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u63025_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u63026_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:90px;
  2720. height:30px;
  2721. }
  2722. #u63026 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:434px;
  2726. top:88px;
  2727. width:90px;
  2728. height:30px;
  2729. display:flex;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:14px;
  2734. }
  2735. #u63026 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 2px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u63026_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u63027_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:90px;
  2754. height:30px;
  2755. }
  2756. #u63027 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:524px;
  2760. top:88px;
  2761. width:90px;
  2762. height:30px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:14px;
  2768. }
  2769. #u63027 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u63027_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u63028_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:83px;
  2788. height:30px;
  2789. }
  2790. #u63028 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:614px;
  2794. top:88px;
  2795. width:83px;
  2796. height:30px;
  2797. display:flex;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:14px;
  2802. }
  2803. #u63028 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:2px 2px 2px 2px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u63028_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. visibility:hidden;
  2815. }
  2816. #u63029_img {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:83px;
  2822. height:30px;
  2823. }
  2824. #u63029 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:697px;
  2828. top:88px;
  2829. width:83px;
  2830. height:30px;
  2831. display:flex;
  2832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:14px;
  2836. }
  2837. #u63029 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u63029_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u63030_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:90px;
  2856. height:30px;
  2857. }
  2858. #u63030 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:780px;
  2862. top:88px;
  2863. width:90px;
  2864. height:30px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:14px;
  2870. }
  2871. #u63030 .text {
  2872. position:absolute;
  2873. align-self:center;
  2874. padding:2px 2px 2px 2px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u63030_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. visibility:hidden;
  2883. }
  2884. #u63031_img {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:83px;
  2890. height:30px;
  2891. }
  2892. #u63031 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:870px;
  2896. top:88px;
  2897. width:83px;
  2898. height:30px;
  2899. display:flex;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:14px;
  2904. }
  2905. #u63031 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:2px 2px 2px 2px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u63031_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. visibility:hidden;
  2917. }
  2918. #u63032_img {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:83px;
  2924. height:30px;
  2925. }
  2926. #u63032 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:953px;
  2930. top:88px;
  2931. width:83px;
  2932. height:30px;
  2933. display:flex;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:14px;
  2938. }
  2939. #u63032 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 2px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u63032_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u63033_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:90px;
  2958. height:30px;
  2959. }
  2960. #u63033 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:1036px;
  2964. top:88px;
  2965. width:90px;
  2966. height:30px;
  2967. display:flex;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:14px;
  2972. }
  2973. #u63033 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u63033_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. visibility:hidden;
  2985. }
  2986. #u63034_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:94px;
  2992. height:30px;
  2993. }
  2994. #u63034 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:1126px;
  2998. top:88px;
  2999. width:94px;
  3000. height:30px;
  3001. display:flex;
  3002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3003. font-weight:400;
  3004. font-style:normal;
  3005. font-size:14px;
  3006. }
  3007. #u63034 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:2px 2px 2px 2px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u63034_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. visibility:hidden;
  3019. }
  3020. #u63035_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:134px;
  3026. height:30px;
  3027. }
  3028. #u63035 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:118px;
  3033. width:134px;
  3034. height:30px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:14px;
  3040. }
  3041. #u63035 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u63035_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. visibility:hidden;
  3053. }
  3054. #u63036_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:134px;
  3060. height:30px;
  3061. }
  3062. #u63036 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:134px;
  3066. top:118px;
  3067. width:134px;
  3068. height:30px;
  3069. display:flex;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:14px;
  3074. }
  3075. #u63036 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 2px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u63036_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u63037_img {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:83px;
  3094. height:30px;
  3095. }
  3096. #u63037 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:268px;
  3100. top:118px;
  3101. width:83px;
  3102. height:30px;
  3103. display:flex;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:14px;
  3108. }
  3109. #u63037 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u63037_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u63038_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:83px;
  3128. height:30px;
  3129. }
  3130. #u63038 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:351px;
  3134. top:118px;
  3135. width:83px;
  3136. height:30px;
  3137. display:flex;
  3138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:14px;
  3142. }
  3143. #u63038 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u63038_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u63039_img {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:90px;
  3162. height:30px;
  3163. }
  3164. #u63039 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:434px;
  3168. top:118px;
  3169. width:90px;
  3170. height:30px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:14px;
  3176. }
  3177. #u63039 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 2px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u63039_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u63040_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:90px;
  3196. height:30px;
  3197. }
  3198. #u63040 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:524px;
  3202. top:118px;
  3203. width:90px;
  3204. height:30px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. }
  3211. #u63040 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u63040_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. visibility:hidden;
  3223. }
  3224. #u63041_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:83px;
  3230. height:30px;
  3231. }
  3232. #u63041 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:614px;
  3236. top:118px;
  3237. width:83px;
  3238. height:30px;
  3239. display:flex;
  3240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:14px;
  3244. }
  3245. #u63041 .text {
  3246. position:absolute;
  3247. align-self:center;
  3248. padding:2px 2px 2px 2px;
  3249. box-sizing:border-box;
  3250. width:100%;
  3251. }
  3252. #u63041_text {
  3253. border-width:0px;
  3254. word-wrap:break-word;
  3255. text-transform:none;
  3256. visibility:hidden;
  3257. }
  3258. #u63042_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:83px;
  3264. height:30px;
  3265. }
  3266. #u63042 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:697px;
  3270. top:118px;
  3271. width:83px;
  3272. height:30px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:14px;
  3278. }
  3279. #u63042 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 2px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u63042_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u63043_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:90px;
  3298. height:30px;
  3299. }
  3300. #u63043 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:780px;
  3304. top:118px;
  3305. width:90px;
  3306. height:30px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:14px;
  3312. }
  3313. #u63043 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 2px 2px 2px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u63043_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. visibility:hidden;
  3325. }
  3326. #u63044_img {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:83px;
  3332. height:30px;
  3333. }
  3334. #u63044 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:870px;
  3338. top:118px;
  3339. width:83px;
  3340. height:30px;
  3341. display:flex;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:14px;
  3346. }
  3347. #u63044 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u63044_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u63045_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:83px;
  3366. height:30px;
  3367. }
  3368. #u63045 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:953px;
  3372. top:118px;
  3373. width:83px;
  3374. height:30px;
  3375. display:flex;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:14px;
  3380. }
  3381. #u63045 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u63045_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u63046_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:90px;
  3400. height:30px;
  3401. }
  3402. #u63046 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:1036px;
  3406. top:118px;
  3407. width:90px;
  3408. height:30px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:14px;
  3414. }
  3415. #u63046 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 2px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u63046_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. visibility:hidden;
  3427. }
  3428. #u63047_img {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:94px;
  3434. height:30px;
  3435. }
  3436. #u63047 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:1126px;
  3440. top:118px;
  3441. width:94px;
  3442. height:30px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:14px;
  3448. }
  3449. #u63047 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 2px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u63047_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. visibility:hidden;
  3461. }
  3462. #u63048_img {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:134px;
  3468. height:30px;
  3469. }
  3470. #u63048 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:148px;
  3475. width:134px;
  3476. height:30px;
  3477. display:flex;
  3478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:14px;
  3482. }
  3483. #u63048 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 2px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u63048_text {
  3491. border-width:0px;
  3492. word-wrap:break-word;
  3493. text-transform:none;
  3494. visibility:hidden;
  3495. }
  3496. #u63049_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:134px;
  3502. height:30px;
  3503. }
  3504. #u63049 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:134px;
  3508. top:148px;
  3509. width:134px;
  3510. height:30px;
  3511. display:flex;
  3512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:14px;
  3516. }
  3517. #u63049 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:2px 2px 2px 2px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u63049_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. visibility:hidden;
  3529. }
  3530. #u63050_img {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:83px;
  3536. height:30px;
  3537. }
  3538. #u63050 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:268px;
  3542. top:148px;
  3543. width:83px;
  3544. height:30px;
  3545. display:flex;
  3546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:14px;
  3550. }
  3551. #u63050 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 2px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u63050_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u63051_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:83px;
  3570. height:30px;
  3571. }
  3572. #u63051 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:351px;
  3576. top:148px;
  3577. width:83px;
  3578. height:30px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. }
  3585. #u63051 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u63051_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u63052_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:90px;
  3604. height:30px;
  3605. }
  3606. #u63052 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:434px;
  3610. top:148px;
  3611. width:90px;
  3612. height:30px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. }
  3619. #u63052 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 2px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u63052_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u63053_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:90px;
  3638. height:30px;
  3639. }
  3640. #u63053 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:524px;
  3644. top:148px;
  3645. width:90px;
  3646. height:30px;
  3647. display:flex;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:14px;
  3652. }
  3653. #u63053 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u63053_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. visibility:hidden;
  3665. }
  3666. #u63054_img {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:83px;
  3672. height:30px;
  3673. }
  3674. #u63054 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:614px;
  3678. top:148px;
  3679. width:83px;
  3680. height:30px;
  3681. display:flex;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:14px;
  3686. }
  3687. #u63054 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 2px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u63054_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u63055_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:83px;
  3706. height:30px;
  3707. }
  3708. #u63055 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:697px;
  3712. top:148px;
  3713. width:83px;
  3714. height:30px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. }
  3721. #u63055 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u63055_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u63056_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:90px;
  3740. height:30px;
  3741. }
  3742. #u63056 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:780px;
  3746. top:148px;
  3747. width:90px;
  3748. height:30px;
  3749. display:flex;
  3750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:14px;
  3754. }
  3755. #u63056 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 2px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u63056_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u63057_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:83px;
  3774. height:30px;
  3775. }
  3776. #u63057 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:870px;
  3780. top:148px;
  3781. width:83px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:14px;
  3788. }
  3789. #u63057 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u63057_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u63058_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:83px;
  3808. height:30px;
  3809. }
  3810. #u63058 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:953px;
  3814. top:148px;
  3815. width:83px;
  3816. height:30px;
  3817. display:flex;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:14px;
  3822. }
  3823. #u63058 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u63058_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u63059_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:90px;
  3842. height:30px;
  3843. }
  3844. #u63059 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:1036px;
  3848. top:148px;
  3849. width:90px;
  3850. height:30px;
  3851. display:flex;
  3852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:14px;
  3856. }
  3857. #u63059 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u63059_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u63060_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:94px;
  3876. height:30px;
  3877. }
  3878. #u63060 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:1126px;
  3882. top:148px;
  3883. width:94px;
  3884. height:30px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:14px;
  3890. }
  3891. #u63060 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u63060_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u63061_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:134px;
  3910. height:30px;
  3911. }
  3912. #u63061 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:178px;
  3917. width:134px;
  3918. height:30px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:14px;
  3924. }
  3925. #u63061 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 2px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u63061_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u63062_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:134px;
  3944. height:30px;
  3945. }
  3946. #u63062 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:134px;
  3950. top:178px;
  3951. width:134px;
  3952. height:30px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:14px;
  3958. }
  3959. #u63062 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u63062_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u63063_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:83px;
  3978. height:30px;
  3979. }
  3980. #u63063 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:268px;
  3984. top:178px;
  3985. width:83px;
  3986. height:30px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:14px;
  3992. }
  3993. #u63063 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u63063_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u63064_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:83px;
  4012. height:30px;
  4013. }
  4014. #u63064 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:351px;
  4018. top:178px;
  4019. width:83px;
  4020. height:30px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:14px;
  4026. }
  4027. #u63064 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u63064_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u63065_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:90px;
  4046. height:30px;
  4047. }
  4048. #u63065 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:434px;
  4052. top:178px;
  4053. width:90px;
  4054. height:30px;
  4055. display:flex;
  4056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:14px;
  4060. }
  4061. #u63065 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 2px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u63065_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u63066_img {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:90px;
  4080. height:30px;
  4081. }
  4082. #u63066 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:524px;
  4086. top:178px;
  4087. width:90px;
  4088. height:30px;
  4089. display:flex;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:14px;
  4094. }
  4095. #u63066 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 2px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u63066_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u63067_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:83px;
  4114. height:30px;
  4115. }
  4116. #u63067 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:614px;
  4120. top:178px;
  4121. width:83px;
  4122. height:30px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:14px;
  4128. }
  4129. #u63067 .text {
  4130. position:absolute;
  4131. align-self:center;
  4132. padding:2px 2px 2px 2px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u63067_text {
  4137. border-width:0px;
  4138. word-wrap:break-word;
  4139. text-transform:none;
  4140. visibility:hidden;
  4141. }
  4142. #u63068_img {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:83px;
  4148. height:30px;
  4149. }
  4150. #u63068 {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:697px;
  4154. top:178px;
  4155. width:83px;
  4156. height:30px;
  4157. display:flex;
  4158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4159. font-weight:400;
  4160. font-style:normal;
  4161. font-size:14px;
  4162. }
  4163. #u63068 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u63068_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u63069_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:90px;
  4182. height:30px;
  4183. }
  4184. #u63069 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:780px;
  4188. top:178px;
  4189. width:90px;
  4190. height:30px;
  4191. display:flex;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:14px;
  4196. }
  4197. #u63069 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 2px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u63069_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u63070_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:83px;
  4216. height:30px;
  4217. }
  4218. #u63070 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:870px;
  4222. top:178px;
  4223. width:83px;
  4224. height:30px;
  4225. display:flex;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. }
  4231. #u63070 .text {
  4232. position:absolute;
  4233. align-self:center;
  4234. padding:2px 2px 2px 2px;
  4235. box-sizing:border-box;
  4236. width:100%;
  4237. }
  4238. #u63070_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. visibility:hidden;
  4243. }
  4244. #u63071_img {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:83px;
  4250. height:30px;
  4251. }
  4252. #u63071 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:953px;
  4256. top:178px;
  4257. width:83px;
  4258. height:30px;
  4259. display:flex;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:14px;
  4264. }
  4265. #u63071 .text {
  4266. position:absolute;
  4267. align-self:center;
  4268. padding:2px 2px 2px 2px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u63071_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. visibility:hidden;
  4277. }
  4278. #u63072_img {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:90px;
  4284. height:30px;
  4285. }
  4286. #u63072 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:1036px;
  4290. top:178px;
  4291. width:90px;
  4292. height:30px;
  4293. display:flex;
  4294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:14px;
  4298. }
  4299. #u63072 .text {
  4300. position:absolute;
  4301. align-self:center;
  4302. padding:2px 2px 2px 2px;
  4303. box-sizing:border-box;
  4304. width:100%;
  4305. }
  4306. #u63072_text {
  4307. border-width:0px;
  4308. word-wrap:break-word;
  4309. text-transform:none;
  4310. visibility:hidden;
  4311. }
  4312. #u63073_img {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:0px;
  4316. top:0px;
  4317. width:94px;
  4318. height:30px;
  4319. }
  4320. #u63073 {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:1126px;
  4324. top:178px;
  4325. width:94px;
  4326. height:30px;
  4327. display:flex;
  4328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4329. font-weight:400;
  4330. font-style:normal;
  4331. font-size:14px;
  4332. }
  4333. #u63073 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 2px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u63073_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u63074_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:134px;
  4352. height:30px;
  4353. }
  4354. #u63074 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:208px;
  4359. width:134px;
  4360. height:30px;
  4361. display:flex;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:14px;
  4366. }
  4367. #u63074 .text {
  4368. position:absolute;
  4369. align-self:center;
  4370. padding:2px 2px 2px 2px;
  4371. box-sizing:border-box;
  4372. width:100%;
  4373. }
  4374. #u63074_text {
  4375. border-width:0px;
  4376. word-wrap:break-word;
  4377. text-transform:none;
  4378. visibility:hidden;
  4379. }
  4380. #u63075_img {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:134px;
  4386. height:30px;
  4387. }
  4388. #u63075 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:134px;
  4392. top:208px;
  4393. width:134px;
  4394. height:30px;
  4395. display:flex;
  4396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:14px;
  4400. }
  4401. #u63075 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 2px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u63075_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. visibility:hidden;
  4413. }
  4414. #u63076_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:83px;
  4420. height:30px;
  4421. }
  4422. #u63076 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:268px;
  4426. top:208px;
  4427. width:83px;
  4428. height:30px;
  4429. display:flex;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. }
  4435. #u63076 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 2px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u63076_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. visibility:hidden;
  4447. }
  4448. #u63077_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:83px;
  4454. height:30px;
  4455. }
  4456. #u63077 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:351px;
  4460. top:208px;
  4461. width:83px;
  4462. height:30px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:14px;
  4468. }
  4469. #u63077 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u63077_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u63078_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:90px;
  4488. height:30px;
  4489. }
  4490. #u63078 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:434px;
  4494. top:208px;
  4495. width:90px;
  4496. height:30px;
  4497. display:flex;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:14px;
  4502. }
  4503. #u63078 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 2px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u63078_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. visibility:hidden;
  4515. }
  4516. #u63079_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:90px;
  4522. height:30px;
  4523. }
  4524. #u63079 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:524px;
  4528. top:208px;
  4529. width:90px;
  4530. height:30px;
  4531. display:flex;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:14px;
  4536. }
  4537. #u63079 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 2px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u63079_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u63080_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:83px;
  4556. height:30px;
  4557. }
  4558. #u63080 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:614px;
  4562. top:208px;
  4563. width:83px;
  4564. height:30px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:14px;
  4570. }
  4571. #u63080 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 2px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u63080_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. visibility:hidden;
  4583. }
  4584. #u63081_img {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:83px;
  4590. height:30px;
  4591. }
  4592. #u63081 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:697px;
  4596. top:208px;
  4597. width:83px;
  4598. height:30px;
  4599. display:flex;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:14px;
  4604. }
  4605. #u63081 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:2px 2px 2px 2px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u63081_text {
  4613. border-width:0px;
  4614. word-wrap:break-word;
  4615. text-transform:none;
  4616. visibility:hidden;
  4617. }
  4618. #u63082_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:90px;
  4624. height:30px;
  4625. }
  4626. #u63082 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:780px;
  4630. top:208px;
  4631. width:90px;
  4632. height:30px;
  4633. display:flex;
  4634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:14px;
  4638. }
  4639. #u63082 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 2px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u63082_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u63083_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:83px;
  4658. height:30px;
  4659. }
  4660. #u63083 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:870px;
  4664. top:208px;
  4665. width:83px;
  4666. height:30px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. }
  4673. #u63083 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u63083_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. visibility:hidden;
  4685. }
  4686. #u63084_img {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:83px;
  4692. height:30px;
  4693. }
  4694. #u63084 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:953px;
  4698. top:208px;
  4699. width:83px;
  4700. height:30px;
  4701. display:flex;
  4702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:14px;
  4706. }
  4707. #u63084 .text {
  4708. position:absolute;
  4709. align-self:center;
  4710. padding:2px 2px 2px 2px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u63084_text {
  4715. border-width:0px;
  4716. word-wrap:break-word;
  4717. text-transform:none;
  4718. visibility:hidden;
  4719. }
  4720. #u63085_img {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:90px;
  4726. height:30px;
  4727. }
  4728. #u63085 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:1036px;
  4732. top:208px;
  4733. width:90px;
  4734. height:30px;
  4735. display:flex;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:14px;
  4740. }
  4741. #u63085 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 2px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u63085_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u63086_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:94px;
  4760. height:30px;
  4761. }
  4762. #u63086 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:1126px;
  4766. top:208px;
  4767. width:94px;
  4768. height:30px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:14px;
  4774. }
  4775. #u63086 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u63086_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u63087_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:60px;
  4794. height:30px;
  4795. background:inherit;
  4796. background-color:rgba(24, 144, 255, 1);
  4797. border:none;
  4798. border-radius:4px;
  4799. -moz-box-shadow:none;
  4800. -webkit-box-shadow:none;
  4801. box-shadow:none;
  4802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4803. font-weight:400;
  4804. font-style:normal;
  4805. font-size:14px;
  4806. color:#FFFFFF;
  4807. }
  4808. #u63087 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:533px;
  4812. top:109px;
  4813. width:60px;
  4814. height:30px;
  4815. display:flex;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:14px;
  4820. color:#FFFFFF;
  4821. }
  4822. #u63087 .text {
  4823. position:absolute;
  4824. align-self:center;
  4825. padding:2px 2px 2px 2px;
  4826. box-sizing:border-box;
  4827. width:100%;
  4828. }
  4829. #u63087_text {
  4830. border-width:0px;
  4831. word-wrap:break-word;
  4832. text-transform:none;
  4833. }
  4834. #u63088_div {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:71px;
  4840. height:50px;
  4841. background:inherit;
  4842. background-color:rgba(255, 255, 255, 0);
  4843. border:none;
  4844. border-left:0px;
  4845. border-top:0px;
  4846. border-right:0px;
  4847. border-radius:0px;
  4848. border-bottom-right-radius:0px;
  4849. border-bottom-left-radius:0px;
  4850. -moz-box-shadow:none;
  4851. -webkit-box-shadow:none;
  4852. box-shadow:none;
  4853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:14px;
  4857. line-height:40px;
  4858. }
  4859. #u63088 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:353px;
  4863. top:50px;
  4864. width:71px;
  4865. height:50px;
  4866. display:flex;
  4867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4868. font-weight:400;
  4869. font-style:normal;
  4870. font-size:14px;
  4871. line-height:40px;
  4872. }
  4873. #u63088 .text {
  4874. position:absolute;
  4875. align-self:center;
  4876. padding:0px 0px 0px 0px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u63088_text {
  4881. border-width:0px;
  4882. white-space:nowrap;
  4883. text-transform:none;
  4884. }
  4885. #u63089 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:0px;
  4891. height:0px;
  4892. }
  4893. #u63090_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:160px;
  4899. height:30px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 1);
  4902. box-sizing:border-box;
  4903. border-width:1px;
  4904. border-style:solid;
  4905. border-color:rgba(215, 215, 215, 1);
  4906. border-radius:4px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. font-size:14px;
  4911. }
  4912. #u63090 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:353px;
  4916. top:109px;
  4917. width:160px;
  4918. height:30px;
  4919. display:flex;
  4920. font-size:14px;
  4921. }
  4922. #u63090 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 2px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u63090_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u63091_input {
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:153px;
  4940. height:23px;
  4941. padding:2px 2px 2px 2px;
  4942. font-family:'ArialMT', 'Arial', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:14px;
  4946. letter-spacing:normal;
  4947. color:#AAAAAA;
  4948. vertical-align:none;
  4949. text-align:left;
  4950. text-transform:none;
  4951. background-color:transparent;
  4952. border-color:transparent;
  4953. }
  4954. #u63091_input.disabled {
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:153px;
  4959. height:23px;
  4960. padding:2px 2px 2px 2px;
  4961. font-family:'ArialMT', 'Arial', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:14px;
  4965. letter-spacing:normal;
  4966. color:#AAAAAA;
  4967. vertical-align:none;
  4968. text-align:left;
  4969. text-transform:none;
  4970. background-color:transparent;
  4971. border-color:transparent;
  4972. }
  4973. #u63091_div {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:153px;
  4979. height:23px;
  4980. background:inherit;
  4981. background-color:rgba(255, 255, 255, 1);
  4982. border:none;
  4983. border-radius:0px;
  4984. -moz-box-shadow:none;
  4985. -webkit-box-shadow:none;
  4986. box-shadow:none;
  4987. font-size:14px;
  4988. color:#AAAAAA;
  4989. }
  4990. #u63091 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:358px;
  4994. top:111px;
  4995. width:153px;
  4996. height:23px;
  4997. display:flex;
  4998. font-size:14px;
  4999. color:#AAAAAA;
  5000. }
  5001. #u63091 .text {
  5002. position:absolute;
  5003. align-self:flex-start;
  5004. padding:2px 2px 2px 2px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u63091_div.disabled {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:0px;
  5012. top:0px;
  5013. width:153px;
  5014. height:23px;
  5015. background:inherit;
  5016. background-color:rgba(240, 240, 240, 1);
  5017. border:none;
  5018. border-radius:0px;
  5019. -moz-box-shadow:none;
  5020. -webkit-box-shadow:none;
  5021. box-shadow:none;
  5022. font-size:14px;
  5023. color:#AAAAAA;
  5024. }
  5025. #u63091.disabled {
  5026. }
  5027. .u63091_input_option {
  5028. font-size:14px;
  5029. }
  5030. #u63092_div {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:60px;
  5036. height:30px;
  5037. background:inherit;
  5038. background-color:rgba(255, 255, 255, 1);
  5039. box-sizing:border-box;
  5040. border-width:1px;
  5041. border-style:solid;
  5042. border-color:rgba(170, 170, 170, 1);
  5043. border-radius:4px;
  5044. -moz-box-shadow:none;
  5045. -webkit-box-shadow:none;
  5046. box-shadow:none;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:14px;
  5051. }
  5052. #u63092 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:1506px;
  5056. top:109px;
  5057. width:60px;
  5058. height:30px;
  5059. display:flex;
  5060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:14px;
  5064. }
  5065. #u63092 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 2px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u63092_text {
  5073. border-width:0px;
  5074. word-wrap:break-word;
  5075. text-transform:none;
  5076. }
  5077. #u63093_div {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:99px;
  5083. height:50px;
  5084. background:inherit;
  5085. background-color:rgba(255, 255, 255, 0);
  5086. border:none;
  5087. border-left:0px;
  5088. border-top:0px;
  5089. border-right:0px;
  5090. border-radius:0px;
  5091. border-bottom-right-radius:0px;
  5092. border-bottom-left-radius:0px;
  5093. -moz-box-shadow:none;
  5094. -webkit-box-shadow:none;
  5095. box-shadow:none;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. line-height:40px;
  5101. }
  5102. #u63093 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:478px;
  5106. top:50px;
  5107. width:99px;
  5108. height:50px;
  5109. display:flex;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:14px;
  5114. line-height:40px;
  5115. }
  5116. #u63093 .text {
  5117. position:absolute;
  5118. align-self:center;
  5119. padding:0px 0px 0px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u63093_text {
  5124. border-width:0px;
  5125. white-space:nowrap;
  5126. text-transform:none;
  5127. }
  5128. #u63094_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:127px;
  5134. height:50px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 0);
  5137. border:none;
  5138. border-left:0px;
  5139. border-top:0px;
  5140. border-right:0px;
  5141. border-radius:0px;
  5142. border-bottom-right-radius:0px;
  5143. border-bottom-left-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. line-height:40px;
  5152. }
  5153. #u63094 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:617px;
  5157. top:50px;
  5158. width:127px;
  5159. height:50px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:14px;
  5165. line-height:40px;
  5166. }
  5167. #u63094 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:0px 0px 0px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u63094_text {
  5175. border-width:0px;
  5176. white-space:nowrap;
  5177. text-transform:none;
  5178. }
  5179. #u63095_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:99px;
  5185. height:50px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. box-sizing:border-box;
  5189. border-width:2px;
  5190. border-style:solid;
  5191. border-color:rgba(41, 143, 255, 1);
  5192. border-left:0px;
  5193. border-top:0px;
  5194. border-right:0px;
  5195. border-radius:0px;
  5196. border-bottom-right-radius:0px;
  5197. border-bottom-left-radius:0px;
  5198. -moz-box-shadow:none;
  5199. -webkit-box-shadow:none;
  5200. box-shadow:none;
  5201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. color:#298FFF;
  5206. line-height:40px;
  5207. }
  5208. #u63095 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:784px;
  5212. top:50px;
  5213. width:99px;
  5214. height:50px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:14px;
  5220. color:#298FFF;
  5221. line-height:40px;
  5222. }
  5223. #u63095 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:0px 0px 0px 0px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u63095_text {
  5231. border-width:0px;
  5232. white-space:nowrap;
  5233. text-transform:none;
  5234. }
  5235. #u63096 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:0px;
  5241. height:0px;
  5242. }
  5243. #u63097_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:200px;
  5249. height:1188px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 1);
  5252. border:none;
  5253. border-radius:0px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. }
  5258. #u63097 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:120px;
  5262. top:50px;
  5263. width:200px;
  5264. height:1188px;
  5265. display:flex;
  5266. }
  5267. #u63097 .text {
  5268. position:absolute;
  5269. align-self:center;
  5270. padding:2px 2px 2px 2px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u63097_text {
  5275. border-width:0px;
  5276. word-wrap:break-word;
  5277. text-transform:none;
  5278. visibility:hidden;
  5279. }
  5280. #u63098_div {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:200px;
  5286. height:60px;
  5287. background:inherit;
  5288. background-color:rgba(224, 231, 247, 1);
  5289. border:none;
  5290. border-radius:0px;
  5291. -moz-box-shadow:none;
  5292. -webkit-box-shadow:none;
  5293. box-shadow:none;
  5294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5295. font-weight:500;
  5296. font-style:normal;
  5297. font-size:18px;
  5298. }
  5299. #u63098 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:120px;
  5303. top:50px;
  5304. width:200px;
  5305. height:60px;
  5306. display:flex;
  5307. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5308. font-weight:500;
  5309. font-style:normal;
  5310. font-size:18px;
  5311. }
  5312. #u63098 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:0px 0px 0px 20px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u63098_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. }
  5324. #u63099_div {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:65px;
  5330. height:22px;
  5331. background:inherit;
  5332. background-color:rgba(255, 255, 255, 0);
  5333. border:none;
  5334. border-radius:0px;
  5335. -moz-box-shadow:none;
  5336. -webkit-box-shadow:none;
  5337. box-shadow:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:16px;
  5342. }
  5343. #u63099 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:147px;
  5347. top:346px;
  5348. width:65px;
  5349. height:22px;
  5350. display:flex;
  5351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:16px;
  5355. }
  5356. #u63099 .text {
  5357. position:absolute;
  5358. align-self:flex-start;
  5359. padding:0px 0px 0px 0px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u63099_text {
  5364. border-width:0px;
  5365. white-space:nowrap;
  5366. text-transform:none;
  5367. }
  5368. #u63100_div {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:65px;
  5374. height:22px;
  5375. background:inherit;
  5376. background-color:rgba(255, 255, 255, 0);
  5377. border:none;
  5378. border-radius:0px;
  5379. -moz-box-shadow:none;
  5380. -webkit-box-shadow:none;
  5381. box-shadow:none;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:16px;
  5386. }
  5387. #u63100 {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:147px;
  5391. top:388px;
  5392. width:65px;
  5393. height:22px;
  5394. display:flex;
  5395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:16px;
  5399. }
  5400. #u63100 .text {
  5401. position:absolute;
  5402. align-self:flex-start;
  5403. padding:0px 0px 0px 0px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u63100_text {
  5408. border-width:0px;
  5409. white-space:nowrap;
  5410. text-transform:none;
  5411. }
  5412. #u63101_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:81px;
  5418. height:22px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border:none;
  5422. border-radius:0px;
  5423. -moz-box-shadow:none;
  5424. -webkit-box-shadow:none;
  5425. box-shadow:none;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:16px;
  5430. }
  5431. #u63101 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:147px;
  5435. top:430px;
  5436. width:81px;
  5437. height:22px;
  5438. display:flex;
  5439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:16px;
  5443. }
  5444. #u63101 .text {
  5445. position:absolute;
  5446. align-self:flex-start;
  5447. padding:0px 0px 0px 0px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u63101_text {
  5452. border-width:0px;
  5453. white-space:nowrap;
  5454. text-transform:none;
  5455. }
  5456. #u63102_div {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:81px;
  5462. height:22px;
  5463. background:inherit;
  5464. background-color:rgba(255, 255, 255, 0);
  5465. border:none;
  5466. border-radius:0px;
  5467. -moz-box-shadow:none;
  5468. -webkit-box-shadow:none;
  5469. box-shadow:none;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:16px;
  5474. }
  5475. #u63102 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:147px;
  5479. top:472px;
  5480. width:81px;
  5481. height:22px;
  5482. display:flex;
  5483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5484. font-weight:400;
  5485. font-style:normal;
  5486. font-size:16px;
  5487. }
  5488. #u63102 .text {
  5489. position:absolute;
  5490. align-self:flex-start;
  5491. padding:0px 0px 0px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u63102_text {
  5496. border-width:0px;
  5497. white-space:nowrap;
  5498. text-transform:none;
  5499. }
  5500. #u63103_div {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:49px;
  5506. height:17px;
  5507. background:inherit;
  5508. background-color:rgba(255, 255, 255, 0);
  5509. border:none;
  5510. border-radius:0px;
  5511. -moz-box-shadow:none;
  5512. -webkit-box-shadow:none;
  5513. box-shadow:none;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#AAAAAA;
  5519. }
  5520. #u63103 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:147px;
  5524. top:310px;
  5525. width:49px;
  5526. height:17px;
  5527. display:flex;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:12px;
  5532. color:#AAAAAA;
  5533. }
  5534. #u63103 .text {
  5535. position:absolute;
  5536. align-self:flex-start;
  5537. padding:0px 0px 0px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u63103_text {
  5542. border-width:0px;
  5543. white-space:nowrap;
  5544. text-transform:none;
  5545. }
  5546. #u63104_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:201px;
  5552. height:2px;
  5553. }
  5554. #u63104 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:120px;
  5558. top:598px;
  5559. width:200px;
  5560. height:1px;
  5561. display:flex;
  5562. }
  5563. #u63104 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u63104_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u63105_div {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:65px;
  5582. height:22px;
  5583. background:inherit;
  5584. background-color:rgba(255, 255, 255, 0);
  5585. border:none;
  5586. border-radius:0px;
  5587. -moz-box-shadow:none;
  5588. -webkit-box-shadow:none;
  5589. box-shadow:none;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:16px;
  5594. }
  5595. #u63105 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:147px;
  5599. top:514px;
  5600. width:65px;
  5601. height:22px;
  5602. display:flex;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:16px;
  5607. }
  5608. #u63105 .text {
  5609. position:absolute;
  5610. align-self:flex-start;
  5611. padding:0px 0px 0px 0px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u63105_text {
  5616. border-width:0px;
  5617. white-space:nowrap;
  5618. text-transform:none;
  5619. }
  5620. #u63106_div {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:65px;
  5626. height:22px;
  5627. background:inherit;
  5628. background-color:rgba(255, 255, 255, 0);
  5629. border:none;
  5630. border-radius:0px;
  5631. -moz-box-shadow:none;
  5632. -webkit-box-shadow:none;
  5633. box-shadow:none;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:16px;
  5638. }
  5639. #u63106 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:147px;
  5643. top:556px;
  5644. width:65px;
  5645. height:22px;
  5646. display:flex;
  5647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5648. font-weight:400;
  5649. font-style:normal;
  5650. font-size:16px;
  5651. }
  5652. #u63106 .text {
  5653. position:absolute;
  5654. align-self:flex-start;
  5655. padding:0px 0px 0px 0px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u63106_text {
  5660. border-width:0px;
  5661. white-space:nowrap;
  5662. text-transform:none;
  5663. }
  5664. #u63107_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:65px;
  5670. height:22px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 0);
  5673. border:none;
  5674. border-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:16px;
  5682. }
  5683. #u63107 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:147px;
  5687. top:656px;
  5688. width:65px;
  5689. height:22px;
  5690. display:flex;
  5691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:16px;
  5695. }
  5696. #u63107 .text {
  5697. position:absolute;
  5698. align-self:flex-start;
  5699. padding:0px 0px 0px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u63107_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u63108_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:49px;
  5714. height:17px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 0);
  5717. border:none;
  5718. border-radius:0px;
  5719. -moz-box-shadow:none;
  5720. -webkit-box-shadow:none;
  5721. box-shadow:none;
  5722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:12px;
  5726. color:#AAAAAA;
  5727. }
  5728. #u63108 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:147px;
  5732. top:620px;
  5733. width:49px;
  5734. height:17px;
  5735. display:flex;
  5736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:12px;
  5740. color:#AAAAAA;
  5741. }
  5742. #u63108 .text {
  5743. position:absolute;
  5744. align-self:flex-start;
  5745. padding:0px 0px 0px 0px;
  5746. box-sizing:border-box;
  5747. width:100%;
  5748. }
  5749. #u63108_text {
  5750. border-width:0px;
  5751. white-space:nowrap;
  5752. text-transform:none;
  5753. }
  5754. #u63109_div {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:65px;
  5760. height:22px;
  5761. background:inherit;
  5762. background-color:rgba(255, 255, 255, 0);
  5763. border:none;
  5764. border-radius:0px;
  5765. -moz-box-shadow:none;
  5766. -webkit-box-shadow:none;
  5767. box-shadow:none;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:16px;
  5772. }
  5773. #u63109 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:147px;
  5777. top:166px;
  5778. width:65px;
  5779. height:22px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:16px;
  5785. }
  5786. #u63109 .text {
  5787. position:absolute;
  5788. align-self:flex-start;
  5789. padding:0px 0px 0px 0px;
  5790. box-sizing:border-box;
  5791. width:100%;
  5792. }
  5793. #u63109_text {
  5794. border-width:0px;
  5795. white-space:nowrap;
  5796. text-transform:none;
  5797. }
  5798. #u63110_div {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:65px;
  5804. height:22px;
  5805. background:inherit;
  5806. background-color:rgba(255, 255, 255, 0);
  5807. border:none;
  5808. border-radius:0px;
  5809. -moz-box-shadow:none;
  5810. -webkit-box-shadow:none;
  5811. box-shadow:none;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:16px;
  5816. }
  5817. #u63110 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:147px;
  5821. top:248px;
  5822. width:65px;
  5823. height:22px;
  5824. display:flex;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:16px;
  5829. }
  5830. #u63110 .text {
  5831. position:absolute;
  5832. align-self:flex-start;
  5833. padding:0px 0px 0px 0px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u63110_text {
  5838. border-width:0px;
  5839. white-space:nowrap;
  5840. text-transform:none;
  5841. }
  5842. #u63111_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:49px;
  5848. height:17px;
  5849. background:inherit;
  5850. background-color:rgba(255, 255, 255, 0);
  5851. border:none;
  5852. border-radius:0px;
  5853. -moz-box-shadow:none;
  5854. -webkit-box-shadow:none;
  5855. box-shadow:none;
  5856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5857. font-weight:400;
  5858. font-style:normal;
  5859. font-size:12px;
  5860. color:#AAAAAA;
  5861. }
  5862. #u63111 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:147px;
  5866. top:130px;
  5867. width:49px;
  5868. height:17px;
  5869. display:flex;
  5870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:12px;
  5874. color:#AAAAAA;
  5875. }
  5876. #u63111 .text {
  5877. position:absolute;
  5878. align-self:flex-start;
  5879. padding:0px 0px 0px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u63111_text {
  5884. border-width:0px;
  5885. white-space:nowrap;
  5886. text-transform:none;
  5887. }
  5888. #u63112_img {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:201px;
  5894. height:2px;
  5895. }
  5896. #u63112 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:120px;
  5900. top:289px;
  5901. width:200px;
  5902. height:1px;
  5903. display:flex;
  5904. }
  5905. #u63112 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 2px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u63112_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u63113_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:65px;
  5924. height:22px;
  5925. background:inherit;
  5926. background-color:rgba(255, 255, 255, 0);
  5927. border:none;
  5928. border-radius:0px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:16px;
  5936. }
  5937. #u63113 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:147px;
  5941. top:206px;
  5942. width:65px;
  5943. height:22px;
  5944. display:flex;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:16px;
  5949. }
  5950. #u63113 .text {
  5951. position:absolute;
  5952. align-self:flex-start;
  5953. padding:0px 0px 0px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u63113_text {
  5958. border-width:0px;
  5959. white-space:nowrap;
  5960. text-transform:none;
  5961. }