styles.css 112 KB

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