styles.css 133 KB

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