styles.css 127 KB

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