styles.css 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356
  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. #u145240 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u145242_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. }
  42. #u145242 {
  43. border-width:0px;
  44. position:absolute;
  45. left:120px;
  46. top:50px;
  47. width:1480px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u145242 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u145242_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u145243_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border:none;
  74. border-radius:0px;
  75. -moz-box-shadow:none;
  76. -webkit-box-shadow:none;
  77. box-shadow:none;
  78. font-size:16px;
  79. color:#FFFFFF;
  80. }
  81. #u145243 {
  82. border-width:0px;
  83. position:absolute;
  84. left:49px;
  85. top:14px;
  86. width:129px;
  87. height:22px;
  88. display:flex;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u145243 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u145243_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u145244_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border:none;
  114. border-radius:0px;
  115. -moz-box-shadow:none;
  116. -webkit-box-shadow:none;
  117. box-shadow:none;
  118. color:#AFB3B6;
  119. }
  120. #u145244 {
  121. border-width:0px;
  122. position:absolute;
  123. left:0px;
  124. top:0px;
  125. width:1600px;
  126. height:50px;
  127. display:flex;
  128. color:#AFB3B6;
  129. }
  130. #u145244 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u145244_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u145245 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u145246_img {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:31px;
  157. height:31px;
  158. }
  159. #u145246 {
  160. border-width:0px;
  161. position:absolute;
  162. left:19px;
  163. top:10px;
  164. width:31px;
  165. height:31px;
  166. display:flex;
  167. }
  168. #u145246 .text {
  169. position:absolute;
  170. align-self:center;
  171. padding:2px 2px 2px 2px;
  172. box-sizing:border-box;
  173. width:100%;
  174. }
  175. #u145246_text {
  176. border-width:0px;
  177. word-wrap:break-word;
  178. text-transform:none;
  179. }
  180. #u145247_div {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:161px;
  186. height:22px;
  187. background:inherit;
  188. background-color:rgba(255, 255, 255, 0);
  189. border:none;
  190. border-radius:0px;
  191. -moz-box-shadow:none;
  192. -webkit-box-shadow:none;
  193. box-shadow:none;
  194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  195. font-weight:400;
  196. font-style:normal;
  197. font-size:16px;
  198. color:#FFFFFF;
  199. }
  200. #u145247 {
  201. border-width:0px;
  202. position:absolute;
  203. left:62px;
  204. top:14px;
  205. width:161px;
  206. height:22px;
  207. display:flex;
  208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  209. font-weight:400;
  210. font-style:normal;
  211. font-size:16px;
  212. color:#FFFFFF;
  213. }
  214. #u145247 .text {
  215. position:absolute;
  216. align-self:flex-start;
  217. padding:0px 0px 0px 0px;
  218. box-sizing:border-box;
  219. width:100%;
  220. }
  221. #u145247_text {
  222. border-width:0px;
  223. white-space:nowrap;
  224. text-transform:none;
  225. }
  226. #u145248_div {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:120px;
  232. height:1200px;
  233. background:inherit;
  234. background-color:rgba(30, 42, 68, 1);
  235. border:none;
  236. border-radius:0px;
  237. -moz-box-shadow:none;
  238. -webkit-box-shadow:none;
  239. box-shadow:none;
  240. color:#AFB3B6;
  241. }
  242. #u145248 {
  243. border-width:0px;
  244. position:absolute;
  245. left:0px;
  246. top:47px;
  247. width:120px;
  248. height:1200px;
  249. display:flex;
  250. color:#AFB3B6;
  251. }
  252. #u145248 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u145248_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u145249 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u145250_input {
  274. position:absolute;
  275. left:0px;
  276. top:0px;
  277. width:214px;
  278. height:27px;
  279. padding:2px 2px 2px 2px;
  280. font-family:'ArialMT', 'Arial', sans-serif;
  281. font-weight:400;
  282. font-style:normal;
  283. font-size:14px;
  284. letter-spacing:normal;
  285. color:#FFFFFF;
  286. vertical-align:none;
  287. text-align:left;
  288. text-transform:none;
  289. background-color:transparent;
  290. border-color:transparent;
  291. }
  292. #u145250_input.disabled {
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:214px;
  297. height:27px;
  298. padding:2px 2px 2px 2px;
  299. font-family:'ArialMT', 'Arial', sans-serif;
  300. font-weight:400;
  301. font-style:normal;
  302. font-size:14px;
  303. letter-spacing:normal;
  304. color:#FFFFFF;
  305. vertical-align:none;
  306. text-align:left;
  307. text-transform:none;
  308. background-color:transparent;
  309. border-color:transparent;
  310. }
  311. #u145250_div {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:214px;
  317. height:27px;
  318. background:inherit;
  319. background-color:rgba(255, 255, 255, 0);
  320. border:none;
  321. border-radius:0px;
  322. -moz-box-shadow:none;
  323. -webkit-box-shadow:none;
  324. box-shadow:none;
  325. font-size:14px;
  326. color:#FFFFFF;
  327. }
  328. #u145250 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1089px;
  332. top:10px;
  333. width:214px;
  334. height:27px;
  335. display:flex;
  336. font-size:14px;
  337. color:#FFFFFF;
  338. }
  339. #u145250 .text {
  340. position:absolute;
  341. align-self:flex-start;
  342. padding:2px 2px 2px 2px;
  343. box-sizing:border-box;
  344. width:100%;
  345. }
  346. #u145250_div.disabled {
  347. border-width:0px;
  348. position:absolute;
  349. left:0px;
  350. top:0px;
  351. width:214px;
  352. height:27px;
  353. background:inherit;
  354. background-color:rgba(240, 240, 240, 1);
  355. border:none;
  356. border-radius:0px;
  357. -moz-box-shadow:none;
  358. -webkit-box-shadow:none;
  359. box-shadow:none;
  360. font-size:14px;
  361. color:#FFFFFF;
  362. }
  363. #u145250.disabled {
  364. }
  365. .u145250_input_option {
  366. font-size:14px;
  367. }
  368. #u145251_img {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:22px;
  374. height:22px;
  375. }
  376. #u145251 {
  377. border-width:0px;
  378. position:absolute;
  379. left:1062px;
  380. top:15px;
  381. width:22px;
  382. height:22px;
  383. display:flex;
  384. }
  385. #u145251 .text {
  386. position:absolute;
  387. align-self:center;
  388. padding:2px 2px 2px 2px;
  389. box-sizing:border-box;
  390. width:100%;
  391. }
  392. #u145251_text {
  393. border-width:0px;
  394. word-wrap:break-word;
  395. text-transform:none;
  396. visibility:hidden;
  397. }
  398. #u145252_div {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:100px;
  404. height:24px;
  405. background:inherit;
  406. background-color:rgba(242, 242, 242, 0.2);
  407. border:none;
  408. border-radius:25px;
  409. -moz-box-shadow:none;
  410. -webkit-box-shadow:none;
  411. box-shadow:none;
  412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  413. font-weight:400;
  414. font-style:normal;
  415. color:#FFFFFF;
  416. text-align:center;
  417. }
  418. #u145252 {
  419. border-width:0px;
  420. position:absolute;
  421. left:1350px;
  422. top:12px;
  423. width:100px;
  424. height:24px;
  425. display:flex;
  426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  427. font-weight:400;
  428. font-style:normal;
  429. color:#FFFFFF;
  430. text-align:center;
  431. }
  432. #u145252 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:0px 0px 0px 0px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u145252_text {
  440. border-width:0px;
  441. word-wrap:break-word;
  442. text-transform:none;
  443. }
  444. #u145253_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:120px;
  450. height:24px;
  451. background:inherit;
  452. background-color:rgba(242, 242, 242, 0.2);
  453. border:none;
  454. border-radius:25px;
  455. -moz-box-shadow:none;
  456. -webkit-box-shadow:none;
  457. box-shadow:none;
  458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  459. font-weight:400;
  460. font-style:normal;
  461. color:#FFFFFF;
  462. text-align:center;
  463. }
  464. #u145253 {
  465. border-width:0px;
  466. position:absolute;
  467. left:1460px;
  468. top:12px;
  469. width:120px;
  470. height:24px;
  471. display:flex;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. color:#FFFFFF;
  476. text-align:center;
  477. }
  478. #u145253 .text {
  479. position:absolute;
  480. align-self:center;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u145253_text {
  486. border-width:0px;
  487. word-wrap:break-word;
  488. text-transform:none;
  489. }
  490. #u145254 {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:0px;
  496. height:0px;
  497. }
  498. #u145255_div {
  499. border-width:0px;
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:33px;
  504. height:22px;
  505. background:inherit;
  506. background-color:rgba(255, 255, 255, 0);
  507. border:none;
  508. border-radius:0px;
  509. -moz-box-shadow:none;
  510. -webkit-box-shadow:none;
  511. box-shadow:none;
  512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  513. font-weight:400;
  514. font-style:normal;
  515. font-size:16px;
  516. color:#FFFFFF;
  517. }
  518. #u145255 {
  519. border-width:0px;
  520. position:absolute;
  521. left:39px;
  522. top:71px;
  523. width:33px;
  524. height:22px;
  525. display:flex;
  526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  527. font-weight:400;
  528. font-style:normal;
  529. font-size:16px;
  530. color:#FFFFFF;
  531. }
  532. #u145255 .text {
  533. position:absolute;
  534. align-self:flex-start;
  535. padding:0px 0px 0px 0px;
  536. box-sizing:border-box;
  537. width:100%;
  538. }
  539. #u145255_text {
  540. border-width:0px;
  541. white-space:nowrap;
  542. text-transform:none;
  543. }
  544. #u145256_img {
  545. border-width:0px;
  546. position:absolute;
  547. left:0px;
  548. top:0px;
  549. width:14px;
  550. height:14px;
  551. }
  552. #u145256 {
  553. border-width:0px;
  554. position:absolute;
  555. left:20px;
  556. top:75px;
  557. width:14px;
  558. height:14px;
  559. display:flex;
  560. }
  561. #u145256 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:2px 2px 2px 2px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u145256_text {
  569. border-width:0px;
  570. word-wrap:break-word;
  571. text-transform:none;
  572. visibility:hidden;
  573. }
  574. #u145257 {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:0px;
  580. height:0px;
  581. }
  582. #u145258_div {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:33px;
  588. height:22px;
  589. background:inherit;
  590. background-color:rgba(255, 255, 255, 0);
  591. border:none;
  592. border-radius:0px;
  593. -moz-box-shadow:none;
  594. -webkit-box-shadow:none;
  595. box-shadow:none;
  596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  597. font-weight:400;
  598. font-style:normal;
  599. font-size:16px;
  600. color:#FFFFFF;
  601. }
  602. #u145258 {
  603. border-width:0px;
  604. position:absolute;
  605. left:39px;
  606. top:147px;
  607. width:33px;
  608. height:22px;
  609. display:flex;
  610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  611. font-weight:400;
  612. font-style:normal;
  613. font-size:16px;
  614. color:#FFFFFF;
  615. }
  616. #u145258 .text {
  617. position:absolute;
  618. align-self:flex-start;
  619. padding:0px 0px 0px 0px;
  620. box-sizing:border-box;
  621. width:100%;
  622. }
  623. #u145258_text {
  624. border-width:0px;
  625. white-space:nowrap;
  626. text-transform:none;
  627. }
  628. #u145259_img {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:14px;
  634. height:14px;
  635. }
  636. #u145259 {
  637. border-width:0px;
  638. position:absolute;
  639. left:20px;
  640. top:151px;
  641. width:14px;
  642. height:14px;
  643. display:flex;
  644. }
  645. #u145259 .text {
  646. position:absolute;
  647. align-self:center;
  648. padding:2px 2px 2px 2px;
  649. box-sizing:border-box;
  650. width:100%;
  651. }
  652. #u145259_text {
  653. border-width:0px;
  654. word-wrap:break-word;
  655. text-transform:none;
  656. visibility:hidden;
  657. }
  658. #u145260 {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:0px;
  664. height:0px;
  665. }
  666. #u145261_div {
  667. border-width:0px;
  668. position:absolute;
  669. left:0px;
  670. top:0px;
  671. width:33px;
  672. height:22px;
  673. background:inherit;
  674. background-color:rgba(255, 255, 255, 0);
  675. border:none;
  676. border-radius:0px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:16px;
  684. color:#FFFFFF;
  685. }
  686. #u145261 {
  687. border-width:0px;
  688. position:absolute;
  689. left:39px;
  690. top:399px;
  691. width:33px;
  692. height:22px;
  693. display:flex;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:16px;
  698. color:#FFFFFF;
  699. }
  700. #u145261 .text {
  701. position:absolute;
  702. align-self:flex-start;
  703. padding:0px 0px 0px 0px;
  704. box-sizing:border-box;
  705. width:100%;
  706. }
  707. #u145261_text {
  708. border-width:0px;
  709. white-space:nowrap;
  710. text-transform:none;
  711. }
  712. #u145262_img {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:14px;
  718. height:14px;
  719. }
  720. #u145262 {
  721. border-width:0px;
  722. position:absolute;
  723. left:20px;
  724. top:403px;
  725. width:14px;
  726. height:14px;
  727. display:flex;
  728. }
  729. #u145262 .text {
  730. position:absolute;
  731. align-self:center;
  732. padding:2px 2px 2px 2px;
  733. box-sizing:border-box;
  734. width:100%;
  735. }
  736. #u145262_text {
  737. border-width:0px;
  738. word-wrap:break-word;
  739. text-transform:none;
  740. visibility:hidden;
  741. }
  742. #u145263 {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:0px;
  748. height:0px;
  749. }
  750. #u145264_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:49px;
  756. height:22px;
  757. background:inherit;
  758. background-color:rgba(255, 255, 255, 0);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:16px;
  768. color:#FFFFFF;
  769. }
  770. #u145264 {
  771. border-width:0px;
  772. position:absolute;
  773. left:39px;
  774. top:109px;
  775. width:49px;
  776. height:22px;
  777. display:flex;
  778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  779. font-weight:400;
  780. font-style:normal;
  781. font-size:16px;
  782. color:#FFFFFF;
  783. }
  784. #u145264 .text {
  785. position:absolute;
  786. align-self:flex-start;
  787. padding:0px 0px 0px 0px;
  788. box-sizing:border-box;
  789. width:100%;
  790. }
  791. #u145264_text {
  792. border-width:0px;
  793. white-space:nowrap;
  794. text-transform:none;
  795. }
  796. #u145265_img {
  797. border-width:0px;
  798. position:absolute;
  799. left:0px;
  800. top:0px;
  801. width:14px;
  802. height:14px;
  803. }
  804. #u145265 {
  805. border-width:0px;
  806. position:absolute;
  807. left:20px;
  808. top:113px;
  809. width:14px;
  810. height:14px;
  811. display:flex;
  812. }
  813. #u145265 .text {
  814. position:absolute;
  815. align-self:center;
  816. padding:2px 2px 2px 2px;
  817. box-sizing:border-box;
  818. width:100%;
  819. }
  820. #u145265_text {
  821. border-width:0px;
  822. word-wrap:break-word;
  823. text-transform:none;
  824. visibility:hidden;
  825. }
  826. #u145266 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:0px;
  832. height:0px;
  833. }
  834. #u145267_div {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:33px;
  840. height:22px;
  841. background:inherit;
  842. background-color:rgba(255, 255, 255, 0);
  843. border:none;
  844. border-radius:0px;
  845. -moz-box-shadow:none;
  846. -webkit-box-shadow:none;
  847. box-shadow:none;
  848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  849. font-weight:400;
  850. font-style:normal;
  851. font-size:16px;
  852. color:#FFFFFF;
  853. }
  854. #u145267 {
  855. border-width:0px;
  856. position:absolute;
  857. left:39px;
  858. top:441px;
  859. width:33px;
  860. height:22px;
  861. display:flex;
  862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  863. font-weight:400;
  864. font-style:normal;
  865. font-size:16px;
  866. color:#FFFFFF;
  867. }
  868. #u145267 .text {
  869. position:absolute;
  870. align-self:flex-start;
  871. padding:0px 0px 0px 0px;
  872. box-sizing:border-box;
  873. width:100%;
  874. }
  875. #u145267_text {
  876. border-width:0px;
  877. white-space:nowrap;
  878. text-transform:none;
  879. }
  880. #u145268_img {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:14px;
  886. height:14px;
  887. }
  888. #u145268 {
  889. border-width:0px;
  890. position:absolute;
  891. left:20px;
  892. top:445px;
  893. width:14px;
  894. height:14px;
  895. display:flex;
  896. }
  897. #u145268 .text {
  898. position:absolute;
  899. align-self:center;
  900. padding:2px 2px 2px 2px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u145268_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. visibility:hidden;
  909. }
  910. #u145269 {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:0px;
  916. height:0px;
  917. }
  918. #u145270_div {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:33px;
  924. height:22px;
  925. background:inherit;
  926. background-color:rgba(255, 255, 255, 0);
  927. border:none;
  928. border-radius:0px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:16px;
  936. color:#FFFFFF;
  937. }
  938. #u145270 {
  939. border-width:0px;
  940. position:absolute;
  941. left:39px;
  942. top:315px;
  943. width:33px;
  944. height:22px;
  945. display:flex;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:16px;
  950. color:#FFFFFF;
  951. }
  952. #u145270 .text {
  953. position:absolute;
  954. align-self:flex-start;
  955. padding:0px 0px 0px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u145270_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u145271_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:14px;
  970. height:14px;
  971. }
  972. #u145271 {
  973. border-width:0px;
  974. position:absolute;
  975. left:20px;
  976. top:319px;
  977. width:14px;
  978. height:14px;
  979. display:flex;
  980. }
  981. #u145271 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u145271_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. visibility:hidden;
  993. }
  994. #u145272 {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:0px;
  1000. height:0px;
  1001. }
  1002. #u145273_div {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:33px;
  1008. height:22px;
  1009. background:inherit;
  1010. background-color:rgba(255, 255, 255, 0);
  1011. border:none;
  1012. border-radius:0px;
  1013. -moz-box-shadow:none;
  1014. -webkit-box-shadow:none;
  1015. box-shadow:none;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:16px;
  1020. color:#FFFFFF;
  1021. }
  1022. #u145273 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:39px;
  1026. top:189px;
  1027. width:33px;
  1028. height:22px;
  1029. display:flex;
  1030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1031. font-weight:400;
  1032. font-style:normal;
  1033. font-size:16px;
  1034. color:#FFFFFF;
  1035. }
  1036. #u145273 .text {
  1037. position:absolute;
  1038. align-self:flex-start;
  1039. padding:0px 0px 0px 0px;
  1040. box-sizing:border-box;
  1041. width:100%;
  1042. }
  1043. #u145273_text {
  1044. border-width:0px;
  1045. white-space:nowrap;
  1046. text-transform:none;
  1047. }
  1048. #u145274_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:14px;
  1054. height:14px;
  1055. }
  1056. #u145274 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:20px;
  1060. top:193px;
  1061. width:14px;
  1062. height:14px;
  1063. display:flex;
  1064. }
  1065. #u145274 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u145274_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u145275 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:0px;
  1084. height:0px;
  1085. }
  1086. #u145276_div {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:33px;
  1092. height:22px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border:none;
  1096. border-radius:0px;
  1097. -moz-box-shadow:none;
  1098. -webkit-box-shadow:none;
  1099. box-shadow:none;
  1100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:16px;
  1104. color:#FFFFFF;
  1105. }
  1106. #u145276 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:39px;
  1110. top:357px;
  1111. width:33px;
  1112. height:22px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. font-size:16px;
  1118. color:#FFFFFF;
  1119. }
  1120. #u145276 .text {
  1121. position:absolute;
  1122. align-self:flex-start;
  1123. padding:0px 0px 0px 0px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u145276_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u145277_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:14px;
  1138. height:14px;
  1139. }
  1140. #u145277 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:20px;
  1144. top:361px;
  1145. width:14px;
  1146. height:14px;
  1147. display:flex;
  1148. }
  1149. #u145277 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u145277_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u145278 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u145279_div {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:33px;
  1176. height:22px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 0);
  1179. border:none;
  1180. border-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:16px;
  1188. color:#FFFFFF;
  1189. }
  1190. #u145279 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:39px;
  1194. top:483px;
  1195. width:33px;
  1196. height:22px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:16px;
  1202. color:#FFFFFF;
  1203. }
  1204. #u145279 .text {
  1205. position:absolute;
  1206. align-self:flex-start;
  1207. padding:0px 0px 0px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u145279_text {
  1212. border-width:0px;
  1213. white-space:nowrap;
  1214. text-transform:none;
  1215. }
  1216. #u145280_img {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:14px;
  1222. height:14px;
  1223. }
  1224. #u145280 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:487px;
  1229. width:14px;
  1230. height:14px;
  1231. display:flex;
  1232. }
  1233. #u145280 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u145280_text {
  1241. border-width:0px;
  1242. word-wrap:break-word;
  1243. text-transform:none;
  1244. visibility:hidden;
  1245. }
  1246. #u145281 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:0px;
  1252. height:0px;
  1253. }
  1254. #u145282_div {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:33px;
  1260. height:22px;
  1261. background:inherit;
  1262. background-color:rgba(255, 255, 255, 0);
  1263. border:none;
  1264. border-radius:0px;
  1265. -moz-box-shadow:none;
  1266. -webkit-box-shadow:none;
  1267. box-shadow:none;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:16px;
  1272. color:#FFFFFF;
  1273. }
  1274. #u145282 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:39px;
  1278. top:525px;
  1279. width:33px;
  1280. height:22px;
  1281. display:flex;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:16px;
  1286. color:#FFFFFF;
  1287. }
  1288. #u145282 .text {
  1289. position:absolute;
  1290. align-self:flex-start;
  1291. padding:0px 0px 0px 0px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u145282_text {
  1296. border-width:0px;
  1297. white-space:nowrap;
  1298. text-transform:none;
  1299. }
  1300. #u145283_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:14px;
  1306. height:14px;
  1307. }
  1308. #u145283 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:20px;
  1312. top:529px;
  1313. width:14px;
  1314. height:14px;
  1315. display:flex;
  1316. }
  1317. #u145283 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:2px 2px 2px 2px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u145283_text {
  1325. border-width:0px;
  1326. word-wrap:break-word;
  1327. text-transform:none;
  1328. visibility:hidden;
  1329. }
  1330. #u145284_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:29px;
  1336. height:20px;
  1337. background:inherit;
  1338. background-color:rgba(255, 255, 255, 0);
  1339. border:none;
  1340. border-radius:25px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. color:#FFFFFF;
  1348. }
  1349. #u145284 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:52px;
  1353. top:1145px;
  1354. width:29px;
  1355. height:20px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. }
  1362. #u145284 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:0px 0px 0px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u145284_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u145285_img {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:22px;
  1380. height:22px;
  1381. }
  1382. #u145285 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:20px;
  1386. top:1144px;
  1387. width:22px;
  1388. height:22px;
  1389. display:flex;
  1390. }
  1391. #u145285 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u145285_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. visibility:hidden;
  1403. }
  1404. #u145286_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:29px;
  1410. height:20px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 0);
  1413. border:none;
  1414. border-radius:25px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. color:#FFFFFF;
  1422. }
  1423. #u145286 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:52px;
  1427. top:1187px;
  1428. width:29px;
  1429. height:20px;
  1430. display:flex;
  1431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1432. font-weight:400;
  1433. font-style:normal;
  1434. color:#FFFFFF;
  1435. }
  1436. #u145286 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u145286_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u145287_img {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:22px;
  1454. height:22px;
  1455. }
  1456. #u145287 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:20px;
  1460. top:1186px;
  1461. width:22px;
  1462. height:22px;
  1463. display:flex;
  1464. }
  1465. #u145287 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:2px 2px 2px 2px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u145287_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. visibility:hidden;
  1477. }
  1478. #u145288 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:0px;
  1484. height:0px;
  1485. }
  1486. #u145289_div {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:33px;
  1492. height:22px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 0);
  1495. border:none;
  1496. border-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:16px;
  1504. color:#FFFFFF;
  1505. }
  1506. #u145289 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:39px;
  1510. top:231px;
  1511. width:33px;
  1512. height:22px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:16px;
  1518. color:#FFFFFF;
  1519. }
  1520. #u145289 .text {
  1521. position:absolute;
  1522. align-self:flex-start;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u145289_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u145290_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:14px;
  1538. height:14px;
  1539. }
  1540. #u145290 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:20px;
  1544. top:235px;
  1545. width:14px;
  1546. height:14px;
  1547. display:flex;
  1548. }
  1549. #u145290 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u145290_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u145291 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:0px;
  1568. height:0px;
  1569. }
  1570. #u145292_div {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:33px;
  1576. height:22px;
  1577. background:inherit;
  1578. background-color:rgba(255, 255, 255, 0);
  1579. border:none;
  1580. border-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:16px;
  1588. color:#FFFFFF;
  1589. }
  1590. #u145292 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:39px;
  1594. top:273px;
  1595. width:33px;
  1596. height:22px;
  1597. display:flex;
  1598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1599. font-weight:400;
  1600. font-style:normal;
  1601. font-size:16px;
  1602. color:#FFFFFF;
  1603. }
  1604. #u145292 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 0px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u145292_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u145293_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:14px;
  1622. height:14px;
  1623. }
  1624. #u145293 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:20px;
  1628. top:277px;
  1629. width:14px;
  1630. height:14px;
  1631. display:flex;
  1632. }
  1633. #u145293 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u145293_text {
  1641. border-width:0px;
  1642. word-wrap:break-word;
  1643. text-transform:none;
  1644. visibility:hidden;
  1645. }
  1646. #u145294 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:0px;
  1652. height:0px;
  1653. }
  1654. #u145295_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:200px;
  1660. height:1187px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 1);
  1663. border:none;
  1664. border-radius:0px;
  1665. -moz-box-shadow:none;
  1666. -webkit-box-shadow:none;
  1667. box-shadow:none;
  1668. }
  1669. #u145295 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:120px;
  1673. top:50px;
  1674. width:200px;
  1675. height:1187px;
  1676. display:flex;
  1677. }
  1678. #u145295 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 2px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u145295_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u145296_div {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:200px;
  1697. height:60px;
  1698. background:inherit;
  1699. background-color:rgba(224, 231, 247, 1);
  1700. border:none;
  1701. border-radius:0px;
  1702. -moz-box-shadow:none;
  1703. -webkit-box-shadow:none;
  1704. box-shadow:none;
  1705. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1706. font-weight:500;
  1707. font-style:normal;
  1708. font-size:18px;
  1709. }
  1710. #u145296 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:120px;
  1714. top:50px;
  1715. width:200px;
  1716. height:60px;
  1717. display:flex;
  1718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1719. font-weight:500;
  1720. font-style:normal;
  1721. font-size:18px;
  1722. }
  1723. #u145296 .text {
  1724. position:absolute;
  1725. align-self:center;
  1726. padding:0px 0px 0px 20px;
  1727. box-sizing:border-box;
  1728. width:100%;
  1729. }
  1730. #u145296_text {
  1731. border-width:0px;
  1732. word-wrap:break-word;
  1733. text-transform:none;
  1734. }
  1735. #u145297_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:97px;
  1741. height:22px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 0);
  1744. border:none;
  1745. border-radius:0px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:16px;
  1753. }
  1754. #u145297 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:147px;
  1758. top:167px;
  1759. width:97px;
  1760. height:22px;
  1761. display:flex;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:16px;
  1766. }
  1767. #u145297 .text {
  1768. position:absolute;
  1769. align-self:flex-start;
  1770. padding:0px 0px 0px 0px;
  1771. box-sizing:border-box;
  1772. width:100%;
  1773. }
  1774. #u145297_text {
  1775. border-width:0px;
  1776. word-wrap:break-word;
  1777. text-transform:none;
  1778. }
  1779. #u145298_img {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:201px;
  1785. height:2px;
  1786. }
  1787. #u145298 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:120px;
  1791. top:255px;
  1792. width:200px;
  1793. height:1px;
  1794. display:flex;
  1795. }
  1796. #u145298 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:2px 2px 2px 2px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u145298_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. visibility:hidden;
  1808. }
  1809. #u145299_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:97px;
  1815. height:22px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 255, 0);
  1818. border:none;
  1819. border-radius:0px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:16px;
  1827. }
  1828. #u145299 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:147px;
  1832. top:208px;
  1833. width:97px;
  1834. height:22px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:16px;
  1840. }
  1841. #u145299 .text {
  1842. position:absolute;
  1843. align-self:flex-start;
  1844. padding:0px 0px 0px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u145299_text {
  1849. border-width:0px;
  1850. white-space:nowrap;
  1851. text-transform:none;
  1852. }
  1853. #u145300_div {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:65px;
  1859. height:22px;
  1860. background:inherit;
  1861. background-color:rgba(255, 255, 255, 0);
  1862. border:none;
  1863. border-radius:0px;
  1864. -moz-box-shadow:none;
  1865. -webkit-box-shadow:none;
  1866. box-shadow:none;
  1867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1868. font-weight:400;
  1869. font-style:normal;
  1870. font-size:16px;
  1871. }
  1872. #u145300 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:147px;
  1876. top:312px;
  1877. width:65px;
  1878. height:22px;
  1879. display:flex;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:16px;
  1884. }
  1885. #u145300 .text {
  1886. position:absolute;
  1887. align-self:flex-start;
  1888. padding:0px 0px 0px 0px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u145300_text {
  1893. border-width:0px;
  1894. white-space:nowrap;
  1895. text-transform:none;
  1896. }
  1897. #u145301_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:49px;
  1903. height:17px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#AAAAAA;
  1916. }
  1917. #u145301 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:147px;
  1921. top:275px;
  1922. width:49px;
  1923. height:17px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:12px;
  1929. color:#AAAAAA;
  1930. }
  1931. #u145301 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u145301_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u145302_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:49px;
  1949. height:17px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border:none;
  1953. border-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. color:#AAAAAA;
  1962. }
  1963. #u145302 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:147px;
  1967. top:130px;
  1968. width:49px;
  1969. height:17px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#AAAAAA;
  1976. }
  1977. #u145302 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u145302_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u145303_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:201px;
  1995. height:2px;
  1996. }
  1997. #u145303 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:120px;
  2001. top:1017px;
  2002. width:200px;
  2003. height:1px;
  2004. display:flex;
  2005. }
  2006. #u145303 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u145303_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u145304_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:65px;
  2025. height:22px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 0);
  2028. border:none;
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:16px;
  2037. }
  2038. #u145304 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:147px;
  2042. top:1074px;
  2043. width:65px;
  2044. height:22px;
  2045. display:flex;
  2046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:16px;
  2050. }
  2051. #u145304 .text {
  2052. position:absolute;
  2053. align-self:flex-start;
  2054. padding:0px 0px 0px 0px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u145304_text {
  2059. border-width:0px;
  2060. white-space:nowrap;
  2061. text-transform:none;
  2062. }
  2063. #u145305_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:49px;
  2069. height:17px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border:none;
  2073. border-radius:0px;
  2074. -moz-box-shadow:none;
  2075. -webkit-box-shadow:none;
  2076. box-shadow:none;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#AAAAAA;
  2082. }
  2083. #u145305 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:147px;
  2087. top:1037px;
  2088. width:49px;
  2089. height:17px;
  2090. display:flex;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:12px;
  2095. color:#AAAAAA;
  2096. }
  2097. #u145305 .text {
  2098. position:absolute;
  2099. align-self:flex-start;
  2100. padding:0px 0px 0px 0px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u145305_text {
  2105. border-width:0px;
  2106. white-space:nowrap;
  2107. text-transform:none;
  2108. }
  2109. #u145306_img {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:0px;
  2113. top:0px;
  2114. width:201px;
  2115. height:2px;
  2116. }
  2117. #u145306 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:120px;
  2121. top:481px;
  2122. width:200px;
  2123. height:1px;
  2124. display:flex;
  2125. }
  2126. #u145306 .text {
  2127. position:absolute;
  2128. align-self:center;
  2129. padding:2px 2px 2px 2px;
  2130. box-sizing:border-box;
  2131. width:100%;
  2132. }
  2133. #u145306_text {
  2134. border-width:0px;
  2135. word-wrap:break-word;
  2136. text-transform:none;
  2137. visibility:hidden;
  2138. }
  2139. #u145307_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:65px;
  2145. height:22px;
  2146. background:inherit;
  2147. background-color:rgba(255, 255, 255, 0);
  2148. border:none;
  2149. border-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:16px;
  2157. }
  2158. #u145307 {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:147px;
  2162. top:538px;
  2163. width:65px;
  2164. height:22px;
  2165. display:flex;
  2166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2167. font-weight:400;
  2168. font-style:normal;
  2169. font-size:16px;
  2170. }
  2171. #u145307 .text {
  2172. position:absolute;
  2173. align-self:flex-start;
  2174. padding:0px 0px 0px 0px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u145307_text {
  2179. border-width:0px;
  2180. white-space:nowrap;
  2181. text-transform:none;
  2182. }
  2183. #u145308_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:49px;
  2189. height:17px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:12px;
  2201. color:#AAAAAA;
  2202. }
  2203. #u145308 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:147px;
  2207. top:501px;
  2208. width:49px;
  2209. height:17px;
  2210. display:flex;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:12px;
  2215. color:#AAAAAA;
  2216. }
  2217. #u145308 .text {
  2218. position:absolute;
  2219. align-self:flex-start;
  2220. padding:0px 0px 0px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u145308_text {
  2225. border-width:0px;
  2226. white-space:nowrap;
  2227. text-transform:none;
  2228. }
  2229. #u145309_div {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:97px;
  2235. height:22px;
  2236. background:inherit;
  2237. background-color:rgba(255, 255, 255, 0);
  2238. border:none;
  2239. border-radius:0px;
  2240. -moz-box-shadow:none;
  2241. -webkit-box-shadow:none;
  2242. box-shadow:none;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:16px;
  2247. }
  2248. #u145309 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:147px;
  2252. top:579px;
  2253. width:97px;
  2254. height:22px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:16px;
  2260. }
  2261. #u145309 .text {
  2262. position:absolute;
  2263. align-self:flex-start;
  2264. padding:0px 0px 0px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u145309_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u145310_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:65px;
  2279. height:22px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-radius:0px;
  2284. -moz-box-shadow:none;
  2285. -webkit-box-shadow:none;
  2286. box-shadow:none;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:16px;
  2291. }
  2292. #u145310 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:147px;
  2296. top:354px;
  2297. width:65px;
  2298. height:22px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:16px;
  2304. }
  2305. #u145310 .text {
  2306. position:absolute;
  2307. align-self:flex-start;
  2308. padding:0px 0px 0px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u145310_text {
  2313. border-width:0px;
  2314. white-space:nowrap;
  2315. text-transform:none;
  2316. }
  2317. #u145311_div {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:97px;
  2323. height:22px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 255, 0);
  2326. border:none;
  2327. border-radius:0px;
  2328. -moz-box-shadow:none;
  2329. -webkit-box-shadow:none;
  2330. box-shadow:none;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:16px;
  2335. }
  2336. #u145311 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:147px;
  2340. top:621px;
  2341. width:97px;
  2342. height:22px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:16px;
  2348. }
  2349. #u145311 .text {
  2350. position:absolute;
  2351. align-self:flex-start;
  2352. padding:0px 0px 0px 0px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u145311_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. }
  2361. #u145312_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:97px;
  2367. height:22px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 0);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:16px;
  2379. }
  2380. #u145312 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:147px;
  2384. top:663px;
  2385. width:97px;
  2386. height:22px;
  2387. display:flex;
  2388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:16px;
  2392. }
  2393. #u145312 .text {
  2394. position:absolute;
  2395. align-self:flex-start;
  2396. padding:0px 0px 0px 0px;
  2397. box-sizing:border-box;
  2398. width:100%;
  2399. }
  2400. #u145312_text {
  2401. border-width:0px;
  2402. word-wrap:break-word;
  2403. text-transform:none;
  2404. }
  2405. #u145313_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:201px;
  2411. height:2px;
  2412. }
  2413. #u145313 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:120px;
  2417. top:708px;
  2418. width:200px;
  2419. height:1px;
  2420. display:flex;
  2421. }
  2422. #u145313 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u145313_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u145314_div {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:65px;
  2441. height:22px;
  2442. background:inherit;
  2443. background-color:rgba(255, 255, 255, 0);
  2444. border:none;
  2445. border-radius:0px;
  2446. -moz-box-shadow:none;
  2447. -webkit-box-shadow:none;
  2448. box-shadow:none;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:16px;
  2453. }
  2454. #u145314 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:147px;
  2458. top:765px;
  2459. width:65px;
  2460. height:22px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:16px;
  2466. }
  2467. #u145314 .text {
  2468. position:absolute;
  2469. align-self:flex-start;
  2470. padding:0px 0px 0px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u145314_text {
  2475. border-width:0px;
  2476. white-space:nowrap;
  2477. text-transform:none;
  2478. }
  2479. #u145315_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:49px;
  2485. height:17px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 0);
  2488. border:none;
  2489. border-radius:0px;
  2490. -moz-box-shadow:none;
  2491. -webkit-box-shadow:none;
  2492. box-shadow:none;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. color:#AAAAAA;
  2498. }
  2499. #u145315 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:147px;
  2503. top:728px;
  2504. width:49px;
  2505. height:17px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. color:#AAAAAA;
  2512. }
  2513. #u145315 .text {
  2514. position:absolute;
  2515. align-self:flex-start;
  2516. padding:0px 0px 0px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u145315_text {
  2521. border-width:0px;
  2522. white-space:nowrap;
  2523. text-transform:none;
  2524. }
  2525. #u145316_div {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:97px;
  2531. height:22px;
  2532. background:inherit;
  2533. background-color:rgba(255, 255, 255, 0);
  2534. border:none;
  2535. border-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:16px;
  2543. }
  2544. #u145316 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:147px;
  2548. top:806px;
  2549. width:97px;
  2550. height:22px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:16px;
  2556. }
  2557. #u145316 .text {
  2558. position:absolute;
  2559. align-self:flex-start;
  2560. padding:0px 0px 0px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u145316_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u145317_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:65px;
  2575. height:22px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. border:none;
  2579. border-radius:0px;
  2580. -moz-box-shadow:none;
  2581. -webkit-box-shadow:none;
  2582. box-shadow:none;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:16px;
  2587. }
  2588. #u145317 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:147px;
  2592. top:888px;
  2593. width:65px;
  2594. height:22px;
  2595. display:flex;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:16px;
  2600. }
  2601. #u145317 .text {
  2602. position:absolute;
  2603. align-self:flex-start;
  2604. padding:0px 0px 0px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u145317_text {
  2609. border-width:0px;
  2610. white-space:nowrap;
  2611. text-transform:none;
  2612. }
  2613. #u145318_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:65px;
  2619. height:22px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 0);
  2622. border:none;
  2623. border-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:16px;
  2631. }
  2632. #u145318 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:147px;
  2636. top:972px;
  2637. width:65px;
  2638. height:22px;
  2639. display:flex;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:16px;
  2644. }
  2645. #u145318 .text {
  2646. position:absolute;
  2647. align-self:flex-start;
  2648. padding:0px 0px 0px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u145318_text {
  2653. border-width:0px;
  2654. white-space:nowrap;
  2655. text-transform:none;
  2656. }
  2657. #u145319_div {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:65px;
  2663. height:22px;
  2664. background:inherit;
  2665. background-color:rgba(255, 255, 255, 0);
  2666. border:none;
  2667. border-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:16px;
  2675. }
  2676. #u145319 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:147px;
  2680. top:930px;
  2681. width:65px;
  2682. height:22px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:16px;
  2688. }
  2689. #u145319 .text {
  2690. position:absolute;
  2691. align-self:flex-start;
  2692. padding:0px 0px 0px 0px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u145319_text {
  2697. border-width:0px;
  2698. white-space:nowrap;
  2699. text-transform:none;
  2700. }
  2701. #u145320_div {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:65px;
  2707. height:22px;
  2708. background:inherit;
  2709. background-color:rgba(255, 255, 255, 0);
  2710. border:none;
  2711. border-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:16px;
  2719. }
  2720. #u145320 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:147px;
  2724. top:847px;
  2725. width:65px;
  2726. height:22px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:16px;
  2732. }
  2733. #u145320 .text {
  2734. position:absolute;
  2735. align-self:flex-start;
  2736. padding:0px 0px 0px 0px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u145320_text {
  2741. border-width:0px;
  2742. white-space:nowrap;
  2743. text-transform:none;
  2744. }
  2745. #u145321_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:65px;
  2751. height:22px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 0);
  2754. border:none;
  2755. border-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:16px;
  2763. }
  2764. #u145321 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:147px;
  2768. top:396px;
  2769. width:65px;
  2770. height:22px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:16px;
  2776. }
  2777. #u145321 .text {
  2778. position:absolute;
  2779. align-self:flex-start;
  2780. padding:0px 0px 0px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u145321_text {
  2785. border-width:0px;
  2786. white-space:nowrap;
  2787. text-transform:none;
  2788. }
  2789. #u145322_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:65px;
  2795. height:22px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 0);
  2798. border:none;
  2799. border-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:16px;
  2807. }
  2808. #u145322 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:147px;
  2812. top:438px;
  2813. width:65px;
  2814. height:22px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:16px;
  2820. }
  2821. #u145322 .text {
  2822. position:absolute;
  2823. align-self:flex-start;
  2824. padding:0px 0px 0px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u145322_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u145323_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:1265px;
  2839. height:1187px;
  2840. background:inherit;
  2841. background-color:rgba(255, 255, 255, 1);
  2842. box-sizing:border-box;
  2843. border-width:1px;
  2844. border-style:solid;
  2845. border-color:rgba(215, 215, 215, 1);
  2846. border-radius:0px;
  2847. -moz-box-shadow:none;
  2848. -webkit-box-shadow:none;
  2849. box-shadow:none;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:12px;
  2854. color:#FFFFFF;
  2855. text-align:left;
  2856. }
  2857. #u145323 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:330px;
  2861. top:50px;
  2862. width:1265px;
  2863. height:1187px;
  2864. display:flex;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:12px;
  2869. color:#FFFFFF;
  2870. text-align:left;
  2871. }
  2872. #u145323 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 50px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u145323_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u145324 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:350px;
  2889. top:172px;
  2890. width:1225px;
  2891. height:316px;
  2892. }
  2893. #u145325_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:112px;
  2899. height:40px;
  2900. }
  2901. #u145325 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:112px;
  2907. height:40px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. color:#FFFFFF;
  2914. }
  2915. #u145325 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u145325_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. }
  2927. #u145326_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:112px;
  2933. height:40px;
  2934. }
  2935. #u145326 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:112px;
  2939. top:0px;
  2940. width:112px;
  2941. height:40px;
  2942. display:flex;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:12px;
  2947. color:#FFFFFF;
  2948. }
  2949. #u145326 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u145326_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. }
  2961. #u145327_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:112px;
  2967. height:40px;
  2968. }
  2969. #u145327 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:224px;
  2973. top:0px;
  2974. width:112px;
  2975. height:40px;
  2976. display:flex;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. color:#FFFFFF;
  2982. }
  2983. #u145327 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u145327_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. }
  2995. #u145328_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:114px;
  3001. height:40px;
  3002. }
  3003. #u145328 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:336px;
  3007. top:0px;
  3008. width:114px;
  3009. height:40px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#FFFFFF;
  3016. }
  3017. #u145328 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u145328_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u145329_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:112px;
  3035. height:40px;
  3036. }
  3037. #u145329 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:450px;
  3041. top:0px;
  3042. width:112px;
  3043. height:40px;
  3044. display:flex;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. color:#FFFFFF;
  3050. }
  3051. #u145329 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 0px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u145329_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. }
  3063. #u145330_img {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:114px;
  3069. height:40px;
  3070. }
  3071. #u145330 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:562px;
  3075. top:0px;
  3076. width:114px;
  3077. height:40px;
  3078. display:flex;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. color:#FFFFFF;
  3084. }
  3085. #u145330 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u145330_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. }
  3097. #u145331_img {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:114px;
  3103. height:40px;
  3104. }
  3105. #u145331 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:676px;
  3109. top:0px;
  3110. width:114px;
  3111. height:40px;
  3112. display:flex;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:12px;
  3117. color:#FFFFFF;
  3118. }
  3119. #u145331 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u145331_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. }
  3131. #u145332_img {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:114px;
  3137. height:40px;
  3138. }
  3139. #u145332 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:790px;
  3143. top:0px;
  3144. width:114px;
  3145. height:40px;
  3146. display:flex;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:12px;
  3151. color:#FFFFFF;
  3152. }
  3153. #u145332 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:2px 2px 2px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u145332_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. }
  3165. #u145333_img {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:114px;
  3171. height:40px;
  3172. }
  3173. #u145333 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:904px;
  3177. top:0px;
  3178. width:114px;
  3179. height:40px;
  3180. display:flex;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. color:#FFFFFF;
  3186. }
  3187. #u145333 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:2px 2px 2px 0px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u145333_text {
  3195. border-width:0px;
  3196. word-wrap:break-word;
  3197. text-transform:none;
  3198. }
  3199. #u145334_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:112px;
  3205. height:40px;
  3206. }
  3207. #u145334 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:1018px;
  3211. top:0px;
  3212. width:112px;
  3213. height:40px;
  3214. display:flex;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:12px;
  3219. color:#FFFFFF;
  3220. }
  3221. #u145334 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u145334_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. }
  3233. #u145335_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:95px;
  3239. height:40px;
  3240. }
  3241. #u145335 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:1130px;
  3245. top:0px;
  3246. width:95px;
  3247. height:40px;
  3248. display:flex;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:12px;
  3253. color:#FFFFFF;
  3254. }
  3255. #u145335 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u145335_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. }
  3267. #u145336_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:112px;
  3273. height:38px;
  3274. }
  3275. #u145336 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:40px;
  3280. width:112px;
  3281. height:38px;
  3282. display:flex;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. color:#333333;
  3288. }
  3289. #u145336 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 0px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u145336_text {
  3297. border-width:0px;
  3298. word-wrap:break-word;
  3299. text-transform:none;
  3300. }
  3301. #u145337_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:112px;
  3307. height:38px;
  3308. }
  3309. #u145337 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:112px;
  3313. top:40px;
  3314. width:112px;
  3315. height:38px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. color:#333333;
  3322. }
  3323. #u145337 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u145337_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u145338_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:112px;
  3341. height:38px;
  3342. }
  3343. #u145338 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:224px;
  3347. top:40px;
  3348. width:112px;
  3349. height:38px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. color:#333333;
  3356. }
  3357. #u145338 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u145338_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. }
  3369. #u145339_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:114px;
  3375. height:38px;
  3376. }
  3377. #u145339 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:336px;
  3381. top:40px;
  3382. width:114px;
  3383. height:38px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#333333;
  3390. }
  3391. #u145339 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u145339_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. }
  3403. #u145340_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:112px;
  3409. height:38px;
  3410. }
  3411. #u145340 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:450px;
  3415. top:40px;
  3416. width:112px;
  3417. height:38px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#333333;
  3424. }
  3425. #u145340 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u145340_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. }
  3437. #u145341_img {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:114px;
  3443. height:38px;
  3444. }
  3445. #u145341 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:562px;
  3449. top:40px;
  3450. width:114px;
  3451. height:38px;
  3452. display:flex;
  3453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3454. font-weight:400;
  3455. font-style:normal;
  3456. font-size:12px;
  3457. color:#333333;
  3458. }
  3459. #u145341 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 0px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u145341_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. }
  3471. #u145342_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:114px;
  3477. height:38px;
  3478. }
  3479. #u145342 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:676px;
  3483. top:40px;
  3484. width:114px;
  3485. height:38px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#333333;
  3492. }
  3493. #u145342 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u145342_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u145343_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:114px;
  3511. height:38px;
  3512. }
  3513. #u145343 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:790px;
  3517. top:40px;
  3518. width:114px;
  3519. height:38px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#0089FE;
  3526. }
  3527. #u145343 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u145343_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. }
  3539. #u145344_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:114px;
  3545. height:38px;
  3546. }
  3547. #u145344 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:904px;
  3551. top:40px;
  3552. width:114px;
  3553. height:38px;
  3554. display:flex;
  3555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3556. font-weight:400;
  3557. font-style:normal;
  3558. font-size:12px;
  3559. color:#333333;
  3560. }
  3561. #u145344 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:2px 2px 2px 0px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u145344_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. }
  3573. #u145345_img {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:112px;
  3579. height:38px;
  3580. }
  3581. #u145345 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:1018px;
  3585. top:40px;
  3586. width:112px;
  3587. height:38px;
  3588. display:flex;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:12px;
  3593. color:#555555;
  3594. }
  3595. #u145345 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u145345_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u145346_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:95px;
  3614. height:38px;
  3615. }
  3616. #u145346 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:1130px;
  3620. top:40px;
  3621. width:95px;
  3622. height:38px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. color:#0089FE;
  3629. }
  3630. #u145346 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u145346_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. }
  3642. #u145347_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:112px;
  3648. height:38px;
  3649. }
  3650. #u145347 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:78px;
  3655. width:112px;
  3656. height:38px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:12px;
  3662. color:#333333;
  3663. }
  3664. #u145347 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u145347_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u145348_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:112px;
  3683. height:38px;
  3684. }
  3685. #u145348 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:112px;
  3689. top:78px;
  3690. width:112px;
  3691. height:38px;
  3692. display:flex;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#333333;
  3698. }
  3699. #u145348 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u145348_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u145349_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:112px;
  3718. height:38px;
  3719. }
  3720. #u145349 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:224px;
  3724. top:78px;
  3725. width:112px;
  3726. height:38px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#333333;
  3733. }
  3734. #u145349 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u145349_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u145350_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:114px;
  3753. height:38px;
  3754. }
  3755. #u145350 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:336px;
  3759. top:78px;
  3760. width:114px;
  3761. height:38px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:12px;
  3767. color:#333333;
  3768. }
  3769. #u145350 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 0px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u145350_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. visibility:hidden;
  3781. }
  3782. #u145351_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:112px;
  3788. height:38px;
  3789. }
  3790. #u145351 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:450px;
  3794. top:78px;
  3795. width:112px;
  3796. height:38px;
  3797. display:flex;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:12px;
  3802. color:#333333;
  3803. }
  3804. #u145351 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u145351_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u145352_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:114px;
  3823. height:38px;
  3824. }
  3825. #u145352 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:562px;
  3829. top:78px;
  3830. width:114px;
  3831. height:38px;
  3832. display:flex;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:12px;
  3837. color:#333333;
  3838. }
  3839. #u145352 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u145352_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u145353_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:114px;
  3858. height:38px;
  3859. }
  3860. #u145353 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:676px;
  3864. top:78px;
  3865. width:114px;
  3866. height:38px;
  3867. display:flex;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. color:#333333;
  3873. }
  3874. #u145353 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 0px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u145353_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u145354_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:114px;
  3893. height:38px;
  3894. }
  3895. #u145354 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:790px;
  3899. top:78px;
  3900. width:114px;
  3901. height:38px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:12px;
  3907. color:#333333;
  3908. }
  3909. #u145354 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 0px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u145354_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. }
  3921. #u145355_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:114px;
  3927. height:38px;
  3928. }
  3929. #u145355 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:904px;
  3933. top:78px;
  3934. width:114px;
  3935. height:38px;
  3936. display:flex;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. color:#333333;
  3942. }
  3943. #u145355 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 0px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u145355_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. }
  3955. #u145356_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:112px;
  3961. height:38px;
  3962. }
  3963. #u145356 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:1018px;
  3967. top:78px;
  3968. width:112px;
  3969. height:38px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. color:#555555;
  3976. }
  3977. #u145356 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u145356_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. }
  3989. #u145357_img {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:95px;
  3995. height:38px;
  3996. }
  3997. #u145357 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:1130px;
  4001. top:78px;
  4002. width:95px;
  4003. height:38px;
  4004. display:flex;
  4005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:12px;
  4009. color:#0089FE;
  4010. }
  4011. #u145357 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 0px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u145357_text {
  4019. border-width:0px;
  4020. word-wrap:break-word;
  4021. text-transform:none;
  4022. }
  4023. #u145358_img {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:112px;
  4029. height:38px;
  4030. }
  4031. #u145358 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:116px;
  4036. width:112px;
  4037. height:38px;
  4038. display:flex;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:12px;
  4043. color:#333333;
  4044. }
  4045. #u145358 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 0px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u145358_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. visibility:hidden;
  4057. }
  4058. #u145359_img {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:112px;
  4064. height:38px;
  4065. }
  4066. #u145359 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:112px;
  4070. top:116px;
  4071. width:112px;
  4072. height:38px;
  4073. display:flex;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#333333;
  4079. }
  4080. #u145359 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 0px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u145359_text {
  4088. border-width:0px;
  4089. word-wrap:break-word;
  4090. text-transform:none;
  4091. visibility:hidden;
  4092. }
  4093. #u145360_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:112px;
  4099. height:38px;
  4100. }
  4101. #u145360 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:224px;
  4105. top:116px;
  4106. width:112px;
  4107. height:38px;
  4108. display:flex;
  4109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:12px;
  4113. color:#333333;
  4114. }
  4115. #u145360 .text {
  4116. position:absolute;
  4117. align-self:center;
  4118. padding:2px 2px 2px 0px;
  4119. box-sizing:border-box;
  4120. width:100%;
  4121. }
  4122. #u145360_text {
  4123. border-width:0px;
  4124. word-wrap:break-word;
  4125. text-transform:none;
  4126. visibility:hidden;
  4127. }
  4128. #u145361_img {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:114px;
  4134. height:38px;
  4135. }
  4136. #u145361 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:336px;
  4140. top:116px;
  4141. width:114px;
  4142. height:38px;
  4143. display:flex;
  4144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:12px;
  4148. color:#333333;
  4149. }
  4150. #u145361 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:2px 2px 2px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u145361_text {
  4158. border-width:0px;
  4159. word-wrap:break-word;
  4160. text-transform:none;
  4161. visibility:hidden;
  4162. }
  4163. #u145362_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:112px;
  4169. height:38px;
  4170. }
  4171. #u145362 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:450px;
  4175. top:116px;
  4176. width:112px;
  4177. height:38px;
  4178. display:flex;
  4179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:12px;
  4183. color:#333333;
  4184. }
  4185. #u145362 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 2px 2px 0px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u145362_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u145363_img {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:114px;
  4204. height:38px;
  4205. }
  4206. #u145363 {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:562px;
  4210. top:116px;
  4211. width:114px;
  4212. height:38px;
  4213. display:flex;
  4214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:12px;
  4218. color:#333333;
  4219. }
  4220. #u145363 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 0px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u145363_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u145364_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:114px;
  4239. height:38px;
  4240. }
  4241. #u145364 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:676px;
  4245. top:116px;
  4246. width:114px;
  4247. height:38px;
  4248. display:flex;
  4249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:12px;
  4253. color:#333333;
  4254. }
  4255. #u145364 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 0px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u145364_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. visibility:hidden;
  4267. }
  4268. #u145365_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:114px;
  4274. height:38px;
  4275. }
  4276. #u145365 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:790px;
  4280. top:116px;
  4281. width:114px;
  4282. height:38px;
  4283. display:flex;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:12px;
  4288. color:#333333;
  4289. }
  4290. #u145365 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 0px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u145365_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u145366_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:114px;
  4309. height:38px;
  4310. }
  4311. #u145366 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:904px;
  4315. top:116px;
  4316. width:114px;
  4317. height:38px;
  4318. display:flex;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:12px;
  4323. color:#333333;
  4324. }
  4325. #u145366 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 2px 2px 0px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u145366_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. }
  4337. #u145367_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:112px;
  4343. height:38px;
  4344. }
  4345. #u145367 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:1018px;
  4349. top:116px;
  4350. width:112px;
  4351. height:38px;
  4352. display:flex;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:12px;
  4357. color:#333333;
  4358. }
  4359. #u145367 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 0px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u145367_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u145368_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:95px;
  4378. height:38px;
  4379. }
  4380. #u145368 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:1130px;
  4384. top:116px;
  4385. width:95px;
  4386. height:38px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:12px;
  4392. color:#0089FE;
  4393. }
  4394. #u145368 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 0px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u145368_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. visibility:hidden;
  4406. }
  4407. #u145369_img {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:0px;
  4411. top:0px;
  4412. width:112px;
  4413. height:38px;
  4414. }
  4415. #u145369 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:154px;
  4420. width:112px;
  4421. height:38px;
  4422. display:flex;
  4423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:12px;
  4427. color:#333333;
  4428. }
  4429. #u145369 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:2px 2px 2px 0px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u145369_text {
  4437. border-width:0px;
  4438. word-wrap:break-word;
  4439. text-transform:none;
  4440. visibility:hidden;
  4441. }
  4442. #u145370_img {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:112px;
  4448. height:38px;
  4449. }
  4450. #u145370 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:112px;
  4454. top:154px;
  4455. width:112px;
  4456. height:38px;
  4457. display:flex;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:12px;
  4462. color:#333333;
  4463. }
  4464. #u145370 .text {
  4465. position:absolute;
  4466. align-self:center;
  4467. padding:2px 2px 2px 0px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u145370_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. visibility:hidden;
  4476. }
  4477. #u145371_img {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:112px;
  4483. height:38px;
  4484. }
  4485. #u145371 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:224px;
  4489. top:154px;
  4490. width:112px;
  4491. height:38px;
  4492. display:flex;
  4493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:12px;
  4497. color:#333333;
  4498. }
  4499. #u145371 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 0px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u145371_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u145372_img {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:114px;
  4518. height:38px;
  4519. }
  4520. #u145372 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:336px;
  4524. top:154px;
  4525. width:114px;
  4526. height:38px;
  4527. display:flex;
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:12px;
  4532. color:#333333;
  4533. }
  4534. #u145372 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u145372_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u145373_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:112px;
  4553. height:38px;
  4554. }
  4555. #u145373 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:450px;
  4559. top:154px;
  4560. width:112px;
  4561. height:38px;
  4562. display:flex;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. font-size:12px;
  4567. color:#333333;
  4568. }
  4569. #u145373 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 2px 2px 0px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u145373_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u145374_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:114px;
  4588. height:38px;
  4589. }
  4590. #u145374 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:562px;
  4594. top:154px;
  4595. width:114px;
  4596. height:38px;
  4597. display:flex;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:12px;
  4602. color:#333333;
  4603. }
  4604. #u145374 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u145374_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u145375_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:114px;
  4623. height:38px;
  4624. }
  4625. #u145375 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:676px;
  4629. top:154px;
  4630. width:114px;
  4631. height:38px;
  4632. display:flex;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. color:#333333;
  4638. }
  4639. #u145375 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u145375_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u145376_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:114px;
  4658. height:38px;
  4659. }
  4660. #u145376 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:790px;
  4664. top:154px;
  4665. width:114px;
  4666. height:38px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:12px;
  4672. color:#333333;
  4673. }
  4674. #u145376 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 0px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u145376_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u145377_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:114px;
  4693. height:38px;
  4694. }
  4695. #u145377 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:904px;
  4699. top:154px;
  4700. width:114px;
  4701. height:38px;
  4702. display:flex;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:12px;
  4707. color:#333333;
  4708. }
  4709. #u145377 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 0px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u145377_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u145378_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:112px;
  4728. height:38px;
  4729. }
  4730. #u145378 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:1018px;
  4734. top:154px;
  4735. width:112px;
  4736. height:38px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:12px;
  4742. color:#333333;
  4743. }
  4744. #u145378 .text {
  4745. position:absolute;
  4746. align-self:center;
  4747. padding:2px 2px 2px 0px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u145378_text {
  4752. border-width:0px;
  4753. word-wrap:break-word;
  4754. text-transform:none;
  4755. visibility:hidden;
  4756. }
  4757. #u145379_img {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:95px;
  4763. height:38px;
  4764. }
  4765. #u145379 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:1130px;
  4769. top:154px;
  4770. width:95px;
  4771. height:38px;
  4772. display:flex;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. color:#333333;
  4778. }
  4779. #u145379 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:2px 2px 2px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u145379_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u145380_img {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:112px;
  4798. height:35px;
  4799. }
  4800. #u145380 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:192px;
  4805. width:112px;
  4806. height:35px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:12px;
  4812. color:#333333;
  4813. }
  4814. #u145380 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u145380_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u145381_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:112px;
  4833. height:35px;
  4834. }
  4835. #u145381 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:112px;
  4839. top:192px;
  4840. width:112px;
  4841. height:35px;
  4842. display:flex;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:12px;
  4847. color:#333333;
  4848. }
  4849. #u145381 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u145381_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u145382_img {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:112px;
  4868. height:35px;
  4869. }
  4870. #u145382 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:224px;
  4874. top:192px;
  4875. width:112px;
  4876. height:35px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:12px;
  4882. color:#333333;
  4883. }
  4884. #u145382 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u145382_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. visibility:hidden;
  4896. }
  4897. #u145383_img {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:114px;
  4903. height:35px;
  4904. }
  4905. #u145383 {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:336px;
  4909. top:192px;
  4910. width:114px;
  4911. height:35px;
  4912. display:flex;
  4913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:12px;
  4917. color:#333333;
  4918. }
  4919. #u145383 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 0px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u145383_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u145384_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:112px;
  4938. height:35px;
  4939. }
  4940. #u145384 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:450px;
  4944. top:192px;
  4945. width:112px;
  4946. height:35px;
  4947. display:flex;
  4948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:12px;
  4952. color:#333333;
  4953. }
  4954. #u145384 .text {
  4955. position:absolute;
  4956. align-self:center;
  4957. padding:2px 2px 2px 0px;
  4958. box-sizing:border-box;
  4959. width:100%;
  4960. }
  4961. #u145384_text {
  4962. border-width:0px;
  4963. word-wrap:break-word;
  4964. text-transform:none;
  4965. visibility:hidden;
  4966. }
  4967. #u145385_img {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:114px;
  4973. height:35px;
  4974. }
  4975. #u145385 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:562px;
  4979. top:192px;
  4980. width:114px;
  4981. height:35px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:12px;
  4987. color:#333333;
  4988. }
  4989. #u145385 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 0px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u145385_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. visibility:hidden;
  5001. }
  5002. #u145386_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:114px;
  5008. height:35px;
  5009. }
  5010. #u145386 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:676px;
  5014. top:192px;
  5015. width:114px;
  5016. height:35px;
  5017. display:flex;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:12px;
  5022. color:#333333;
  5023. }
  5024. #u145386 .text {
  5025. position:absolute;
  5026. align-self:center;
  5027. padding:2px 2px 2px 0px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u145386_text {
  5032. border-width:0px;
  5033. word-wrap:break-word;
  5034. text-transform:none;
  5035. visibility:hidden;
  5036. }
  5037. #u145387_img {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:114px;
  5043. height:35px;
  5044. }
  5045. #u145387 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:790px;
  5049. top:192px;
  5050. width:114px;
  5051. height:35px;
  5052. display:flex;
  5053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5054. font-weight:400;
  5055. font-style:normal;
  5056. font-size:12px;
  5057. color:#333333;
  5058. }
  5059. #u145387 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:2px 2px 2px 0px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u145387_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u145388_img {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:114px;
  5078. height:35px;
  5079. }
  5080. #u145388 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:904px;
  5084. top:192px;
  5085. width:114px;
  5086. height:35px;
  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:#333333;
  5093. }
  5094. #u145388 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:2px 2px 2px 0px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u145388_text {
  5102. border-width:0px;
  5103. word-wrap:break-word;
  5104. text-transform:none;
  5105. visibility:hidden;
  5106. }
  5107. #u145389_img {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:112px;
  5113. height:35px;
  5114. }
  5115. #u145389 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:1018px;
  5119. top:192px;
  5120. width:112px;
  5121. height:35px;
  5122. display:flex;
  5123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. font-size:12px;
  5127. color:#333333;
  5128. }
  5129. #u145389 .text {
  5130. position:absolute;
  5131. align-self:center;
  5132. padding:2px 2px 2px 0px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u145389_text {
  5137. border-width:0px;
  5138. word-wrap:break-word;
  5139. text-transform:none;
  5140. visibility:hidden;
  5141. }
  5142. #u145390_img {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:95px;
  5148. height:35px;
  5149. }
  5150. #u145390 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:1130px;
  5154. top:192px;
  5155. width:95px;
  5156. height:35px;
  5157. display:flex;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:12px;
  5162. color:#333333;
  5163. }
  5164. #u145390 .text {
  5165. position:absolute;
  5166. align-self:center;
  5167. padding:2px 2px 2px 0px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u145390_text {
  5172. border-width:0px;
  5173. word-wrap:break-word;
  5174. text-transform:none;
  5175. visibility:hidden;
  5176. }
  5177. #u145391_img {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:112px;
  5183. height:35px;
  5184. }
  5185. #u145391 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:0px;
  5189. top:227px;
  5190. width:112px;
  5191. height:35px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:12px;
  5197. color:#333333;
  5198. }
  5199. #u145391 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:2px 2px 2px 0px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u145391_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. visibility:hidden;
  5211. }
  5212. #u145392_img {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:112px;
  5218. height:35px;
  5219. }
  5220. #u145392 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:112px;
  5224. top:227px;
  5225. width:112px;
  5226. height:35px;
  5227. display:flex;
  5228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:12px;
  5232. color:#333333;
  5233. }
  5234. #u145392 .text {
  5235. position:absolute;
  5236. align-self:center;
  5237. padding:2px 2px 2px 0px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u145392_text {
  5242. border-width:0px;
  5243. word-wrap:break-word;
  5244. text-transform:none;
  5245. visibility:hidden;
  5246. }
  5247. #u145393_img {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:112px;
  5253. height:35px;
  5254. }
  5255. #u145393 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:224px;
  5259. top:227px;
  5260. width:112px;
  5261. height:35px;
  5262. display:flex;
  5263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5264. font-weight:400;
  5265. font-style:normal;
  5266. font-size:12px;
  5267. color:#333333;
  5268. }
  5269. #u145393 .text {
  5270. position:absolute;
  5271. align-self:center;
  5272. padding:2px 2px 2px 0px;
  5273. box-sizing:border-box;
  5274. width:100%;
  5275. }
  5276. #u145393_text {
  5277. border-width:0px;
  5278. word-wrap:break-word;
  5279. text-transform:none;
  5280. visibility:hidden;
  5281. }
  5282. #u145394_img {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:0px;
  5286. top:0px;
  5287. width:114px;
  5288. height:35px;
  5289. }
  5290. #u145394 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:336px;
  5294. top:227px;
  5295. width:114px;
  5296. height:35px;
  5297. display:flex;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:12px;
  5302. color:#333333;
  5303. }
  5304. #u145394 .text {
  5305. position:absolute;
  5306. align-self:center;
  5307. padding:2px 2px 2px 0px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u145394_text {
  5312. border-width:0px;
  5313. word-wrap:break-word;
  5314. text-transform:none;
  5315. visibility:hidden;
  5316. }
  5317. #u145395_img {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:112px;
  5323. height:35px;
  5324. }
  5325. #u145395 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:450px;
  5329. top:227px;
  5330. width:112px;
  5331. height:35px;
  5332. display:flex;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:12px;
  5337. color:#333333;
  5338. }
  5339. #u145395 .text {
  5340. position:absolute;
  5341. align-self:center;
  5342. padding:2px 2px 2px 0px;
  5343. box-sizing:border-box;
  5344. width:100%;
  5345. }
  5346. #u145395_text {
  5347. border-width:0px;
  5348. word-wrap:break-word;
  5349. text-transform:none;
  5350. visibility:hidden;
  5351. }
  5352. #u145396_img {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:114px;
  5358. height:35px;
  5359. }
  5360. #u145396 {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:562px;
  5364. top:227px;
  5365. width:114px;
  5366. height:35px;
  5367. display:flex;
  5368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:12px;
  5372. color:#333333;
  5373. }
  5374. #u145396 .text {
  5375. position:absolute;
  5376. align-self:center;
  5377. padding:2px 2px 2px 0px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u145396_text {
  5382. border-width:0px;
  5383. word-wrap:break-word;
  5384. text-transform:none;
  5385. visibility:hidden;
  5386. }
  5387. #u145397_img {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:114px;
  5393. height:35px;
  5394. }
  5395. #u145397 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:676px;
  5399. top:227px;
  5400. width:114px;
  5401. height:35px;
  5402. display:flex;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:12px;
  5407. color:#333333;
  5408. }
  5409. #u145397 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 0px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u145397_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u145398_img {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:114px;
  5428. height:35px;
  5429. }
  5430. #u145398 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:790px;
  5434. top:227px;
  5435. width:114px;
  5436. height:35px;
  5437. display:flex;
  5438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5439. font-weight:400;
  5440. font-style:normal;
  5441. font-size:12px;
  5442. color:#333333;
  5443. }
  5444. #u145398 .text {
  5445. position:absolute;
  5446. align-self:center;
  5447. padding:2px 2px 2px 0px;
  5448. box-sizing:border-box;
  5449. width:100%;
  5450. }
  5451. #u145398_text {
  5452. border-width:0px;
  5453. word-wrap:break-word;
  5454. text-transform:none;
  5455. visibility:hidden;
  5456. }
  5457. #u145399_img {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:114px;
  5463. height:35px;
  5464. }
  5465. #u145399 {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:904px;
  5469. top:227px;
  5470. width:114px;
  5471. height:35px;
  5472. display:flex;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:12px;
  5477. color:#333333;
  5478. }
  5479. #u145399 .text {
  5480. position:absolute;
  5481. align-self:center;
  5482. padding:2px 2px 2px 0px;
  5483. box-sizing:border-box;
  5484. width:100%;
  5485. }
  5486. #u145399_text {
  5487. border-width:0px;
  5488. word-wrap:break-word;
  5489. text-transform:none;
  5490. visibility:hidden;
  5491. }
  5492. #u145400_img {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:112px;
  5498. height:35px;
  5499. }
  5500. #u145400 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:1018px;
  5504. top:227px;
  5505. width:112px;
  5506. height:35px;
  5507. display:flex;
  5508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:12px;
  5512. color:#333333;
  5513. }
  5514. #u145400 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:2px 2px 2px 0px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u145400_text {
  5522. border-width:0px;
  5523. word-wrap:break-word;
  5524. text-transform:none;
  5525. visibility:hidden;
  5526. }
  5527. #u145401_img {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:95px;
  5533. height:35px;
  5534. }
  5535. #u145401 {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:1130px;
  5539. top:227px;
  5540. width:95px;
  5541. height:35px;
  5542. display:flex;
  5543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:12px;
  5547. color:#333333;
  5548. }
  5549. #u145401 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 0px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u145401_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. visibility:hidden;
  5561. }
  5562. #u145402_img {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:112px;
  5568. height:32px;
  5569. }
  5570. #u145402 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:262px;
  5575. width:112px;
  5576. height:32px;
  5577. display:flex;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:12px;
  5582. color:#333333;
  5583. }
  5584. #u145402 .text {
  5585. position:absolute;
  5586. align-self:center;
  5587. padding:2px 2px 2px 0px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u145402_text {
  5592. border-width:0px;
  5593. word-wrap:break-word;
  5594. text-transform:none;
  5595. visibility:hidden;
  5596. }
  5597. #u145403_img {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:112px;
  5603. height:32px;
  5604. }
  5605. #u145403 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:112px;
  5609. top:262px;
  5610. width:112px;
  5611. height:32px;
  5612. display:flex;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. color:#333333;
  5618. }
  5619. #u145403 .text {
  5620. position:absolute;
  5621. align-self:center;
  5622. padding:2px 2px 2px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u145403_text {
  5627. border-width:0px;
  5628. word-wrap:break-word;
  5629. text-transform:none;
  5630. visibility:hidden;
  5631. }
  5632. #u145404_img {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:112px;
  5638. height:32px;
  5639. }
  5640. #u145404 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:224px;
  5644. top:262px;
  5645. width:112px;
  5646. height:32px;
  5647. display:flex;
  5648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:12px;
  5652. color:#333333;
  5653. }
  5654. #u145404 .text {
  5655. position:absolute;
  5656. align-self:center;
  5657. padding:2px 2px 2px 0px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u145404_text {
  5662. border-width:0px;
  5663. word-wrap:break-word;
  5664. text-transform:none;
  5665. visibility:hidden;
  5666. }
  5667. #u145405_img {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:114px;
  5673. height:32px;
  5674. }
  5675. #u145405 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:336px;
  5679. top:262px;
  5680. width:114px;
  5681. height:32px;
  5682. display:flex;
  5683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:12px;
  5687. color:#333333;
  5688. }
  5689. #u145405 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:2px 2px 2px 0px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u145405_text {
  5697. border-width:0px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u145406_img {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:112px;
  5708. height:32px;
  5709. }
  5710. #u145406 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:450px;
  5714. top:262px;
  5715. width:112px;
  5716. height:32px;
  5717. display:flex;
  5718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. font-size:12px;
  5722. color:#333333;
  5723. }
  5724. #u145406 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:2px 2px 2px 0px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u145406_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u145407_img {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:114px;
  5743. height:32px;
  5744. }
  5745. #u145407 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:562px;
  5749. top:262px;
  5750. width:114px;
  5751. height:32px;
  5752. display:flex;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:12px;
  5757. color:#333333;
  5758. }
  5759. #u145407 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 0px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u145407_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u145408_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:114px;
  5778. height:32px;
  5779. }
  5780. #u145408 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:676px;
  5784. top:262px;
  5785. width:114px;
  5786. height:32px;
  5787. display:flex;
  5788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:12px;
  5792. color:#333333;
  5793. }
  5794. #u145408 .text {
  5795. position:absolute;
  5796. align-self:center;
  5797. padding:2px 2px 2px 0px;
  5798. box-sizing:border-box;
  5799. width:100%;
  5800. }
  5801. #u145408_text {
  5802. border-width:0px;
  5803. word-wrap:break-word;
  5804. text-transform:none;
  5805. visibility:hidden;
  5806. }
  5807. #u145409_img {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:114px;
  5813. height:32px;
  5814. }
  5815. #u145409 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:790px;
  5819. top:262px;
  5820. width:114px;
  5821. height:32px;
  5822. display:flex;
  5823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5824. font-weight:400;
  5825. font-style:normal;
  5826. font-size:12px;
  5827. color:#333333;
  5828. }
  5829. #u145409 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 0px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u145409_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u145410_img {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:114px;
  5848. height:32px;
  5849. }
  5850. #u145410 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:904px;
  5854. top:262px;
  5855. width:114px;
  5856. height:32px;
  5857. display:flex;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. color:#333333;
  5863. }
  5864. #u145410 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u145410_text {
  5872. border-width:0px;
  5873. word-wrap:break-word;
  5874. text-transform:none;
  5875. visibility:hidden;
  5876. }
  5877. #u145411_img {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:112px;
  5883. height:32px;
  5884. }
  5885. #u145411 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:1018px;
  5889. top:262px;
  5890. width:112px;
  5891. height:32px;
  5892. display:flex;
  5893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:12px;
  5897. color:#333333;
  5898. }
  5899. #u145411 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 0px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u145411_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. visibility:hidden;
  5911. }
  5912. #u145412_img {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:95px;
  5918. height:32px;
  5919. }
  5920. #u145412 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:1130px;
  5924. top:262px;
  5925. width:95px;
  5926. height:32px;
  5927. display:flex;
  5928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:12px;
  5932. color:#333333;
  5933. }
  5934. #u145412 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 2px 2px 0px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u145412_text {
  5942. border-width:0px;
  5943. word-wrap:break-word;
  5944. text-transform:none;
  5945. visibility:hidden;
  5946. }
  5947. #u145413_img {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:112px;
  5953. height:22px;
  5954. }
  5955. #u145413 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:294px;
  5960. width:112px;
  5961. height:22px;
  5962. display:flex;
  5963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:12px;
  5967. color:#333333;
  5968. }
  5969. #u145413 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u145413_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u145414_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:112px;
  5988. height:22px;
  5989. }
  5990. #u145414 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:112px;
  5994. top:294px;
  5995. width:112px;
  5996. height:22px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:12px;
  6002. color:#333333;
  6003. }
  6004. #u145414 .text {
  6005. position:absolute;
  6006. align-self:center;
  6007. padding:2px 2px 2px 0px;
  6008. box-sizing:border-box;
  6009. width:100%;
  6010. }
  6011. #u145414_text {
  6012. border-width:0px;
  6013. word-wrap:break-word;
  6014. text-transform:none;
  6015. visibility:hidden;
  6016. }
  6017. #u145415_img {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:112px;
  6023. height:22px;
  6024. }
  6025. #u145415 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:224px;
  6029. top:294px;
  6030. width:112px;
  6031. height:22px;
  6032. display:flex;
  6033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:12px;
  6037. color:#333333;
  6038. }
  6039. #u145415 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 0px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u145415_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u145416_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:114px;
  6058. height:22px;
  6059. }
  6060. #u145416 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:336px;
  6064. top:294px;
  6065. width:114px;
  6066. height:22px;
  6067. display:flex;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:12px;
  6072. color:#333333;
  6073. }
  6074. #u145416 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 0px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u145416_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u145417_img {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:112px;
  6093. height:22px;
  6094. }
  6095. #u145417 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:450px;
  6099. top:294px;
  6100. width:112px;
  6101. height:22px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:12px;
  6107. color:#333333;
  6108. }
  6109. #u145417 .text {
  6110. position:absolute;
  6111. align-self:center;
  6112. padding:2px 2px 2px 0px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u145417_text {
  6117. border-width:0px;
  6118. word-wrap:break-word;
  6119. text-transform:none;
  6120. visibility:hidden;
  6121. }
  6122. #u145418_img {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:114px;
  6128. height:22px;
  6129. }
  6130. #u145418 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:562px;
  6134. top:294px;
  6135. width:114px;
  6136. height:22px;
  6137. display:flex;
  6138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:12px;
  6142. color:#333333;
  6143. }
  6144. #u145418 .text {
  6145. position:absolute;
  6146. align-self:center;
  6147. padding:2px 2px 2px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u145418_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u145419_img {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:114px;
  6163. height:22px;
  6164. }
  6165. #u145419 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:676px;
  6169. top:294px;
  6170. width:114px;
  6171. height:22px;
  6172. display:flex;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:12px;
  6177. color:#333333;
  6178. }
  6179. #u145419 .text {
  6180. position:absolute;
  6181. align-self:center;
  6182. padding:2px 2px 2px 0px;
  6183. box-sizing:border-box;
  6184. width:100%;
  6185. }
  6186. #u145419_text {
  6187. border-width:0px;
  6188. word-wrap:break-word;
  6189. text-transform:none;
  6190. visibility:hidden;
  6191. }
  6192. #u145420_img {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:114px;
  6198. height:22px;
  6199. }
  6200. #u145420 {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:790px;
  6204. top:294px;
  6205. width:114px;
  6206. height:22px;
  6207. display:flex;
  6208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:12px;
  6212. color:#333333;
  6213. }
  6214. #u145420 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 0px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u145420_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u145421_img {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:114px;
  6233. height:22px;
  6234. }
  6235. #u145421 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:904px;
  6239. top:294px;
  6240. width:114px;
  6241. height:22px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:12px;
  6247. color:#333333;
  6248. }
  6249. #u145421 .text {
  6250. position:absolute;
  6251. align-self:center;
  6252. padding:2px 2px 2px 0px;
  6253. box-sizing:border-box;
  6254. width:100%;
  6255. }
  6256. #u145421_text {
  6257. border-width:0px;
  6258. word-wrap:break-word;
  6259. text-transform:none;
  6260. visibility:hidden;
  6261. }
  6262. #u145422_img {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:112px;
  6268. height:22px;
  6269. }
  6270. #u145422 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:1018px;
  6274. top:294px;
  6275. width:112px;
  6276. height:22px;
  6277. display:flex;
  6278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:12px;
  6282. color:#333333;
  6283. }
  6284. #u145422 .text {
  6285. position:absolute;
  6286. align-self:center;
  6287. padding:2px 2px 2px 0px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u145422_text {
  6292. border-width:0px;
  6293. word-wrap:break-word;
  6294. text-transform:none;
  6295. visibility:hidden;
  6296. }
  6297. #u145423_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:95px;
  6303. height:22px;
  6304. }
  6305. #u145423 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1130px;
  6309. top:294px;
  6310. width:95px;
  6311. height:22px;
  6312. display:flex;
  6313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:12px;
  6317. color:#333333;
  6318. }
  6319. #u145423 .text {
  6320. position:absolute;
  6321. align-self:center;
  6322. padding:2px 2px 2px 0px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u145423_text {
  6327. border-width:0px;
  6328. word-wrap:break-word;
  6329. text-transform:none;
  6330. visibility:hidden;
  6331. }
  6332. #u145424_div {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:59px;
  6338. height:30px;
  6339. background:inherit;
  6340. background-color:rgba(24, 144, 255, 1);
  6341. box-sizing:border-box;
  6342. border-width:1px;
  6343. border-style:solid;
  6344. border-color:rgba(0, 153, 255, 1);
  6345. border-radius:4px;
  6346. -moz-box-shadow:none;
  6347. -webkit-box-shadow:none;
  6348. box-shadow:none;
  6349. font-family:'Microsoft YaHei', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:14px;
  6353. color:#FFFFFF;
  6354. }
  6355. #u145424 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:1108px;
  6359. top:122px;
  6360. width:59px;
  6361. height:30px;
  6362. display:flex;
  6363. font-family:'Microsoft YaHei', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:14px;
  6367. color:#FFFFFF;
  6368. }
  6369. #u145424 .text {
  6370. position:absolute;
  6371. align-self:center;
  6372. padding:5px 15px 5px 15px;
  6373. box-sizing:border-box;
  6374. width:100%;
  6375. }
  6376. #u145424_text {
  6377. border-width:0px;
  6378. white-space:nowrap;
  6379. text-transform:none;
  6380. }
  6381. #u145425_div {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:55px;
  6387. height:30px;
  6388. background:inherit;
  6389. background-color:rgba(255, 255, 255, 1);
  6390. box-sizing:border-box;
  6391. border-width:1px;
  6392. border-style:solid;
  6393. border-color:rgba(170, 170, 170, 1);
  6394. border-radius:4px;
  6395. -moz-box-shadow:none;
  6396. -webkit-box-shadow:none;
  6397. box-shadow:none;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:12px;
  6402. color:#555555;
  6403. }
  6404. #u145425 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:1177px;
  6408. top:122px;
  6409. width:55px;
  6410. height:30px;
  6411. display:flex;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:12px;
  6416. color:#555555;
  6417. }
  6418. #u145425 .text {
  6419. position:absolute;
  6420. align-self:center;
  6421. padding:5px 15px 5px 15px;
  6422. box-sizing:border-box;
  6423. width:100%;
  6424. }
  6425. #u145425_text {
  6426. border-width:0px;
  6427. white-space:nowrap;
  6428. text-transform:none;
  6429. }
  6430. #u145426 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:0px;
  6436. height:0px;
  6437. }
  6438. #u145427_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:140px;
  6444. height:30px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 1);
  6447. box-sizing:border-box;
  6448. border-width:1px;
  6449. border-style:solid;
  6450. border-color:rgba(215, 215, 215, 1);
  6451. border-radius:4px;
  6452. -moz-box-shadow:none;
  6453. -webkit-box-shadow:none;
  6454. box-shadow:none;
  6455. font-size:11px;
  6456. }
  6457. #u145427 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:350px;
  6461. top:122px;
  6462. width:140px;
  6463. height:30px;
  6464. display:flex;
  6465. font-size:11px;
  6466. }
  6467. #u145427 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 2px 2px 2px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u145427_text {
  6475. border-width:0px;
  6476. word-wrap:break-word;
  6477. text-transform:none;
  6478. visibility:hidden;
  6479. }
  6480. #u145428_input {
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:126px;
  6485. height:23px;
  6486. padding:2px 2px 2px 2px;
  6487. font-family:'ArialMT', 'Arial', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:11px;
  6491. letter-spacing:normal;
  6492. color:#AAAAAA;
  6493. vertical-align:none;
  6494. text-align:left;
  6495. text-transform:none;
  6496. background-color:transparent;
  6497. border-color:transparent;
  6498. }
  6499. #u145428_input.disabled {
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:126px;
  6504. height:23px;
  6505. padding:2px 2px 2px 2px;
  6506. font-family:'ArialMT', 'Arial', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:11px;
  6510. letter-spacing:normal;
  6511. color:#AAAAAA;
  6512. vertical-align:none;
  6513. text-align:left;
  6514. text-transform:none;
  6515. background-color:transparent;
  6516. border-color:transparent;
  6517. }
  6518. #u145428_div {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:126px;
  6524. height:23px;
  6525. background:inherit;
  6526. background-color:rgba(255, 255, 255, 1);
  6527. border:none;
  6528. border-radius:0px;
  6529. -moz-box-shadow:none;
  6530. -webkit-box-shadow:none;
  6531. box-shadow:none;
  6532. font-size:11px;
  6533. color:#AAAAAA;
  6534. }
  6535. #u145428 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:357px;
  6539. top:124px;
  6540. width:126px;
  6541. height:23px;
  6542. display:flex;
  6543. font-size:11px;
  6544. color:#AAAAAA;
  6545. }
  6546. #u145428 .text {
  6547. position:absolute;
  6548. align-self:flex-start;
  6549. padding:2px 2px 2px 2px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u145428_div.disabled {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:126px;
  6559. height:23px;
  6560. background:inherit;
  6561. background-color:rgba(240, 240, 240, 1);
  6562. border:none;
  6563. border-radius:0px;
  6564. -moz-box-shadow:none;
  6565. -webkit-box-shadow:none;
  6566. box-shadow:none;
  6567. font-size:11px;
  6568. color:#AAAAAA;
  6569. }
  6570. #u145428.disabled {
  6571. }
  6572. .u145428_input_option {
  6573. font-size:11px;
  6574. }
  6575. #u145429 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:0px;
  6581. height:0px;
  6582. }
  6583. #u145430_div {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:140px;
  6589. height:30px;
  6590. background:inherit;
  6591. background-color:rgba(255, 255, 255, 1);
  6592. box-sizing:border-box;
  6593. border-width:1px;
  6594. border-style:solid;
  6595. border-color:rgba(215, 215, 215, 1);
  6596. border-radius:4px;
  6597. -moz-box-shadow:none;
  6598. -webkit-box-shadow:none;
  6599. box-shadow:none;
  6600. font-size:11px;
  6601. }
  6602. #u145430 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:650px;
  6606. top:122px;
  6607. width:140px;
  6608. height:30px;
  6609. display:flex;
  6610. font-size:11px;
  6611. }
  6612. #u145430 .text {
  6613. position:absolute;
  6614. align-self:center;
  6615. padding:2px 2px 2px 2px;
  6616. box-sizing:border-box;
  6617. width:100%;
  6618. }
  6619. #u145430_text {
  6620. border-width:0px;
  6621. word-wrap:break-word;
  6622. text-transform:none;
  6623. visibility:hidden;
  6624. }
  6625. #u145431_input {
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:126px;
  6630. height:23px;
  6631. padding:2px 2px 2px 2px;
  6632. font-family:'ArialMT', 'Arial', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. font-size:11px;
  6636. letter-spacing:normal;
  6637. color:#AAAAAA;
  6638. vertical-align:none;
  6639. text-align:left;
  6640. text-transform:none;
  6641. background-color:transparent;
  6642. border-color:transparent;
  6643. }
  6644. #u145431_input.disabled {
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:126px;
  6649. height:23px;
  6650. padding:2px 2px 2px 2px;
  6651. font-family:'ArialMT', 'Arial', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:11px;
  6655. letter-spacing:normal;
  6656. color:#AAAAAA;
  6657. vertical-align:none;
  6658. text-align:left;
  6659. text-transform:none;
  6660. background-color:transparent;
  6661. border-color:transparent;
  6662. }
  6663. #u145431_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:126px;
  6669. height:23px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 1);
  6672. border:none;
  6673. border-radius:0px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-size:11px;
  6678. color:#AAAAAA;
  6679. }
  6680. #u145431 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:657px;
  6684. top:124px;
  6685. width:126px;
  6686. height:23px;
  6687. display:flex;
  6688. font-size:11px;
  6689. color:#AAAAAA;
  6690. }
  6691. #u145431 .text {
  6692. position:absolute;
  6693. align-self:flex-start;
  6694. padding:2px 2px 2px 2px;
  6695. box-sizing:border-box;
  6696. width:100%;
  6697. }
  6698. #u145431_div.disabled {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:126px;
  6704. height:23px;
  6705. background:inherit;
  6706. background-color:rgba(240, 240, 240, 1);
  6707. border:none;
  6708. border-radius:0px;
  6709. -moz-box-shadow:none;
  6710. -webkit-box-shadow:none;
  6711. box-shadow:none;
  6712. font-size:11px;
  6713. color:#AAAAAA;
  6714. }
  6715. #u145431.disabled {
  6716. }
  6717. .u145431_input_option {
  6718. font-size:11px;
  6719. }
  6720. #u145432 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:0px;
  6726. height:0px;
  6727. }
  6728. #u145433_div {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:140px;
  6734. height:30px;
  6735. background:inherit;
  6736. background-color:rgba(255, 255, 255, 1);
  6737. box-sizing:border-box;
  6738. border-width:1px;
  6739. border-style:solid;
  6740. border-color:rgba(201, 201, 201, 1);
  6741. border-radius:4px;
  6742. -moz-box-shadow:none;
  6743. -webkit-box-shadow:none;
  6744. box-shadow:none;
  6745. font-family:'Microsoft YaHei', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. color:#CCCCCC;
  6750. text-align:left;
  6751. }
  6752. #u145433 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:500px;
  6756. top:122px;
  6757. width:140px;
  6758. height:30px;
  6759. display:flex;
  6760. font-family:'Microsoft YaHei', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:14px;
  6764. color:#CCCCCC;
  6765. text-align:left;
  6766. }
  6767. #u145433 .text {
  6768. position:absolute;
  6769. align-self:center;
  6770. padding:2px 8px 2px 8px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u145433_text {
  6775. border-width:0px;
  6776. word-wrap:break-word;
  6777. text-transform:none;
  6778. visibility:hidden;
  6779. }
  6780. #u145434_input {
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:127px;
  6785. height:25px;
  6786. padding:2px 2px 2px 2px;
  6787. font-family:'Microsoft YaHei', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:10px;
  6791. letter-spacing:normal;
  6792. color:#000000;
  6793. vertical-align:none;
  6794. text-align:left;
  6795. text-transform:none;
  6796. background-color:transparent;
  6797. border-color:transparent;
  6798. }
  6799. #u145434_input.disabled {
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:127px;
  6804. height:25px;
  6805. padding:2px 2px 2px 2px;
  6806. font-family:'Microsoft YaHei', sans-serif;
  6807. font-weight:400;
  6808. font-style:normal;
  6809. font-size:10px;
  6810. letter-spacing:normal;
  6811. color:#000000;
  6812. vertical-align:none;
  6813. text-align:left;
  6814. text-transform:none;
  6815. background-color:transparent;
  6816. border-color:transparent;
  6817. }
  6818. #u145434_div {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:127px;
  6824. height:25px;
  6825. background:inherit;
  6826. background-color:rgba(255, 255, 255, 1);
  6827. border:none;
  6828. border-radius:0px;
  6829. -moz-box-shadow:none;
  6830. -webkit-box-shadow:none;
  6831. box-shadow:none;
  6832. font-family:'Microsoft YaHei', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:10px;
  6836. }
  6837. #u145434 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:508px;
  6841. top:123px;
  6842. width:127px;
  6843. height:25px;
  6844. display:flex;
  6845. font-family:'Microsoft YaHei', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:10px;
  6849. }
  6850. #u145434 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 2px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u145434_div.disabled {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:127px;
  6863. height:25px;
  6864. background:inherit;
  6865. background-color:rgba(240, 240, 240, 1);
  6866. border:none;
  6867. border-radius:0px;
  6868. -moz-box-shadow:none;
  6869. -webkit-box-shadow:none;
  6870. box-shadow:none;
  6871. font-family:'Microsoft YaHei', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:10px;
  6875. }
  6876. #u145434.disabled {
  6877. }
  6878. #u145435 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:0px;
  6884. height:0px;
  6885. }
  6886. #u145436_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:140px;
  6892. height:28px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 1);
  6895. box-sizing:border-box;
  6896. border-width:1px;
  6897. border-style:solid;
  6898. border-color:rgba(201, 201, 201, 1);
  6899. border-radius:4px;
  6900. -moz-box-shadow:none;
  6901. -webkit-box-shadow:none;
  6902. box-shadow:none;
  6903. font-family:'Microsoft YaHei', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:14px;
  6907. color:#CCCCCC;
  6908. text-align:left;
  6909. }
  6910. #u145436 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:800px;
  6914. top:123px;
  6915. width:140px;
  6916. height:28px;
  6917. display:flex;
  6918. font-family:'Microsoft YaHei', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:14px;
  6922. color:#CCCCCC;
  6923. text-align:left;
  6924. }
  6925. #u145436 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 8px 2px 8px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u145436_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. visibility:hidden;
  6937. }
  6938. #u145437_input {
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:114px;
  6943. height:26px;
  6944. padding:2px 2px 2px 2px;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:14px;
  6949. letter-spacing:normal;
  6950. color:#000000;
  6951. vertical-align:none;
  6952. text-align:left;
  6953. text-transform:none;
  6954. background-color:transparent;
  6955. border-color:transparent;
  6956. }
  6957. #u145437_input.disabled {
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:114px;
  6962. height:26px;
  6963. padding:2px 2px 2px 2px;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:14px;
  6968. letter-spacing:normal;
  6969. color:#000000;
  6970. vertical-align:none;
  6971. text-align:left;
  6972. text-transform:none;
  6973. background-color:transparent;
  6974. border-color:transparent;
  6975. }
  6976. #u145437_div {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:114px;
  6982. height:26px;
  6983. background:inherit;
  6984. background-color:rgba(255, 255, 255, 1);
  6985. border:none;
  6986. border-radius:0px;
  6987. -moz-box-shadow:none;
  6988. -webkit-box-shadow:none;
  6989. box-shadow:none;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:14px;
  6994. }
  6995. #u145437 {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:806px;
  6999. top:124px;
  7000. width:114px;
  7001. height:26px;
  7002. display:flex;
  7003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:14px;
  7007. }
  7008. #u145437 .text {
  7009. position:absolute;
  7010. align-self:center;
  7011. padding:2px 2px 2px 2px;
  7012. box-sizing:border-box;
  7013. width:100%;
  7014. }
  7015. #u145437_div.disabled {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:114px;
  7021. height:26px;
  7022. background:inherit;
  7023. background-color:rgba(240, 240, 240, 1);
  7024. border:none;
  7025. border-radius:0px;
  7026. -moz-box-shadow:none;
  7027. -webkit-box-shadow:none;
  7028. box-shadow:none;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. }
  7034. #u145437.disabled {
  7035. }
  7036. #u145438_img {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:13px;
  7042. height:15px;
  7043. }
  7044. #u145438 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:920px;
  7048. top:130px;
  7049. width:13px;
  7050. height:15px;
  7051. display:flex;
  7052. }
  7053. #u145438 .text {
  7054. position:absolute;
  7055. align-self:center;
  7056. padding:2px 2px 2px 2px;
  7057. box-sizing:border-box;
  7058. width:100%;
  7059. }
  7060. #u145438_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. visibility:hidden;
  7065. }
  7066. #u145439_div {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:73px;
  7072. height:50px;
  7073. background:inherit;
  7074. background-color:rgba(255, 255, 255, 0);
  7075. border:none;
  7076. border-left:0px;
  7077. border-top:0px;
  7078. border-right:0px;
  7079. border-radius:0px;
  7080. border-bottom-right-radius:0px;
  7081. border-bottom-left-radius:0px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:18px;
  7089. }
  7090. #u145439 {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:349px;
  7094. top:50px;
  7095. width:73px;
  7096. height:50px;
  7097. display:flex;
  7098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:18px;
  7102. }
  7103. #u145439 .text {
  7104. position:absolute;
  7105. align-self:center;
  7106. padding:0px 0px 0px 0px;
  7107. box-sizing:border-box;
  7108. width:100%;
  7109. }
  7110. #u145439_text {
  7111. border-width:0px;
  7112. white-space:nowrap;
  7113. text-transform:none;
  7114. }
  7115. #u145440 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:0px;
  7121. height:0px;
  7122. }
  7123. #u145441_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:140px;
  7129. height:28px;
  7130. background:inherit;
  7131. background-color:rgba(255, 255, 255, 1);
  7132. box-sizing:border-box;
  7133. border-width:1px;
  7134. border-style:solid;
  7135. border-color:rgba(201, 201, 201, 1);
  7136. border-radius:4px;
  7137. -moz-box-shadow:none;
  7138. -webkit-box-shadow:none;
  7139. box-shadow:none;
  7140. font-family:'Microsoft YaHei', sans-serif;
  7141. font-weight:400;
  7142. font-style:normal;
  7143. font-size:14px;
  7144. color:#CCCCCC;
  7145. text-align:left;
  7146. }
  7147. #u145441 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:950px;
  7151. top:123px;
  7152. width:140px;
  7153. height:28px;
  7154. display:flex;
  7155. font-family:'Microsoft YaHei', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:14px;
  7159. color:#CCCCCC;
  7160. text-align:left;
  7161. }
  7162. #u145441 .text {
  7163. position:absolute;
  7164. align-self:center;
  7165. padding:2px 8px 2px 8px;
  7166. box-sizing:border-box;
  7167. width:100%;
  7168. }
  7169. #u145441_text {
  7170. border-width:0px;
  7171. word-wrap:break-word;
  7172. text-transform:none;
  7173. visibility:hidden;
  7174. }
  7175. #u145442_input {
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:114px;
  7180. height:26px;
  7181. padding:2px 2px 2px 2px;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:14px;
  7186. letter-spacing:normal;
  7187. color:#000000;
  7188. vertical-align:none;
  7189. text-align:left;
  7190. text-transform:none;
  7191. background-color:transparent;
  7192. border-color:transparent;
  7193. }
  7194. #u145442_input.disabled {
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:114px;
  7199. height:26px;
  7200. padding:2px 2px 2px 2px;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:14px;
  7205. letter-spacing:normal;
  7206. color:#000000;
  7207. vertical-align:none;
  7208. text-align:left;
  7209. text-transform:none;
  7210. background-color:transparent;
  7211. border-color:transparent;
  7212. }
  7213. #u145442_div {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:114px;
  7219. height:26px;
  7220. background:inherit;
  7221. background-color:rgba(255, 255, 255, 1);
  7222. border:none;
  7223. border-radius:0px;
  7224. -moz-box-shadow:none;
  7225. -webkit-box-shadow:none;
  7226. box-shadow:none;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:14px;
  7231. }
  7232. #u145442 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:956px;
  7236. top:124px;
  7237. width:114px;
  7238. height:26px;
  7239. display:flex;
  7240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:14px;
  7244. }
  7245. #u145442 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:2px 2px 2px 2px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u145442_div.disabled {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:114px;
  7258. height:26px;
  7259. background:inherit;
  7260. background-color:rgba(240, 240, 240, 1);
  7261. border:none;
  7262. border-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:14px;
  7270. }
  7271. #u145442.disabled {
  7272. }
  7273. #u145443_img {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:13px;
  7279. height:15px;
  7280. }
  7281. #u145443 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:1070px;
  7285. top:130px;
  7286. width:13px;
  7287. height:15px;
  7288. display:flex;
  7289. }
  7290. #u145443 .text {
  7291. position:absolute;
  7292. align-self:center;
  7293. padding:2px 2px 2px 2px;
  7294. box-sizing:border-box;
  7295. width:100%;
  7296. }
  7297. #u145443_text {
  7298. border-width:0px;
  7299. word-wrap:break-word;
  7300. text-transform:none;
  7301. visibility:hidden;
  7302. }
  7303. #u145444_div {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:91px;
  7309. height:50px;
  7310. background:inherit;
  7311. background-color:rgba(255, 255, 255, 0);
  7312. box-sizing:border-box;
  7313. border-width:2px;
  7314. border-style:solid;
  7315. border-color:rgba(24, 144, 255, 1);
  7316. border-left:0px;
  7317. border-top:0px;
  7318. border-right:0px;
  7319. border-radius:0px;
  7320. border-bottom-right-radius:0px;
  7321. border-bottom-left-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:18px;
  7329. color:#1890FF;
  7330. }
  7331. #u145444 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:452px;
  7335. top:50px;
  7336. width:91px;
  7337. height:50px;
  7338. display:flex;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:18px;
  7343. color:#1890FF;
  7344. }
  7345. #u145444 .text {
  7346. position:absolute;
  7347. align-self:center;
  7348. padding:0px 0px 0px 0px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u145444_text {
  7353. border-width:0px;
  7354. white-space:nowrap;
  7355. text-transform:none;
  7356. }