styles.css 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u19639_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u19639 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u19639 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u19639_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u19640_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u19640 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u19640 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u19640_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u19641_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u19641 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u19641 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u19641_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u19642 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u19643_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u19643 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u19643 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u19643_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u19644_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u19644 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u19644 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u19644_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u19645_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u19645 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u19645 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19645_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19646 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19647_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. #u19647 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u19647 .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. #u19647_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19648_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19648 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19648 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19648_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19649 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19650_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. #u19650 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u19650 .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. #u19650_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19651_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19651 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19651 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19651_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19652 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19653_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  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. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u19653 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u19653 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u19653_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u19654_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u19654 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u19654 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u19654_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u19655 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u19656_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u19656 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u19656 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u19656_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u19657_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u19657 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u19657 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u19657_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u19658 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u19659_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u19659 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u19659 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u19659_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u19660_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u19660 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u19660 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u19660_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u19661 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u19662_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u19662 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u19662 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u19662_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u19663_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u19663 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u19663 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u19663_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u19664 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u19665_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u19665 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u19665 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u19665_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u19666_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u19666 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u19666 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u19666_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u19667 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u19668_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u19668 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u19668 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u19668_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u19669_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u19669 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u19669 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u19669_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u19670 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u19671_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u19671 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u19671 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u19671_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u19672_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u19672 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u19672 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u19672_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u19673 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u19674_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u19674 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u19674 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u19674_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u19675_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u19675 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u19675 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u19675_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u19676 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u19677_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u19677 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u19677 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u19677_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u19678_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u19678 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u19678 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u19678_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u19679 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u19680_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u19680_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u19680_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u19680 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u19680 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u19680_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u19680.disabled {
  1276. }
  1277. .u19680_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u19681_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u19681 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u19681 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u19681_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u19682_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u19682 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u19682 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u19682_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u19683_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u19683 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u19683 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u19683_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u19684 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u19685_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u19685 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u19685 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u19685_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u19686_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u19686 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u19686 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u19686_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u19687_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u19687 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u19687 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u19687_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u19688_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u19688 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u19688 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u19688_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u19689_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u19689 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u19689 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u19689_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u19690 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u19691_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u19691 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u19691 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u19691_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u19692_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u19692 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u19692 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u19692_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u19693_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1258px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u19693 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:333px;
  1661. top:50px;
  1662. width:1258px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u19693 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u19693_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u19694_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:73px;
  1685. height:50px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-left:0px;
  1690. border-top:0px;
  1691. border-right:0px;
  1692. border-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:18px;
  1702. line-height:40px;
  1703. }
  1704. #u19694 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:351px;
  1708. top:53px;
  1709. width:73px;
  1710. height:50px;
  1711. display:flex;
  1712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1713. font-weight:400;
  1714. font-style:normal;
  1715. font-size:18px;
  1716. line-height:40px;
  1717. }
  1718. #u19694 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u19694_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u19695 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:353px;
  1734. top:234px;
  1735. width:1218px;
  1736. height:425px;
  1737. }
  1738. #u19696_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:63px;
  1744. height:30px;
  1745. }
  1746. #u19696 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:63px;
  1752. height:30px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u19696 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u19696_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u19697_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:132px;
  1779. height:30px;
  1780. }
  1781. #u19697 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:63px;
  1785. top:0px;
  1786. width:132px;
  1787. height:30px;
  1788. display:flex;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. color:#FFFFFF;
  1794. }
  1795. #u19697 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 2px 2px 2px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u19697_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u19698_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:135px;
  1813. height:30px;
  1814. }
  1815. #u19698 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:195px;
  1819. top:0px;
  1820. width:135px;
  1821. height:30px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. }
  1829. #u19698 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u19698_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u19699_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:132px;
  1847. height:30px;
  1848. }
  1849. #u19699 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:330px;
  1853. top:0px;
  1854. width:132px;
  1855. height:30px;
  1856. display:flex;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:14px;
  1861. color:#FFFFFF;
  1862. }
  1863. #u19699 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 2px 2px 2px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u19699_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u19700_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:161px;
  1881. height:30px;
  1882. }
  1883. #u19700 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:462px;
  1887. top:0px;
  1888. width:161px;
  1889. height:30px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:14px;
  1895. color:#FFFFFF;
  1896. }
  1897. #u19700 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u19700_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u19701_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:106px;
  1915. height:30px;
  1916. }
  1917. #u19701 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:623px;
  1921. top:0px;
  1922. width:106px;
  1923. height:30px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:14px;
  1929. color:#FFFFFF;
  1930. }
  1931. #u19701 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u19701_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u19702_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:144px;
  1949. height:30px;
  1950. }
  1951. #u19702 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:729px;
  1955. top:0px;
  1956. width:144px;
  1957. height:30px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. }
  1965. #u19702 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u19702_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u19703_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:134px;
  1983. height:30px;
  1984. }
  1985. #u19703 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:873px;
  1989. top:0px;
  1990. width:134px;
  1991. height:30px;
  1992. display:flex;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:14px;
  1997. color:#FFFFFF;
  1998. }
  1999. #u19703 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u19703_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u19704_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:106px;
  2017. height:30px;
  2018. }
  2019. #u19704 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1007px;
  2023. top:0px;
  2024. width:106px;
  2025. height:30px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:14px;
  2031. color:#FFFFFF;
  2032. }
  2033. #u19704 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u19704_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u19705_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:105px;
  2051. height:30px;
  2052. }
  2053. #u19705 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:1113px;
  2057. top:0px;
  2058. width:105px;
  2059. height:30px;
  2060. display:flex;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:14px;
  2065. color:#FFFFFF;
  2066. }
  2067. #u19705 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 2px 2px 2px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u19705_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u19706_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:63px;
  2085. height:35px;
  2086. }
  2087. #u19706 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:30px;
  2092. width:63px;
  2093. height:35px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. }
  2100. #u19706 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u19706_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u19707_img {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:132px;
  2119. height:35px;
  2120. }
  2121. #u19707 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:63px;
  2125. top:30px;
  2126. width:132px;
  2127. height:35px;
  2128. display:flex;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:14px;
  2133. }
  2134. #u19707 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u19707_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. visibility:hidden;
  2146. }
  2147. #u19708_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:135px;
  2153. height:35px;
  2154. }
  2155. #u19708 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:195px;
  2159. top:30px;
  2160. width:135px;
  2161. height:35px;
  2162. display:flex;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. }
  2168. #u19708 .text {
  2169. position:absolute;
  2170. align-self:center;
  2171. padding:2px 2px 2px 2px;
  2172. box-sizing:border-box;
  2173. width:100%;
  2174. }
  2175. #u19708_text {
  2176. border-width:0px;
  2177. word-wrap:break-word;
  2178. text-transform:none;
  2179. visibility:hidden;
  2180. }
  2181. #u19709_img {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:132px;
  2187. height:35px;
  2188. }
  2189. #u19709 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:330px;
  2193. top:30px;
  2194. width:132px;
  2195. height:35px;
  2196. display:flex;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:14px;
  2201. }
  2202. #u19709 .text {
  2203. position:absolute;
  2204. align-self:center;
  2205. padding:2px 2px 2px 2px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u19709_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. visibility:hidden;
  2214. }
  2215. #u19710_img {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:161px;
  2221. height:35px;
  2222. }
  2223. #u19710 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:462px;
  2227. top:30px;
  2228. width:161px;
  2229. height:35px;
  2230. display:flex;
  2231. font-size:14px;
  2232. }
  2233. #u19710 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u19710_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u19711_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:106px;
  2252. height:35px;
  2253. }
  2254. #u19711 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:623px;
  2258. top:30px;
  2259. width:106px;
  2260. height:35px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:14px;
  2266. }
  2267. #u19711 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:2px 2px 2px 2px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u19711_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. visibility:hidden;
  2279. }
  2280. #u19712_img {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:144px;
  2286. height:35px;
  2287. }
  2288. #u19712 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:729px;
  2292. top:30px;
  2293. width:144px;
  2294. height:35px;
  2295. display:flex;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:14px;
  2300. }
  2301. #u19712 .text {
  2302. position:absolute;
  2303. align-self:center;
  2304. padding:2px 2px 2px 2px;
  2305. box-sizing:border-box;
  2306. width:100%;
  2307. }
  2308. #u19712_text {
  2309. border-width:0px;
  2310. word-wrap:break-word;
  2311. text-transform:none;
  2312. visibility:hidden;
  2313. }
  2314. #u19713_img {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:134px;
  2320. height:35px;
  2321. }
  2322. #u19713 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:873px;
  2326. top:30px;
  2327. width:134px;
  2328. height:35px;
  2329. display:flex;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. }
  2335. #u19713 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u19713_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. }
  2347. #u19714_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:106px;
  2353. height:35px;
  2354. }
  2355. #u19714 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:1007px;
  2359. top:30px;
  2360. width:106px;
  2361. height:35px;
  2362. display:flex;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:14px;
  2367. }
  2368. #u19714 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u19714_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. visibility:hidden;
  2380. }
  2381. #u19715_img {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:105px;
  2387. height:35px;
  2388. }
  2389. #u19715 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:1113px;
  2393. top:30px;
  2394. width:105px;
  2395. height:35px;
  2396. display:flex;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. color:#1890FF;
  2402. }
  2403. #u19715 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 2px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u19715_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u19716_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:63px;
  2421. height:30px;
  2422. }
  2423. #u19716 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:65px;
  2428. width:63px;
  2429. height:30px;
  2430. display:flex;
  2431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2432. font-weight:400;
  2433. font-style:normal;
  2434. font-size:14px;
  2435. }
  2436. #u19716 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 2px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u19716_text {
  2444. border-width:0px;
  2445. word-wrap:break-word;
  2446. text-transform:none;
  2447. visibility:hidden;
  2448. }
  2449. #u19717_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:132px;
  2455. height:30px;
  2456. }
  2457. #u19717 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:63px;
  2461. top:65px;
  2462. width:132px;
  2463. height:30px;
  2464. display:flex;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:14px;
  2469. }
  2470. #u19717 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 2px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u19717_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u19718_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:135px;
  2489. height:30px;
  2490. }
  2491. #u19718 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:195px;
  2495. top:65px;
  2496. width:135px;
  2497. height:30px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:14px;
  2503. }
  2504. #u19718 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u19718_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u19719_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:132px;
  2523. height:30px;
  2524. }
  2525. #u19719 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:330px;
  2529. top:65px;
  2530. width:132px;
  2531. height:30px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:14px;
  2537. }
  2538. #u19719 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u19719_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u19720_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:161px;
  2557. height:30px;
  2558. }
  2559. #u19720 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:462px;
  2563. top:65px;
  2564. width:161px;
  2565. height:30px;
  2566. display:flex;
  2567. font-size:14px;
  2568. }
  2569. #u19720 .text {
  2570. position:absolute;
  2571. align-self:center;
  2572. padding:2px 2px 2px 2px;
  2573. box-sizing:border-box;
  2574. width:100%;
  2575. }
  2576. #u19720_text {
  2577. border-width:0px;
  2578. word-wrap:break-word;
  2579. text-transform:none;
  2580. visibility:hidden;
  2581. }
  2582. #u19721_img {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:106px;
  2588. height:30px;
  2589. }
  2590. #u19721 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:623px;
  2594. top:65px;
  2595. width:106px;
  2596. height:30px;
  2597. display:flex;
  2598. font-size:14px;
  2599. }
  2600. #u19721 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 2px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u19721_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u19722_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:144px;
  2619. height:30px;
  2620. }
  2621. #u19722 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:729px;
  2625. top:65px;
  2626. width:144px;
  2627. height:30px;
  2628. display:flex;
  2629. font-size:14px;
  2630. }
  2631. #u19722 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u19722_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. visibility:hidden;
  2643. }
  2644. #u19723_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:134px;
  2650. height:30px;
  2651. }
  2652. #u19723 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:873px;
  2656. top:65px;
  2657. width:134px;
  2658. height:30px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:14px;
  2664. }
  2665. #u19723 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u19723_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. }
  2677. #u19724_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:106px;
  2683. height:30px;
  2684. }
  2685. #u19724 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:1007px;
  2689. top:65px;
  2690. width:106px;
  2691. height:30px;
  2692. display:flex;
  2693. font-size:14px;
  2694. }
  2695. #u19724 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 2px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u19724_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. visibility:hidden;
  2707. }
  2708. #u19725_img {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:105px;
  2714. height:30px;
  2715. }
  2716. #u19725 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:1113px;
  2720. top:65px;
  2721. width:105px;
  2722. height:30px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:14px;
  2728. color:#1890FF;
  2729. }
  2730. #u19725 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:2px 2px 2px 2px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u19725_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u19726_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:63px;
  2748. height:30px;
  2749. }
  2750. #u19726 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:95px;
  2755. width:63px;
  2756. height:30px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:14px;
  2762. }
  2763. #u19726 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u19726_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u19727_img {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:132px;
  2782. height:30px;
  2783. }
  2784. #u19727 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:63px;
  2788. top:95px;
  2789. width:132px;
  2790. height:30px;
  2791. display:flex;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:14px;
  2796. }
  2797. #u19727 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 2px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u19727_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u19728_img {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:135px;
  2816. height:30px;
  2817. }
  2818. #u19728 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:195px;
  2822. top:95px;
  2823. width:135px;
  2824. height:30px;
  2825. display:flex;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:14px;
  2830. }
  2831. #u19728 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 2px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u19728_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. visibility:hidden;
  2843. }
  2844. #u19729_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:132px;
  2850. height:30px;
  2851. }
  2852. #u19729 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:330px;
  2856. top:95px;
  2857. width:132px;
  2858. height:30px;
  2859. display:flex;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. }
  2865. #u19729 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u19729_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u19730_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:161px;
  2884. height:30px;
  2885. }
  2886. #u19730 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:462px;
  2890. top:95px;
  2891. width:161px;
  2892. height:30px;
  2893. display:flex;
  2894. font-size:14px;
  2895. }
  2896. #u19730 .text {
  2897. position:absolute;
  2898. align-self:center;
  2899. padding:2px 2px 2px 2px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u19730_text {
  2904. border-width:0px;
  2905. word-wrap:break-word;
  2906. text-transform:none;
  2907. visibility:hidden;
  2908. }
  2909. #u19731_img {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:106px;
  2915. height:30px;
  2916. }
  2917. #u19731 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:623px;
  2921. top:95px;
  2922. width:106px;
  2923. height:30px;
  2924. display:flex;
  2925. font-size:14px;
  2926. }
  2927. #u19731 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 2px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u19731_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u19732_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:144px;
  2946. height:30px;
  2947. }
  2948. #u19732 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:729px;
  2952. top:95px;
  2953. width:144px;
  2954. height:30px;
  2955. display:flex;
  2956. font-size:14px;
  2957. }
  2958. #u19732 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u19732_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u19733_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:134px;
  2977. height:30px;
  2978. }
  2979. #u19733 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:873px;
  2983. top:95px;
  2984. width:134px;
  2985. height:30px;
  2986. display:flex;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:14px;
  2991. }
  2992. #u19733 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 2px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u19733_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. }
  3004. #u19734_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:106px;
  3010. height:30px;
  3011. }
  3012. #u19734 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:1007px;
  3016. top:95px;
  3017. width:106px;
  3018. height:30px;
  3019. display:flex;
  3020. font-size:14px;
  3021. }
  3022. #u19734 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u19734_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u19735_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:105px;
  3041. height:30px;
  3042. }
  3043. #u19735 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:1113px;
  3047. top:95px;
  3048. width:105px;
  3049. height:30px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. color:#1890FF;
  3056. }
  3057. #u19735 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 2px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u19735_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. }
  3069. #u19736_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:63px;
  3075. height:30px;
  3076. }
  3077. #u19736 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:125px;
  3082. width:63px;
  3083. height:30px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:14px;
  3089. }
  3090. #u19736 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u19736_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u19737_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:132px;
  3109. height:30px;
  3110. }
  3111. #u19737 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:63px;
  3115. top:125px;
  3116. width:132px;
  3117. height:30px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. }
  3124. #u19737 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u19737_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u19738_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:135px;
  3143. height:30px;
  3144. }
  3145. #u19738 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:195px;
  3149. top:125px;
  3150. width:135px;
  3151. height:30px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. }
  3158. #u19738 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u19738_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u19739_img {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:132px;
  3177. height:30px;
  3178. }
  3179. #u19739 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:330px;
  3183. top:125px;
  3184. width:132px;
  3185. height:30px;
  3186. display:flex;
  3187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:14px;
  3191. }
  3192. #u19739 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 2px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u19739_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u19740_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:161px;
  3211. height:30px;
  3212. }
  3213. #u19740 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:462px;
  3217. top:125px;
  3218. width:161px;
  3219. height:30px;
  3220. display:flex;
  3221. font-size:14px;
  3222. }
  3223. #u19740 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u19740_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u19741_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:106px;
  3242. height:30px;
  3243. }
  3244. #u19741 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:623px;
  3248. top:125px;
  3249. width:106px;
  3250. height:30px;
  3251. display:flex;
  3252. font-size:14px;
  3253. }
  3254. #u19741 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 2px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u19741_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u19742_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:144px;
  3273. height:30px;
  3274. }
  3275. #u19742 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:729px;
  3279. top:125px;
  3280. width:144px;
  3281. height:30px;
  3282. display:flex;
  3283. font-size:14px;
  3284. }
  3285. #u19742 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u19742_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u19743_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:134px;
  3304. height:30px;
  3305. }
  3306. #u19743 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:873px;
  3310. top:125px;
  3311. width:134px;
  3312. height:30px;
  3313. display:flex;
  3314. font-size:14px;
  3315. }
  3316. #u19743 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 2px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u19743_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u19744_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:106px;
  3335. height:30px;
  3336. }
  3337. #u19744 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:1007px;
  3341. top:125px;
  3342. width:106px;
  3343. height:30px;
  3344. display:flex;
  3345. font-size:14px;
  3346. }
  3347. #u19744 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u19744_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u19745_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:105px;
  3366. height:30px;
  3367. }
  3368. #u19745 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:1113px;
  3372. top:125px;
  3373. width:105px;
  3374. height:30px;
  3375. display:flex;
  3376. font-size:14px;
  3377. }
  3378. #u19745 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 2px 2px 2px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u19745_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. visibility:hidden;
  3390. }
  3391. #u19746_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:63px;
  3397. height:30px;
  3398. }
  3399. #u19746 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:155px;
  3404. width:63px;
  3405. height:30px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:14px;
  3411. }
  3412. #u19746 .text {
  3413. position:absolute;
  3414. align-self:center;
  3415. padding:2px 2px 2px 2px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u19746_text {
  3420. border-width:0px;
  3421. word-wrap:break-word;
  3422. text-transform:none;
  3423. visibility:hidden;
  3424. }
  3425. #u19747_img {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:0px;
  3430. width:132px;
  3431. height:30px;
  3432. }
  3433. #u19747 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:63px;
  3437. top:155px;
  3438. width:132px;
  3439. height:30px;
  3440. display:flex;
  3441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3442. font-weight:400;
  3443. font-style:normal;
  3444. font-size:14px;
  3445. }
  3446. #u19747 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:2px 2px 2px 2px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u19747_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. visibility:hidden;
  3458. }
  3459. #u19748_img {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:135px;
  3465. height:30px;
  3466. }
  3467. #u19748 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:195px;
  3471. top:155px;
  3472. width:135px;
  3473. height:30px;
  3474. display:flex;
  3475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3476. font-weight:400;
  3477. font-style:normal;
  3478. font-size:14px;
  3479. }
  3480. #u19748 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 2px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u19748_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u19749_img {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:132px;
  3499. height:30px;
  3500. }
  3501. #u19749 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:330px;
  3505. top:155px;
  3506. width:132px;
  3507. height:30px;
  3508. display:flex;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:14px;
  3513. }
  3514. #u19749 .text {
  3515. position:absolute;
  3516. align-self:center;
  3517. padding:2px 2px 2px 2px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u19749_text {
  3522. border-width:0px;
  3523. word-wrap:break-word;
  3524. text-transform:none;
  3525. visibility:hidden;
  3526. }
  3527. #u19750_img {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:161px;
  3533. height:30px;
  3534. }
  3535. #u19750 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:462px;
  3539. top:155px;
  3540. width:161px;
  3541. height:30px;
  3542. display:flex;
  3543. font-size:14px;
  3544. }
  3545. #u19750 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 2px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u19750_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u19751_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:106px;
  3564. height:30px;
  3565. }
  3566. #u19751 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:623px;
  3570. top:155px;
  3571. width:106px;
  3572. height:30px;
  3573. display:flex;
  3574. font-size:14px;
  3575. }
  3576. #u19751 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u19751_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u19752_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:144px;
  3595. height:30px;
  3596. }
  3597. #u19752 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:729px;
  3601. top:155px;
  3602. width:144px;
  3603. height:30px;
  3604. display:flex;
  3605. font-size:14px;
  3606. }
  3607. #u19752 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u19752_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. visibility:hidden;
  3619. }
  3620. #u19753_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:134px;
  3626. height:30px;
  3627. }
  3628. #u19753 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:873px;
  3632. top:155px;
  3633. width:134px;
  3634. height:30px;
  3635. display:flex;
  3636. font-size:14px;
  3637. }
  3638. #u19753 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 2px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u19753_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u19754_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:106px;
  3657. height:30px;
  3658. }
  3659. #u19754 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:1007px;
  3663. top:155px;
  3664. width:106px;
  3665. height:30px;
  3666. display:flex;
  3667. font-size:14px;
  3668. }
  3669. #u19754 .text {
  3670. position:absolute;
  3671. align-self:center;
  3672. padding:2px 2px 2px 2px;
  3673. box-sizing:border-box;
  3674. width:100%;
  3675. }
  3676. #u19754_text {
  3677. border-width:0px;
  3678. word-wrap:break-word;
  3679. text-transform:none;
  3680. visibility:hidden;
  3681. }
  3682. #u19755_img {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:105px;
  3688. height:30px;
  3689. }
  3690. #u19755 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:1113px;
  3694. top:155px;
  3695. width:105px;
  3696. height:30px;
  3697. display:flex;
  3698. font-size:14px;
  3699. }
  3700. #u19755 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 2px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u19755_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u19756_img {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:63px;
  3719. height:30px;
  3720. }
  3721. #u19756 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:185px;
  3726. width:63px;
  3727. height:30px;
  3728. display:flex;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:14px;
  3733. }
  3734. #u19756 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 2px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u19756_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u19757_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:132px;
  3753. height:30px;
  3754. }
  3755. #u19757 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:63px;
  3759. top:185px;
  3760. width:132px;
  3761. height:30px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:14px;
  3767. }
  3768. #u19757 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 2px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u19757_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u19758_img {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:135px;
  3787. height:30px;
  3788. }
  3789. #u19758 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:195px;
  3793. top:185px;
  3794. width:135px;
  3795. height:30px;
  3796. display:flex;
  3797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:14px;
  3801. }
  3802. #u19758 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 2px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u19758_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u19759_img {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:132px;
  3821. height:30px;
  3822. }
  3823. #u19759 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:330px;
  3827. top:185px;
  3828. width:132px;
  3829. height:30px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. }
  3836. #u19759 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 2px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u19759_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u19760_img {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:161px;
  3855. height:30px;
  3856. }
  3857. #u19760 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:462px;
  3861. top:185px;
  3862. width:161px;
  3863. height:30px;
  3864. display:flex;
  3865. font-size:14px;
  3866. }
  3867. #u19760 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:2px 2px 2px 2px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u19760_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. visibility:hidden;
  3879. }
  3880. #u19761_img {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:106px;
  3886. height:30px;
  3887. }
  3888. #u19761 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:623px;
  3892. top:185px;
  3893. width:106px;
  3894. height:30px;
  3895. display:flex;
  3896. font-size:14px;
  3897. }
  3898. #u19761 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 2px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u19761_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. visibility:hidden;
  3910. }
  3911. #u19762_img {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:144px;
  3917. height:30px;
  3918. }
  3919. #u19762 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:729px;
  3923. top:185px;
  3924. width:144px;
  3925. height:30px;
  3926. display:flex;
  3927. font-size:14px;
  3928. }
  3929. #u19762 .text {
  3930. position:absolute;
  3931. align-self:center;
  3932. padding:2px 2px 2px 2px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u19762_text {
  3937. border-width:0px;
  3938. word-wrap:break-word;
  3939. text-transform:none;
  3940. visibility:hidden;
  3941. }
  3942. #u19763_img {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:134px;
  3948. height:30px;
  3949. }
  3950. #u19763 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:873px;
  3954. top:185px;
  3955. width:134px;
  3956. height:30px;
  3957. display:flex;
  3958. font-size:14px;
  3959. }
  3960. #u19763 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 2px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u19763_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u19764_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:106px;
  3979. height:30px;
  3980. }
  3981. #u19764 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:1007px;
  3985. top:185px;
  3986. width:106px;
  3987. height:30px;
  3988. display:flex;
  3989. font-size:14px;
  3990. }
  3991. #u19764 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 2px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u19764_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u19765_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:105px;
  4010. height:30px;
  4011. }
  4012. #u19765 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:1113px;
  4016. top:185px;
  4017. width:105px;
  4018. height:30px;
  4019. display:flex;
  4020. font-size:14px;
  4021. }
  4022. #u19765 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 2px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u19765_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. visibility:hidden;
  4034. }
  4035. #u19766_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:63px;
  4041. height:30px;
  4042. }
  4043. #u19766 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:215px;
  4048. width:63px;
  4049. height:30px;
  4050. display:flex;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:14px;
  4055. }
  4056. #u19766 .text {
  4057. position:absolute;
  4058. align-self:center;
  4059. padding:2px 2px 2px 2px;
  4060. box-sizing:border-box;
  4061. width:100%;
  4062. }
  4063. #u19766_text {
  4064. border-width:0px;
  4065. word-wrap:break-word;
  4066. text-transform:none;
  4067. visibility:hidden;
  4068. }
  4069. #u19767_img {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:132px;
  4075. height:30px;
  4076. }
  4077. #u19767 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:63px;
  4081. top:215px;
  4082. width:132px;
  4083. height:30px;
  4084. display:flex;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:14px;
  4089. }
  4090. #u19767 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:2px 2px 2px 2px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u19767_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. visibility:hidden;
  4102. }
  4103. #u19768_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:135px;
  4109. height:30px;
  4110. }
  4111. #u19768 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:195px;
  4115. top:215px;
  4116. width:135px;
  4117. height:30px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:14px;
  4123. }
  4124. #u19768 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 2px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u19768_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u19769_img {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:132px;
  4143. height:30px;
  4144. }
  4145. #u19769 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:330px;
  4149. top:215px;
  4150. width:132px;
  4151. height:30px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:14px;
  4157. }
  4158. #u19769 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u19769_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u19770_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:161px;
  4177. height:30px;
  4178. }
  4179. #u19770 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:462px;
  4183. top:215px;
  4184. width:161px;
  4185. height:30px;
  4186. display:flex;
  4187. font-size:14px;
  4188. }
  4189. #u19770 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 2px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u19770_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. visibility:hidden;
  4201. }
  4202. #u19771_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:106px;
  4208. height:30px;
  4209. }
  4210. #u19771 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:623px;
  4214. top:215px;
  4215. width:106px;
  4216. height:30px;
  4217. display:flex;
  4218. font-size:14px;
  4219. }
  4220. #u19771 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 2px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u19771_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u19772_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:144px;
  4239. height:30px;
  4240. }
  4241. #u19772 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:729px;
  4245. top:215px;
  4246. width:144px;
  4247. height:30px;
  4248. display:flex;
  4249. font-size:14px;
  4250. }
  4251. #u19772 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u19772_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u19773_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:134px;
  4270. height:30px;
  4271. }
  4272. #u19773 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:873px;
  4276. top:215px;
  4277. width:134px;
  4278. height:30px;
  4279. display:flex;
  4280. font-size:14px;
  4281. }
  4282. #u19773 .text {
  4283. position:absolute;
  4284. align-self:center;
  4285. padding:2px 2px 2px 2px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u19773_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. visibility:hidden;
  4294. }
  4295. #u19774_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:106px;
  4301. height:30px;
  4302. }
  4303. #u19774 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:1007px;
  4307. top:215px;
  4308. width:106px;
  4309. height:30px;
  4310. display:flex;
  4311. font-size:14px;
  4312. }
  4313. #u19774 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 2px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u19774_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. visibility:hidden;
  4325. }
  4326. #u19775_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:105px;
  4332. height:30px;
  4333. }
  4334. #u19775 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:1113px;
  4338. top:215px;
  4339. width:105px;
  4340. height:30px;
  4341. display:flex;
  4342. font-size:14px;
  4343. }
  4344. #u19775 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u19775_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u19776_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:63px;
  4363. height:30px;
  4364. }
  4365. #u19776 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:245px;
  4370. width:63px;
  4371. height:30px;
  4372. display:flex;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. }
  4378. #u19776 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u19776_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u19777_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:132px;
  4397. height:30px;
  4398. }
  4399. #u19777 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:63px;
  4403. top:245px;
  4404. width:132px;
  4405. height:30px;
  4406. display:flex;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:14px;
  4411. }
  4412. #u19777 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:2px 2px 2px 2px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u19777_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. visibility:hidden;
  4424. }
  4425. #u19778_img {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:135px;
  4431. height:30px;
  4432. }
  4433. #u19778 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:195px;
  4437. top:245px;
  4438. width:135px;
  4439. height:30px;
  4440. display:flex;
  4441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. font-size:14px;
  4445. }
  4446. #u19778 .text {
  4447. position:absolute;
  4448. align-self:center;
  4449. padding:2px 2px 2px 2px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u19778_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u19779_img {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:132px;
  4465. height:30px;
  4466. }
  4467. #u19779 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:330px;
  4471. top:245px;
  4472. width:132px;
  4473. height:30px;
  4474. display:flex;
  4475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4476. font-weight:400;
  4477. font-style:normal;
  4478. font-size:14px;
  4479. }
  4480. #u19779 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 2px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u19779_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u19780_img {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:161px;
  4499. height:30px;
  4500. }
  4501. #u19780 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:462px;
  4505. top:245px;
  4506. width:161px;
  4507. height:30px;
  4508. display:flex;
  4509. font-size:14px;
  4510. }
  4511. #u19780 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 2px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u19780_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. visibility:hidden;
  4523. }
  4524. #u19781_img {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:106px;
  4530. height:30px;
  4531. }
  4532. #u19781 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:623px;
  4536. top:245px;
  4537. width:106px;
  4538. height:30px;
  4539. display:flex;
  4540. font-size:14px;
  4541. }
  4542. #u19781 .text {
  4543. position:absolute;
  4544. align-self:center;
  4545. padding:2px 2px 2px 2px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u19781_text {
  4550. border-width:0px;
  4551. word-wrap:break-word;
  4552. text-transform:none;
  4553. visibility:hidden;
  4554. }
  4555. #u19782_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:144px;
  4561. height:30px;
  4562. }
  4563. #u19782 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:729px;
  4567. top:245px;
  4568. width:144px;
  4569. height:30px;
  4570. display:flex;
  4571. font-size:14px;
  4572. }
  4573. #u19782 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u19782_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u19783_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:134px;
  4592. height:30px;
  4593. }
  4594. #u19783 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:873px;
  4598. top:245px;
  4599. width:134px;
  4600. height:30px;
  4601. display:flex;
  4602. font-size:14px;
  4603. }
  4604. #u19783 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u19783_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u19784_img {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:106px;
  4623. height:30px;
  4624. }
  4625. #u19784 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:1007px;
  4629. top:245px;
  4630. width:106px;
  4631. height:30px;
  4632. display:flex;
  4633. font-size:14px;
  4634. }
  4635. #u19784 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 2px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u19784_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u19785_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:105px;
  4654. height:30px;
  4655. }
  4656. #u19785 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:1113px;
  4660. top:245px;
  4661. width:105px;
  4662. height:30px;
  4663. display:flex;
  4664. font-size:14px;
  4665. }
  4666. #u19785 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u19785_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u19786_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:63px;
  4685. height:30px;
  4686. }
  4687. #u19786 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:275px;
  4692. width:63px;
  4693. height:30px;
  4694. display:flex;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:14px;
  4699. }
  4700. #u19786 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 2px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u19786_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u19787_img {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:132px;
  4719. height:30px;
  4720. }
  4721. #u19787 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:63px;
  4725. top:275px;
  4726. width:132px;
  4727. height:30px;
  4728. display:flex;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:14px;
  4733. }
  4734. #u19787 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 2px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u19787_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u19788_img {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:135px;
  4753. height:30px;
  4754. }
  4755. #u19788 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:195px;
  4759. top:275px;
  4760. width:135px;
  4761. height:30px;
  4762. display:flex;
  4763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4764. font-weight:400;
  4765. font-style:normal;
  4766. font-size:14px;
  4767. }
  4768. #u19788 .text {
  4769. position:absolute;
  4770. align-self:center;
  4771. padding:2px 2px 2px 2px;
  4772. box-sizing:border-box;
  4773. width:100%;
  4774. }
  4775. #u19788_text {
  4776. border-width:0px;
  4777. word-wrap:break-word;
  4778. text-transform:none;
  4779. visibility:hidden;
  4780. }
  4781. #u19789_img {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:132px;
  4787. height:30px;
  4788. }
  4789. #u19789 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:330px;
  4793. top:275px;
  4794. width:132px;
  4795. height:30px;
  4796. display:flex;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:14px;
  4801. }
  4802. #u19789 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 2px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u19789_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u19790_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:161px;
  4821. height:30px;
  4822. }
  4823. #u19790 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:462px;
  4827. top:275px;
  4828. width:161px;
  4829. height:30px;
  4830. display:flex;
  4831. font-size:14px;
  4832. }
  4833. #u19790 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u19790_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u19791_img {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:106px;
  4852. height:30px;
  4853. }
  4854. #u19791 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:623px;
  4858. top:275px;
  4859. width:106px;
  4860. height:30px;
  4861. display:flex;
  4862. font-size:14px;
  4863. }
  4864. #u19791 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:2px 2px 2px 2px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u19791_text {
  4872. border-width:0px;
  4873. word-wrap:break-word;
  4874. text-transform:none;
  4875. visibility:hidden;
  4876. }
  4877. #u19792_img {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:144px;
  4883. height:30px;
  4884. }
  4885. #u19792 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:729px;
  4889. top:275px;
  4890. width:144px;
  4891. height:30px;
  4892. display:flex;
  4893. font-size:14px;
  4894. }
  4895. #u19792 .text {
  4896. position:absolute;
  4897. align-self:center;
  4898. padding:2px 2px 2px 2px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u19792_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. visibility:hidden;
  4907. }
  4908. #u19793_img {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:134px;
  4914. height:30px;
  4915. }
  4916. #u19793 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:873px;
  4920. top:275px;
  4921. width:134px;
  4922. height:30px;
  4923. display:flex;
  4924. font-size:14px;
  4925. }
  4926. #u19793 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u19793_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. visibility:hidden;
  4938. }
  4939. #u19794_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:106px;
  4945. height:30px;
  4946. }
  4947. #u19794 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:1007px;
  4951. top:275px;
  4952. width:106px;
  4953. height:30px;
  4954. display:flex;
  4955. font-size:14px;
  4956. }
  4957. #u19794 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 2px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u19794_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u19795_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:105px;
  4976. height:30px;
  4977. }
  4978. #u19795 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:1113px;
  4982. top:275px;
  4983. width:105px;
  4984. height:30px;
  4985. display:flex;
  4986. font-size:14px;
  4987. }
  4988. #u19795 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 2px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u19795_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u19796_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:63px;
  5007. height:30px;
  5008. }
  5009. #u19796 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:305px;
  5014. width:63px;
  5015. height:30px;
  5016. display:flex;
  5017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:14px;
  5021. }
  5022. #u19796 .text {
  5023. position:absolute;
  5024. align-self:center;
  5025. padding:2px 2px 2px 2px;
  5026. box-sizing:border-box;
  5027. width:100%;
  5028. }
  5029. #u19796_text {
  5030. border-width:0px;
  5031. word-wrap:break-word;
  5032. text-transform:none;
  5033. visibility:hidden;
  5034. }
  5035. #u19797_img {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:132px;
  5041. height:30px;
  5042. }
  5043. #u19797 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:63px;
  5047. top:305px;
  5048. width:132px;
  5049. height:30px;
  5050. display:flex;
  5051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:14px;
  5055. }
  5056. #u19797 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u19797_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u19798_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:135px;
  5075. height:30px;
  5076. }
  5077. #u19798 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:195px;
  5081. top:305px;
  5082. width:135px;
  5083. height:30px;
  5084. display:flex;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:14px;
  5089. }
  5090. #u19798 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 2px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u19798_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u19799_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:132px;
  5109. height:30px;
  5110. }
  5111. #u19799 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:330px;
  5115. top:305px;
  5116. width:132px;
  5117. height:30px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:14px;
  5123. }
  5124. #u19799 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 2px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u19799_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u19800_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:161px;
  5143. height:30px;
  5144. }
  5145. #u19800 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:462px;
  5149. top:305px;
  5150. width:161px;
  5151. height:30px;
  5152. display:flex;
  5153. font-size:14px;
  5154. }
  5155. #u19800 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 2px 2px 2px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u19800_text {
  5163. border-width:0px;
  5164. word-wrap:break-word;
  5165. text-transform:none;
  5166. visibility:hidden;
  5167. }
  5168. #u19801_img {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:106px;
  5174. height:30px;
  5175. }
  5176. #u19801 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:623px;
  5180. top:305px;
  5181. width:106px;
  5182. height:30px;
  5183. display:flex;
  5184. font-size:14px;
  5185. }
  5186. #u19801 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 2px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u19801_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u19802_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:144px;
  5205. height:30px;
  5206. }
  5207. #u19802 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:729px;
  5211. top:305px;
  5212. width:144px;
  5213. height:30px;
  5214. display:flex;
  5215. font-size:14px;
  5216. }
  5217. #u19802 .text {
  5218. position:absolute;
  5219. align-self:center;
  5220. padding:2px 2px 2px 2px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u19802_text {
  5225. border-width:0px;
  5226. word-wrap:break-word;
  5227. text-transform:none;
  5228. visibility:hidden;
  5229. }
  5230. #u19803_img {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:134px;
  5236. height:30px;
  5237. }
  5238. #u19803 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:873px;
  5242. top:305px;
  5243. width:134px;
  5244. height:30px;
  5245. display:flex;
  5246. font-size:14px;
  5247. }
  5248. #u19803 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u19803_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u19804_img {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:106px;
  5267. height:30px;
  5268. }
  5269. #u19804 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1007px;
  5273. top:305px;
  5274. width:106px;
  5275. height:30px;
  5276. display:flex;
  5277. font-size:14px;
  5278. }
  5279. #u19804 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 2px 2px 2px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u19804_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. visibility:hidden;
  5291. }
  5292. #u19805_img {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:105px;
  5298. height:30px;
  5299. }
  5300. #u19805 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:1113px;
  5304. top:305px;
  5305. width:105px;
  5306. height:30px;
  5307. display:flex;
  5308. font-size:14px;
  5309. }
  5310. #u19805 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 2px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u19805_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u19806_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:63px;
  5329. height:30px;
  5330. }
  5331. #u19806 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:335px;
  5336. width:63px;
  5337. height:30px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:14px;
  5343. }
  5344. #u19806 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 2px 2px 2px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u19806_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u19807_img {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:132px;
  5363. height:30px;
  5364. }
  5365. #u19807 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:63px;
  5369. top:335px;
  5370. width:132px;
  5371. height:30px;
  5372. display:flex;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:14px;
  5377. }
  5378. #u19807 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 2px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u19807_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. visibility:hidden;
  5390. }
  5391. #u19808_img {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:135px;
  5397. height:30px;
  5398. }
  5399. #u19808 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:195px;
  5403. top:335px;
  5404. width:135px;
  5405. height:30px;
  5406. display:flex;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:14px;
  5411. }
  5412. #u19808 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 2px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u19808_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. visibility:hidden;
  5424. }
  5425. #u19809_img {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:132px;
  5431. height:30px;
  5432. }
  5433. #u19809 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:330px;
  5437. top:335px;
  5438. width:132px;
  5439. height:30px;
  5440. display:flex;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:14px;
  5445. }
  5446. #u19809 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 2px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u19809_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u19810_img {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:161px;
  5465. height:30px;
  5466. }
  5467. #u19810 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:462px;
  5471. top:335px;
  5472. width:161px;
  5473. height:30px;
  5474. display:flex;
  5475. font-size:14px;
  5476. }
  5477. #u19810 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u19810_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u19811_img {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:106px;
  5496. height:30px;
  5497. }
  5498. #u19811 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:623px;
  5502. top:335px;
  5503. width:106px;
  5504. height:30px;
  5505. display:flex;
  5506. font-size:14px;
  5507. }
  5508. #u19811 .text {
  5509. position:absolute;
  5510. align-self:center;
  5511. padding:2px 2px 2px 2px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u19811_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. visibility:hidden;
  5520. }
  5521. #u19812_img {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:144px;
  5527. height:30px;
  5528. }
  5529. #u19812 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:729px;
  5533. top:335px;
  5534. width:144px;
  5535. height:30px;
  5536. display:flex;
  5537. font-size:14px;
  5538. }
  5539. #u19812 .text {
  5540. position:absolute;
  5541. align-self:center;
  5542. padding:2px 2px 2px 2px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u19812_text {
  5547. border-width:0px;
  5548. word-wrap:break-word;
  5549. text-transform:none;
  5550. visibility:hidden;
  5551. }
  5552. #u19813_img {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:0px;
  5556. top:0px;
  5557. width:134px;
  5558. height:30px;
  5559. }
  5560. #u19813 {
  5561. border-width:0px;
  5562. position:absolute;
  5563. left:873px;
  5564. top:335px;
  5565. width:134px;
  5566. height:30px;
  5567. display:flex;
  5568. font-size:14px;
  5569. }
  5570. #u19813 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u19813_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. visibility:hidden;
  5582. }
  5583. #u19814_img {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:106px;
  5589. height:30px;
  5590. }
  5591. #u19814 {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:1007px;
  5595. top:335px;
  5596. width:106px;
  5597. height:30px;
  5598. display:flex;
  5599. font-size:14px;
  5600. }
  5601. #u19814 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:2px 2px 2px 2px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u19814_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. visibility:hidden;
  5613. }
  5614. #u19815_img {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:105px;
  5620. height:30px;
  5621. }
  5622. #u19815 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:1113px;
  5626. top:335px;
  5627. width:105px;
  5628. height:30px;
  5629. display:flex;
  5630. font-size:14px;
  5631. }
  5632. #u19815 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 2px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u19815_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u19816_img {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:63px;
  5651. height:30px;
  5652. }
  5653. #u19816 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:365px;
  5658. width:63px;
  5659. height:30px;
  5660. display:flex;
  5661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:14px;
  5665. }
  5666. #u19816 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 2px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u19816_text {
  5674. border-width:0px;
  5675. word-wrap:break-word;
  5676. text-transform:none;
  5677. visibility:hidden;
  5678. }
  5679. #u19817_img {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:132px;
  5685. height:30px;
  5686. }
  5687. #u19817 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:63px;
  5691. top:365px;
  5692. width:132px;
  5693. height:30px;
  5694. display:flex;
  5695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:14px;
  5699. }
  5700. #u19817 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:2px 2px 2px 2px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u19817_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. visibility:hidden;
  5712. }
  5713. #u19818_img {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:135px;
  5719. height:30px;
  5720. }
  5721. #u19818 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:195px;
  5725. top:365px;
  5726. width:135px;
  5727. height:30px;
  5728. display:flex;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:14px;
  5733. }
  5734. #u19818 .text {
  5735. position:absolute;
  5736. align-self:center;
  5737. padding:2px 2px 2px 2px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u19818_text {
  5742. border-width:0px;
  5743. word-wrap:break-word;
  5744. text-transform:none;
  5745. visibility:hidden;
  5746. }
  5747. #u19819_img {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:132px;
  5753. height:30px;
  5754. }
  5755. #u19819 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:330px;
  5759. top:365px;
  5760. width:132px;
  5761. height:30px;
  5762. display:flex;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:14px;
  5767. }
  5768. #u19819 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 2px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u19819_text {
  5776. border-width:0px;
  5777. word-wrap:break-word;
  5778. text-transform:none;
  5779. visibility:hidden;
  5780. }
  5781. #u19820_img {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:161px;
  5787. height:30px;
  5788. }
  5789. #u19820 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:462px;
  5793. top:365px;
  5794. width:161px;
  5795. height:30px;
  5796. display:flex;
  5797. font-size:14px;
  5798. }
  5799. #u19820 .text {
  5800. position:absolute;
  5801. align-self:center;
  5802. padding:2px 2px 2px 2px;
  5803. box-sizing:border-box;
  5804. width:100%;
  5805. }
  5806. #u19820_text {
  5807. border-width:0px;
  5808. word-wrap:break-word;
  5809. text-transform:none;
  5810. visibility:hidden;
  5811. }
  5812. #u19821_img {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:106px;
  5818. height:30px;
  5819. }
  5820. #u19821 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:623px;
  5824. top:365px;
  5825. width:106px;
  5826. height:30px;
  5827. display:flex;
  5828. font-size:14px;
  5829. }
  5830. #u19821 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 2px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u19821_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u19822_img {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:144px;
  5849. height:30px;
  5850. }
  5851. #u19822 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:729px;
  5855. top:365px;
  5856. width:144px;
  5857. height:30px;
  5858. display:flex;
  5859. font-size:14px;
  5860. }
  5861. #u19822 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 2px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u19822_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u19823_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:134px;
  5880. height:30px;
  5881. }
  5882. #u19823 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:873px;
  5886. top:365px;
  5887. width:134px;
  5888. height:30px;
  5889. display:flex;
  5890. font-size:14px;
  5891. }
  5892. #u19823 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:2px 2px 2px 2px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u19823_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. visibility:hidden;
  5904. }
  5905. #u19824_img {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:106px;
  5911. height:30px;
  5912. }
  5913. #u19824 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:1007px;
  5917. top:365px;
  5918. width:106px;
  5919. height:30px;
  5920. display:flex;
  5921. font-size:14px;
  5922. }
  5923. #u19824 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:2px 2px 2px 2px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u19824_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. visibility:hidden;
  5935. }
  5936. #u19825_img {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:105px;
  5942. height:30px;
  5943. }
  5944. #u19825 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:1113px;
  5948. top:365px;
  5949. width:105px;
  5950. height:30px;
  5951. display:flex;
  5952. font-size:14px;
  5953. }
  5954. #u19825 .text {
  5955. position:absolute;
  5956. align-self:center;
  5957. padding:2px 2px 2px 2px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u19825_text {
  5962. border-width:0px;
  5963. word-wrap:break-word;
  5964. text-transform:none;
  5965. visibility:hidden;
  5966. }
  5967. #u19826_img {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:63px;
  5973. height:30px;
  5974. }
  5975. #u19826 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:0px;
  5979. top:395px;
  5980. width:63px;
  5981. height:30px;
  5982. display:flex;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:14px;
  5987. }
  5988. #u19826 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 2px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u19826_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. visibility:hidden;
  6000. }
  6001. #u19827_img {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:132px;
  6007. height:30px;
  6008. }
  6009. #u19827 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:63px;
  6013. top:395px;
  6014. width:132px;
  6015. height:30px;
  6016. display:flex;
  6017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:14px;
  6021. }
  6022. #u19827 .text {
  6023. position:absolute;
  6024. align-self:center;
  6025. padding:2px 2px 2px 2px;
  6026. box-sizing:border-box;
  6027. width:100%;
  6028. }
  6029. #u19827_text {
  6030. border-width:0px;
  6031. word-wrap:break-word;
  6032. text-transform:none;
  6033. visibility:hidden;
  6034. }
  6035. #u19828_img {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:135px;
  6041. height:30px;
  6042. }
  6043. #u19828 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:195px;
  6047. top:395px;
  6048. width:135px;
  6049. height:30px;
  6050. display:flex;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:14px;
  6055. }
  6056. #u19828 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:2px 2px 2px 2px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u19828_text {
  6064. border-width:0px;
  6065. word-wrap:break-word;
  6066. text-transform:none;
  6067. visibility:hidden;
  6068. }
  6069. #u19829_img {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:132px;
  6075. height:30px;
  6076. }
  6077. #u19829 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:330px;
  6081. top:395px;
  6082. width:132px;
  6083. height:30px;
  6084. display:flex;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:14px;
  6089. }
  6090. #u19829 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 2px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u19829_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. visibility:hidden;
  6102. }
  6103. #u19830_img {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:161px;
  6109. height:30px;
  6110. }
  6111. #u19830 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:462px;
  6115. top:395px;
  6116. width:161px;
  6117. height:30px;
  6118. display:flex;
  6119. font-size:14px;
  6120. }
  6121. #u19830 .text {
  6122. position:absolute;
  6123. align-self:center;
  6124. padding:2px 2px 2px 2px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u19830_text {
  6129. border-width:0px;
  6130. word-wrap:break-word;
  6131. text-transform:none;
  6132. visibility:hidden;
  6133. }
  6134. #u19831_img {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:106px;
  6140. height:30px;
  6141. }
  6142. #u19831 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:623px;
  6146. top:395px;
  6147. width:106px;
  6148. height:30px;
  6149. display:flex;
  6150. font-size:14px;
  6151. }
  6152. #u19831 .text {
  6153. position:absolute;
  6154. align-self:center;
  6155. padding:2px 2px 2px 2px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u19831_text {
  6160. border-width:0px;
  6161. word-wrap:break-word;
  6162. text-transform:none;
  6163. visibility:hidden;
  6164. }
  6165. #u19832_img {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:144px;
  6171. height:30px;
  6172. }
  6173. #u19832 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:729px;
  6177. top:395px;
  6178. width:144px;
  6179. height:30px;
  6180. display:flex;
  6181. font-size:14px;
  6182. }
  6183. #u19832 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 2px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u19832_text {
  6191. border-width:0px;
  6192. word-wrap:break-word;
  6193. text-transform:none;
  6194. visibility:hidden;
  6195. }
  6196. #u19833_img {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:134px;
  6202. height:30px;
  6203. }
  6204. #u19833 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:873px;
  6208. top:395px;
  6209. width:134px;
  6210. height:30px;
  6211. display:flex;
  6212. font-size:14px;
  6213. }
  6214. #u19833 .text {
  6215. position:absolute;
  6216. align-self:center;
  6217. padding:2px 2px 2px 2px;
  6218. box-sizing:border-box;
  6219. width:100%;
  6220. }
  6221. #u19833_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u19834_img {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:106px;
  6233. height:30px;
  6234. }
  6235. #u19834 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1007px;
  6239. top:395px;
  6240. width:106px;
  6241. height:30px;
  6242. display:flex;
  6243. font-size:14px;
  6244. }
  6245. #u19834 .text {
  6246. position:absolute;
  6247. align-self:center;
  6248. padding:2px 2px 2px 2px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u19834_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. visibility:hidden;
  6257. }
  6258. #u19835_img {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:105px;
  6264. height:30px;
  6265. }
  6266. #u19835 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:1113px;
  6270. top:395px;
  6271. width:105px;
  6272. height:30px;
  6273. display:flex;
  6274. font-size:14px;
  6275. }
  6276. #u19835 .text {
  6277. position:absolute;
  6278. align-self:center;
  6279. padding:2px 2px 2px 2px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u19835_text {
  6284. border-width:0px;
  6285. word-wrap:break-word;
  6286. text-transform:none;
  6287. visibility:hidden;
  6288. }
  6289. #u19836_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:80px;
  6295. height:30px;
  6296. background:inherit;
  6297. background-color:rgba(24, 144, 255, 1);
  6298. border:none;
  6299. border-radius:4px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. font-size:14px;
  6307. color:#FFFFFF;
  6308. }
  6309. #u19836 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:353px;
  6313. top:194px;
  6314. width:80px;
  6315. height:30px;
  6316. display:flex;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. color:#FFFFFF;
  6322. }
  6323. #u19836 .text {
  6324. position:absolute;
  6325. align-self:center;
  6326. padding:2px 2px 2px 2px;
  6327. box-sizing:border-box;
  6328. width:100%;
  6329. }
  6330. #u19836_text {
  6331. border-width:0px;
  6332. word-wrap:break-word;
  6333. text-transform:none;
  6334. }
  6335. #u19837 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:0px;
  6339. top:0px;
  6340. width:0px;
  6341. height:0px;
  6342. }
  6343. #u19838_div {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:140px;
  6349. height:30px;
  6350. background:inherit;
  6351. background-color:rgba(255, 255, 255, 1);
  6352. box-sizing:border-box;
  6353. border-width:1px;
  6354. border-style:solid;
  6355. border-color:rgba(215, 215, 215, 1);
  6356. border-radius:4px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-size:14px;
  6361. }
  6362. #u19838 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:503px;
  6366. top:140px;
  6367. width:140px;
  6368. height:30px;
  6369. display:flex;
  6370. font-size:14px;
  6371. }
  6372. #u19838 .text {
  6373. position:absolute;
  6374. align-self:center;
  6375. padding:2px 2px 2px 2px;
  6376. box-sizing:border-box;
  6377. width:100%;
  6378. }
  6379. #u19838_text {
  6380. border-width:0px;
  6381. word-wrap:break-word;
  6382. text-transform:none;
  6383. visibility:hidden;
  6384. }
  6385. #u19839_input {
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:134px;
  6390. height:23px;
  6391. padding:2px 2px 2px 2px;
  6392. font-family:'ArialMT', 'Arial', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:14px;
  6396. letter-spacing:normal;
  6397. color:#AAAAAA;
  6398. vertical-align:none;
  6399. text-align:left;
  6400. text-transform:none;
  6401. background-color:transparent;
  6402. border-color:transparent;
  6403. }
  6404. #u19839_input.disabled {
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:134px;
  6409. height:23px;
  6410. padding:2px 2px 2px 2px;
  6411. font-family:'ArialMT', 'Arial', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:14px;
  6415. letter-spacing:normal;
  6416. color:#AAAAAA;
  6417. vertical-align:none;
  6418. text-align:left;
  6419. text-transform:none;
  6420. background-color:transparent;
  6421. border-color:transparent;
  6422. }
  6423. #u19839_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:134px;
  6429. height:23px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 1);
  6432. border:none;
  6433. border-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-size:14px;
  6438. color:#AAAAAA;
  6439. }
  6440. #u19839 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:507px;
  6444. top:142px;
  6445. width:134px;
  6446. height:23px;
  6447. display:flex;
  6448. font-size:14px;
  6449. color:#AAAAAA;
  6450. }
  6451. #u19839 .text {
  6452. position:absolute;
  6453. align-self:flex-start;
  6454. padding:2px 2px 2px 2px;
  6455. box-sizing:border-box;
  6456. width:100%;
  6457. }
  6458. #u19839_div.disabled {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:134px;
  6464. height:23px;
  6465. background:inherit;
  6466. background-color:rgba(240, 240, 240, 1);
  6467. border:none;
  6468. border-radius:0px;
  6469. -moz-box-shadow:none;
  6470. -webkit-box-shadow:none;
  6471. box-shadow:none;
  6472. font-size:14px;
  6473. color:#AAAAAA;
  6474. }
  6475. #u19839.disabled {
  6476. }
  6477. .u19839_input_option {
  6478. font-size:14px;
  6479. }
  6480. #u19840 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:0px;
  6486. height:0px;
  6487. }
  6488. #u19841_div {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:140px;
  6494. height:30px;
  6495. background:inherit;
  6496. background-color:rgba(255, 255, 255, 1);
  6497. box-sizing:border-box;
  6498. border-width:1px;
  6499. border-style:solid;
  6500. border-color:rgba(215, 215, 215, 1);
  6501. border-radius:4px;
  6502. -moz-box-shadow:none;
  6503. -webkit-box-shadow:none;
  6504. box-shadow:none;
  6505. font-size:14px;
  6506. }
  6507. #u19841 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:803px;
  6511. top:140px;
  6512. width:140px;
  6513. height:30px;
  6514. display:flex;
  6515. font-size:14px;
  6516. }
  6517. #u19841 .text {
  6518. position:absolute;
  6519. align-self:center;
  6520. padding:2px 2px 2px 2px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u19841_text {
  6525. border-width:0px;
  6526. word-wrap:break-word;
  6527. text-transform:none;
  6528. visibility:hidden;
  6529. }
  6530. #u19842_input {
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:134px;
  6535. height:23px;
  6536. padding:2px 2px 2px 2px;
  6537. font-family:'ArialMT', 'Arial', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:14px;
  6541. letter-spacing:normal;
  6542. color:#AAAAAA;
  6543. vertical-align:none;
  6544. text-align:left;
  6545. text-transform:none;
  6546. background-color:transparent;
  6547. border-color:transparent;
  6548. }
  6549. #u19842_input.disabled {
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:134px;
  6554. height:23px;
  6555. padding:2px 2px 2px 2px;
  6556. font-family:'ArialMT', 'Arial', sans-serif;
  6557. font-weight:400;
  6558. font-style:normal;
  6559. font-size:14px;
  6560. letter-spacing:normal;
  6561. color:#AAAAAA;
  6562. vertical-align:none;
  6563. text-align:left;
  6564. text-transform:none;
  6565. background-color:transparent;
  6566. border-color:transparent;
  6567. }
  6568. #u19842_div {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:134px;
  6574. height:23px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 1);
  6577. border:none;
  6578. border-radius:0px;
  6579. -moz-box-shadow:none;
  6580. -webkit-box-shadow:none;
  6581. box-shadow:none;
  6582. font-size:14px;
  6583. color:#AAAAAA;
  6584. }
  6585. #u19842 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:807px;
  6589. top:142px;
  6590. width:134px;
  6591. height:23px;
  6592. display:flex;
  6593. font-size:14px;
  6594. color:#AAAAAA;
  6595. }
  6596. #u19842 .text {
  6597. position:absolute;
  6598. align-self:flex-start;
  6599. padding:2px 2px 2px 2px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u19842_div.disabled {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:0px;
  6607. top:0px;
  6608. width:134px;
  6609. height:23px;
  6610. background:inherit;
  6611. background-color:rgba(240, 240, 240, 1);
  6612. border:none;
  6613. border-radius:0px;
  6614. -moz-box-shadow:none;
  6615. -webkit-box-shadow:none;
  6616. box-shadow:none;
  6617. font-size:14px;
  6618. color:#AAAAAA;
  6619. }
  6620. #u19842.disabled {
  6621. }
  6622. .u19842_input_option {
  6623. font-size:14px;
  6624. }
  6625. #u19843 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:0px;
  6631. height:0px;
  6632. }
  6633. #u19844_div {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:60px;
  6639. height:30px;
  6640. background:inherit;
  6641. background-color:rgba(24, 144, 255, 1);
  6642. border:none;
  6643. border-radius:4px;
  6644. -moz-box-shadow:none;
  6645. -webkit-box-shadow:none;
  6646. box-shadow:none;
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:14px;
  6651. color:#FFFFFF;
  6652. }
  6653. #u19844 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:1101px;
  6657. top:140px;
  6658. width:60px;
  6659. height:30px;
  6660. display:flex;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:14px;
  6665. color:#FFFFFF;
  6666. }
  6667. #u19844 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u19844_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. }
  6679. #u19845_div {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:60px;
  6685. height:30px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 1);
  6688. box-sizing:border-box;
  6689. border-width:1px;
  6690. border-style:solid;
  6691. border-color:rgba(170, 170, 170, 1);
  6692. border-radius:4px;
  6693. -moz-box-shadow:none;
  6694. -webkit-box-shadow:none;
  6695. box-shadow:none;
  6696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6697. font-weight:400;
  6698. font-style:normal;
  6699. font-size:14px;
  6700. }
  6701. #u19845 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:1171px;
  6705. top:140px;
  6706. width:60px;
  6707. height:30px;
  6708. display:flex;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:14px;
  6713. }
  6714. #u19845 .text {
  6715. position:absolute;
  6716. align-self:center;
  6717. padding:2px 2px 2px 2px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u19845_text {
  6722. border-width:0px;
  6723. word-wrap:break-word;
  6724. text-transform:none;
  6725. }
  6726. #u19846 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:0px;
  6732. height:0px;
  6733. }
  6734. #u19847_div {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:140px;
  6740. height:30px;
  6741. background:inherit;
  6742. background-color:rgba(255, 255, 255, 1);
  6743. box-sizing:border-box;
  6744. border-width:1px;
  6745. border-style:solid;
  6746. border-color:rgba(215, 215, 215, 1);
  6747. border-radius:4px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-size:14px;
  6752. }
  6753. #u19847 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:353px;
  6757. top:140px;
  6758. width:140px;
  6759. height:30px;
  6760. display:flex;
  6761. font-size:14px;
  6762. }
  6763. #u19847 .text {
  6764. position:absolute;
  6765. align-self:center;
  6766. padding:2px 2px 2px 2px;
  6767. box-sizing:border-box;
  6768. width:100%;
  6769. }
  6770. #u19847_text {
  6771. border-width:0px;
  6772. word-wrap:break-word;
  6773. text-transform:none;
  6774. visibility:hidden;
  6775. }
  6776. #u19848_input {
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:134px;
  6781. height:23px;
  6782. padding:2px 2px 2px 2px;
  6783. font-family:'ArialMT', 'Arial', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:14px;
  6787. letter-spacing:normal;
  6788. color:#AAAAAA;
  6789. vertical-align:none;
  6790. text-align:left;
  6791. text-transform:none;
  6792. background-color:transparent;
  6793. border-color:transparent;
  6794. }
  6795. #u19848_input.disabled {
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:134px;
  6800. height:23px;
  6801. padding:2px 2px 2px 2px;
  6802. font-family:'ArialMT', 'Arial', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:14px;
  6806. letter-spacing:normal;
  6807. color:#AAAAAA;
  6808. vertical-align:none;
  6809. text-align:left;
  6810. text-transform:none;
  6811. background-color:transparent;
  6812. border-color:transparent;
  6813. }
  6814. #u19848_div {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:134px;
  6820. height:23px;
  6821. background:inherit;
  6822. background-color:rgba(255, 255, 255, 1);
  6823. border:none;
  6824. border-radius:0px;
  6825. -moz-box-shadow:none;
  6826. -webkit-box-shadow:none;
  6827. box-shadow:none;
  6828. font-size:14px;
  6829. color:#AAAAAA;
  6830. }
  6831. #u19848 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:357px;
  6835. top:142px;
  6836. width:134px;
  6837. height:23px;
  6838. display:flex;
  6839. font-size:14px;
  6840. color:#AAAAAA;
  6841. }
  6842. #u19848 .text {
  6843. position:absolute;
  6844. align-self:flex-start;
  6845. padding:2px 2px 2px 2px;
  6846. box-sizing:border-box;
  6847. width:100%;
  6848. }
  6849. #u19848_div.disabled {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:134px;
  6855. height:23px;
  6856. background:inherit;
  6857. background-color:rgba(240, 240, 240, 1);
  6858. border:none;
  6859. border-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-size:14px;
  6864. color:#AAAAAA;
  6865. }
  6866. #u19848.disabled {
  6867. }
  6868. .u19848_input_option {
  6869. font-size:14px;
  6870. }
  6871. #u19850_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:200px;
  6877. height:1180px;
  6878. background:inherit;
  6879. background-color:rgba(255, 255, 255, 1);
  6880. border:none;
  6881. border-radius:0px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. }
  6886. #u19850 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:120px;
  6890. top:50px;
  6891. width:200px;
  6892. height:1180px;
  6893. display:flex;
  6894. }
  6895. #u19850 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:2px 2px 2px 2px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u19850_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. visibility:hidden;
  6907. }
  6908. #u19851_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:200px;
  6914. height:60px;
  6915. background:inherit;
  6916. background-color:rgba(224, 231, 247, 1);
  6917. border:none;
  6918. border-radius:0px;
  6919. -moz-box-shadow:none;
  6920. -webkit-box-shadow:none;
  6921. box-shadow:none;
  6922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6923. font-weight:500;
  6924. font-style:normal;
  6925. font-size:18px;
  6926. }
  6927. #u19851 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:120px;
  6931. top:50px;
  6932. width:200px;
  6933. height:60px;
  6934. display:flex;
  6935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6936. font-weight:500;
  6937. font-style:normal;
  6938. font-size:18px;
  6939. }
  6940. #u19851 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:0px 0px 0px 20px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u19851_text {
  6948. border-width:0px;
  6949. word-wrap:break-word;
  6950. text-transform:none;
  6951. }
  6952. #u19852_div {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:65px;
  6958. height:22px;
  6959. background:inherit;
  6960. background-color:rgba(255, 255, 255, 0);
  6961. border:none;
  6962. border-radius:0px;
  6963. -moz-box-shadow:none;
  6964. -webkit-box-shadow:none;
  6965. box-shadow:none;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:16px;
  6970. }
  6971. #u19852 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:143px;
  6975. top:163px;
  6976. width:65px;
  6977. height:22px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:16px;
  6983. }
  6984. #u19852 .text {
  6985. position:absolute;
  6986. align-self:flex-start;
  6987. padding:0px 0px 0px 0px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u19852_text {
  6992. border-width:0px;
  6993. white-space:nowrap;
  6994. text-transform:none;
  6995. }
  6996. #u19853_div {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:49px;
  7002. height:17px;
  7003. background:inherit;
  7004. background-color:rgba(255, 255, 255, 0);
  7005. border:none;
  7006. border-radius:0px;
  7007. -moz-box-shadow:none;
  7008. -webkit-box-shadow:none;
  7009. box-shadow:none;
  7010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:12px;
  7014. color:#AAAAAA;
  7015. }
  7016. #u19853 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:143px;
  7020. top:130px;
  7021. width:49px;
  7022. height:17px;
  7023. display:flex;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:12px;
  7028. color:#AAAAAA;
  7029. }
  7030. #u19853 .text {
  7031. position:absolute;
  7032. align-self:flex-start;
  7033. padding:0px 0px 0px 0px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u19853_text {
  7038. border-width:0px;
  7039. white-space:nowrap;
  7040. text-transform:none;
  7041. }
  7042. #u19854_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:65px;
  7048. height:22px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 0);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:16px;
  7060. }
  7061. #u19854 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:143px;
  7065. top:205px;
  7066. width:65px;
  7067. height:22px;
  7068. display:flex;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:16px;
  7073. }
  7074. #u19854 .text {
  7075. position:absolute;
  7076. align-self:flex-start;
  7077. padding:0px 0px 0px 0px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u19854_text {
  7082. border-width:0px;
  7083. white-space:nowrap;
  7084. text-transform:none;
  7085. }
  7086. #u19855_div {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:65px;
  7092. height:22px;
  7093. background:inherit;
  7094. background-color:rgba(255, 255, 255, 0);
  7095. border:none;
  7096. border-radius:0px;
  7097. -moz-box-shadow:none;
  7098. -webkit-box-shadow:none;
  7099. box-shadow:none;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:16px;
  7104. }
  7105. #u19855 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:143px;
  7109. top:357px;
  7110. width:65px;
  7111. height:22px;
  7112. display:flex;
  7113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:16px;
  7117. }
  7118. #u19855 .text {
  7119. position:absolute;
  7120. align-self:flex-start;
  7121. padding:0px 0px 0px 0px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u19855_text {
  7126. border-width:0px;
  7127. white-space:nowrap;
  7128. text-transform:none;
  7129. }
  7130. #u19856_div {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:65px;
  7136. height:22px;
  7137. background:inherit;
  7138. background-color:rgba(255, 255, 255, 0);
  7139. border:none;
  7140. border-radius:0px;
  7141. -moz-box-shadow:none;
  7142. -webkit-box-shadow:none;
  7143. box-shadow:none;
  7144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7145. font-weight:400;
  7146. font-style:normal;
  7147. font-size:16px;
  7148. }
  7149. #u19856 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:143px;
  7153. top:452px;
  7154. width:65px;
  7155. height:22px;
  7156. display:flex;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:16px;
  7161. }
  7162. #u19856 .text {
  7163. position:absolute;
  7164. align-self:flex-start;
  7165. padding:0px 0px 0px 0px;
  7166. box-sizing:border-box;
  7167. width:100%;
  7168. }
  7169. #u19856_text {
  7170. border-width:0px;
  7171. white-space:nowrap;
  7172. text-transform:none;
  7173. }
  7174. #u19857_img {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:201px;
  7180. height:2px;
  7181. }
  7182. #u19857 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:120px;
  7186. top:399px;
  7187. width:200px;
  7188. height:1px;
  7189. display:flex;
  7190. }
  7191. #u19857 .text {
  7192. position:absolute;
  7193. align-self:center;
  7194. padding:2px 2px 2px 2px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u19857_text {
  7199. border-width:0px;
  7200. word-wrap:break-word;
  7201. text-transform:none;
  7202. visibility:hidden;
  7203. }
  7204. #u19858_div {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:49px;
  7210. height:17px;
  7211. background:inherit;
  7212. background-color:rgba(255, 255, 255, 0);
  7213. border:none;
  7214. border-radius:0px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7219. font-weight:400;
  7220. font-style:normal;
  7221. font-size:12px;
  7222. color:#AAAAAA;
  7223. }
  7224. #u19858 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:143px;
  7228. top:419px;
  7229. width:49px;
  7230. height:17px;
  7231. display:flex;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:12px;
  7236. color:#AAAAAA;
  7237. }
  7238. #u19858 .text {
  7239. position:absolute;
  7240. align-self:flex-start;
  7241. padding:0px 0px 0px 0px;
  7242. box-sizing:border-box;
  7243. width:100%;
  7244. }
  7245. #u19858_text {
  7246. border-width:0px;
  7247. white-space:nowrap;
  7248. text-transform:none;
  7249. }
  7250. #u19859_div {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:65px;
  7256. height:22px;
  7257. background:inherit;
  7258. background-color:rgba(255, 255, 255, 0);
  7259. border:none;
  7260. border-radius:0px;
  7261. -moz-box-shadow:none;
  7262. -webkit-box-shadow:none;
  7263. box-shadow:none;
  7264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:16px;
  7268. }
  7269. #u19859 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:143px;
  7273. top:494px;
  7274. width:65px;
  7275. height:22px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:16px;
  7281. }
  7282. #u19859 .text {
  7283. position:absolute;
  7284. align-self:flex-start;
  7285. padding:0px 0px 0px 0px;
  7286. box-sizing:border-box;
  7287. width:100%;
  7288. }
  7289. #u19859_text {
  7290. border-width:0px;
  7291. white-space:nowrap;
  7292. text-transform:none;
  7293. }
  7294. #u19860_div {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:65px;
  7300. height:22px;
  7301. background:inherit;
  7302. background-color:rgba(255, 255, 255, 0);
  7303. border:none;
  7304. border-radius:0px;
  7305. -moz-box-shadow:none;
  7306. -webkit-box-shadow:none;
  7307. box-shadow:none;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:16px;
  7312. }
  7313. #u19860 {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:143px;
  7317. top:247px;
  7318. width:65px;
  7319. height:22px;
  7320. display:flex;
  7321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:16px;
  7325. }
  7326. #u19860 .text {
  7327. position:absolute;
  7328. align-self:flex-start;
  7329. padding:0px 0px 0px 0px;
  7330. box-sizing:border-box;
  7331. width:100%;
  7332. }
  7333. #u19860_text {
  7334. border-width:0px;
  7335. white-space:nowrap;
  7336. text-transform:none;
  7337. }
  7338. #u19861_div {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:49px;
  7344. height:17px;
  7345. background:inherit;
  7346. background-color:rgba(255, 255, 255, 0);
  7347. border:none;
  7348. border-radius:0px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:12px;
  7356. color:#AAAAAA;
  7357. }
  7358. #u19861 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:143px;
  7362. top:316px;
  7363. width:49px;
  7364. height:17px;
  7365. display:flex;
  7366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:12px;
  7370. color:#AAAAAA;
  7371. }
  7372. #u19861 .text {
  7373. position:absolute;
  7374. align-self:flex-start;
  7375. padding:0px 0px 0px 0px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u19861_text {
  7380. border-width:0px;
  7381. white-space:nowrap;
  7382. text-transform:none;
  7383. }
  7384. #u19862_img {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:201px;
  7390. height:2px;
  7391. }
  7392. #u19862 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:120px;
  7396. top:296px;
  7397. width:200px;
  7398. height:1px;
  7399. display:flex;
  7400. }
  7401. #u19862 .text {
  7402. position:absolute;
  7403. align-self:center;
  7404. padding:2px 2px 2px 2px;
  7405. box-sizing:border-box;
  7406. width:100%;
  7407. }
  7408. #u19862_text {
  7409. border-width:0px;
  7410. word-wrap:break-word;
  7411. text-transform:none;
  7412. visibility:hidden;
  7413. }
  7414. #u19863_div {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:379px;
  7420. height:20px;
  7421. background:inherit;
  7422. background-color:rgba(255, 255, 255, 0);
  7423. border:none;
  7424. border-left:0px;
  7425. border-top:0px;
  7426. border-right:0px;
  7427. border-radius:0px;
  7428. border-bottom-right-radius:0px;
  7429. border-bottom-left-radius:0px;
  7430. -moz-box-shadow:none;
  7431. -webkit-box-shadow:none;
  7432. box-shadow:none;
  7433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:14px;
  7437. color:#7F7F7F;
  7438. }
  7439. #u19863 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:352px;
  7443. top:100px;
  7444. width:379px;
  7445. height:20px;
  7446. display:flex;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. font-size:14px;
  7451. color:#7F7F7F;
  7452. }
  7453. #u19863 .text {
  7454. position:absolute;
  7455. align-self:center;
  7456. padding:0px 0px 0px 0px;
  7457. box-sizing:border-box;
  7458. width:100%;
  7459. }
  7460. #u19863_text {
  7461. border-width:0px;
  7462. white-space:nowrap;
  7463. text-transform:none;
  7464. }
  7465. #u19865 {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:0px;
  7469. top:0px;
  7470. width:0px;
  7471. height:0px;
  7472. }
  7473. #u19866_div {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:30px;
  7479. height:30px;
  7480. background:inherit;
  7481. background-color:rgba(255, 255, 255, 1);
  7482. box-sizing:border-box;
  7483. border-width:1px;
  7484. border-style:solid;
  7485. border-color:rgba(228, 228, 228, 1);
  7486. border-radius:4px;
  7487. -moz-box-shadow:none;
  7488. -webkit-box-shadow:none;
  7489. box-shadow:none;
  7490. font-family:'Microsoft YaHei', sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:14px;
  7494. }
  7495. #u19866 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:996px;
  7499. top:1183px;
  7500. width:30px;
  7501. height:30px;
  7502. display:flex;
  7503. font-family:'Microsoft YaHei', sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. font-size:14px;
  7507. }
  7508. #u19866 .text {
  7509. position:absolute;
  7510. align-self:center;
  7511. padding:2px 2px 2px 2px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u19866_text {
  7516. border-width:0px;
  7517. word-wrap:break-word;
  7518. text-transform:none;
  7519. }
  7520. #u19867_div {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:49px;
  7526. height:30px;
  7527. background:inherit;
  7528. background-color:rgba(255, 255, 255, 0);
  7529. box-sizing:border-box;
  7530. border-width:1px;
  7531. border-style:solid;
  7532. border-color:rgba(188, 188, 188, 1);
  7533. border-radius:4px;
  7534. -moz-box-shadow:none;
  7535. -webkit-box-shadow:none;
  7536. box-shadow:none;
  7537. font-family:'Microsoft YaHei', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. font-size:14px;
  7541. color:#1E1E1E;
  7542. }
  7543. #u19867 {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:1512px;
  7547. top:1183px;
  7548. width:49px;
  7549. height:30px;
  7550. display:flex;
  7551. font-family:'Microsoft YaHei', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:14px;
  7555. color:#1E1E1E;
  7556. }
  7557. #u19867 .text {
  7558. position:absolute;
  7559. align-self:center;
  7560. padding:5px 10px 5px 10px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u19867_text {
  7565. border-width:0px;
  7566. white-space:nowrap;
  7567. text-transform:none;
  7568. }
  7569. #u19868 {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:0px;
  7575. height:0px;
  7576. }
  7577. #u19869_div {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:33px;
  7583. height:24px;
  7584. background:inherit;
  7585. background-color:rgba(255, 255, 255, 1);
  7586. border:none;
  7587. border-radius:0px;
  7588. -moz-box-shadow:none;
  7589. -webkit-box-shadow:none;
  7590. box-shadow:none;
  7591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7592. font-weight:400;
  7593. font-style:normal;
  7594. font-size:14px;
  7595. color:#BCBCBC;
  7596. text-align:left;
  7597. }
  7598. #u19869 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:1280px;
  7602. top:1186px;
  7603. width:33px;
  7604. height:24px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:14px;
  7610. color:#BCBCBC;
  7611. text-align:left;
  7612. }
  7613. #u19869 .text {
  7614. position:absolute;
  7615. align-self:center;
  7616. padding:2px 2px 2px 2px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u19869_text {
  7621. border-width:0px;
  7622. white-space:nowrap;
  7623. text-transform:none;
  7624. }
  7625. #u19870_div {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:40px;
  7631. height:30px;
  7632. background:inherit;
  7633. background-color:rgba(255, 255, 255, 1);
  7634. box-sizing:border-box;
  7635. border-width:1px;
  7636. border-style:solid;
  7637. border-color:rgba(228, 228, 228, 1);
  7638. border-radius:4px;
  7639. -moz-box-shadow:none;
  7640. -webkit-box-shadow:none;
  7641. box-shadow:none;
  7642. font-family:'Microsoft YaHei', sans-serif;
  7643. font-weight:400;
  7644. font-style:normal;
  7645. font-size:14px;
  7646. }
  7647. #u19870 {
  7648. border-width:0px;
  7649. position:absolute;
  7650. left:1315px;
  7651. top:1183px;
  7652. width:40px;
  7653. height:30px;
  7654. display:flex;
  7655. font-family:'Microsoft YaHei', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:14px;
  7659. }
  7660. #u19870 .text {
  7661. position:absolute;
  7662. align-self:center;
  7663. padding:2px 2px 2px 2px;
  7664. box-sizing:border-box;
  7665. width:100%;
  7666. }
  7667. #u19870_text {
  7668. border-width:0px;
  7669. word-wrap:break-word;
  7670. text-transform:none;
  7671. visibility:hidden;
  7672. }
  7673. #u19871_div {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:19px;
  7679. height:24px;
  7680. background:inherit;
  7681. background-color:rgba(255, 255, 255, 1);
  7682. border:none;
  7683. border-radius:0px;
  7684. -moz-box-shadow:none;
  7685. -webkit-box-shadow:none;
  7686. box-shadow:none;
  7687. font-family:'Microsoft YaHei', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:14px;
  7691. color:#BCBCBC;
  7692. text-align:left;
  7693. }
  7694. #u19871 {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:1357px;
  7698. top:1187px;
  7699. width:19px;
  7700. height:24px;
  7701. display:flex;
  7702. font-family:'Microsoft YaHei', sans-serif;
  7703. font-weight:400;
  7704. font-style:normal;
  7705. font-size:14px;
  7706. color:#BCBCBC;
  7707. text-align:left;
  7708. }
  7709. #u19871 .text {
  7710. position:absolute;
  7711. align-self:center;
  7712. padding:2px 2px 2px 2px;
  7713. box-sizing:border-box;
  7714. width:100%;
  7715. }
  7716. #u19871_text {
  7717. border-width:0px;
  7718. white-space:nowrap;
  7719. text-transform:none;
  7720. }
  7721. #u19872_input {
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:34px;
  7726. height:25px;
  7727. padding:2px 2px 2px 2px;
  7728. font-family:'Microsoft YaHei', sans-serif;
  7729. font-weight:400;
  7730. font-style:normal;
  7731. font-size:13px;
  7732. letter-spacing:normal;
  7733. color:#000000;
  7734. vertical-align:none;
  7735. text-align:left;
  7736. text-transform:none;
  7737. background-color:transparent;
  7738. border-color:transparent;
  7739. }
  7740. #u19872_input.disabled {
  7741. position:absolute;
  7742. left:0px;
  7743. top:0px;
  7744. width:34px;
  7745. height:25px;
  7746. padding:2px 2px 2px 2px;
  7747. font-family:'Microsoft YaHei', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:13px;
  7751. letter-spacing:normal;
  7752. color:#000000;
  7753. vertical-align:none;
  7754. text-align:left;
  7755. text-transform:none;
  7756. background-color:transparent;
  7757. border-color:transparent;
  7758. }
  7759. #u19872_div {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:34px;
  7765. height:25px;
  7766. background:inherit;
  7767. background-color:rgba(255, 255, 255, 1);
  7768. border:none;
  7769. border-radius:0px;
  7770. -moz-box-shadow:none;
  7771. -webkit-box-shadow:none;
  7772. box-shadow:none;
  7773. font-family:'Microsoft YaHei', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. }
  7777. #u19872 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:1318px;
  7781. top:1185px;
  7782. width:34px;
  7783. height:25px;
  7784. display:flex;
  7785. font-family:'Microsoft YaHei', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. }
  7789. #u19872 .text {
  7790. position:absolute;
  7791. align-self:center;
  7792. padding:2px 2px 2px 2px;
  7793. box-sizing:border-box;
  7794. width:100%;
  7795. }
  7796. #u19872_div.disabled {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:34px;
  7802. height:25px;
  7803. background:inherit;
  7804. background-color:rgba(240, 240, 240, 1);
  7805. border:none;
  7806. border-radius:0px;
  7807. -moz-box-shadow:none;
  7808. -webkit-box-shadow:none;
  7809. box-shadow:none;
  7810. font-family:'Microsoft YaHei', sans-serif;
  7811. font-weight:400;
  7812. font-style:normal;
  7813. }
  7814. #u19872.disabled {
  7815. }
  7816. #u19873_div {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:30px;
  7822. height:30px;
  7823. background:inherit;
  7824. background-color:rgba(41, 143, 255, 1);
  7825. border:none;
  7826. border-radius:4px;
  7827. -moz-box-shadow:none;
  7828. -webkit-box-shadow:none;
  7829. box-shadow:none;
  7830. font-family:'Microsoft YaHei', sans-serif;
  7831. font-weight:400;
  7832. font-style:normal;
  7833. font-size:14px;
  7834. color:#FFFFFF;
  7835. }
  7836. #u19873 {
  7837. border-width:0px;
  7838. position:absolute;
  7839. left:1030px;
  7840. top:1183px;
  7841. width:30px;
  7842. height:30px;
  7843. display:flex;
  7844. font-family:'Microsoft YaHei', sans-serif;
  7845. font-weight:400;
  7846. font-style:normal;
  7847. font-size:14px;
  7848. color:#FFFFFF;
  7849. }
  7850. #u19873 .text {
  7851. position:absolute;
  7852. align-self:center;
  7853. padding:2px 2px 2px 2px;
  7854. box-sizing:border-box;
  7855. width:100%;
  7856. }
  7857. #u19873_text {
  7858. border-width:0px;
  7859. word-wrap:break-word;
  7860. text-transform:none;
  7861. }
  7862. #u19874_div {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:0px;
  7866. top:0px;
  7867. width:30px;
  7868. height:30px;
  7869. background:inherit;
  7870. background-color:rgba(255, 255, 255, 1);
  7871. box-sizing:border-box;
  7872. border-width:1px;
  7873. border-style:solid;
  7874. border-color:rgba(228, 228, 228, 1);
  7875. border-radius:4px;
  7876. -moz-box-shadow:none;
  7877. -webkit-box-shadow:none;
  7878. box-shadow:none;
  7879. font-family:'Microsoft YaHei', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. }
  7884. #u19874 {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:1064px;
  7888. top:1183px;
  7889. width:30px;
  7890. height:30px;
  7891. display:flex;
  7892. font-family:'Microsoft YaHei', sans-serif;
  7893. font-weight:400;
  7894. font-style:normal;
  7895. font-size:14px;
  7896. }
  7897. #u19874 .text {
  7898. position:absolute;
  7899. align-self:center;
  7900. padding:2px 2px 2px 2px;
  7901. box-sizing:border-box;
  7902. width:100%;
  7903. }
  7904. #u19874_text {
  7905. border-width:0px;
  7906. word-wrap:break-word;
  7907. text-transform:none;
  7908. }
  7909. #u19875_div {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:0px;
  7913. top:0px;
  7914. width:30px;
  7915. height:30px;
  7916. background:inherit;
  7917. background-color:rgba(255, 255, 255, 1);
  7918. box-sizing:border-box;
  7919. border-width:1px;
  7920. border-style:solid;
  7921. border-color:rgba(228, 228, 228, 1);
  7922. border-radius:4px;
  7923. -moz-box-shadow:none;
  7924. -webkit-box-shadow:none;
  7925. box-shadow:none;
  7926. font-family:'Microsoft YaHei', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. }
  7931. #u19875 {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:1098px;
  7935. top:1183px;
  7936. width:30px;
  7937. height:30px;
  7938. display:flex;
  7939. font-family:'Microsoft YaHei', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:14px;
  7943. }
  7944. #u19875 .text {
  7945. position:absolute;
  7946. align-self:center;
  7947. padding:2px 2px 2px 2px;
  7948. box-sizing:border-box;
  7949. width:100%;
  7950. }
  7951. #u19875_text {
  7952. border-width:0px;
  7953. word-wrap:break-word;
  7954. text-transform:none;
  7955. }
  7956. #u19876_div {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:0px;
  7961. width:30px;
  7962. height:30px;
  7963. background:inherit;
  7964. background-color:rgba(255, 255, 255, 1);
  7965. border:none;
  7966. border-radius:4px;
  7967. -moz-box-shadow:none;
  7968. -webkit-box-shadow:none;
  7969. box-shadow:none;
  7970. font-family:'Microsoft YaHei', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:14px;
  7974. }
  7975. #u19876 {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:1128px;
  7979. top:1183px;
  7980. width:30px;
  7981. height:30px;
  7982. display:flex;
  7983. font-family:'Microsoft YaHei', sans-serif;
  7984. font-weight:400;
  7985. font-style:normal;
  7986. font-size:14px;
  7987. }
  7988. #u19876 .text {
  7989. position:absolute;
  7990. align-self:center;
  7991. padding:2px 2px 2px 2px;
  7992. box-sizing:border-box;
  7993. width:100%;
  7994. }
  7995. #u19876_text {
  7996. border-width:0px;
  7997. word-wrap:break-word;
  7998. text-transform:none;
  7999. }
  8000. #u19877_div {
  8001. border-width:0px;
  8002. position:absolute;
  8003. left:0px;
  8004. top:0px;
  8005. width:30px;
  8006. height:30px;
  8007. background:inherit;
  8008. background-color:rgba(255, 255, 255, 1);
  8009. box-sizing:border-box;
  8010. border-width:1px;
  8011. border-style:solid;
  8012. border-color:rgba(228, 228, 228, 1);
  8013. border-radius:4px;
  8014. -moz-box-shadow:none;
  8015. -webkit-box-shadow:none;
  8016. box-shadow:none;
  8017. font-family:'Microsoft YaHei', sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:14px;
  8021. }
  8022. #u19877 {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:1162px;
  8026. top:1183px;
  8027. width:30px;
  8028. height:30px;
  8029. display:flex;
  8030. font-family:'Microsoft YaHei', sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:14px;
  8034. }
  8035. #u19877 .text {
  8036. position:absolute;
  8037. align-self:center;
  8038. padding:2px 2px 2px 2px;
  8039. box-sizing:border-box;
  8040. width:100%;
  8041. }
  8042. #u19877_text {
  8043. border-width:0px;
  8044. word-wrap:break-word;
  8045. text-transform:none;
  8046. }
  8047. #u19878_div {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:0px;
  8051. top:0px;
  8052. width:32px;
  8053. height:21px;
  8054. background:inherit;
  8055. background-color:rgba(255, 255, 255, 1);
  8056. border:none;
  8057. border-radius:15px;
  8058. -moz-box-shadow:none;
  8059. -webkit-box-shadow:none;
  8060. box-shadow:none;
  8061. font-family:'Microsoft YaHei', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. font-size:14px;
  8065. color:#1E1E1E;
  8066. }
  8067. #u19878 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:1236px;
  8071. top:1188px;
  8072. width:32px;
  8073. height:21px;
  8074. display:flex;
  8075. font-family:'Microsoft YaHei', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:14px;
  8079. color:#1E1E1E;
  8080. }
  8081. #u19878 .text {
  8082. position:absolute;
  8083. align-self:center;
  8084. padding:2px 2px 2px 2px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u19878_text {
  8089. border-width:0px;
  8090. white-space:nowrap;
  8091. text-transform:none;
  8092. }
  8093. #u19879 {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:0px;
  8099. height:0px;
  8100. }
  8101. #u19880_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:31px;
  8107. height:30px;
  8108. background:inherit;
  8109. background-color:rgba(255, 255, 255, 1);
  8110. box-sizing:border-box;
  8111. border-width:1px;
  8112. border-style:solid;
  8113. border-color:rgba(228, 228, 228, 1);
  8114. border-radius:4px;
  8115. -moz-box-shadow:none;
  8116. -webkit-box-shadow:none;
  8117. box-shadow:none;
  8118. font-family:'Microsoft YaHei', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:12px;
  8122. }
  8123. #u19880 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:961px;
  8127. top:1183px;
  8128. width:31px;
  8129. height:30px;
  8130. display:flex;
  8131. font-family:'Microsoft YaHei', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:12px;
  8135. }
  8136. #u19880 .text {
  8137. position:absolute;
  8138. align-self:center;
  8139. padding:2px 2px 2px 2px;
  8140. box-sizing:border-box;
  8141. width:100%;
  8142. }
  8143. #u19880_text {
  8144. border-width:0px;
  8145. word-wrap:break-word;
  8146. text-transform:none;
  8147. visibility:hidden;
  8148. }
  8149. #u19881_img {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:8px;
  8155. height:14px;
  8156. }
  8157. #u19881 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:973px;
  8161. top:1191px;
  8162. width:8px;
  8163. height:14px;
  8164. display:flex;
  8165. font-family:'Microsoft YaHei', sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:12px;
  8169. }
  8170. #u19881 .text {
  8171. position:absolute;
  8172. align-self:center;
  8173. padding:2px 2px 2px 2px;
  8174. box-sizing:border-box;
  8175. width:100%;
  8176. }
  8177. #u19881_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. visibility:hidden;
  8182. }
  8183. #u19882 {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:0px;
  8189. height:0px;
  8190. }
  8191. #u19883_div {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:31px;
  8197. height:30px;
  8198. background:inherit;
  8199. background-color:rgba(255, 255, 255, 1);
  8200. box-sizing:border-box;
  8201. border-width:1px;
  8202. border-style:solid;
  8203. border-color:rgba(228, 228, 228, 1);
  8204. border-radius:4px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-family:'Microsoft YaHei', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:12px;
  8212. }
  8213. #u19883 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:1195px;
  8217. top:1183px;
  8218. width:31px;
  8219. height:30px;
  8220. display:flex;
  8221. font-family:'Microsoft YaHei', sans-serif;
  8222. font-weight:400;
  8223. font-style:normal;
  8224. font-size:12px;
  8225. }
  8226. #u19883 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:2px 2px 2px 2px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u19883_text {
  8234. border-width:0px;
  8235. word-wrap:break-word;
  8236. text-transform:none;
  8237. visibility:hidden;
  8238. }
  8239. #u19884_img {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:8px;
  8245. height:14px;
  8246. }
  8247. #u19884 {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:1208px;
  8251. top:1191px;
  8252. width:8px;
  8253. height:14px;
  8254. display:flex;
  8255. font-family:'Microsoft YaHei', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:12px;
  8259. }
  8260. #u19884 .text {
  8261. position:absolute;
  8262. align-self:center;
  8263. padding:2px 2px 2px 2px;
  8264. box-sizing:border-box;
  8265. width:100%;
  8266. }
  8267. #u19884_text {
  8268. border-width:0px;
  8269. word-wrap:break-word;
  8270. text-transform:none;
  8271. visibility:hidden;
  8272. }
  8273. #u19885 {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:0px;
  8279. height:0px;
  8280. }
  8281. #u19886_div {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:33px;
  8287. height:24px;
  8288. background:inherit;
  8289. background-color:rgba(255, 255, 255, 1);
  8290. border:none;
  8291. border-radius:0px;
  8292. -moz-box-shadow:none;
  8293. -webkit-box-shadow:none;
  8294. box-shadow:none;
  8295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8296. font-weight:400;
  8297. font-style:normal;
  8298. font-size:14px;
  8299. color:#BCBCBC;
  8300. text-align:left;
  8301. }
  8302. #u19886 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:1396px;
  8306. top:1186px;
  8307. width:33px;
  8308. height:24px;
  8309. display:flex;
  8310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8311. font-weight:400;
  8312. font-style:normal;
  8313. font-size:14px;
  8314. color:#BCBCBC;
  8315. text-align:left;
  8316. }
  8317. #u19886 .text {
  8318. position:absolute;
  8319. align-self:center;
  8320. padding:2px 2px 2px 2px;
  8321. box-sizing:border-box;
  8322. width:100%;
  8323. }
  8324. #u19886_text {
  8325. border-width:0px;
  8326. white-space:nowrap;
  8327. text-transform:none;
  8328. }
  8329. #u19887_div {
  8330. border-width:0px;
  8331. position:absolute;
  8332. left:0px;
  8333. top:0px;
  8334. width:40px;
  8335. height:30px;
  8336. background:inherit;
  8337. background-color:rgba(255, 255, 255, 1);
  8338. box-sizing:border-box;
  8339. border-width:1px;
  8340. border-style:solid;
  8341. border-color:rgba(228, 228, 228, 1);
  8342. border-radius:4px;
  8343. -moz-box-shadow:none;
  8344. -webkit-box-shadow:none;
  8345. box-shadow:none;
  8346. font-family:'Microsoft YaHei', sans-serif;
  8347. font-weight:400;
  8348. font-style:normal;
  8349. font-size:14px;
  8350. }
  8351. #u19887 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:1431px;
  8355. top:1183px;
  8356. width:40px;
  8357. height:30px;
  8358. display:flex;
  8359. font-family:'Microsoft YaHei', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:14px;
  8363. }
  8364. #u19887 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:2px 2px 2px 2px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u19887_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. visibility:hidden;
  8376. }
  8377. #u19888_div {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:19px;
  8383. height:24px;
  8384. background:inherit;
  8385. background-color:rgba(255, 255, 255, 1);
  8386. border:none;
  8387. border-radius:0px;
  8388. -moz-box-shadow:none;
  8389. -webkit-box-shadow:none;
  8390. box-shadow:none;
  8391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8392. font-weight:400;
  8393. font-style:normal;
  8394. font-size:14px;
  8395. color:#BCBCBC;
  8396. text-align:left;
  8397. }
  8398. #u19888 {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:1473px;
  8402. top:1187px;
  8403. width:19px;
  8404. height:24px;
  8405. display:flex;
  8406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8407. font-weight:400;
  8408. font-style:normal;
  8409. font-size:14px;
  8410. color:#BCBCBC;
  8411. text-align:left;
  8412. }
  8413. #u19888 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:2px 2px 2px 2px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u19888_text {
  8421. border-width:0px;
  8422. white-space:nowrap;
  8423. text-transform:none;
  8424. }
  8425. #u19889_input {
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:34px;
  8430. height:25px;
  8431. padding:2px 2px 2px 2px;
  8432. font-family:'Microsoft YaHei', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:13px;
  8436. letter-spacing:normal;
  8437. color:#000000;
  8438. vertical-align:none;
  8439. text-align:left;
  8440. text-transform:none;
  8441. background-color:transparent;
  8442. border-color:transparent;
  8443. }
  8444. #u19889_input.disabled {
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:34px;
  8449. height:25px;
  8450. padding:2px 2px 2px 2px;
  8451. font-family:'Microsoft YaHei', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:13px;
  8455. letter-spacing:normal;
  8456. color:#000000;
  8457. vertical-align:none;
  8458. text-align:left;
  8459. text-transform:none;
  8460. background-color:transparent;
  8461. border-color:transparent;
  8462. }
  8463. #u19889_div {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:0px;
  8467. top:0px;
  8468. width:34px;
  8469. height:25px;
  8470. background:inherit;
  8471. background-color:rgba(255, 255, 255, 1);
  8472. border:none;
  8473. border-radius:0px;
  8474. -moz-box-shadow:none;
  8475. -webkit-box-shadow:none;
  8476. box-shadow:none;
  8477. font-family:'Microsoft YaHei', sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. }
  8481. #u19889 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:1434px;
  8485. top:1185px;
  8486. width:34px;
  8487. height:25px;
  8488. display:flex;
  8489. font-family:'Microsoft YaHei', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. }
  8493. #u19889 .text {
  8494. position:absolute;
  8495. align-self:center;
  8496. padding:2px 2px 2px 2px;
  8497. box-sizing:border-box;
  8498. width:100%;
  8499. }
  8500. #u19889_div.disabled {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:34px;
  8506. height:25px;
  8507. background:inherit;
  8508. background-color:rgba(240, 240, 240, 1);
  8509. border:none;
  8510. border-radius:0px;
  8511. -moz-box-shadow:none;
  8512. -webkit-box-shadow:none;
  8513. box-shadow:none;
  8514. font-family:'Microsoft YaHei', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. }
  8518. #u19889.disabled {
  8519. }
  8520. #u19890_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:55px;
  8526. height:30px;
  8527. background:inherit;
  8528. background-color:rgba(255, 255, 255, 1);
  8529. box-sizing:border-box;
  8530. border-width:1px;
  8531. border-style:solid;
  8532. border-color:rgba(170, 170, 170, 1);
  8533. border-radius:4px;
  8534. -moz-box-shadow:none;
  8535. -webkit-box-shadow:none;
  8536. box-shadow:none;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:12px;
  8541. color:#555555;
  8542. }
  8543. #u19890 {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:512px;
  8547. top:194px;
  8548. width:55px;
  8549. height:30px;
  8550. display:flex;
  8551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8552. font-weight:400;
  8553. font-style:normal;
  8554. font-size:12px;
  8555. color:#555555;
  8556. }
  8557. #u19890 .text {
  8558. position:absolute;
  8559. align-self:center;
  8560. padding:5px 15px 5px 15px;
  8561. box-sizing:border-box;
  8562. width:100%;
  8563. }
  8564. #u19890_text {
  8565. border-width:0px;
  8566. white-space:nowrap;
  8567. text-transform:none;
  8568. }
  8569. #u19891_div {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:59px;
  8575. height:30px;
  8576. background:inherit;
  8577. background-color:rgba(255, 255, 255, 1);
  8578. box-sizing:border-box;
  8579. border-width:1px;
  8580. border-style:solid;
  8581. border-color:rgba(170, 170, 170, 1);
  8582. border-radius:4px;
  8583. -moz-box-shadow:none;
  8584. -webkit-box-shadow:none;
  8585. box-shadow:none;
  8586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8587. font-weight:400;
  8588. font-style:normal;
  8589. font-size:14px;
  8590. color:#555555;
  8591. }
  8592. #u19891 {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:443px;
  8596. top:194px;
  8597. width:59px;
  8598. height:30px;
  8599. display:flex;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:14px;
  8604. color:#555555;
  8605. }
  8606. #u19891 .text {
  8607. position:absolute;
  8608. align-self:center;
  8609. padding:5px 15px 5px 15px;
  8610. box-sizing:border-box;
  8611. width:100%;
  8612. }
  8613. #u19891_text {
  8614. border-width:0px;
  8615. white-space:nowrap;
  8616. text-transform:none;
  8617. }
  8618. #u19892_div {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:626px;
  8624. height:50px;
  8625. background:inherit;
  8626. background-color:rgba(255, 255, 255, 0);
  8627. border:none;
  8628. border-radius:0px;
  8629. -moz-box-shadow:none;
  8630. -webkit-box-shadow:none;
  8631. box-shadow:none;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:18px;
  8636. color:#D9001B;
  8637. }
  8638. #u19892 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:398px;
  8642. top:722px;
  8643. width:626px;
  8644. height:50px;
  8645. display:flex;
  8646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8647. font-weight:400;
  8648. font-style:normal;
  8649. font-size:18px;
  8650. color:#D9001B;
  8651. }
  8652. #u19892 .text {
  8653. position:absolute;
  8654. align-self:flex-start;
  8655. padding:0px 0px 0px 0px;
  8656. box-sizing:border-box;
  8657. width:100%;
  8658. }
  8659. #u19892_text {
  8660. border-width:0px;
  8661. white-space:nowrap;
  8662. text-transform:none;
  8663. }
  8664. #u19893 label {
  8665. left:0px;
  8666. width:100%;
  8667. }
  8668. #u19893_img {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:0px;
  8672. top:0px;
  8673. width:12px;
  8674. height:12px;
  8675. }
  8676. #u19893 {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:367px;
  8680. top:247px;
  8681. width:42px;
  8682. height:16px;
  8683. display:flex;
  8684. }
  8685. #u19893 .text {
  8686. position:absolute;
  8687. align-self:center;
  8688. padding:0px 2px 0px 2px;
  8689. box-sizing:border-box;
  8690. }
  8691. #u19893_img.selected {
  8692. }
  8693. #u19893.selected {
  8694. }
  8695. #u19893_img.disabled {
  8696. }
  8697. #u19893.disabled {
  8698. }
  8699. #u19893_img.selectedDisabled {
  8700. }
  8701. #u19893.selectedDisabled {
  8702. }
  8703. #u19893_text {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:14px;
  8707. top:0px;
  8708. width:26px;
  8709. word-wrap:break-word;
  8710. text-transform:none;
  8711. visibility:hidden;
  8712. }
  8713. #u19893_input {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:0px;
  8719. height:0px;
  8720. opacity:0;
  8721. }
  8722. #u19894 label {
  8723. left:0px;
  8724. width:100%;
  8725. }
  8726. #u19894_img {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:12px;
  8732. height:12px;
  8733. }
  8734. #u19894 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:367px;
  8738. top:277px;
  8739. width:42px;
  8740. height:16px;
  8741. display:flex;
  8742. }
  8743. #u19894 .text {
  8744. position:absolute;
  8745. align-self:center;
  8746. padding:0px 2px 0px 2px;
  8747. box-sizing:border-box;
  8748. }
  8749. #u19894_img.selected {
  8750. }
  8751. #u19894.selected {
  8752. }
  8753. #u19894_img.disabled {
  8754. }
  8755. #u19894.disabled {
  8756. }
  8757. #u19894_img.selectedDisabled {
  8758. }
  8759. #u19894.selectedDisabled {
  8760. }
  8761. #u19894_text {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:14px;
  8765. top:0px;
  8766. width:26px;
  8767. word-wrap:break-word;
  8768. text-transform:none;
  8769. visibility:hidden;
  8770. }
  8771. #u19894_input {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:0px;
  8777. height:0px;
  8778. opacity:0;
  8779. }
  8780. #u19895 {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:0px;
  8784. top:0px;
  8785. width:0px;
  8786. height:0px;
  8787. }
  8788. #u19896_div {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:140px;
  8794. height:30px;
  8795. background:inherit;
  8796. background-color:rgba(255, 255, 255, 1);
  8797. box-sizing:border-box;
  8798. border-width:1px;
  8799. border-style:solid;
  8800. border-color:rgba(215, 215, 215, 1);
  8801. border-radius:4px;
  8802. -moz-box-shadow:none;
  8803. -webkit-box-shadow:none;
  8804. box-shadow:none;
  8805. font-size:14px;
  8806. }
  8807. #u19896 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:951px;
  8811. top:140px;
  8812. width:140px;
  8813. height:30px;
  8814. display:flex;
  8815. font-size:14px;
  8816. }
  8817. #u19896 .text {
  8818. position:absolute;
  8819. align-self:center;
  8820. padding:2px 2px 2px 2px;
  8821. box-sizing:border-box;
  8822. width:100%;
  8823. }
  8824. #u19896_text {
  8825. border-width:0px;
  8826. word-wrap:break-word;
  8827. text-transform:none;
  8828. visibility:hidden;
  8829. }
  8830. #u19897_input {
  8831. position:absolute;
  8832. left:0px;
  8833. top:0px;
  8834. width:134px;
  8835. height:23px;
  8836. padding:2px 2px 2px 2px;
  8837. font-family:'ArialMT', 'Arial', sans-serif;
  8838. font-weight:400;
  8839. font-style:normal;
  8840. font-size:14px;
  8841. letter-spacing:normal;
  8842. color:#AAAAAA;
  8843. vertical-align:none;
  8844. text-align:left;
  8845. text-transform:none;
  8846. background-color:transparent;
  8847. border-color:transparent;
  8848. }
  8849. #u19897_input.disabled {
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:134px;
  8854. height:23px;
  8855. padding:2px 2px 2px 2px;
  8856. font-family:'ArialMT', 'Arial', sans-serif;
  8857. font-weight:400;
  8858. font-style:normal;
  8859. font-size:14px;
  8860. letter-spacing:normal;
  8861. color:#AAAAAA;
  8862. vertical-align:none;
  8863. text-align:left;
  8864. text-transform:none;
  8865. background-color:transparent;
  8866. border-color:transparent;
  8867. }
  8868. #u19897_div {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:0px;
  8872. top:0px;
  8873. width:134px;
  8874. height:23px;
  8875. background:inherit;
  8876. background-color:rgba(255, 255, 255, 1);
  8877. border:none;
  8878. border-radius:0px;
  8879. -moz-box-shadow:none;
  8880. -webkit-box-shadow:none;
  8881. box-shadow:none;
  8882. font-size:14px;
  8883. color:#AAAAAA;
  8884. }
  8885. #u19897 {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:955px;
  8889. top:142px;
  8890. width:134px;
  8891. height:23px;
  8892. display:flex;
  8893. font-size:14px;
  8894. color:#AAAAAA;
  8895. }
  8896. #u19897 .text {
  8897. position:absolute;
  8898. align-self:flex-start;
  8899. padding:2px 2px 2px 2px;
  8900. box-sizing:border-box;
  8901. width:100%;
  8902. }
  8903. #u19897_div.disabled {
  8904. border-width:0px;
  8905. position:absolute;
  8906. left:0px;
  8907. top:0px;
  8908. width:134px;
  8909. height:23px;
  8910. background:inherit;
  8911. background-color:rgba(240, 240, 240, 1);
  8912. border:none;
  8913. border-radius:0px;
  8914. -moz-box-shadow:none;
  8915. -webkit-box-shadow:none;
  8916. box-shadow:none;
  8917. font-size:14px;
  8918. color:#AAAAAA;
  8919. }
  8920. #u19897.disabled {
  8921. }
  8922. .u19897_input_option {
  8923. font-size:14px;
  8924. }
  8925. #u19898 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:0px;
  8929. top:0px;
  8930. width:0px;
  8931. height:0px;
  8932. }
  8933. #u19899_div {
  8934. border-width:0px;
  8935. position:absolute;
  8936. left:0px;
  8937. top:0px;
  8938. width:140px;
  8939. height:30px;
  8940. background:inherit;
  8941. background-color:rgba(255, 255, 255, 1);
  8942. box-sizing:border-box;
  8943. border-width:1px;
  8944. border-style:solid;
  8945. border-color:rgba(215, 215, 215, 1);
  8946. border-radius:4px;
  8947. -moz-box-shadow:none;
  8948. -webkit-box-shadow:none;
  8949. box-shadow:none;
  8950. font-size:14px;
  8951. }
  8952. #u19899 {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:650px;
  8956. top:140px;
  8957. width:140px;
  8958. height:30px;
  8959. display:flex;
  8960. font-size:14px;
  8961. }
  8962. #u19899 .text {
  8963. position:absolute;
  8964. align-self:center;
  8965. padding:2px 2px 2px 2px;
  8966. box-sizing:border-box;
  8967. width:100%;
  8968. }
  8969. #u19899_text {
  8970. border-width:0px;
  8971. word-wrap:break-word;
  8972. text-transform:none;
  8973. visibility:hidden;
  8974. }
  8975. #u19900_input {
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:134px;
  8980. height:23px;
  8981. padding:2px 2px 2px 2px;
  8982. font-family:'ArialMT', 'Arial', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:14px;
  8986. letter-spacing:normal;
  8987. color:#AAAAAA;
  8988. vertical-align:none;
  8989. text-align:left;
  8990. text-transform:none;
  8991. background-color:transparent;
  8992. border-color:transparent;
  8993. }
  8994. #u19900_input.disabled {
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:134px;
  8999. height:23px;
  9000. padding:2px 2px 2px 2px;
  9001. font-family:'ArialMT', 'Arial', sans-serif;
  9002. font-weight:400;
  9003. font-style:normal;
  9004. font-size:14px;
  9005. letter-spacing:normal;
  9006. color:#AAAAAA;
  9007. vertical-align:none;
  9008. text-align:left;
  9009. text-transform:none;
  9010. background-color:transparent;
  9011. border-color:transparent;
  9012. }
  9013. #u19900_div {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:134px;
  9019. height:23px;
  9020. background:inherit;
  9021. background-color:rgba(255, 255, 255, 1);
  9022. border:none;
  9023. border-radius:0px;
  9024. -moz-box-shadow:none;
  9025. -webkit-box-shadow:none;
  9026. box-shadow:none;
  9027. font-size:14px;
  9028. color:#AAAAAA;
  9029. }
  9030. #u19900 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:654px;
  9034. top:142px;
  9035. width:134px;
  9036. height:23px;
  9037. display:flex;
  9038. font-size:14px;
  9039. color:#AAAAAA;
  9040. }
  9041. #u19900 .text {
  9042. position:absolute;
  9043. align-self:flex-start;
  9044. padding:2px 2px 2px 2px;
  9045. box-sizing:border-box;
  9046. width:100%;
  9047. }
  9048. #u19900_div.disabled {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:0px;
  9052. top:0px;
  9053. width:134px;
  9054. height:23px;
  9055. background:inherit;
  9056. background-color:rgba(240, 240, 240, 1);
  9057. border:none;
  9058. border-radius:0px;
  9059. -moz-box-shadow:none;
  9060. -webkit-box-shadow:none;
  9061. box-shadow:none;
  9062. font-size:14px;
  9063. color:#AAAAAA;
  9064. }
  9065. #u19900.disabled {
  9066. }
  9067. .u19900_input_option {
  9068. font-size:14px;
  9069. }