styles.css 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2442px;
  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. #u20455_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. #u20455 {
  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. #u20455 .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. #u20455_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u20456_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. #u20456 {
  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. #u20456 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u20456_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u20457 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u20458_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u20458 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u20458 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u20458_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u20459_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. #u20459 {
  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. #u20459 .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. #u20459_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u20460_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. #u20460 {
  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. #u20460 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u20460_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u20461_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. #u20461 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u20461 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20461_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u20462 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u20463_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. #u20463 {
  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. #u20463 .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. #u20463_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u20464_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u20464 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u20464 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u20464_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u20465 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u20466_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. #u20466 {
  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. #u20466 .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. #u20466_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u20467_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u20467 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u20467 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u20467_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u20468 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u20469_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. #u20469 {
  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. #u20469 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u20469_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u20470_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u20470 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u20470 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u20470_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u20471 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u20472_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. #u20472 {
  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. #u20472 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u20472_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u20473_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u20473 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u20473 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u20473_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u20474 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u20475_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. #u20475 {
  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. #u20475 .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. #u20475_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u20476_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u20476 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u20476 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u20476_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u20477 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u20478_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. #u20478 {
  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. #u20478 .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. #u20478_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u20479_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u20479 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u20479 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u20479_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u20480 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u20481_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. #u20481 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u20481 .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. #u20481_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u20482_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u20482 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u20482 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u20482_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u20483 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u20484_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. #u20484 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u20484 .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. #u20484_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u20485_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u20485 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u20485 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u20485_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u20486 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u20487_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. #u20487 {
  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. #u20487 .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. #u20487_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u20488_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u20488 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u20488 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u20488_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u20489 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u20490_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u20490 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u20490 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u20490_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u20491_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u20491 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u20491 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u20491_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u20492_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u20492_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u20492_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u20492 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u20492 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u20492_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u20492.disabled {
  1184. }
  1185. .u20492_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u20493_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u20493 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u20493 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u20493_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u20494_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u20494 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u20494 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u20494_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u20495_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u20495 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u20495 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u20495_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u20496 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u20497_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u20497 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u20497 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u20497_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u20498_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u20498 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u20498 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u20498_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u20499 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u20500_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u20500 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u20500 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u20500_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u20501_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u20501 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u20501 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u20501_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u20502 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u20503_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u20503 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u20503 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u20503_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u20504_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u20504 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u20504 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u20504_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u20505 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u20506_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u20506 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u20506 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u20506_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u20507_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u20507 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u20507 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u20507_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u20508 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u20509_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u20509 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u20509 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u20509_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u20510_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u20510 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u20510 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u20510_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u20511_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1259px;
  1720. height:1192px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:12px;
  1732. color:#FFFFFF;
  1733. text-align:left;
  1734. }
  1735. #u20511 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:332px;
  1739. top:50px;
  1740. width:1259px;
  1741. height:1192px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. color:#FFFFFF;
  1748. text-align:left;
  1749. }
  1750. #u20511 .text {
  1751. position:absolute;
  1752. align-self:center;
  1753. padding:2px 2px 2px 50px;
  1754. box-sizing:border-box;
  1755. width:100%;
  1756. }
  1757. #u20511_text {
  1758. border-width:0px;
  1759. word-wrap:break-word;
  1760. text-transform:none;
  1761. visibility:hidden;
  1762. }
  1763. #u20512 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:352px;
  1767. top:190px;
  1768. width:1219px;
  1769. height:364px;
  1770. }
  1771. #u20513_img {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:152px;
  1777. height:39px;
  1778. }
  1779. #u20513 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:152px;
  1785. height:39px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. color:#FFFFFF;
  1792. }
  1793. #u20513 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:2px 2px 2px 0px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u20513_text {
  1801. border-width:0px;
  1802. word-wrap:break-word;
  1803. text-transform:none;
  1804. }
  1805. #u20514_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:152px;
  1811. height:39px;
  1812. }
  1813. #u20514 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:152px;
  1817. top:0px;
  1818. width:152px;
  1819. height:39px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:12px;
  1825. color:#FFFFFF;
  1826. }
  1827. #u20514 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 2px 2px 0px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u20514_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u20515_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:152px;
  1845. height:39px;
  1846. }
  1847. #u20515 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:304px;
  1851. top:0px;
  1852. width:152px;
  1853. height:39px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. color:#FFFFFF;
  1860. }
  1861. #u20515 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 0px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u20515_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. }
  1873. #u20516_img {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:152px;
  1879. height:39px;
  1880. }
  1881. #u20516 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:456px;
  1885. top:0px;
  1886. width:152px;
  1887. height:39px;
  1888. display:flex;
  1889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1890. font-weight:400;
  1891. font-style:normal;
  1892. font-size:12px;
  1893. color:#FFFFFF;
  1894. }
  1895. #u20516 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 2px 2px 0px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u20516_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u20517_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:152px;
  1913. height:39px;
  1914. }
  1915. #u20517 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:608px;
  1919. top:0px;
  1920. width:152px;
  1921. height:39px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:12px;
  1927. color:#FFFFFF;
  1928. }
  1929. #u20517 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u20517_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. }
  1941. #u20518_img {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:152px;
  1947. height:39px;
  1948. }
  1949. #u20518 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:760px;
  1953. top:0px;
  1954. width:152px;
  1955. height:39px;
  1956. display:flex;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. color:#FFFFFF;
  1962. }
  1963. #u20518 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:2px 2px 2px 0px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u20518_text {
  1971. border-width:0px;
  1972. word-wrap:break-word;
  1973. text-transform:none;
  1974. }
  1975. #u20519_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:152px;
  1981. height:39px;
  1982. }
  1983. #u20519 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:912px;
  1987. top:0px;
  1988. width:152px;
  1989. height:39px;
  1990. display:flex;
  1991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:12px;
  1995. color:#FFFFFF;
  1996. }
  1997. #u20519 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u20519_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u20520_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:155px;
  2015. height:39px;
  2016. }
  2017. #u20520 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:1064px;
  2021. top:0px;
  2022. width:155px;
  2023. height:39px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:12px;
  2029. color:#FFFFFF;
  2030. }
  2031. #u20520 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:2px 2px 2px 0px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u20520_text {
  2039. border-width:0px;
  2040. word-wrap:break-word;
  2041. text-transform:none;
  2042. }
  2043. #u20521_img {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:152px;
  2049. height:36px;
  2050. }
  2051. #u20521 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:39px;
  2056. width:152px;
  2057. height:36px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:12px;
  2063. }
  2064. #u20521 .text {
  2065. position:absolute;
  2066. align-self:center;
  2067. padding:2px 2px 2px 0px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u20521_text {
  2072. border-width:0px;
  2073. word-wrap:break-word;
  2074. text-transform:none;
  2075. visibility:hidden;
  2076. }
  2077. #u20522_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:152px;
  2083. height:36px;
  2084. }
  2085. #u20522 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:152px;
  2089. top:39px;
  2090. width:152px;
  2091. height:36px;
  2092. display:flex;
  2093. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:12px;
  2097. }
  2098. #u20522 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u20522_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u20523_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:152px;
  2117. height:36px;
  2118. }
  2119. #u20523 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:304px;
  2123. top:39px;
  2124. width:152px;
  2125. height:36px;
  2126. display:flex;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:12px;
  2131. }
  2132. #u20523 .text {
  2133. position:absolute;
  2134. align-self:center;
  2135. padding:2px 2px 2px 0px;
  2136. box-sizing:border-box;
  2137. width:100%;
  2138. }
  2139. #u20523_text {
  2140. border-width:0px;
  2141. word-wrap:break-word;
  2142. text-transform:none;
  2143. visibility:hidden;
  2144. }
  2145. #u20524_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:152px;
  2151. height:36px;
  2152. }
  2153. #u20524 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:456px;
  2157. top:39px;
  2158. width:152px;
  2159. height:36px;
  2160. display:flex;
  2161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2162. font-weight:400;
  2163. font-style:normal;
  2164. font-size:12px;
  2165. }
  2166. #u20524 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 0px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u20524_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. visibility:hidden;
  2178. }
  2179. #u20525_img {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:152px;
  2185. height:36px;
  2186. }
  2187. #u20525 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:608px;
  2191. top:39px;
  2192. width:152px;
  2193. height:36px;
  2194. display:flex;
  2195. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. }
  2200. #u20525 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 0px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u20525_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. visibility:hidden;
  2212. }
  2213. #u20526_img {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:152px;
  2219. height:36px;
  2220. }
  2221. #u20526 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:760px;
  2225. top:39px;
  2226. width:152px;
  2227. height:36px;
  2228. display:flex;
  2229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:12px;
  2233. }
  2234. #u20526 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 2px 2px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u20526_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. visibility:hidden;
  2246. }
  2247. #u20527_img {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:152px;
  2253. height:36px;
  2254. }
  2255. #u20527 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:912px;
  2259. top:39px;
  2260. width:152px;
  2261. height:36px;
  2262. display:flex;
  2263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2264. font-weight:400;
  2265. font-style:normal;
  2266. font-size:12px;
  2267. }
  2268. #u20527 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:2px 2px 2px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u20527_text {
  2276. border-width:0px;
  2277. word-wrap:break-word;
  2278. text-transform:none;
  2279. visibility:hidden;
  2280. }
  2281. #u20528_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:155px;
  2287. height:36px;
  2288. }
  2289. #u20528 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:1064px;
  2293. top:39px;
  2294. width:155px;
  2295. height:36px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:12px;
  2301. color:#1890FF;
  2302. }
  2303. #u20528 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u20528_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u20529_img {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:152px;
  2321. height:38px;
  2322. }
  2323. #u20529 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:75px;
  2328. width:152px;
  2329. height:38px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:12px;
  2335. }
  2336. #u20529 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 2px 2px 0px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u20529_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. visibility:hidden;
  2348. }
  2349. #u20530_img {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:152px;
  2355. height:38px;
  2356. }
  2357. #u20530 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:152px;
  2361. top:75px;
  2362. width:152px;
  2363. height:38px;
  2364. display:flex;
  2365. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2366. font-weight:400;
  2367. font-style:normal;
  2368. font-size:12px;
  2369. }
  2370. #u20530 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 0px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u20530_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u20531_img {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:152px;
  2389. height:38px;
  2390. }
  2391. #u20531 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:304px;
  2395. top:75px;
  2396. width:152px;
  2397. height:38px;
  2398. display:flex;
  2399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. }
  2404. #u20531 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 0px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u20531_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. visibility:hidden;
  2416. }
  2417. #u20532_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:152px;
  2423. height:38px;
  2424. }
  2425. #u20532 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:456px;
  2429. top:75px;
  2430. width:152px;
  2431. height:38px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. }
  2438. #u20532 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u20532_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u20533_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:152px;
  2457. height:38px;
  2458. }
  2459. #u20533 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:608px;
  2463. top:75px;
  2464. width:152px;
  2465. height:38px;
  2466. display:flex;
  2467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:12px;
  2471. }
  2472. #u20533 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u20533_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u20534_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:152px;
  2491. height:38px;
  2492. }
  2493. #u20534 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:760px;
  2497. top:75px;
  2498. width:152px;
  2499. height:38px;
  2500. display:flex;
  2501. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. }
  2506. #u20534 .text {
  2507. position:absolute;
  2508. align-self:center;
  2509. padding:2px 2px 2px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u20534_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u20535_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:152px;
  2525. height:38px;
  2526. }
  2527. #u20535 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:912px;
  2531. top:75px;
  2532. width:152px;
  2533. height:38px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:12px;
  2539. }
  2540. #u20535 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 2px 2px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u20535_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u20536_img {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:155px;
  2559. height:38px;
  2560. }
  2561. #u20536 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:1064px;
  2565. top:75px;
  2566. width:155px;
  2567. height:38px;
  2568. display:flex;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. color:#1890FF;
  2574. }
  2575. #u20536 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u20536_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u20537_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:152px;
  2594. height:38px;
  2595. }
  2596. #u20537 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:113px;
  2601. width:152px;
  2602. height:38px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. }
  2609. #u20537 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u20537_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u20538_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:152px;
  2628. height:38px;
  2629. }
  2630. #u20538 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:152px;
  2634. top:113px;
  2635. width:152px;
  2636. height:38px;
  2637. display:flex;
  2638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. }
  2643. #u20538 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u20538_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u20539_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:152px;
  2662. height:38px;
  2663. }
  2664. #u20539 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:304px;
  2668. top:113px;
  2669. width:152px;
  2670. height:38px;
  2671. display:flex;
  2672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. }
  2677. #u20539 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u20539_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. visibility:hidden;
  2689. }
  2690. #u20540_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:152px;
  2696. height:38px;
  2697. }
  2698. #u20540 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:456px;
  2702. top:113px;
  2703. width:152px;
  2704. height:38px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:12px;
  2710. }
  2711. #u20540 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u20540_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u20541_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:152px;
  2730. height:38px;
  2731. }
  2732. #u20541 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:608px;
  2736. top:113px;
  2737. width:152px;
  2738. height:38px;
  2739. display:flex;
  2740. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. }
  2745. #u20541 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u20541_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u20542_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:152px;
  2764. height:38px;
  2765. }
  2766. #u20542 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:760px;
  2770. top:113px;
  2771. width:152px;
  2772. height:38px;
  2773. display:flex;
  2774. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. }
  2779. #u20542 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u20542_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. visibility:hidden;
  2791. }
  2792. #u20543_img {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:152px;
  2798. height:38px;
  2799. }
  2800. #u20543 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:912px;
  2804. top:113px;
  2805. width:152px;
  2806. height:38px;
  2807. display:flex;
  2808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2809. font-weight:400;
  2810. font-style:normal;
  2811. font-size:12px;
  2812. }
  2813. #u20543 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u20543_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u20544_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:155px;
  2832. height:38px;
  2833. }
  2834. #u20544 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:1064px;
  2838. top:113px;
  2839. width:155px;
  2840. height:38px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#1890FF;
  2847. }
  2848. #u20544 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u20544_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u20545_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:152px;
  2867. height:38px;
  2868. }
  2869. #u20545 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:151px;
  2874. width:152px;
  2875. height:38px;
  2876. display:flex;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. }
  2882. #u20545 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 0px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u20545_text {
  2890. border-width:0px;
  2891. word-wrap:break-word;
  2892. text-transform:none;
  2893. visibility:hidden;
  2894. }
  2895. #u20546_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:152px;
  2901. height:38px;
  2902. }
  2903. #u20546 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:152px;
  2907. top:151px;
  2908. width:152px;
  2909. height:38px;
  2910. display:flex;
  2911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:12px;
  2915. }
  2916. #u20546 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 0px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u20546_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u20547_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:152px;
  2935. height:38px;
  2936. }
  2937. #u20547 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:304px;
  2941. top:151px;
  2942. width:152px;
  2943. height:38px;
  2944. display:flex;
  2945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. }
  2950. #u20547 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u20547_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u20548_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:152px;
  2969. height:38px;
  2970. }
  2971. #u20548 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:456px;
  2975. top:151px;
  2976. width:152px;
  2977. height:38px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:12px;
  2983. }
  2984. #u20548 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 0px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u20548_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u20549_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:152px;
  3003. height:38px;
  3004. }
  3005. #u20549 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:608px;
  3009. top:151px;
  3010. width:152px;
  3011. height:38px;
  3012. display:flex;
  3013. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. }
  3018. #u20549 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u20549_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u20550_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:152px;
  3037. height:38px;
  3038. }
  3039. #u20550 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:760px;
  3043. top:151px;
  3044. width:152px;
  3045. height:38px;
  3046. display:flex;
  3047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. }
  3052. #u20550 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u20550_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u20551_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:152px;
  3071. height:38px;
  3072. }
  3073. #u20551 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:912px;
  3077. top:151px;
  3078. width:152px;
  3079. height:38px;
  3080. display:flex;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. }
  3086. #u20551 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u20551_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u20552_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:155px;
  3105. height:38px;
  3106. }
  3107. #u20552 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:1064px;
  3111. top:151px;
  3112. width:155px;
  3113. height:38px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. color:#1890FF;
  3120. }
  3121. #u20552 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 0px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u20552_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u20553_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:152px;
  3140. height:35px;
  3141. }
  3142. #u20553 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:189px;
  3147. width:152px;
  3148. height:35px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:12px;
  3154. color:#606266;
  3155. }
  3156. #u20553 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u20553_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u20554_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:152px;
  3175. height:35px;
  3176. }
  3177. #u20554 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:152px;
  3181. top:189px;
  3182. width:152px;
  3183. height:35px;
  3184. display:flex;
  3185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:12px;
  3189. color:#606266;
  3190. }
  3191. #u20554 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 0px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u20554_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u20555_img {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:152px;
  3210. height:35px;
  3211. }
  3212. #u20555 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:304px;
  3216. top:189px;
  3217. width:152px;
  3218. height:35px;
  3219. display:flex;
  3220. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:12px;
  3224. color:#606266;
  3225. }
  3226. #u20555 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 0px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u20555_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u20556_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:152px;
  3245. height:35px;
  3246. }
  3247. #u20556 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:456px;
  3251. top:189px;
  3252. width:152px;
  3253. height:35px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. color:#606266;
  3260. }
  3261. #u20556 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u20556_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u20557_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:152px;
  3280. height:35px;
  3281. }
  3282. #u20557 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:608px;
  3286. top:189px;
  3287. width:152px;
  3288. height:35px;
  3289. display:flex;
  3290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. color:#606266;
  3295. }
  3296. #u20557 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 0px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u20557_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u20558_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:152px;
  3315. height:35px;
  3316. }
  3317. #u20558 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:760px;
  3321. top:189px;
  3322. width:152px;
  3323. height:35px;
  3324. display:flex;
  3325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:12px;
  3329. color:#606266;
  3330. }
  3331. #u20558 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 0px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u20558_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u20559_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:152px;
  3350. height:35px;
  3351. }
  3352. #u20559 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:912px;
  3356. top:189px;
  3357. width:152px;
  3358. height:35px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:12px;
  3364. color:#606266;
  3365. }
  3366. #u20559 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 0px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u20559_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u20560_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:155px;
  3385. height:35px;
  3386. }
  3387. #u20560 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:1064px;
  3391. top:189px;
  3392. width:155px;
  3393. height:35px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:12px;
  3399. color:#02A7F0;
  3400. }
  3401. #u20560 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u20560_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. visibility:hidden;
  3413. }
  3414. #u20561_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:152px;
  3420. height:35px;
  3421. }
  3422. #u20561 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:224px;
  3427. width:152px;
  3428. height:35px;
  3429. display:flex;
  3430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#606266;
  3435. }
  3436. #u20561 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u20561_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u20562_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:152px;
  3455. height:35px;
  3456. }
  3457. #u20562 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:152px;
  3461. top:224px;
  3462. width:152px;
  3463. height:35px;
  3464. display:flex;
  3465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#606266;
  3470. }
  3471. #u20562 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u20562_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u20563_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:152px;
  3490. height:35px;
  3491. }
  3492. #u20563 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:304px;
  3496. top:224px;
  3497. width:152px;
  3498. height:35px;
  3499. display:flex;
  3500. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#606266;
  3505. }
  3506. #u20563 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u20563_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u20564_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:152px;
  3525. height:35px;
  3526. }
  3527. #u20564 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:456px;
  3531. top:224px;
  3532. width:152px;
  3533. height:35px;
  3534. display:flex;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#606266;
  3540. }
  3541. #u20564 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u20564_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u20565_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:152px;
  3560. height:35px;
  3561. }
  3562. #u20565 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:608px;
  3566. top:224px;
  3567. width:152px;
  3568. height:35px;
  3569. display:flex;
  3570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#606266;
  3575. }
  3576. #u20565 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u20565_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u20566_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:152px;
  3595. height:35px;
  3596. }
  3597. #u20566 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:760px;
  3601. top:224px;
  3602. width:152px;
  3603. height:35px;
  3604. display:flex;
  3605. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#606266;
  3610. }
  3611. #u20566 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u20566_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u20567_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:152px;
  3630. height:35px;
  3631. }
  3632. #u20567 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:912px;
  3636. top:224px;
  3637. width:152px;
  3638. height:35px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#606266;
  3645. }
  3646. #u20567 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u20567_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u20568_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:155px;
  3665. height:35px;
  3666. }
  3667. #u20568 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:1064px;
  3671. top:224px;
  3672. width:155px;
  3673. height:35px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. color:#02A7F0;
  3680. }
  3681. #u20568 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u20568_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u20569_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:152px;
  3700. height:35px;
  3701. }
  3702. #u20569 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:259px;
  3707. width:152px;
  3708. height:35px;
  3709. display:flex;
  3710. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#606266;
  3715. }
  3716. #u20569 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u20569_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u20570_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:152px;
  3735. height:35px;
  3736. }
  3737. #u20570 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:152px;
  3741. top:259px;
  3742. width:152px;
  3743. height:35px;
  3744. display:flex;
  3745. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#606266;
  3750. }
  3751. #u20570 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u20570_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u20571_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:152px;
  3770. height:35px;
  3771. }
  3772. #u20571 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:304px;
  3776. top:259px;
  3777. width:152px;
  3778. height:35px;
  3779. display:flex;
  3780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. color:#606266;
  3785. }
  3786. #u20571 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u20571_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u20572_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:152px;
  3805. height:35px;
  3806. }
  3807. #u20572 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:456px;
  3811. top:259px;
  3812. width:152px;
  3813. height:35px;
  3814. display:flex;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:#606266;
  3820. }
  3821. #u20572 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u20572_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u20573_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:152px;
  3840. height:35px;
  3841. }
  3842. #u20573 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:608px;
  3846. top:259px;
  3847. width:152px;
  3848. height:35px;
  3849. display:flex;
  3850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#606266;
  3855. }
  3856. #u20573 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u20573_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u20574_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:152px;
  3875. height:35px;
  3876. }
  3877. #u20574 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:760px;
  3881. top:259px;
  3882. width:152px;
  3883. height:35px;
  3884. display:flex;
  3885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:#606266;
  3890. }
  3891. #u20574 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u20574_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u20575_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:152px;
  3910. height:35px;
  3911. }
  3912. #u20575 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:912px;
  3916. top:259px;
  3917. width:152px;
  3918. height:35px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#606266;
  3925. }
  3926. #u20575 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u20575_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u20576_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:155px;
  3945. height:35px;
  3946. }
  3947. #u20576 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1064px;
  3951. top:259px;
  3952. width:155px;
  3953. height:35px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#02A7F0;
  3960. }
  3961. #u20576 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u20576_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u20577_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:152px;
  3980. height:35px;
  3981. }
  3982. #u20577 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:294px;
  3987. width:152px;
  3988. height:35px;
  3989. display:flex;
  3990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:12px;
  3994. color:#606266;
  3995. }
  3996. #u20577 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u20577_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u20578_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:152px;
  4015. height:35px;
  4016. }
  4017. #u20578 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:152px;
  4021. top:294px;
  4022. width:152px;
  4023. height:35px;
  4024. display:flex;
  4025. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#606266;
  4030. }
  4031. #u20578 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u20578_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u20579_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:152px;
  4050. height:35px;
  4051. }
  4052. #u20579 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:304px;
  4056. top:294px;
  4057. width:152px;
  4058. height:35px;
  4059. display:flex;
  4060. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:12px;
  4064. color:#606266;
  4065. }
  4066. #u20579 .text {
  4067. position:absolute;
  4068. align-self:center;
  4069. padding:2px 2px 2px 0px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u20579_text {
  4074. border-width:0px;
  4075. word-wrap:break-word;
  4076. text-transform:none;
  4077. visibility:hidden;
  4078. }
  4079. #u20580_img {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:152px;
  4085. height:35px;
  4086. }
  4087. #u20580 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:456px;
  4091. top:294px;
  4092. width:152px;
  4093. height:35px;
  4094. display:flex;
  4095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:12px;
  4099. color:#606266;
  4100. }
  4101. #u20580 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u20580_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u20581_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:152px;
  4120. height:35px;
  4121. }
  4122. #u20581 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:608px;
  4126. top:294px;
  4127. width:152px;
  4128. height:35px;
  4129. display:flex;
  4130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:12px;
  4134. color:#606266;
  4135. }
  4136. #u20581 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:2px 2px 2px 0px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u20581_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. visibility:hidden;
  4148. }
  4149. #u20582_img {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:152px;
  4155. height:35px;
  4156. }
  4157. #u20582 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:760px;
  4161. top:294px;
  4162. width:152px;
  4163. height:35px;
  4164. display:flex;
  4165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. color:#606266;
  4170. }
  4171. #u20582 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 2px 2px 0px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u20582_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u20583_img {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:152px;
  4190. height:35px;
  4191. }
  4192. #u20583 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:912px;
  4196. top:294px;
  4197. width:152px;
  4198. height:35px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:12px;
  4204. color:#606266;
  4205. }
  4206. #u20583 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 0px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u20583_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u20584_img {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:155px;
  4225. height:35px;
  4226. }
  4227. #u20584 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:1064px;
  4231. top:294px;
  4232. width:155px;
  4233. height:35px;
  4234. display:flex;
  4235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4236. font-weight:400;
  4237. font-style:normal;
  4238. font-size:12px;
  4239. color:#02A7F0;
  4240. }
  4241. #u20584 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 0px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u20584_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u20585_img {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:152px;
  4260. height:35px;
  4261. }
  4262. #u20585 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:329px;
  4267. width:152px;
  4268. height:35px;
  4269. display:flex;
  4270. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:12px;
  4274. color:#606266;
  4275. }
  4276. #u20585 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u20585_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u20586_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:152px;
  4295. height:35px;
  4296. }
  4297. #u20586 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:152px;
  4301. top:329px;
  4302. width:152px;
  4303. height:35px;
  4304. display:flex;
  4305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. color:#606266;
  4310. }
  4311. #u20586 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u20586_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u20587_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:152px;
  4330. height:35px;
  4331. }
  4332. #u20587 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:304px;
  4336. top:329px;
  4337. width:152px;
  4338. height:35px;
  4339. display:flex;
  4340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:12px;
  4344. color:#606266;
  4345. }
  4346. #u20587 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 0px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u20587_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u20588_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:152px;
  4365. height:35px;
  4366. }
  4367. #u20588 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:456px;
  4371. top:329px;
  4372. width:152px;
  4373. height:35px;
  4374. display:flex;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#606266;
  4380. }
  4381. #u20588 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u20588_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u20589_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:152px;
  4400. height:35px;
  4401. }
  4402. #u20589 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:608px;
  4406. top:329px;
  4407. width:152px;
  4408. height:35px;
  4409. display:flex;
  4410. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:12px;
  4414. color:#606266;
  4415. }
  4416. #u20589 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 0px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u20589_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u20590_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:152px;
  4435. height:35px;
  4436. }
  4437. #u20590 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:760px;
  4441. top:329px;
  4442. width:152px;
  4443. height:35px;
  4444. display:flex;
  4445. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:12px;
  4449. color:#606266;
  4450. }
  4451. #u20590 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 0px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u20590_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. visibility:hidden;
  4463. }
  4464. #u20591_img {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:152px;
  4470. height:35px;
  4471. }
  4472. #u20591 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:912px;
  4476. top:329px;
  4477. width:152px;
  4478. height:35px;
  4479. display:flex;
  4480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4481. font-weight:400;
  4482. font-style:normal;
  4483. font-size:12px;
  4484. color:#606266;
  4485. }
  4486. #u20591 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 0px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u20591_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u20592_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:155px;
  4505. height:35px;
  4506. }
  4507. #u20592 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:1064px;
  4511. top:329px;
  4512. width:155px;
  4513. height:35px;
  4514. display:flex;
  4515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4516. font-weight:400;
  4517. font-style:normal;
  4518. font-size:12px;
  4519. color:#02A7F0;
  4520. }
  4521. #u20592 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:2px 2px 2px 0px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u20592_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. visibility:hidden;
  4533. }
  4534. #u20593_div {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:37px;
  4540. height:50px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 0);
  4543. border:none;
  4544. border-left:0px;
  4545. border-top:0px;
  4546. border-right:0px;
  4547. border-radius:0px;
  4548. border-bottom-right-radius:0px;
  4549. border-bottom-left-radius:0px;
  4550. -moz-box-shadow:none;
  4551. -webkit-box-shadow:none;
  4552. box-shadow:none;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:18px;
  4557. }
  4558. #u20593 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:351px;
  4562. top:50px;
  4563. width:37px;
  4564. height:50px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:18px;
  4570. }
  4571. #u20593 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:0px 0px 0px 0px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u20593_text {
  4579. border-width:0px;
  4580. white-space:nowrap;
  4581. text-transform:none;
  4582. }
  4583. #u20594 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:0px;
  4589. height:0px;
  4590. }
  4591. #u20595_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:59px;
  4597. height:30px;
  4598. background:inherit;
  4599. background-color:rgba(24, 144, 255, 1);
  4600. box-sizing:border-box;
  4601. border-width:1px;
  4602. border-style:solid;
  4603. border-color:rgba(0, 153, 255, 1);
  4604. border-radius:4px;
  4605. -moz-box-shadow:none;
  4606. -webkit-box-shadow:none;
  4607. box-shadow:none;
  4608. font-family:'Microsoft YaHei', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:14px;
  4612. color:#FFFFFF;
  4613. }
  4614. #u20595 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:1364px;
  4618. top:98px;
  4619. width:59px;
  4620. height:30px;
  4621. display:flex;
  4622. font-family:'Microsoft YaHei', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:14px;
  4626. color:#FFFFFF;
  4627. }
  4628. #u20595 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:5px 15px 5px 15px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u20595_text {
  4636. border-width:0px;
  4637. white-space:nowrap;
  4638. text-transform:none;
  4639. }
  4640. #u20596_div {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:55px;
  4646. height:30px;
  4647. background:inherit;
  4648. background-color:rgba(255, 255, 255, 1);
  4649. box-sizing:border-box;
  4650. border-width:1px;
  4651. border-style:solid;
  4652. border-color:rgba(170, 170, 170, 1);
  4653. border-radius:4px;
  4654. -moz-box-shadow:none;
  4655. -webkit-box-shadow:none;
  4656. box-shadow:none;
  4657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4658. font-weight:400;
  4659. font-style:normal;
  4660. font-size:12px;
  4661. color:#555555;
  4662. }
  4663. #u20596 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:1433px;
  4667. top:98px;
  4668. width:55px;
  4669. height:30px;
  4670. display:flex;
  4671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:12px;
  4675. color:#555555;
  4676. }
  4677. #u20596 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:5px 15px 5px 15px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u20596_text {
  4685. border-width:0px;
  4686. white-space:nowrap;
  4687. text-transform:none;
  4688. }
  4689. #u20597 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:0px;
  4695. height:0px;
  4696. }
  4697. #u20598_div {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:140px;
  4703. height:30px;
  4704. background:inherit;
  4705. background-color:rgba(255, 255, 255, 1);
  4706. box-sizing:border-box;
  4707. border-width:1px;
  4708. border-style:solid;
  4709. border-color:rgba(201, 201, 201, 1);
  4710. border-radius:4px;
  4711. -moz-box-shadow:none;
  4712. -webkit-box-shadow:none;
  4713. box-shadow:none;
  4714. font-family:'Microsoft YaHei', sans-serif;
  4715. font-weight:400;
  4716. font-style:normal;
  4717. font-size:14px;
  4718. color:#CCCCCC;
  4719. text-align:left;
  4720. }
  4721. #u20598 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:349px;
  4725. top:100px;
  4726. width:140px;
  4727. height:30px;
  4728. display:flex;
  4729. font-family:'Microsoft YaHei', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:14px;
  4733. color:#CCCCCC;
  4734. text-align:left;
  4735. }
  4736. #u20598 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 8px 2px 8px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u20598_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u20599_input {
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:127px;
  4754. height:25px;
  4755. padding:2px 2px 2px 2px;
  4756. font-family:'Microsoft YaHei', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:10px;
  4760. letter-spacing:normal;
  4761. color:#000000;
  4762. vertical-align:none;
  4763. text-align:left;
  4764. text-transform:none;
  4765. background-color:transparent;
  4766. border-color:transparent;
  4767. }
  4768. #u20599_input.disabled {
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:127px;
  4773. height:25px;
  4774. padding:2px 2px 2px 2px;
  4775. font-family:'Microsoft YaHei', sans-serif;
  4776. font-weight:400;
  4777. font-style:normal;
  4778. font-size:10px;
  4779. letter-spacing:normal;
  4780. color:#000000;
  4781. vertical-align:none;
  4782. text-align:left;
  4783. text-transform:none;
  4784. background-color:transparent;
  4785. border-color:transparent;
  4786. }
  4787. #u20599_div {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:127px;
  4793. height:25px;
  4794. background:inherit;
  4795. background-color:rgba(255, 255, 255, 1);
  4796. border:none;
  4797. border-radius:0px;
  4798. -moz-box-shadow:none;
  4799. -webkit-box-shadow:none;
  4800. box-shadow:none;
  4801. font-family:'Microsoft YaHei', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:10px;
  4805. }
  4806. #u20599 {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:357px;
  4810. top:101px;
  4811. width:127px;
  4812. height:25px;
  4813. display:flex;
  4814. font-family:'Microsoft YaHei', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:10px;
  4818. }
  4819. #u20599 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 2px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u20599_div.disabled {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:127px;
  4832. height:25px;
  4833. background:inherit;
  4834. background-color:rgba(240, 240, 240, 1);
  4835. border:none;
  4836. border-radius:0px;
  4837. -moz-box-shadow:none;
  4838. -webkit-box-shadow:none;
  4839. box-shadow:none;
  4840. font-family:'Microsoft YaHei', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:10px;
  4844. }
  4845. #u20599.disabled {
  4846. }
  4847. #u20600_div {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:87px;
  4853. height:30px;
  4854. background:inherit;
  4855. background-color:rgba(24, 144, 255, 1);
  4856. border:none;
  4857. border-radius:4px;
  4858. -moz-box-shadow:none;
  4859. -webkit-box-shadow:none;
  4860. box-shadow:none;
  4861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4862. font-weight:400;
  4863. font-style:normal;
  4864. font-size:14px;
  4865. color:#FFFFFF;
  4866. }
  4867. #u20600 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:349px;
  4871. top:150px;
  4872. width:87px;
  4873. height:30px;
  4874. display:flex;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:14px;
  4879. color:#FFFFFF;
  4880. }
  4881. #u20600 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:5px 15px 5px 15px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u20600_text {
  4889. border-width:0px;
  4890. white-space:nowrap;
  4891. text-transform:none;
  4892. }
  4893. #u20601 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:0px;
  4899. height:0px;
  4900. }
  4901. #u20602_div {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:100px;
  4907. height:100px;
  4908. background:inherit;
  4909. background-color:rgba(255, 255, 255, 1);
  4910. box-sizing:border-box;
  4911. border-width:1px;
  4912. border-style:solid;
  4913. border-color:rgba(242, 242, 242, 1);
  4914. border-radius:4px;
  4915. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4916. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4917. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:14px;
  4922. text-align:left;
  4923. }
  4924. #u20602 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:1423px;
  4928. top:260px;
  4929. width:100px;
  4930. height:100px;
  4931. display:flex;
  4932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4933. font-weight:400;
  4934. font-style:normal;
  4935. font-size:14px;
  4936. text-align:left;
  4937. }
  4938. #u20602 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u20602_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u20603_div {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:85px;
  4957. height:40px;
  4958. background:inherit;
  4959. background-color:rgba(255, 255, 255, 1);
  4960. border:none;
  4961. border-left:0px;
  4962. border-top:0px;
  4963. border-right:0px;
  4964. border-radius:0px;
  4965. border-bottom-right-radius:0px;
  4966. border-bottom-left-radius:0px;
  4967. -moz-box-shadow:none;
  4968. -webkit-box-shadow:none;
  4969. box-shadow:none;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:14px;
  4974. }
  4975. #u20603 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:1431px;
  4979. top:310px;
  4980. width:85px;
  4981. height:40px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:14px;
  4987. }
  4988. #u20603 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 2px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u20603_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. }
  5000. #u20604_div {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:85px;
  5006. height:40px;
  5007. background:inherit;
  5008. background-color:rgba(255, 255, 255, 1);
  5009. box-sizing:border-box;
  5010. border-width:1px;
  5011. border-style:solid;
  5012. border-color:rgba(215, 215, 215, 1);
  5013. border-left:0px;
  5014. border-top:0px;
  5015. border-right:0px;
  5016. border-radius:0px;
  5017. border-bottom-right-radius:0px;
  5018. border-bottom-left-radius:0px;
  5019. -moz-box-shadow:none;
  5020. -webkit-box-shadow:none;
  5021. box-shadow:none;
  5022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:14px;
  5026. }
  5027. #u20604 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:1431px;
  5031. top:270px;
  5032. width:85px;
  5033. height:40px;
  5034. display:flex;
  5035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:14px;
  5039. }
  5040. #u20604 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:2px 2px 2px 2px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u20604_text {
  5048. border-width:0px;
  5049. word-wrap:break-word;
  5050. text-transform:none;
  5051. }
  5052. #u20605 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:0px;
  5058. height:0px;
  5059. }
  5060. #u20606_div {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:800px;
  5066. height:1198px;
  5067. background:inherit;
  5068. background-color:rgba(255, 255, 255, 1);
  5069. box-sizing:border-box;
  5070. border-width:1px;
  5071. border-style:solid;
  5072. border-color:rgba(215, 215, 215, 1);
  5073. border-radius:0px;
  5074. -moz-box-shadow:none;
  5075. -webkit-box-shadow:none;
  5076. box-shadow:none;
  5077. }
  5078. #u20606 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:1642px;
  5082. top:44px;
  5083. width:800px;
  5084. height:1198px;
  5085. display:flex;
  5086. }
  5087. #u20606 .text {
  5088. position:absolute;
  5089. align-self:center;
  5090. padding:2px 2px 2px 2px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u20606_text {
  5095. border-width:0px;
  5096. word-wrap:break-word;
  5097. text-transform:none;
  5098. visibility:hidden;
  5099. }
  5100. #u20607_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:73px;
  5106. height:30px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 0);
  5109. border:none;
  5110. border-radius:0px;
  5111. -moz-box-shadow:none;
  5112. -webkit-box-shadow:none;
  5113. box-shadow:none;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:18px;
  5118. color:#000000;
  5119. line-height:30px;
  5120. }
  5121. #u20607 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:1662px;
  5125. top:64px;
  5126. width:73px;
  5127. height:30px;
  5128. display:flex;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:18px;
  5133. color:#000000;
  5134. line-height:30px;
  5135. }
  5136. #u20607 .text {
  5137. position:absolute;
  5138. align-self:flex-start;
  5139. padding:0px 0px 0px 0px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u20607_text {
  5144. border-width:0px;
  5145. white-space:nowrap;
  5146. text-transform:none;
  5147. }
  5148. #u20608_div {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:78px;
  5154. height:30px;
  5155. background:inherit;
  5156. background-color:rgba(255, 255, 255, 0);
  5157. border:none;
  5158. border-top:0px;
  5159. border-right:0px;
  5160. border-bottom:0px;
  5161. border-radius:0px;
  5162. border-top-left-radius:0px;
  5163. border-bottom-left-radius:0px;
  5164. -moz-box-shadow:none;
  5165. -webkit-box-shadow:none;
  5166. box-shadow:none;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:14px;
  5171. text-align:right;
  5172. }
  5173. #u20608 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1706px;
  5177. top:266px;
  5178. width:78px;
  5179. height:30px;
  5180. display:flex;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:14px;
  5185. text-align:right;
  5186. }
  5187. #u20608 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:5px 0px 5px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u20608_text {
  5195. border-width:0px;
  5196. white-space:nowrap;
  5197. text-transform:none;
  5198. }
  5199. #u20609 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:0px;
  5205. height:0px;
  5206. }
  5207. #u20610_div {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:40px;
  5213. height:40px;
  5214. background:inherit;
  5215. background-color:rgba(255, 255, 255, 0);
  5216. border:none;
  5217. border-top:0px;
  5218. border-right:0px;
  5219. border-bottom:0px;
  5220. border-radius:0px;
  5221. border-top-left-radius:0px;
  5222. border-bottom-left-radius:0px;
  5223. -moz-box-shadow:none;
  5224. -webkit-box-shadow:none;
  5225. box-shadow:none;
  5226. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5227. font-weight:500;
  5228. font-style:normal;
  5229. font-size:18px;
  5230. text-align:center;
  5231. }
  5232. #u20610 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:2402px;
  5236. top:44px;
  5237. width:40px;
  5238. height:40px;
  5239. display:flex;
  5240. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5241. font-weight:500;
  5242. font-style:normal;
  5243. font-size:18px;
  5244. text-align:center;
  5245. }
  5246. #u20610 .text {
  5247. position:absolute;
  5248. align-self:center;
  5249. padding:5px 10px 5px 0px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u20610_text {
  5254. border-width:0px;
  5255. word-wrap:break-word;
  5256. text-transform:none;
  5257. }
  5258. #u20611_img {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:13px;
  5264. height:17px;
  5265. }
  5266. #u20611 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:2389px;
  5270. top:56px;
  5271. width:13px;
  5272. height:17px;
  5273. display:flex;
  5274. }
  5275. #u20611 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:2px 2px 2px 2px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u20611_text {
  5283. border-width:0px;
  5284. word-wrap:break-word;
  5285. text-transform:none;
  5286. visibility:hidden;
  5287. }
  5288. #u20612 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:0px;
  5294. height:0px;
  5295. }
  5296. #u20613_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:800px;
  5302. height:60px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 1);
  5305. box-sizing:border-box;
  5306. border-width:1px;
  5307. border-style:solid;
  5308. border-color:rgba(215, 215, 215, 1);
  5309. border-radius:0px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:14px;
  5317. color:#AAAAAA;
  5318. text-align:center;
  5319. line-height:30px;
  5320. }
  5321. #u20613 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:1642px;
  5325. top:1182px;
  5326. width:800px;
  5327. height:60px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:14px;
  5333. color:#AAAAAA;
  5334. text-align:center;
  5335. line-height:30px;
  5336. }
  5337. #u20613 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:5px 10px 5px 10px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u20613_text {
  5345. border-width:0px;
  5346. word-wrap:break-word;
  5347. text-transform:none;
  5348. visibility:hidden;
  5349. }
  5350. #u20614_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:80px;
  5356. height:30px;
  5357. background:inherit;
  5358. background-color:rgba(24, 144, 255, 1);
  5359. border:none;
  5360. border-radius:4px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:14px;
  5368. color:#FFFFFF;
  5369. }
  5370. #u20614 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:2317px;
  5374. top:1197px;
  5375. width:80px;
  5376. height:30px;
  5377. display:flex;
  5378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:14px;
  5382. color:#FFFFFF;
  5383. }
  5384. #u20614 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 2px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u20614_text {
  5392. border-width:0px;
  5393. word-wrap:break-word;
  5394. text-transform:none;
  5395. }
  5396. #u20615_div {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:80px;
  5402. height:30px;
  5403. background:inherit;
  5404. background-color:rgba(255, 255, 255, 1);
  5405. box-sizing:border-box;
  5406. border-width:1px;
  5407. border-style:solid;
  5408. border-color:rgba(170, 170, 170, 1);
  5409. border-radius:4px;
  5410. -moz-box-shadow:none;
  5411. -webkit-box-shadow:none;
  5412. box-shadow:none;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:14px;
  5417. }
  5418. #u20615 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:2218px;
  5422. top:1197px;
  5423. width:80px;
  5424. height:30px;
  5425. display:flex;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:14px;
  5430. }
  5431. #u20615 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:2px 2px 2px 2px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u20615_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. }
  5443. #u20616 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:0px;
  5449. height:0px;
  5450. }
  5451. #u20617_div {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:400px;
  5457. height:80px;
  5458. background:inherit;
  5459. background-color:rgba(255, 255, 255, 1);
  5460. box-sizing:border-box;
  5461. border-width:1px;
  5462. border-style:solid;
  5463. border-color:rgba(170, 170, 170, 1);
  5464. border-radius:4px;
  5465. -moz-box-shadow:none;
  5466. -webkit-box-shadow:none;
  5467. box-shadow:none;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. text-align:left;
  5472. }
  5473. #u20617 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:1794px;
  5477. top:361px;
  5478. width:400px;
  5479. height:80px;
  5480. display:flex;
  5481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. text-align:left;
  5485. }
  5486. #u20617 .text {
  5487. position:absolute;
  5488. align-self:center;
  5489. padding:2px 2px 2px 10px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u20617_text {
  5494. border-width:0px;
  5495. word-wrap:break-word;
  5496. text-transform:none;
  5497. visibility:hidden;
  5498. }
  5499. #u20618_input {
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:188px;
  5504. height:31px;
  5505. padding:2px 2px 2px 2px;
  5506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:13px;
  5510. letter-spacing:normal;
  5511. color:#AAAAAA;
  5512. vertical-align:none;
  5513. text-align:left;
  5514. text-transform:none;
  5515. background-color:transparent;
  5516. border-color:transparent;
  5517. }
  5518. #u20618_input.disabled {
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:188px;
  5523. height:31px;
  5524. padding:2px 2px 2px 2px;
  5525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5526. font-weight:400;
  5527. font-style:normal;
  5528. font-size:13px;
  5529. letter-spacing:normal;
  5530. color:#AAAAAA;
  5531. vertical-align:none;
  5532. text-align:left;
  5533. text-transform:none;
  5534. background-color:transparent;
  5535. border-color:transparent;
  5536. }
  5537. #u20618_div {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:188px;
  5543. height:31px;
  5544. background:inherit;
  5545. background-color:rgba(255, 255, 255, 0);
  5546. border:none;
  5547. border-radius:0px;
  5548. -moz-box-shadow:none;
  5549. -webkit-box-shadow:none;
  5550. box-shadow:none;
  5551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. color:#AAAAAA;
  5555. }
  5556. #u20618 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:1804px;
  5560. top:366px;
  5561. width:188px;
  5562. height:31px;
  5563. display:flex;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. color:#AAAAAA;
  5568. }
  5569. #u20618 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 2px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u20618_div.disabled {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:188px;
  5582. height:31px;
  5583. background:inherit;
  5584. background-color:rgba(240, 240, 240, 1);
  5585. border:none;
  5586. border-radius:0px;
  5587. -moz-box-shadow:none;
  5588. -webkit-box-shadow:none;
  5589. box-shadow:none;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. color:#AAAAAA;
  5594. }
  5595. #u20618.disabled {
  5596. }
  5597. #u20619_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:39px;
  5603. height:24px;
  5604. background:inherit;
  5605. background-color:rgba(255, 255, 255, 0);
  5606. border:none;
  5607. border-top:0px;
  5608. border-right:0px;
  5609. border-bottom:0px;
  5610. border-radius:0px;
  5611. border-top-left-radius:0px;
  5612. border-bottom-left-radius:0px;
  5613. -moz-box-shadow:none;
  5614. -webkit-box-shadow:none;
  5615. box-shadow:none;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:10px;
  5620. color:#AAAAAA;
  5621. text-align:right;
  5622. }
  5623. #u20619 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:2152px;
  5627. top:416px;
  5628. width:39px;
  5629. height:24px;
  5630. display:flex;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:10px;
  5635. color:#AAAAAA;
  5636. text-align:right;
  5637. }
  5638. #u20619 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:5px 0px 5px 0px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u20619_text {
  5646. border-width:0px;
  5647. white-space:nowrap;
  5648. text-transform:none;
  5649. }
  5650. #u20620_div {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:78px;
  5656. height:30px;
  5657. background:inherit;
  5658. background-color:rgba(255, 255, 255, 0);
  5659. border:none;
  5660. border-top:0px;
  5661. border-right:0px;
  5662. border-bottom:0px;
  5663. border-radius:0px;
  5664. border-top-left-radius:0px;
  5665. border-bottom-left-radius:0px;
  5666. -moz-box-shadow:none;
  5667. -webkit-box-shadow:none;
  5668. box-shadow:none;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:14px;
  5673. text-align:right;
  5674. }
  5675. #u20620 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:1706px;
  5679. top:217px;
  5680. width:78px;
  5681. height:30px;
  5682. display:flex;
  5683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:14px;
  5687. text-align:right;
  5688. }
  5689. #u20620 .text {
  5690. position:absolute;
  5691. align-self:center;
  5692. padding:5px 0px 5px 0px;
  5693. box-sizing:border-box;
  5694. width:100%;
  5695. }
  5696. #u20620_text {
  5697. border-width:0px;
  5698. white-space:nowrap;
  5699. text-transform:none;
  5700. }
  5701. #u20621_div {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:71px;
  5707. height:30px;
  5708. background:inherit;
  5709. background-color:rgba(255, 255, 255, 0);
  5710. border:none;
  5711. border-top:0px;
  5712. border-right:0px;
  5713. border-bottom:0px;
  5714. border-radius:0px;
  5715. border-top-left-radius:0px;
  5716. border-bottom-left-radius:0px;
  5717. -moz-box-shadow:none;
  5718. -webkit-box-shadow:none;
  5719. box-shadow:none;
  5720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. font-size:14px;
  5724. text-align:right;
  5725. }
  5726. #u20621 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:1713px;
  5730. top:366px;
  5731. width:71px;
  5732. height:30px;
  5733. display:flex;
  5734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:14px;
  5738. text-align:right;
  5739. }
  5740. #u20621 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:5px 0px 5px 0px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u20621_text {
  5748. border-width:0px;
  5749. white-space:nowrap;
  5750. text-transform:none;
  5751. }
  5752. #u20622 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:0px;
  5758. height:0px;
  5759. }
  5760. #u20623_div {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:400px;
  5766. height:40px;
  5767. background:inherit;
  5768. background-color:rgba(255, 255, 255, 1);
  5769. box-sizing:border-box;
  5770. border-width:1px;
  5771. border-style:solid;
  5772. border-color:rgba(170, 170, 170, 1);
  5773. border-radius:4px;
  5774. -moz-box-shadow:none;
  5775. -webkit-box-shadow:none;
  5776. box-shadow:none;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. text-align:left;
  5781. }
  5782. #u20623 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:1794px;
  5786. top:212px;
  5787. width:400px;
  5788. height:40px;
  5789. display:flex;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. text-align:left;
  5794. }
  5795. #u20623 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 10px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u20623_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u20624_input {
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:380px;
  5813. height:31px;
  5814. padding:2px 2px 2px 2px;
  5815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5816. font-weight:400;
  5817. font-style:normal;
  5818. font-size:13px;
  5819. letter-spacing:normal;
  5820. color:#AAAAAA;
  5821. vertical-align:none;
  5822. text-align:left;
  5823. text-transform:none;
  5824. background-color:transparent;
  5825. border-color:transparent;
  5826. }
  5827. #u20624_input.disabled {
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:380px;
  5832. height:31px;
  5833. padding:2px 2px 2px 2px;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:13px;
  5838. letter-spacing:normal;
  5839. color:#AAAAAA;
  5840. vertical-align:none;
  5841. text-align:left;
  5842. text-transform:none;
  5843. background-color:transparent;
  5844. border-color:transparent;
  5845. }
  5846. #u20624_div {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:380px;
  5852. height:31px;
  5853. background:inherit;
  5854. background-color:rgba(255, 255, 255, 0);
  5855. border:none;
  5856. border-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. color:#AAAAAA;
  5864. }
  5865. #u20624 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:1804px;
  5869. top:217px;
  5870. width:380px;
  5871. height:31px;
  5872. display:flex;
  5873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. color:#AAAAAA;
  5877. }
  5878. #u20624 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 2px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u20624_div.disabled {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:380px;
  5891. height:31px;
  5892. background:inherit;
  5893. background-color:rgba(240, 240, 240, 1);
  5894. border:none;
  5895. border-radius:0px;
  5896. -moz-box-shadow:none;
  5897. -webkit-box-shadow:none;
  5898. box-shadow:none;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. color:#AAAAAA;
  5903. }
  5904. #u20624.disabled {
  5905. }
  5906. #u20625 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:0px;
  5912. height:0px;
  5913. }
  5914. #u20626_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:400px;
  5920. height:40px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 1);
  5923. box-sizing:border-box;
  5924. border-width:1px;
  5925. border-style:solid;
  5926. border-color:rgba(170, 170, 170, 1);
  5927. border-radius:4px;
  5928. -moz-box-shadow:none;
  5929. -webkit-box-shadow:none;
  5930. box-shadow:none;
  5931. }
  5932. #u20626 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:1794px;
  5936. top:311px;
  5937. width:400px;
  5938. height:40px;
  5939. display:flex;
  5940. }
  5941. #u20626 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:2px 2px 2px 0px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u20626_text {
  5949. border-width:0px;
  5950. word-wrap:break-word;
  5951. text-transform:none;
  5952. visibility:hidden;
  5953. }
  5954. #u20627_input {
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:380px;
  5959. height:30px;
  5960. padding:2px 2px 2px 0px;
  5961. font-family:'ArialMT', 'Arial', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:13px;
  5965. letter-spacing:normal;
  5966. color:#AAAAAA;
  5967. vertical-align:none;
  5968. text-align:left;
  5969. text-transform:none;
  5970. background-color:transparent;
  5971. border-color:transparent;
  5972. }
  5973. #u20627_input.disabled {
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:380px;
  5978. height:30px;
  5979. padding:2px 2px 2px 0px;
  5980. font-family:'ArialMT', 'Arial', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:13px;
  5984. letter-spacing:normal;
  5985. color:#AAAAAA;
  5986. vertical-align:none;
  5987. text-align:left;
  5988. text-transform:none;
  5989. background-color:transparent;
  5990. border-color:transparent;
  5991. }
  5992. #u20627_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:380px;
  5998. height:30px;
  5999. background:inherit;
  6000. background-color:rgba(255, 255, 255, 1);
  6001. border:none;
  6002. border-radius:0px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. color:#AAAAAA;
  6007. }
  6008. #u20627 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:1804px;
  6012. top:315px;
  6013. width:380px;
  6014. height:30px;
  6015. display:flex;
  6016. color:#AAAAAA;
  6017. }
  6018. #u20627 .text {
  6019. position:absolute;
  6020. align-self:flex-start;
  6021. padding:2px 2px 2px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u20627_div.disabled {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:380px;
  6031. height:30px;
  6032. background:inherit;
  6033. background-color:rgba(240, 240, 240, 1);
  6034. border:none;
  6035. border-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. color:#AAAAAA;
  6040. }
  6041. #u20627.disabled {
  6042. }
  6043. .u20627_input_option {
  6044. }
  6045. #u20628 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:0px;
  6051. height:0px;
  6052. }
  6053. #u20629_div {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:400px;
  6059. height:40px;
  6060. background:inherit;
  6061. background-color:rgba(255, 255, 255, 1);
  6062. box-sizing:border-box;
  6063. border-width:1px;
  6064. border-style:solid;
  6065. border-color:rgba(170, 170, 170, 1);
  6066. border-radius:4px;
  6067. -moz-box-shadow:none;
  6068. -webkit-box-shadow:none;
  6069. box-shadow:none;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. text-align:left;
  6074. }
  6075. #u20629 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:1794px;
  6079. top:261px;
  6080. width:400px;
  6081. height:40px;
  6082. display:flex;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. text-align:left;
  6087. }
  6088. #u20629 .text {
  6089. position:absolute;
  6090. align-self:center;
  6091. padding:2px 2px 2px 10px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u20629_text {
  6096. border-width:0px;
  6097. word-wrap:break-word;
  6098. text-transform:none;
  6099. visibility:hidden;
  6100. }
  6101. #u20630_input {
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:380px;
  6106. height:31px;
  6107. padding:2px 2px 2px 2px;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:13px;
  6112. letter-spacing:normal;
  6113. color:#AAAAAA;
  6114. vertical-align:none;
  6115. text-align:left;
  6116. text-transform:none;
  6117. background-color:transparent;
  6118. border-color:transparent;
  6119. }
  6120. #u20630_input.disabled {
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:380px;
  6125. height:31px;
  6126. padding:2px 2px 2px 2px;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:13px;
  6131. letter-spacing:normal;
  6132. color:#AAAAAA;
  6133. vertical-align:none;
  6134. text-align:left;
  6135. text-transform:none;
  6136. background-color:transparent;
  6137. border-color:transparent;
  6138. }
  6139. #u20630_div {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:380px;
  6145. height:31px;
  6146. background:inherit;
  6147. background-color:rgba(255, 255, 255, 0);
  6148. border:none;
  6149. border-radius:0px;
  6150. -moz-box-shadow:none;
  6151. -webkit-box-shadow:none;
  6152. box-shadow:none;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. color:#AAAAAA;
  6157. }
  6158. #u20630 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:1804px;
  6162. top:266px;
  6163. width:380px;
  6164. height:31px;
  6165. display:flex;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. color:#AAAAAA;
  6170. }
  6171. #u20630 .text {
  6172. position:absolute;
  6173. align-self:center;
  6174. padding:2px 2px 2px 2px;
  6175. box-sizing:border-box;
  6176. width:100%;
  6177. }
  6178. #u20630_div.disabled {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:380px;
  6184. height:31px;
  6185. background:inherit;
  6186. background-color:rgba(240, 240, 240, 1);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. color:#AAAAAA;
  6196. }
  6197. #u20630.disabled {
  6198. }
  6199. #u20631_div {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:78px;
  6205. height:30px;
  6206. background:inherit;
  6207. background-color:rgba(255, 255, 255, 0);
  6208. border:none;
  6209. border-top:0px;
  6210. border-right:0px;
  6211. border-bottom:0px;
  6212. border-radius:0px;
  6213. border-top-left-radius:0px;
  6214. border-bottom-left-radius:0px;
  6215. -moz-box-shadow:none;
  6216. -webkit-box-shadow:none;
  6217. box-shadow:none;
  6218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. text-align:right;
  6223. }
  6224. #u20631 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:1706px;
  6228. top:316px;
  6229. width:78px;
  6230. height:30px;
  6231. display:flex;
  6232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:14px;
  6236. text-align:right;
  6237. }
  6238. #u20631 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:5px 0px 5px 0px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u20631_text {
  6246. border-width:0px;
  6247. white-space:nowrap;
  6248. text-transform:none;
  6249. }
  6250. #u20632 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:0px;
  6256. height:0px;
  6257. }
  6258. #u20633_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:400px;
  6264. height:40px;
  6265. background:inherit;
  6266. background-color:rgba(255, 255, 255, 1);
  6267. box-sizing:border-box;
  6268. border-width:1px;
  6269. border-style:solid;
  6270. border-color:rgba(170, 170, 170, 1);
  6271. border-radius:4px;
  6272. -moz-box-shadow:none;
  6273. -webkit-box-shadow:none;
  6274. box-shadow:none;
  6275. }
  6276. #u20633 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:1794px;
  6280. top:162px;
  6281. width:400px;
  6282. height:40px;
  6283. display:flex;
  6284. }
  6285. #u20633 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 0px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u20633_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u20634_input {
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:380px;
  6303. height:30px;
  6304. padding:2px 2px 2px 0px;
  6305. font-family:'ArialMT', 'Arial', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:13px;
  6309. letter-spacing:normal;
  6310. color:#AAAAAA;
  6311. vertical-align:none;
  6312. text-align:left;
  6313. text-transform:none;
  6314. background-color:transparent;
  6315. border-color:transparent;
  6316. }
  6317. #u20634_input.disabled {
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:380px;
  6322. height:30px;
  6323. padding:2px 2px 2px 0px;
  6324. font-family:'ArialMT', 'Arial', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:13px;
  6328. letter-spacing:normal;
  6329. color:#AAAAAA;
  6330. vertical-align:none;
  6331. text-align:left;
  6332. text-transform:none;
  6333. background-color:transparent;
  6334. border-color:transparent;
  6335. }
  6336. #u20634_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:380px;
  6342. height:30px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 1);
  6345. border:none;
  6346. border-radius:0px;
  6347. -moz-box-shadow:none;
  6348. -webkit-box-shadow:none;
  6349. box-shadow:none;
  6350. color:#AAAAAA;
  6351. }
  6352. #u20634 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:1803px;
  6356. top:166px;
  6357. width:380px;
  6358. height:30px;
  6359. display:flex;
  6360. color:#AAAAAA;
  6361. }
  6362. #u20634 .text {
  6363. position:absolute;
  6364. align-self:flex-start;
  6365. padding:2px 2px 2px 0px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u20634_div.disabled {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:380px;
  6375. height:30px;
  6376. background:inherit;
  6377. background-color:rgba(240, 240, 240, 1);
  6378. border:none;
  6379. border-radius:0px;
  6380. -moz-box-shadow:none;
  6381. -webkit-box-shadow:none;
  6382. box-shadow:none;
  6383. color:#AAAAAA;
  6384. }
  6385. #u20634.disabled {
  6386. }
  6387. .u20634_input_option {
  6388. }
  6389. #u20635_div {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:78px;
  6395. height:30px;
  6396. background:inherit;
  6397. background-color:rgba(255, 255, 255, 0);
  6398. border:none;
  6399. border-top:0px;
  6400. border-right:0px;
  6401. border-bottom:0px;
  6402. border-radius:0px;
  6403. border-top-left-radius:0px;
  6404. border-bottom-left-radius:0px;
  6405. -moz-box-shadow:none;
  6406. -webkit-box-shadow:none;
  6407. box-shadow:none;
  6408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:14px;
  6412. text-align:right;
  6413. }
  6414. #u20635 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:1706px;
  6418. top:128px;
  6419. width:78px;
  6420. height:30px;
  6421. display:flex;
  6422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:14px;
  6426. text-align:right;
  6427. }
  6428. #u20635 .text {
  6429. position:absolute;
  6430. align-self:center;
  6431. padding:5px 0px 5px 0px;
  6432. box-sizing:border-box;
  6433. width:100%;
  6434. }
  6435. #u20635_text {
  6436. border-width:0px;
  6437. white-space:nowrap;
  6438. text-transform:none;
  6439. }
  6440. #u20636 label {
  6441. left:0px;
  6442. width:100%;
  6443. }
  6444. #u20636_img {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:3px;
  6449. width:12px;
  6450. height:12px;
  6451. }
  6452. #u20636 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:1794px;
  6456. top:133px;
  6457. width:100px;
  6458. height:18px;
  6459. display:flex;
  6460. }
  6461. #u20636 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:0px 2px 0px 2px;
  6465. box-sizing:border-box;
  6466. }
  6467. #u20636_img.selected {
  6468. }
  6469. #u20636.selected {
  6470. }
  6471. #u20636_img.disabled {
  6472. }
  6473. #u20636.disabled {
  6474. }
  6475. #u20636_img.selectedDisabled {
  6476. }
  6477. #u20636.selectedDisabled {
  6478. }
  6479. #u20636_text {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:14px;
  6483. top:0px;
  6484. width:84px;
  6485. word-wrap:break-word;
  6486. text-transform:none;
  6487. }
  6488. #u20636_input {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:0px;
  6494. height:0px;
  6495. opacity:0;
  6496. }
  6497. #u20637 label {
  6498. left:0px;
  6499. width:100%;
  6500. }
  6501. #u20637_img {
  6502. border-width:0px;
  6503. position:absolute;
  6504. left:0px;
  6505. top:3px;
  6506. width:12px;
  6507. height:12px;
  6508. }
  6509. #u20637 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:1915px;
  6513. top:133px;
  6514. width:100px;
  6515. height:18px;
  6516. display:flex;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. }
  6521. #u20637 .text {
  6522. position:absolute;
  6523. align-self:center;
  6524. padding:0px 2px 0px 2px;
  6525. box-sizing:border-box;
  6526. }
  6527. #u20637_img.selected {
  6528. }
  6529. #u20637.selected {
  6530. }
  6531. #u20637_img.disabled {
  6532. }
  6533. #u20637.disabled {
  6534. }
  6535. #u20637_img.selectedDisabled {
  6536. }
  6537. #u20637.selectedDisabled {
  6538. }
  6539. #u20637_text {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:14px;
  6543. top:0px;
  6544. width:84px;
  6545. word-wrap:break-word;
  6546. text-transform:none;
  6547. }
  6548. #u20637_input {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:0px;
  6554. height:0px;
  6555. opacity:0;
  6556. }
  6557. #u20638_div {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:657px;
  6563. height:130px;
  6564. background:inherit;
  6565. background-color:rgba(255, 255, 255, 0);
  6566. border:none;
  6567. border-top:0px;
  6568. border-right:0px;
  6569. border-bottom:0px;
  6570. border-radius:0px;
  6571. border-top-left-radius:0px;
  6572. border-bottom-left-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:14px;
  6580. color:#D9001B;
  6581. line-height:30px;
  6582. }
  6583. #u20638 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:1673px;
  6587. top:472px;
  6588. width:657px;
  6589. height:130px;
  6590. display:flex;
  6591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:14px;
  6595. color:#D9001B;
  6596. line-height:30px;
  6597. }
  6598. #u20638 .text {
  6599. position:absolute;
  6600. align-self:flex-start;
  6601. padding:5px 0px 5px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u20638_text {
  6606. border-width:0px;
  6607. word-wrap:break-word;
  6608. text-transform:none;
  6609. }
  6610. #u20639_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:146px;
  6616. height:30px;
  6617. background:inherit;
  6618. background-color:rgba(24, 144, 255, 1);
  6619. border:none;
  6620. border-radius:4px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. font-size:14px;
  6628. color:#FFFFFF;
  6629. }
  6630. #u20639 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:446px;
  6634. top:150px;
  6635. width:146px;
  6636. height:30px;
  6637. display:flex;
  6638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6639. font-weight:400;
  6640. font-style:normal;
  6641. font-size:14px;
  6642. color:#FFFFFF;
  6643. }
  6644. #u20639 .text {
  6645. position:absolute;
  6646. align-self:center;
  6647. padding:5px 15px 5px 15px;
  6648. box-sizing:border-box;
  6649. width:100%;
  6650. }
  6651. #u20639_text {
  6652. border-width:0px;
  6653. white-space:nowrap;
  6654. text-transform:none;
  6655. }
  6656. #u20640_div {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:849px;
  6662. height:120px;
  6663. background:inherit;
  6664. background-color:rgba(255, 255, 255, 0);
  6665. border:none;
  6666. border-left:0px;
  6667. border-top:0px;
  6668. border-right:0px;
  6669. border-radius:0px;
  6670. border-bottom-right-radius:0px;
  6671. border-bottom-left-radius:0px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:18px;
  6679. color:#D9001B;
  6680. line-height:40px;
  6681. }
  6682. #u20640 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:590px;
  6686. top:586px;
  6687. width:849px;
  6688. height:120px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:18px;
  6694. color:#D9001B;
  6695. line-height:40px;
  6696. }
  6697. #u20640 .text {
  6698. position:absolute;
  6699. align-self:center;
  6700. padding:0px 0px 0px 0px;
  6701. box-sizing:border-box;
  6702. width:100%;
  6703. }
  6704. #u20640_text {
  6705. border-width:0px;
  6706. white-space:nowrap;
  6707. text-transform:none;
  6708. }
  6709. #u20641 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:0px;
  6715. height:0px;
  6716. }
  6717. #u20642_div {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:163px;
  6723. height:30px;
  6724. background:inherit;
  6725. background-color:rgba(255, 255, 255, 1);
  6726. box-sizing:border-box;
  6727. border-width:1px;
  6728. border-style:solid;
  6729. border-color:rgba(215, 215, 215, 1);
  6730. border-radius:4px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-size:11px;
  6735. }
  6736. #u20642 {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:499px;
  6740. top:101px;
  6741. width:163px;
  6742. height:30px;
  6743. display:flex;
  6744. font-size:11px;
  6745. }
  6746. #u20642 .text {
  6747. position:absolute;
  6748. align-self:center;
  6749. padding:2px 2px 2px 2px;
  6750. box-sizing:border-box;
  6751. width:100%;
  6752. }
  6753. #u20642_text {
  6754. border-width:0px;
  6755. word-wrap:break-word;
  6756. text-transform:none;
  6757. visibility:hidden;
  6758. }
  6759. #u20643_input {
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:147px;
  6764. height:23px;
  6765. padding:2px 2px 2px 2px;
  6766. font-family:'ArialMT', 'Arial', sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:11px;
  6770. letter-spacing:normal;
  6771. color:#AAAAAA;
  6772. vertical-align:none;
  6773. text-align:left;
  6774. text-transform:none;
  6775. background-color:transparent;
  6776. border-color:transparent;
  6777. }
  6778. #u20643_input.disabled {
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:147px;
  6783. height:23px;
  6784. padding:2px 2px 2px 2px;
  6785. font-family:'ArialMT', 'Arial', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:11px;
  6789. letter-spacing:normal;
  6790. color:#AAAAAA;
  6791. vertical-align:none;
  6792. text-align:left;
  6793. text-transform:none;
  6794. background-color:transparent;
  6795. border-color:transparent;
  6796. }
  6797. #u20643_div {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:147px;
  6803. height:23px;
  6804. background:inherit;
  6805. background-color:rgba(255, 255, 255, 1);
  6806. border:none;
  6807. border-radius:0px;
  6808. -moz-box-shadow:none;
  6809. -webkit-box-shadow:none;
  6810. box-shadow:none;
  6811. font-size:11px;
  6812. color:#AAAAAA;
  6813. }
  6814. #u20643 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:508px;
  6818. top:103px;
  6819. width:147px;
  6820. height:23px;
  6821. display:flex;
  6822. font-size:11px;
  6823. color:#AAAAAA;
  6824. }
  6825. #u20643 .text {
  6826. position:absolute;
  6827. align-self:flex-start;
  6828. padding:2px 2px 2px 2px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u20643_div.disabled {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:147px;
  6838. height:23px;
  6839. background:inherit;
  6840. background-color:rgba(240, 240, 240, 1);
  6841. border:none;
  6842. border-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-size:11px;
  6847. color:#AAAAAA;
  6848. }
  6849. #u20643.disabled {
  6850. }
  6851. .u20643_input_option {
  6852. font-size:11px;
  6853. }
  6854. #u20644 {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:0px;
  6860. height:0px;
  6861. }
  6862. #u20645_div {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:163px;
  6868. height:30px;
  6869. background:inherit;
  6870. background-color:rgba(255, 255, 255, 1);
  6871. box-sizing:border-box;
  6872. border-width:1px;
  6873. border-style:solid;
  6874. border-color:rgba(215, 215, 215, 1);
  6875. border-radius:4px;
  6876. -moz-box-shadow:none;
  6877. -webkit-box-shadow:none;
  6878. box-shadow:none;
  6879. font-size:11px;
  6880. }
  6881. #u20645 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:672px;
  6885. top:100px;
  6886. width:163px;
  6887. height:30px;
  6888. display:flex;
  6889. font-size:11px;
  6890. }
  6891. #u20645 .text {
  6892. position:absolute;
  6893. align-self:center;
  6894. padding:2px 2px 2px 2px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u20645_text {
  6899. border-width:0px;
  6900. word-wrap:break-word;
  6901. text-transform:none;
  6902. visibility:hidden;
  6903. }
  6904. #u20646_input {
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:147px;
  6909. height:23px;
  6910. padding:2px 2px 2px 2px;
  6911. font-family:'ArialMT', 'Arial', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:11px;
  6915. letter-spacing:normal;
  6916. color:#AAAAAA;
  6917. vertical-align:none;
  6918. text-align:left;
  6919. text-transform:none;
  6920. background-color:transparent;
  6921. border-color:transparent;
  6922. }
  6923. #u20646_input.disabled {
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:147px;
  6928. height:23px;
  6929. padding:2px 2px 2px 2px;
  6930. font-family:'ArialMT', 'Arial', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:11px;
  6934. letter-spacing:normal;
  6935. color:#AAAAAA;
  6936. vertical-align:none;
  6937. text-align:left;
  6938. text-transform:none;
  6939. background-color:transparent;
  6940. border-color:transparent;
  6941. }
  6942. #u20646_div {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:147px;
  6948. height:23px;
  6949. background:inherit;
  6950. background-color:rgba(255, 255, 255, 1);
  6951. border:none;
  6952. border-radius:0px;
  6953. -moz-box-shadow:none;
  6954. -webkit-box-shadow:none;
  6955. box-shadow:none;
  6956. font-size:11px;
  6957. color:#AAAAAA;
  6958. }
  6959. #u20646 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:681px;
  6963. top:102px;
  6964. width:147px;
  6965. height:23px;
  6966. display:flex;
  6967. font-size:11px;
  6968. color:#AAAAAA;
  6969. }
  6970. #u20646 .text {
  6971. position:absolute;
  6972. align-self:flex-start;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u20646_div.disabled {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:147px;
  6983. height:23px;
  6984. background:inherit;
  6985. background-color:rgba(240, 240, 240, 1);
  6986. border:none;
  6987. border-radius:0px;
  6988. -moz-box-shadow:none;
  6989. -webkit-box-shadow:none;
  6990. box-shadow:none;
  6991. font-size:11px;
  6992. color:#AAAAAA;
  6993. }
  6994. #u20646.disabled {
  6995. }
  6996. .u20646_input_option {
  6997. font-size:11px;
  6998. }
  6999. #u20647 {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:0px;
  7005. height:0px;
  7006. }
  7007. #u20648_div {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:163px;
  7013. height:30px;
  7014. background:inherit;
  7015. background-color:rgba(255, 255, 255, 1);
  7016. box-sizing:border-box;
  7017. border-width:1px;
  7018. border-style:solid;
  7019. border-color:rgba(215, 215, 215, 1);
  7020. border-radius:4px;
  7021. -moz-box-shadow:none;
  7022. -webkit-box-shadow:none;
  7023. box-shadow:none;
  7024. font-size:11px;
  7025. }
  7026. #u20648 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:845px;
  7030. top:100px;
  7031. width:163px;
  7032. height:30px;
  7033. display:flex;
  7034. font-size:11px;
  7035. }
  7036. #u20648 .text {
  7037. position:absolute;
  7038. align-self:center;
  7039. padding:2px 2px 2px 2px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. #u20648_text {
  7044. border-width:0px;
  7045. word-wrap:break-word;
  7046. text-transform:none;
  7047. visibility:hidden;
  7048. }
  7049. #u20649_input {
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:147px;
  7054. height:23px;
  7055. padding:2px 2px 2px 2px;
  7056. font-family:'ArialMT', 'Arial', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:11px;
  7060. letter-spacing:normal;
  7061. color:#AAAAAA;
  7062. vertical-align:none;
  7063. text-align:left;
  7064. text-transform:none;
  7065. background-color:transparent;
  7066. border-color:transparent;
  7067. }
  7068. #u20649_input.disabled {
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:147px;
  7073. height:23px;
  7074. padding:2px 2px 2px 2px;
  7075. font-family:'ArialMT', 'Arial', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:11px;
  7079. letter-spacing:normal;
  7080. color:#AAAAAA;
  7081. vertical-align:none;
  7082. text-align:left;
  7083. text-transform:none;
  7084. background-color:transparent;
  7085. border-color:transparent;
  7086. }
  7087. #u20649_div {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:147px;
  7093. height:23px;
  7094. background:inherit;
  7095. background-color:rgba(255, 255, 255, 1);
  7096. border:none;
  7097. border-radius:0px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. font-size:11px;
  7102. color:#AAAAAA;
  7103. }
  7104. #u20649 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:854px;
  7108. top:102px;
  7109. width:147px;
  7110. height:23px;
  7111. display:flex;
  7112. font-size:11px;
  7113. color:#AAAAAA;
  7114. }
  7115. #u20649 .text {
  7116. position:absolute;
  7117. align-self:flex-start;
  7118. padding:2px 2px 2px 2px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u20649_div.disabled {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:147px;
  7128. height:23px;
  7129. background:inherit;
  7130. background-color:rgba(240, 240, 240, 1);
  7131. border:none;
  7132. border-radius:0px;
  7133. -moz-box-shadow:none;
  7134. -webkit-box-shadow:none;
  7135. box-shadow:none;
  7136. font-size:11px;
  7137. color:#AAAAAA;
  7138. }
  7139. #u20649.disabled {
  7140. }
  7141. .u20649_input_option {
  7142. font-size:11px;
  7143. }
  7144. #u20650 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:0px;
  7150. height:0px;
  7151. }
  7152. #u20651_div {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:163px;
  7158. height:30px;
  7159. background:inherit;
  7160. background-color:rgba(255, 255, 255, 1);
  7161. box-sizing:border-box;
  7162. border-width:1px;
  7163. border-style:solid;
  7164. border-color:rgba(215, 215, 215, 1);
  7165. border-radius:4px;
  7166. -moz-box-shadow:none;
  7167. -webkit-box-shadow:none;
  7168. box-shadow:none;
  7169. font-size:11px;
  7170. }
  7171. #u20651 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:1018px;
  7175. top:98px;
  7176. width:163px;
  7177. height:30px;
  7178. display:flex;
  7179. font-size:11px;
  7180. }
  7181. #u20651 .text {
  7182. position:absolute;
  7183. align-self:center;
  7184. padding:2px 2px 2px 2px;
  7185. box-sizing:border-box;
  7186. width:100%;
  7187. }
  7188. #u20651_text {
  7189. border-width:0px;
  7190. word-wrap:break-word;
  7191. text-transform:none;
  7192. visibility:hidden;
  7193. }
  7194. #u20652_input {
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:147px;
  7199. height:23px;
  7200. padding:2px 2px 2px 2px;
  7201. font-family:'ArialMT', 'Arial', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:11px;
  7205. letter-spacing:normal;
  7206. color:#AAAAAA;
  7207. vertical-align:none;
  7208. text-align:left;
  7209. text-transform:none;
  7210. background-color:transparent;
  7211. border-color:transparent;
  7212. }
  7213. #u20652_input.disabled {
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:147px;
  7218. height:23px;
  7219. padding:2px 2px 2px 2px;
  7220. font-family:'ArialMT', 'Arial', sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:11px;
  7224. letter-spacing:normal;
  7225. color:#AAAAAA;
  7226. vertical-align:none;
  7227. text-align:left;
  7228. text-transform:none;
  7229. background-color:transparent;
  7230. border-color:transparent;
  7231. }
  7232. #u20652_div {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:147px;
  7238. height:23px;
  7239. background:inherit;
  7240. background-color:rgba(255, 255, 255, 1);
  7241. border:none;
  7242. border-radius:0px;
  7243. -moz-box-shadow:none;
  7244. -webkit-box-shadow:none;
  7245. box-shadow:none;
  7246. font-size:11px;
  7247. color:#AAAAAA;
  7248. }
  7249. #u20652 {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:1027px;
  7253. top:100px;
  7254. width:147px;
  7255. height:23px;
  7256. display:flex;
  7257. font-size:11px;
  7258. color:#AAAAAA;
  7259. }
  7260. #u20652 .text {
  7261. position:absolute;
  7262. align-self:flex-start;
  7263. padding:2px 2px 2px 2px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u20652_div.disabled {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:147px;
  7273. height:23px;
  7274. background:inherit;
  7275. background-color:rgba(240, 240, 240, 1);
  7276. border:none;
  7277. border-radius:0px;
  7278. -moz-box-shadow:none;
  7279. -webkit-box-shadow:none;
  7280. box-shadow:none;
  7281. font-size:11px;
  7282. color:#AAAAAA;
  7283. }
  7284. #u20652.disabled {
  7285. }
  7286. .u20652_input_option {
  7287. font-size:11px;
  7288. }
  7289. #u20653 {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:0px;
  7295. height:0px;
  7296. }
  7297. #u20654_div {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:0px;
  7301. top:0px;
  7302. width:163px;
  7303. height:30px;
  7304. background:inherit;
  7305. background-color:rgba(255, 255, 255, 1);
  7306. box-sizing:border-box;
  7307. border-width:1px;
  7308. border-style:solid;
  7309. border-color:rgba(215, 215, 215, 1);
  7310. border-radius:4px;
  7311. -moz-box-shadow:none;
  7312. -webkit-box-shadow:none;
  7313. box-shadow:none;
  7314. font-size:11px;
  7315. }
  7316. #u20654 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:1191px;
  7320. top:99px;
  7321. width:163px;
  7322. height:30px;
  7323. display:flex;
  7324. font-size:11px;
  7325. }
  7326. #u20654 .text {
  7327. position:absolute;
  7328. align-self:center;
  7329. padding:2px 2px 2px 2px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u20654_text {
  7334. border-width:0px;
  7335. word-wrap:break-word;
  7336. text-transform:none;
  7337. visibility:hidden;
  7338. }
  7339. #u20655_input {
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:147px;
  7344. height:23px;
  7345. padding:2px 2px 2px 2px;
  7346. font-family:'ArialMT', 'Arial', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:11px;
  7350. letter-spacing:normal;
  7351. color:#AAAAAA;
  7352. vertical-align:none;
  7353. text-align:left;
  7354. text-transform:none;
  7355. background-color:transparent;
  7356. border-color:transparent;
  7357. }
  7358. #u20655_input.disabled {
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:147px;
  7363. height:23px;
  7364. padding:2px 2px 2px 2px;
  7365. font-family:'ArialMT', 'Arial', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:11px;
  7369. letter-spacing:normal;
  7370. color:#AAAAAA;
  7371. vertical-align:none;
  7372. text-align:left;
  7373. text-transform:none;
  7374. background-color:transparent;
  7375. border-color:transparent;
  7376. }
  7377. #u20655_div {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:147px;
  7383. height:23px;
  7384. background:inherit;
  7385. background-color:rgba(255, 255, 255, 1);
  7386. border:none;
  7387. border-radius:0px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. font-size:11px;
  7392. color:#AAAAAA;
  7393. }
  7394. #u20655 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:1200px;
  7398. top:101px;
  7399. width:147px;
  7400. height:23px;
  7401. display:flex;
  7402. font-size:11px;
  7403. color:#AAAAAA;
  7404. }
  7405. #u20655 .text {
  7406. position:absolute;
  7407. align-self:flex-start;
  7408. padding:2px 2px 2px 2px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u20655_div.disabled {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:147px;
  7418. height:23px;
  7419. background:inherit;
  7420. background-color:rgba(240, 240, 240, 1);
  7421. border:none;
  7422. border-radius:0px;
  7423. -moz-box-shadow:none;
  7424. -webkit-box-shadow:none;
  7425. box-shadow:none;
  7426. font-size:11px;
  7427. color:#AAAAAA;
  7428. }
  7429. #u20655.disabled {
  7430. }
  7431. .u20655_input_option {
  7432. font-size:11px;
  7433. }
  7434. #u20656_img {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:50px;
  7440. height:31px;
  7441. }
  7442. #u20656 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:1319px;
  7446. top:230px;
  7447. width:50px;
  7448. height:31px;
  7449. display:flex;
  7450. }
  7451. #u20656 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:2px 2px 2px 2px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u20656_text {
  7459. border-width:0px;
  7460. word-wrap:break-word;
  7461. text-transform:none;
  7462. visibility:hidden;
  7463. }
  7464. #u20657_img {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:50px;
  7470. height:31px;
  7471. }
  7472. #u20657 {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:1319px;
  7476. top:269px;
  7477. width:50px;
  7478. height:31px;
  7479. display:flex;
  7480. }
  7481. #u20657 .text {
  7482. position:absolute;
  7483. align-self:center;
  7484. padding:2px 2px 2px 2px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u20657_text {
  7489. border-width:0px;
  7490. word-wrap:break-word;
  7491. text-transform:none;
  7492. visibility:hidden;
  7493. }
  7494. #u20658 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:0px;
  7498. top:0px;
  7499. width:0px;
  7500. height:0px;
  7501. }
  7502. #u20659_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:200px;
  7508. height:1192px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 1);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. }
  7517. #u20659 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:120px;
  7521. top:50px;
  7522. width:200px;
  7523. height:1192px;
  7524. display:flex;
  7525. }
  7526. #u20659 .text {
  7527. position:absolute;
  7528. align-self:center;
  7529. padding:2px 2px 2px 2px;
  7530. box-sizing:border-box;
  7531. width:100%;
  7532. }
  7533. #u20659_text {
  7534. border-width:0px;
  7535. word-wrap:break-word;
  7536. text-transform:none;
  7537. visibility:hidden;
  7538. }
  7539. #u20660_div {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:200px;
  7545. height:60px;
  7546. background:inherit;
  7547. background-color:rgba(224, 231, 247, 1);
  7548. border:none;
  7549. border-radius:0px;
  7550. -moz-box-shadow:none;
  7551. -webkit-box-shadow:none;
  7552. box-shadow:none;
  7553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7554. font-weight:500;
  7555. font-style:normal;
  7556. font-size:18px;
  7557. }
  7558. #u20660 {
  7559. border-width:0px;
  7560. position:absolute;
  7561. left:120px;
  7562. top:50px;
  7563. width:200px;
  7564. height:60px;
  7565. display:flex;
  7566. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7567. font-weight:500;
  7568. font-style:normal;
  7569. font-size:18px;
  7570. }
  7571. #u20660 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:0px 0px 0px 20px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u20660_text {
  7579. border-width:0px;
  7580. word-wrap:break-word;
  7581. text-transform:none;
  7582. }
  7583. #u20661_div {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:0px;
  7587. top:0px;
  7588. width:65px;
  7589. height:22px;
  7590. background:inherit;
  7591. background-color:rgba(255, 255, 255, 0);
  7592. border:none;
  7593. border-radius:0px;
  7594. -moz-box-shadow:none;
  7595. -webkit-box-shadow:none;
  7596. box-shadow:none;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:16px;
  7601. }
  7602. #u20661 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:147px;
  7606. top:392px;
  7607. width:65px;
  7608. height:22px;
  7609. display:flex;
  7610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:16px;
  7614. }
  7615. #u20661 .text {
  7616. position:absolute;
  7617. align-self:flex-start;
  7618. padding:0px 0px 0px 0px;
  7619. box-sizing:border-box;
  7620. width:100%;
  7621. }
  7622. #u20661_text {
  7623. border-width:0px;
  7624. white-space:nowrap;
  7625. text-transform:none;
  7626. }
  7627. #u20662_div {
  7628. border-width:0px;
  7629. position:absolute;
  7630. left:0px;
  7631. top:0px;
  7632. width:65px;
  7633. height:22px;
  7634. background:inherit;
  7635. background-color:rgba(255, 255, 255, 0);
  7636. border:none;
  7637. border-radius:0px;
  7638. -moz-box-shadow:none;
  7639. -webkit-box-shadow:none;
  7640. box-shadow:none;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:16px;
  7645. }
  7646. #u20662 {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:147px;
  7650. top:434px;
  7651. width:65px;
  7652. height:22px;
  7653. display:flex;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:16px;
  7658. }
  7659. #u20662 .text {
  7660. position:absolute;
  7661. align-self:flex-start;
  7662. padding:0px 0px 0px 0px;
  7663. box-sizing:border-box;
  7664. width:100%;
  7665. }
  7666. #u20662_text {
  7667. border-width:0px;
  7668. white-space:nowrap;
  7669. text-transform:none;
  7670. }
  7671. #u20663_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:201px;
  7677. height:2px;
  7678. }
  7679. #u20663 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:120px;
  7683. top:335px;
  7684. width:200px;
  7685. height:1px;
  7686. display:flex;
  7687. }
  7688. #u20663 .text {
  7689. position:absolute;
  7690. align-self:center;
  7691. padding:2px 2px 2px 2px;
  7692. box-sizing:border-box;
  7693. width:100%;
  7694. }
  7695. #u20663_text {
  7696. border-width:0px;
  7697. word-wrap:break-word;
  7698. text-transform:none;
  7699. visibility:hidden;
  7700. }
  7701. #u20664_div {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:0px;
  7705. top:0px;
  7706. width:49px;
  7707. height:17px;
  7708. background:inherit;
  7709. background-color:rgba(255, 255, 255, 0);
  7710. border:none;
  7711. border-radius:0px;
  7712. -moz-box-shadow:none;
  7713. -webkit-box-shadow:none;
  7714. box-shadow:none;
  7715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:12px;
  7719. color:#AAAAAA;
  7720. }
  7721. #u20664 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:147px;
  7725. top:355px;
  7726. width:49px;
  7727. height:17px;
  7728. display:flex;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:12px;
  7733. color:#AAAAAA;
  7734. }
  7735. #u20664 .text {
  7736. position:absolute;
  7737. align-self:flex-start;
  7738. padding:0px 0px 0px 0px;
  7739. box-sizing:border-box;
  7740. width:100%;
  7741. }
  7742. #u20664_text {
  7743. border-width:0px;
  7744. white-space:nowrap;
  7745. text-transform:none;
  7746. }
  7747. #u20665_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:33px;
  7753. height:22px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 0);
  7756. border:none;
  7757. border-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7762. font-weight:400;
  7763. font-style:normal;
  7764. font-size:16px;
  7765. }
  7766. #u20665 {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:147px;
  7770. top:476px;
  7771. width:33px;
  7772. height:22px;
  7773. display:flex;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:16px;
  7778. }
  7779. #u20665 .text {
  7780. position:absolute;
  7781. align-self:flex-start;
  7782. padding:0px 0px 0px 0px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u20665_text {
  7787. border-width:0px;
  7788. white-space:nowrap;
  7789. text-transform:none;
  7790. }
  7791. #u20666_div {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:33px;
  7797. height:22px;
  7798. background:inherit;
  7799. background-color:rgba(255, 255, 255, 0);
  7800. border:none;
  7801. border-radius:0px;
  7802. -moz-box-shadow:none;
  7803. -webkit-box-shadow:none;
  7804. box-shadow:none;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:16px;
  7809. }
  7810. #u20666 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:147px;
  7814. top:518px;
  7815. width:33px;
  7816. height:22px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:16px;
  7822. }
  7823. #u20666 .text {
  7824. position:absolute;
  7825. align-self:flex-start;
  7826. padding:0px 0px 0px 0px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u20666_text {
  7831. border-width:0px;
  7832. white-space:nowrap;
  7833. text-transform:none;
  7834. }
  7835. #u20667_div {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:49px;
  7841. height:22px;
  7842. background:inherit;
  7843. background-color:rgba(255, 255, 255, 0);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:16px;
  7853. }
  7854. #u20667 {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:147px;
  7858. top:560px;
  7859. width:49px;
  7860. height:22px;
  7861. display:flex;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:16px;
  7866. }
  7867. #u20667 .text {
  7868. position:absolute;
  7869. align-self:flex-start;
  7870. padding:0px 0px 0px 0px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u20667_text {
  7875. border-width:0px;
  7876. white-space:nowrap;
  7877. text-transform:none;
  7878. }
  7879. #u20668_div {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:65px;
  7885. height:22px;
  7886. background:inherit;
  7887. background-color:rgba(255, 255, 255, 0);
  7888. border:none;
  7889. border-radius:0px;
  7890. -moz-box-shadow:none;
  7891. -webkit-box-shadow:none;
  7892. box-shadow:none;
  7893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7894. font-weight:400;
  7895. font-style:normal;
  7896. font-size:16px;
  7897. }
  7898. #u20668 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:147px;
  7902. top:209px;
  7903. width:65px;
  7904. height:22px;
  7905. display:flex;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:16px;
  7910. }
  7911. #u20668 .text {
  7912. position:absolute;
  7913. align-self:flex-start;
  7914. padding:0px 0px 0px 0px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u20668_text {
  7919. border-width:0px;
  7920. white-space:nowrap;
  7921. text-transform:none;
  7922. }
  7923. #u20669_div {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:49px;
  7929. height:17px;
  7930. background:inherit;
  7931. background-color:rgba(255, 255, 255, 0);
  7932. border:none;
  7933. border-radius:0px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. color:#AAAAAA;
  7942. }
  7943. #u20669 {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:147px;
  7947. top:130px;
  7948. width:49px;
  7949. height:17px;
  7950. display:flex;
  7951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7952. font-weight:400;
  7953. font-style:normal;
  7954. font-size:12px;
  7955. color:#AAAAAA;
  7956. }
  7957. #u20669 .text {
  7958. position:absolute;
  7959. align-self:flex-start;
  7960. padding:0px 0px 0px 0px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u20669_text {
  7965. border-width:0px;
  7966. white-space:nowrap;
  7967. text-transform:none;
  7968. }
  7969. #u20670_div {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:65px;
  7975. height:22px;
  7976. background:inherit;
  7977. background-color:rgba(255, 255, 255, 0);
  7978. border:none;
  7979. border-radius:0px;
  7980. -moz-box-shadow:none;
  7981. -webkit-box-shadow:none;
  7982. box-shadow:none;
  7983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7984. font-weight:400;
  7985. font-style:normal;
  7986. font-size:16px;
  7987. }
  7988. #u20670 {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:147px;
  7992. top:251px;
  7993. width:65px;
  7994. height:22px;
  7995. display:flex;
  7996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7997. font-weight:400;
  7998. font-style:normal;
  7999. font-size:16px;
  8000. }
  8001. #u20670 .text {
  8002. position:absolute;
  8003. align-self:flex-start;
  8004. padding:0px 0px 0px 0px;
  8005. box-sizing:border-box;
  8006. width:100%;
  8007. }
  8008. #u20670_text {
  8009. border-width:0px;
  8010. white-space:nowrap;
  8011. text-transform:none;
  8012. }
  8013. #u20671_div {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:65px;
  8019. height:22px;
  8020. background:inherit;
  8021. background-color:rgba(255, 255, 255, 0);
  8022. border:none;
  8023. border-radius:0px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:16px;
  8031. }
  8032. #u20671 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:147px;
  8036. top:293px;
  8037. width:65px;
  8038. height:22px;
  8039. display:flex;
  8040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8041. font-weight:400;
  8042. font-style:normal;
  8043. font-size:16px;
  8044. }
  8045. #u20671 .text {
  8046. position:absolute;
  8047. align-self:flex-start;
  8048. padding:0px 0px 0px 0px;
  8049. box-sizing:border-box;
  8050. width:100%;
  8051. }
  8052. #u20671_text {
  8053. border-width:0px;
  8054. white-space:nowrap;
  8055. text-transform:none;
  8056. }
  8057. #u20672_div {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:33px;
  8063. height:22px;
  8064. background:inherit;
  8065. background-color:rgba(255, 255, 255, 0);
  8066. border:none;
  8067. border-radius:0px;
  8068. -moz-box-shadow:none;
  8069. -webkit-box-shadow:none;
  8070. box-shadow:none;
  8071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8072. font-weight:400;
  8073. font-style:normal;
  8074. font-size:16px;
  8075. }
  8076. #u20672 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:147px;
  8080. top:167px;
  8081. width:33px;
  8082. height:22px;
  8083. display:flex;
  8084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:16px;
  8088. }
  8089. #u20672 .text {
  8090. position:absolute;
  8091. align-self:flex-start;
  8092. padding:0px 0px 0px 0px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u20672_text {
  8097. border-width:0px;
  8098. white-space:nowrap;
  8099. text-transform:none;
  8100. }