styles.css 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1951px;
  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. #u18780_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. #u18780 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u18780 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u18780_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u18781_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. #u18781 {
  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. #u18781 .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. #u18781_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u18782_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. #u18782 {
  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. #u18782 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u18782_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u18783 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u18784_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u18784 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u18784 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u18784_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u18785_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. #u18785 {
  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. #u18785 .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. #u18785_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u18786_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. #u18786 {
  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. #u18786 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u18786_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u18787 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u18788_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. #u18788 {
  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. #u18788 .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. #u18788_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u18789_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u18789 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u18789 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u18789_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u18790 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u18791_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. #u18791 {
  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. #u18791 .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. #u18791_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u18792_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u18792 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u18792 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u18792_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u18793 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u18794_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. #u18794 {
  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. #u18794 .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. #u18794_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u18795_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u18795 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u18795 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u18795_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u18796 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u18797_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. #u18797 {
  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. #u18797 .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. #u18797_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u18798_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u18798 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u18798 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u18798_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u18799 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u18800_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. #u18800 {
  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. #u18800 .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. #u18800_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u18801_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u18801 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u18801 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u18801_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u18802 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u18803_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. #u18803 {
  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. #u18803 .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. #u18803_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u18804_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u18804 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u18804 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u18804_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u18805 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u18806_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. #u18806 {
  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. #u18806 .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. #u18806_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u18807_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u18807 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u18807 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u18807_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u18808 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u18809_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. #u18809 {
  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. #u18809 .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. #u18809_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u18810_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u18810 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u18810 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u18810_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u18811 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u18812_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. #u18812 {
  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. #u18812 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u18812_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u18813_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u18813 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u18813 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u18813_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u18814 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u18815_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. #u18815 {
  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. #u18815 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u18815_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u18816_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u18816 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u18816 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u18816_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u18817 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u18818_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. #u18818 {
  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. #u18818 .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. #u18818_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u18819_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u18819 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u18819 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u18819_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u18820 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u18821_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. #u18821_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. #u18821_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. #u18821 {
  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. #u18821 .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. #u18821_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. #u18821.disabled {
  1276. }
  1277. .u18821_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u18822_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u18822 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u18822 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u18822_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u18823_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. #u18823 {
  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. #u18823 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u18823_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u18824_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u18824 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u18824 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u18824_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u18825 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u18826_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. #u18826 {
  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. #u18826 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u18826_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u18827_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u18827 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u18827 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u18827_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u18828_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u18828 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u18828 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u18828_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u18829_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u18829 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u18829 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u18829_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u18830_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u18830 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u18830 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u18830_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u18831 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u18832_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. #u18832 {
  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. #u18832 .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. #u18832_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u18833_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u18833 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u18833 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u18833_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u18834_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1259px;
  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. #u18834 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:333px;
  1661. top:50px;
  1662. width:1259px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u18834 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u18834_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u18835_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. #u18835 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:353px;
  1708. top:50px;
  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. #u18835 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u18835_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u18836 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:353px;
  1734. top:237px;
  1735. width:1219px;
  1736. height:426px;
  1737. }
  1738. #u18837_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:68px;
  1744. height:31px;
  1745. }
  1746. #u18837 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:68px;
  1752. height:31px;
  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. #u18837 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u18837_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u18838_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:134px;
  1779. height:31px;
  1780. }
  1781. #u18838 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:68px;
  1785. top:0px;
  1786. width:134px;
  1787. height:31px;
  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. #u18838 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 2px 2px 2px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u18838_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u18839_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:135px;
  1813. height:31px;
  1814. }
  1815. #u18839 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:202px;
  1819. top:0px;
  1820. width:135px;
  1821. height:31px;
  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. #u18839 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u18839_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u18840_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:134px;
  1847. height:31px;
  1848. }
  1849. #u18840 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:337px;
  1853. top:0px;
  1854. width:134px;
  1855. height:31px;
  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. #u18840 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 2px 2px 2px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u18840_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u18841_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:162px;
  1881. height:31px;
  1882. }
  1883. #u18841 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:471px;
  1887. top:0px;
  1888. width:162px;
  1889. height:31px;
  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. #u18841 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u18841_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u18842_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:162px;
  1915. height:31px;
  1916. }
  1917. #u18842 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:633px;
  1921. top:0px;
  1922. width:162px;
  1923. height:31px;
  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. #u18842 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u18842_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u18843_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:145px;
  1949. height:31px;
  1950. }
  1951. #u18843 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:795px;
  1955. top:0px;
  1956. width:145px;
  1957. height:31px;
  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. #u18843 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u18843_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u18844_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:135px;
  1983. height:31px;
  1984. }
  1985. #u18844 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:940px;
  1989. top:0px;
  1990. width:135px;
  1991. height:31px;
  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. #u18844 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u18844_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u18845_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:144px;
  2017. height:31px;
  2018. }
  2019. #u18845 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1075px;
  2023. top:0px;
  2024. width:144px;
  2025. height:31px;
  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. #u18845 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u18845_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u18846_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:68px;
  2051. height:35px;
  2052. }
  2053. #u18846 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:31px;
  2058. width:68px;
  2059. height:35px;
  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. }
  2066. #u18846 .text {
  2067. position:absolute;
  2068. align-self:center;
  2069. padding:2px 2px 2px 2px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u18846_text {
  2074. border-width:0px;
  2075. word-wrap:break-word;
  2076. text-transform:none;
  2077. visibility:hidden;
  2078. }
  2079. #u18847_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:134px;
  2085. height:35px;
  2086. }
  2087. #u18847 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:68px;
  2091. top:31px;
  2092. width:134px;
  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. #u18847 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u18847_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u18848_img {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:135px;
  2119. height:35px;
  2120. }
  2121. #u18848 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:202px;
  2125. top:31px;
  2126. width:135px;
  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. #u18848 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u18848_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. }
  2146. #u18849_img {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:134px;
  2152. height:35px;
  2153. }
  2154. #u18849 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:337px;
  2158. top:31px;
  2159. width:134px;
  2160. height:35px;
  2161. display:flex;
  2162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:14px;
  2166. }
  2167. #u18849 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 2px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u18849_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. visibility:hidden;
  2179. }
  2180. #u18850_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:162px;
  2186. height:35px;
  2187. }
  2188. #u18850 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:471px;
  2192. top:31px;
  2193. width:162px;
  2194. height:35px;
  2195. display:flex;
  2196. font-size:14px;
  2197. }
  2198. #u18850 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 2px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u18850_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. }
  2210. #u18851_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:162px;
  2216. height:35px;
  2217. }
  2218. #u18851 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:633px;
  2222. top:31px;
  2223. width:162px;
  2224. height:35px;
  2225. display:flex;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:14px;
  2230. }
  2231. #u18851 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u18851_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u18852_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:145px;
  2250. height:35px;
  2251. }
  2252. #u18852 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:795px;
  2256. top:31px;
  2257. width:145px;
  2258. height:35px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. }
  2265. #u18852 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u18852_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u18853_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:135px;
  2284. height:35px;
  2285. }
  2286. #u18853 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:940px;
  2290. top:31px;
  2291. width:135px;
  2292. height:35px;
  2293. display:flex;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:14px;
  2298. }
  2299. #u18853 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 2px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u18853_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. }
  2311. #u18854_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:144px;
  2317. height:35px;
  2318. }
  2319. #u18854 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:1075px;
  2323. top:31px;
  2324. width:144px;
  2325. height:35px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:14px;
  2331. }
  2332. #u18854 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 2px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u18854_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. visibility:hidden;
  2344. }
  2345. #u18855_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:68px;
  2351. height:30px;
  2352. }
  2353. #u18855 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:66px;
  2358. width:68px;
  2359. height:30px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:14px;
  2365. }
  2366. #u18855 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u18855_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u18856_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:134px;
  2385. height:30px;
  2386. }
  2387. #u18856 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:68px;
  2391. top:66px;
  2392. width:134px;
  2393. height:30px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:14px;
  2399. }
  2400. #u18856 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 2px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u18856_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u18857_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:135px;
  2419. height:30px;
  2420. }
  2421. #u18857 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:202px;
  2425. top:66px;
  2426. width:135px;
  2427. height:30px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:14px;
  2433. }
  2434. #u18857 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 2px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u18857_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u18858_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:134px;
  2453. height:30px;
  2454. }
  2455. #u18858 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:337px;
  2459. top:66px;
  2460. width:134px;
  2461. height:30px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. }
  2468. #u18858 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u18858_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u18859_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:162px;
  2487. height:30px;
  2488. }
  2489. #u18859 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:471px;
  2493. top:66px;
  2494. width:162px;
  2495. height:30px;
  2496. display:flex;
  2497. font-size:14px;
  2498. }
  2499. #u18859 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u18859_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u18860_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:162px;
  2518. height:30px;
  2519. }
  2520. #u18860 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:633px;
  2524. top:66px;
  2525. width:162px;
  2526. height:30px;
  2527. display:flex;
  2528. font-size:14px;
  2529. }
  2530. #u18860 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 2px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u18860_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u18861_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:145px;
  2549. height:30px;
  2550. }
  2551. #u18861 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:795px;
  2555. top:66px;
  2556. width:145px;
  2557. height:30px;
  2558. display:flex;
  2559. font-size:14px;
  2560. }
  2561. #u18861 .text {
  2562. position:absolute;
  2563. align-self:center;
  2564. padding:2px 2px 2px 2px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u18861_text {
  2569. border-width:0px;
  2570. word-wrap:break-word;
  2571. text-transform:none;
  2572. visibility:hidden;
  2573. }
  2574. #u18862_img {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:135px;
  2580. height:30px;
  2581. }
  2582. #u18862 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:940px;
  2586. top:66px;
  2587. width:135px;
  2588. height:30px;
  2589. display:flex;
  2590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:14px;
  2594. }
  2595. #u18862 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u18862_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. }
  2607. #u18863_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:144px;
  2613. height:30px;
  2614. }
  2615. #u18863 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1075px;
  2619. top:66px;
  2620. width:144px;
  2621. height:30px;
  2622. display:flex;
  2623. font-size:14px;
  2624. }
  2625. #u18863 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u18863_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u18864_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:68px;
  2644. height:30px;
  2645. }
  2646. #u18864 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:96px;
  2651. width:68px;
  2652. height:30px;
  2653. display:flex;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:14px;
  2658. }
  2659. #u18864 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u18864_text {
  2667. border-width:0px;
  2668. word-wrap:break-word;
  2669. text-transform:none;
  2670. visibility:hidden;
  2671. }
  2672. #u18865_img {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:134px;
  2678. height:30px;
  2679. }
  2680. #u18865 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:68px;
  2684. top:96px;
  2685. width:134px;
  2686. height:30px;
  2687. display:flex;
  2688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2689. font-weight:400;
  2690. font-style:normal;
  2691. font-size:14px;
  2692. }
  2693. #u18865 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u18865_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u18866_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:135px;
  2712. height:30px;
  2713. }
  2714. #u18866 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:202px;
  2718. top:96px;
  2719. width:135px;
  2720. height:30px;
  2721. display:flex;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:14px;
  2726. }
  2727. #u18866 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 2px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u18866_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u18867_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:134px;
  2746. height:30px;
  2747. }
  2748. #u18867 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:337px;
  2752. top:96px;
  2753. width:134px;
  2754. height:30px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:14px;
  2760. }
  2761. #u18867 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 2px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u18867_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u18868_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:162px;
  2780. height:30px;
  2781. }
  2782. #u18868 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:471px;
  2786. top:96px;
  2787. width:162px;
  2788. height:30px;
  2789. display:flex;
  2790. font-size:14px;
  2791. }
  2792. #u18868 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 2px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u18868_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. visibility:hidden;
  2804. }
  2805. #u18869_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:162px;
  2811. height:30px;
  2812. }
  2813. #u18869 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:633px;
  2817. top:96px;
  2818. width:162px;
  2819. height:30px;
  2820. display:flex;
  2821. font-size:14px;
  2822. }
  2823. #u18869 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 2px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u18869_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. visibility:hidden;
  2835. }
  2836. #u18870_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:145px;
  2842. height:30px;
  2843. }
  2844. #u18870 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:795px;
  2848. top:96px;
  2849. width:145px;
  2850. height:30px;
  2851. display:flex;
  2852. font-size:14px;
  2853. }
  2854. #u18870 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u18870_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u18871_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:135px;
  2873. height:30px;
  2874. }
  2875. #u18871 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:940px;
  2879. top:96px;
  2880. width:135px;
  2881. height:30px;
  2882. display:flex;
  2883. font-size:14px;
  2884. }
  2885. #u18871 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 2px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u18871_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u18872_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:144px;
  2904. height:30px;
  2905. }
  2906. #u18872 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:1075px;
  2910. top:96px;
  2911. width:144px;
  2912. height:30px;
  2913. display:flex;
  2914. font-size:14px;
  2915. }
  2916. #u18872 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u18872_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u18873_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:68px;
  2935. height:30px;
  2936. }
  2937. #u18873 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:126px;
  2942. width:68px;
  2943. height:30px;
  2944. display:flex;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:14px;
  2949. }
  2950. #u18873 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 2px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u18873_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u18874_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:134px;
  2969. height:30px;
  2970. }
  2971. #u18874 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:68px;
  2975. top:126px;
  2976. width:134px;
  2977. height:30px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:14px;
  2983. }
  2984. #u18874 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u18874_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u18875_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:135px;
  3003. height:30px;
  3004. }
  3005. #u18875 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:202px;
  3009. top:126px;
  3010. width:135px;
  3011. height:30px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:14px;
  3017. }
  3018. #u18875 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u18875_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u18876_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:134px;
  3037. height:30px;
  3038. }
  3039. #u18876 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:337px;
  3043. top:126px;
  3044. width:134px;
  3045. height:30px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:14px;
  3051. }
  3052. #u18876 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 2px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u18876_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u18877_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:162px;
  3071. height:30px;
  3072. }
  3073. #u18877 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:471px;
  3077. top:126px;
  3078. width:162px;
  3079. height:30px;
  3080. display:flex;
  3081. font-size:14px;
  3082. }
  3083. #u18877 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u18877_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u18878_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:162px;
  3102. height:30px;
  3103. }
  3104. #u18878 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:633px;
  3108. top:126px;
  3109. width:162px;
  3110. height:30px;
  3111. display:flex;
  3112. font-size:14px;
  3113. }
  3114. #u18878 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u18878_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u18879_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:145px;
  3133. height:30px;
  3134. }
  3135. #u18879 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:795px;
  3139. top:126px;
  3140. width:145px;
  3141. height:30px;
  3142. display:flex;
  3143. font-size:14px;
  3144. }
  3145. #u18879 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 2px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u18879_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. visibility:hidden;
  3157. }
  3158. #u18880_img {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:135px;
  3164. height:30px;
  3165. }
  3166. #u18880 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:940px;
  3170. top:126px;
  3171. width:135px;
  3172. height:30px;
  3173. display:flex;
  3174. font-size:14px;
  3175. }
  3176. #u18880 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u18880_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u18881_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:144px;
  3195. height:30px;
  3196. }
  3197. #u18881 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:1075px;
  3201. top:126px;
  3202. width:144px;
  3203. height:30px;
  3204. display:flex;
  3205. font-size:14px;
  3206. }
  3207. #u18881 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 2px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u18881_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u18882_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:68px;
  3226. height:30px;
  3227. }
  3228. #u18882 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:156px;
  3233. width:68px;
  3234. height:30px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. }
  3241. #u18882 .text {
  3242. position:absolute;
  3243. align-self:center;
  3244. padding:2px 2px 2px 2px;
  3245. box-sizing:border-box;
  3246. width:100%;
  3247. }
  3248. #u18882_text {
  3249. border-width:0px;
  3250. word-wrap:break-word;
  3251. text-transform:none;
  3252. visibility:hidden;
  3253. }
  3254. #u18883_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:134px;
  3260. height:30px;
  3261. }
  3262. #u18883 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:68px;
  3266. top:156px;
  3267. width:134px;
  3268. height:30px;
  3269. display:flex;
  3270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3271. font-weight:400;
  3272. font-style:normal;
  3273. font-size:14px;
  3274. }
  3275. #u18883 .text {
  3276. position:absolute;
  3277. align-self:center;
  3278. padding:2px 2px 2px 2px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u18883_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. visibility:hidden;
  3287. }
  3288. #u18884_img {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:135px;
  3294. height:30px;
  3295. }
  3296. #u18884 {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:202px;
  3300. top:156px;
  3301. width:135px;
  3302. height:30px;
  3303. display:flex;
  3304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:14px;
  3308. }
  3309. #u18884 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 2px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u18884_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u18885_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:134px;
  3328. height:30px;
  3329. }
  3330. #u18885 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:337px;
  3334. top:156px;
  3335. width:134px;
  3336. height:30px;
  3337. display:flex;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:14px;
  3342. }
  3343. #u18885 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 2px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u18885_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. visibility:hidden;
  3355. }
  3356. #u18886_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:162px;
  3362. height:30px;
  3363. }
  3364. #u18886 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:471px;
  3368. top:156px;
  3369. width:162px;
  3370. height:30px;
  3371. display:flex;
  3372. font-size:14px;
  3373. }
  3374. #u18886 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:2px 2px 2px 2px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u18886_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. visibility:hidden;
  3386. }
  3387. #u18887_img {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:162px;
  3393. height:30px;
  3394. }
  3395. #u18887 {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:633px;
  3399. top:156px;
  3400. width:162px;
  3401. height:30px;
  3402. display:flex;
  3403. font-size:14px;
  3404. }
  3405. #u18887 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 2px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u18887_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u18888_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:145px;
  3424. height:30px;
  3425. }
  3426. #u18888 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:795px;
  3430. top:156px;
  3431. width:145px;
  3432. height:30px;
  3433. display:flex;
  3434. font-size:14px;
  3435. }
  3436. #u18888 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u18888_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u18889_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:135px;
  3455. height:30px;
  3456. }
  3457. #u18889 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:940px;
  3461. top:156px;
  3462. width:135px;
  3463. height:30px;
  3464. display:flex;
  3465. font-size:14px;
  3466. }
  3467. #u18889 .text {
  3468. position:absolute;
  3469. align-self:center;
  3470. padding:2px 2px 2px 2px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u18889_text {
  3475. border-width:0px;
  3476. word-wrap:break-word;
  3477. text-transform:none;
  3478. visibility:hidden;
  3479. }
  3480. #u18890_img {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:144px;
  3486. height:30px;
  3487. }
  3488. #u18890 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:1075px;
  3492. top:156px;
  3493. width:144px;
  3494. height:30px;
  3495. display:flex;
  3496. font-size:14px;
  3497. }
  3498. #u18890 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 2px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u18890_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u18891_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:68px;
  3517. height:30px;
  3518. }
  3519. #u18891 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:186px;
  3524. width:68px;
  3525. height:30px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:14px;
  3531. }
  3532. #u18891 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 2px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u18891_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u18892_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:134px;
  3551. height:30px;
  3552. }
  3553. #u18892 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:68px;
  3557. top:186px;
  3558. width:134px;
  3559. height:30px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:14px;
  3565. }
  3566. #u18892 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 2px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u18892_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u18893_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:135px;
  3585. height:30px;
  3586. }
  3587. #u18893 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:202px;
  3591. top:186px;
  3592. width:135px;
  3593. height:30px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:14px;
  3599. }
  3600. #u18893 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u18893_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u18894_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:134px;
  3619. height:30px;
  3620. }
  3621. #u18894 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:337px;
  3625. top:186px;
  3626. width:134px;
  3627. height:30px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:14px;
  3633. }
  3634. #u18894 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 2px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u18894_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. visibility:hidden;
  3646. }
  3647. #u18895_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:162px;
  3653. height:30px;
  3654. }
  3655. #u18895 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:471px;
  3659. top:186px;
  3660. width:162px;
  3661. height:30px;
  3662. display:flex;
  3663. font-size:14px;
  3664. }
  3665. #u18895 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u18895_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u18896_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:162px;
  3684. height:30px;
  3685. }
  3686. #u18896 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:633px;
  3690. top:186px;
  3691. width:162px;
  3692. height:30px;
  3693. display:flex;
  3694. font-size:14px;
  3695. }
  3696. #u18896 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 2px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u18896_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u18897_img {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:145px;
  3715. height:30px;
  3716. }
  3717. #u18897 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:795px;
  3721. top:186px;
  3722. width:145px;
  3723. height:30px;
  3724. display:flex;
  3725. font-size:14px;
  3726. }
  3727. #u18897 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u18897_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u18898_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:135px;
  3746. height:30px;
  3747. }
  3748. #u18898 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:940px;
  3752. top:186px;
  3753. width:135px;
  3754. height:30px;
  3755. display:flex;
  3756. font-size:14px;
  3757. }
  3758. #u18898 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 2px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u18898_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u18899_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:144px;
  3777. height:30px;
  3778. }
  3779. #u18899 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:1075px;
  3783. top:186px;
  3784. width:144px;
  3785. height:30px;
  3786. display:flex;
  3787. font-size:14px;
  3788. }
  3789. #u18899 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u18899_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u18900_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:68px;
  3808. height:30px;
  3809. }
  3810. #u18900 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:216px;
  3815. width:68px;
  3816. height:30px;
  3817. display:flex;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:14px;
  3822. }
  3823. #u18900 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u18900_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u18901_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:134px;
  3842. height:30px;
  3843. }
  3844. #u18901 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:68px;
  3848. top:216px;
  3849. width:134px;
  3850. height:30px;
  3851. display:flex;
  3852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:14px;
  3856. }
  3857. #u18901 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u18901_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u18902_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:135px;
  3876. height:30px;
  3877. }
  3878. #u18902 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:202px;
  3882. top:216px;
  3883. width:135px;
  3884. height:30px;
  3885. display:flex;
  3886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:14px;
  3890. }
  3891. #u18902 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u18902_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u18903_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:134px;
  3910. height:30px;
  3911. }
  3912. #u18903 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:337px;
  3916. top:216px;
  3917. width:134px;
  3918. height:30px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:14px;
  3924. }
  3925. #u18903 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 2px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u18903_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u18904_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:162px;
  3944. height:30px;
  3945. }
  3946. #u18904 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:471px;
  3950. top:216px;
  3951. width:162px;
  3952. height:30px;
  3953. display:flex;
  3954. font-size:14px;
  3955. }
  3956. #u18904 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 2px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u18904_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u18905_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:162px;
  3975. height:30px;
  3976. }
  3977. #u18905 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:633px;
  3981. top:216px;
  3982. width:162px;
  3983. height:30px;
  3984. display:flex;
  3985. font-size:14px;
  3986. }
  3987. #u18905 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:2px 2px 2px 2px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u18905_text {
  3995. border-width:0px;
  3996. word-wrap:break-word;
  3997. text-transform:none;
  3998. visibility:hidden;
  3999. }
  4000. #u18906_img {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:145px;
  4006. height:30px;
  4007. }
  4008. #u18906 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:795px;
  4012. top:216px;
  4013. width:145px;
  4014. height:30px;
  4015. display:flex;
  4016. font-size:14px;
  4017. }
  4018. #u18906 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u18906_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u18907_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:135px;
  4037. height:30px;
  4038. }
  4039. #u18907 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:940px;
  4043. top:216px;
  4044. width:135px;
  4045. height:30px;
  4046. display:flex;
  4047. font-size:14px;
  4048. }
  4049. #u18907 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 2px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u18907_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. visibility:hidden;
  4061. }
  4062. #u18908_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:144px;
  4068. height:30px;
  4069. }
  4070. #u18908 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:1075px;
  4074. top:216px;
  4075. width:144px;
  4076. height:30px;
  4077. display:flex;
  4078. font-size:14px;
  4079. }
  4080. #u18908 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 2px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u18908_text {
  4088. border-width:0px;
  4089. word-wrap:break-word;
  4090. text-transform:none;
  4091. visibility:hidden;
  4092. }
  4093. #u18909_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:68px;
  4099. height:30px;
  4100. }
  4101. #u18909 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:246px;
  4106. width:68px;
  4107. height:30px;
  4108. display:flex;
  4109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:14px;
  4113. }
  4114. #u18909 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u18909_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. visibility:hidden;
  4126. }
  4127. #u18910_img {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:134px;
  4133. height:30px;
  4134. }
  4135. #u18910 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:68px;
  4139. top:246px;
  4140. width:134px;
  4141. height:30px;
  4142. display:flex;
  4143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:14px;
  4147. }
  4148. #u18910 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:2px 2px 2px 2px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u18910_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. visibility:hidden;
  4160. }
  4161. #u18911_img {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:135px;
  4167. height:30px;
  4168. }
  4169. #u18911 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:202px;
  4173. top:246px;
  4174. width:135px;
  4175. height:30px;
  4176. display:flex;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:14px;
  4181. }
  4182. #u18911 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u18911_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u18912_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:134px;
  4201. height:30px;
  4202. }
  4203. #u18912 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:337px;
  4207. top:246px;
  4208. width:134px;
  4209. height:30px;
  4210. display:flex;
  4211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4212. font-weight:400;
  4213. font-style:normal;
  4214. font-size:14px;
  4215. }
  4216. #u18912 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u18912_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u18913_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:162px;
  4235. height:30px;
  4236. }
  4237. #u18913 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:471px;
  4241. top:246px;
  4242. width:162px;
  4243. height:30px;
  4244. display:flex;
  4245. font-size:14px;
  4246. }
  4247. #u18913 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 2px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u18913_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u18914_img {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:162px;
  4266. height:30px;
  4267. }
  4268. #u18914 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:633px;
  4272. top:246px;
  4273. width:162px;
  4274. height:30px;
  4275. display:flex;
  4276. font-size:14px;
  4277. }
  4278. #u18914 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u18914_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u18915_img {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:145px;
  4297. height:30px;
  4298. }
  4299. #u18915 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:795px;
  4303. top:246px;
  4304. width:145px;
  4305. height:30px;
  4306. display:flex;
  4307. font-size:14px;
  4308. }
  4309. #u18915 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u18915_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u18916_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:135px;
  4328. height:30px;
  4329. }
  4330. #u18916 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:940px;
  4334. top:246px;
  4335. width:135px;
  4336. height:30px;
  4337. display:flex;
  4338. font-size:14px;
  4339. }
  4340. #u18916 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 2px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u18916_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u18917_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:144px;
  4359. height:30px;
  4360. }
  4361. #u18917 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:1075px;
  4365. top:246px;
  4366. width:144px;
  4367. height:30px;
  4368. display:flex;
  4369. font-size:14px;
  4370. }
  4371. #u18917 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u18917_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u18918_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:68px;
  4390. height:30px;
  4391. }
  4392. #u18918 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:276px;
  4397. width:68px;
  4398. height:30px;
  4399. display:flex;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. }
  4405. #u18918 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 2px 2px 2px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u18918_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u18919_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:134px;
  4424. height:30px;
  4425. }
  4426. #u18919 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:68px;
  4430. top:276px;
  4431. width:134px;
  4432. height:30px;
  4433. display:flex;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. }
  4439. #u18919 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:2px 2px 2px 2px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u18919_text {
  4447. border-width:0px;
  4448. word-wrap:break-word;
  4449. text-transform:none;
  4450. visibility:hidden;
  4451. }
  4452. #u18920_img {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:135px;
  4458. height:30px;
  4459. }
  4460. #u18920 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:202px;
  4464. top:276px;
  4465. width:135px;
  4466. height:30px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. }
  4473. #u18920 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u18920_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u18921_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:134px;
  4492. height:30px;
  4493. }
  4494. #u18921 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:337px;
  4498. top:276px;
  4499. width:134px;
  4500. height:30px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:14px;
  4506. }
  4507. #u18921 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 2px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u18921_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u18922_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:162px;
  4526. height:30px;
  4527. }
  4528. #u18922 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:471px;
  4532. top:276px;
  4533. width:162px;
  4534. height:30px;
  4535. display:flex;
  4536. font-size:14px;
  4537. }
  4538. #u18922 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 2px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u18922_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u18923_img {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:162px;
  4557. height:30px;
  4558. }
  4559. #u18923 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:633px;
  4563. top:276px;
  4564. width:162px;
  4565. height:30px;
  4566. display:flex;
  4567. font-size:14px;
  4568. }
  4569. #u18923 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 2px 2px 2px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u18923_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u18924_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:145px;
  4588. height:30px;
  4589. }
  4590. #u18924 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:795px;
  4594. top:276px;
  4595. width:145px;
  4596. height:30px;
  4597. display:flex;
  4598. font-size:14px;
  4599. }
  4600. #u18924 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 2px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u18924_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u18925_img {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:135px;
  4619. height:30px;
  4620. }
  4621. #u18925 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:940px;
  4625. top:276px;
  4626. width:135px;
  4627. height:30px;
  4628. display:flex;
  4629. font-size:14px;
  4630. }
  4631. #u18925 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 2px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u18925_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u18926_img {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:144px;
  4650. height:30px;
  4651. }
  4652. #u18926 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1075px;
  4656. top:276px;
  4657. width:144px;
  4658. height:30px;
  4659. display:flex;
  4660. font-size:14px;
  4661. }
  4662. #u18926 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:2px 2px 2px 2px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u18926_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u18927_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:68px;
  4681. height:30px;
  4682. }
  4683. #u18927 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:306px;
  4688. width:68px;
  4689. height:30px;
  4690. display:flex;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:14px;
  4695. }
  4696. #u18927 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:2px 2px 2px 2px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u18927_text {
  4704. border-width:0px;
  4705. word-wrap:break-word;
  4706. text-transform:none;
  4707. visibility:hidden;
  4708. }
  4709. #u18928_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:134px;
  4715. height:30px;
  4716. }
  4717. #u18928 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:68px;
  4721. top:306px;
  4722. width:134px;
  4723. height:30px;
  4724. display:flex;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. }
  4730. #u18928 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u18928_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u18929_img {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:135px;
  4749. height:30px;
  4750. }
  4751. #u18929 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:202px;
  4755. top:306px;
  4756. width:135px;
  4757. height:30px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:14px;
  4763. }
  4764. #u18929 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u18929_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u18930_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:134px;
  4783. height:30px;
  4784. }
  4785. #u18930 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:337px;
  4789. top:306px;
  4790. width:134px;
  4791. height:30px;
  4792. display:flex;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. }
  4798. #u18930 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 2px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u18930_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. visibility:hidden;
  4810. }
  4811. #u18931_img {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:162px;
  4817. height:30px;
  4818. }
  4819. #u18931 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:471px;
  4823. top:306px;
  4824. width:162px;
  4825. height:30px;
  4826. display:flex;
  4827. font-size:14px;
  4828. }
  4829. #u18931 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 2px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u18931_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u18932_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:162px;
  4848. height:30px;
  4849. }
  4850. #u18932 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:633px;
  4854. top:306px;
  4855. width:162px;
  4856. height:30px;
  4857. display:flex;
  4858. font-size:14px;
  4859. }
  4860. #u18932 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 2px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u18932_text {
  4868. border-width:0px;
  4869. word-wrap:break-word;
  4870. text-transform:none;
  4871. visibility:hidden;
  4872. }
  4873. #u18933_img {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:145px;
  4879. height:30px;
  4880. }
  4881. #u18933 {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:795px;
  4885. top:306px;
  4886. width:145px;
  4887. height:30px;
  4888. display:flex;
  4889. font-size:14px;
  4890. }
  4891. #u18933 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 2px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u18933_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. visibility:hidden;
  4903. }
  4904. #u18934_img {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:135px;
  4910. height:30px;
  4911. }
  4912. #u18934 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:940px;
  4916. top:306px;
  4917. width:135px;
  4918. height:30px;
  4919. display:flex;
  4920. font-size:14px;
  4921. }
  4922. #u18934 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 2px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u18934_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u18935_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:144px;
  4941. height:30px;
  4942. }
  4943. #u18935 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:1075px;
  4947. top:306px;
  4948. width:144px;
  4949. height:30px;
  4950. display:flex;
  4951. font-size:14px;
  4952. }
  4953. #u18935 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 2px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u18935_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u18936_img {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:68px;
  4972. height:30px;
  4973. }
  4974. #u18936 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:336px;
  4979. width:68px;
  4980. height:30px;
  4981. display:flex;
  4982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:14px;
  4986. }
  4987. #u18936 .text {
  4988. position:absolute;
  4989. align-self:center;
  4990. padding:2px 2px 2px 2px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u18936_text {
  4995. border-width:0px;
  4996. word-wrap:break-word;
  4997. text-transform:none;
  4998. visibility:hidden;
  4999. }
  5000. #u18937_img {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:134px;
  5006. height:30px;
  5007. }
  5008. #u18937 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:68px;
  5012. top:336px;
  5013. width:134px;
  5014. height:30px;
  5015. display:flex;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. }
  5021. #u18937 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 2px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u18937_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u18938_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:135px;
  5040. height:30px;
  5041. }
  5042. #u18938 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:202px;
  5046. top:336px;
  5047. width:135px;
  5048. height:30px;
  5049. display:flex;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:14px;
  5054. }
  5055. #u18938 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 2px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u18938_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u18939_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:134px;
  5074. height:30px;
  5075. }
  5076. #u18939 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:337px;
  5080. top:336px;
  5081. width:134px;
  5082. height:30px;
  5083. display:flex;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:14px;
  5088. }
  5089. #u18939 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 2px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u18939_text {
  5097. border-width:0px;
  5098. word-wrap:break-word;
  5099. text-transform:none;
  5100. visibility:hidden;
  5101. }
  5102. #u18940_img {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:162px;
  5108. height:30px;
  5109. }
  5110. #u18940 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:471px;
  5114. top:336px;
  5115. width:162px;
  5116. height:30px;
  5117. display:flex;
  5118. font-size:14px;
  5119. }
  5120. #u18940 .text {
  5121. position:absolute;
  5122. align-self:center;
  5123. padding:2px 2px 2px 2px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u18940_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. visibility:hidden;
  5132. }
  5133. #u18941_img {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:162px;
  5139. height:30px;
  5140. }
  5141. #u18941 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:633px;
  5145. top:336px;
  5146. width:162px;
  5147. height:30px;
  5148. display:flex;
  5149. font-size:14px;
  5150. }
  5151. #u18941 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 2px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u18941_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u18942_img {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:145px;
  5170. height:30px;
  5171. }
  5172. #u18942 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:795px;
  5176. top:336px;
  5177. width:145px;
  5178. height:30px;
  5179. display:flex;
  5180. font-size:14px;
  5181. }
  5182. #u18942 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 2px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u18942_text {
  5190. border-width:0px;
  5191. word-wrap:break-word;
  5192. text-transform:none;
  5193. visibility:hidden;
  5194. }
  5195. #u18943_img {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:135px;
  5201. height:30px;
  5202. }
  5203. #u18943 {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:940px;
  5207. top:336px;
  5208. width:135px;
  5209. height:30px;
  5210. display:flex;
  5211. font-size:14px;
  5212. }
  5213. #u18943 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 2px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u18943_text {
  5221. border-width:0px;
  5222. word-wrap:break-word;
  5223. text-transform:none;
  5224. visibility:hidden;
  5225. }
  5226. #u18944_img {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:144px;
  5232. height:30px;
  5233. }
  5234. #u18944 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:1075px;
  5238. top:336px;
  5239. width:144px;
  5240. height:30px;
  5241. display:flex;
  5242. font-size:14px;
  5243. }
  5244. #u18944 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 2px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u18944_text {
  5252. border-width:0px;
  5253. word-wrap:break-word;
  5254. text-transform:none;
  5255. visibility:hidden;
  5256. }
  5257. #u18945_img {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:68px;
  5263. height:30px;
  5264. }
  5265. #u18945 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:0px;
  5269. top:366px;
  5270. width:68px;
  5271. height:30px;
  5272. display:flex;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:14px;
  5277. }
  5278. #u18945 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 2px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u18945_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u18946_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:134px;
  5297. height:30px;
  5298. }
  5299. #u18946 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:68px;
  5303. top:366px;
  5304. width:134px;
  5305. height:30px;
  5306. display:flex;
  5307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. }
  5312. #u18946 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 2px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u18946_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. visibility:hidden;
  5324. }
  5325. #u18947_img {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:135px;
  5331. height:30px;
  5332. }
  5333. #u18947 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:202px;
  5337. top:366px;
  5338. width:135px;
  5339. height:30px;
  5340. display:flex;
  5341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:14px;
  5345. }
  5346. #u18947 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:2px 2px 2px 2px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u18947_text {
  5354. border-width:0px;
  5355. word-wrap:break-word;
  5356. text-transform:none;
  5357. visibility:hidden;
  5358. }
  5359. #u18948_img {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:134px;
  5365. height:30px;
  5366. }
  5367. #u18948 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:337px;
  5371. top:366px;
  5372. width:134px;
  5373. height:30px;
  5374. display:flex;
  5375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:14px;
  5379. }
  5380. #u18948 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 2px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u18948_text {
  5388. border-width:0px;
  5389. word-wrap:break-word;
  5390. text-transform:none;
  5391. visibility:hidden;
  5392. }
  5393. #u18949_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:162px;
  5399. height:30px;
  5400. }
  5401. #u18949 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:471px;
  5405. top:366px;
  5406. width:162px;
  5407. height:30px;
  5408. display:flex;
  5409. font-size:14px;
  5410. }
  5411. #u18949 .text {
  5412. position:absolute;
  5413. align-self:center;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u18949_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. visibility:hidden;
  5423. }
  5424. #u18950_img {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:162px;
  5430. height:30px;
  5431. }
  5432. #u18950 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:633px;
  5436. top:366px;
  5437. width:162px;
  5438. height:30px;
  5439. display:flex;
  5440. font-size:14px;
  5441. }
  5442. #u18950 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:2px 2px 2px 2px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u18950_text {
  5450. border-width:0px;
  5451. word-wrap:break-word;
  5452. text-transform:none;
  5453. visibility:hidden;
  5454. }
  5455. #u18951_img {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:145px;
  5461. height:30px;
  5462. }
  5463. #u18951 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:795px;
  5467. top:366px;
  5468. width:145px;
  5469. height:30px;
  5470. display:flex;
  5471. font-size:14px;
  5472. }
  5473. #u18951 .text {
  5474. position:absolute;
  5475. align-self:center;
  5476. padding:2px 2px 2px 2px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u18951_text {
  5481. border-width:0px;
  5482. word-wrap:break-word;
  5483. text-transform:none;
  5484. visibility:hidden;
  5485. }
  5486. #u18952_img {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:135px;
  5492. height:30px;
  5493. }
  5494. #u18952 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:940px;
  5498. top:366px;
  5499. width:135px;
  5500. height:30px;
  5501. display:flex;
  5502. font-size:14px;
  5503. }
  5504. #u18952 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:2px 2px 2px 2px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u18952_text {
  5512. border-width:0px;
  5513. word-wrap:break-word;
  5514. text-transform:none;
  5515. visibility:hidden;
  5516. }
  5517. #u18953_img {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:144px;
  5523. height:30px;
  5524. }
  5525. #u18953 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:1075px;
  5529. top:366px;
  5530. width:144px;
  5531. height:30px;
  5532. display:flex;
  5533. font-size:14px;
  5534. }
  5535. #u18953 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 2px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u18953_text {
  5543. border-width:0px;
  5544. word-wrap:break-word;
  5545. text-transform:none;
  5546. visibility:hidden;
  5547. }
  5548. #u18954_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:68px;
  5554. height:30px;
  5555. }
  5556. #u18954 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:396px;
  5561. width:68px;
  5562. height:30px;
  5563. display:flex;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:14px;
  5568. }
  5569. #u18954 .text {
  5570. position:absolute;
  5571. align-self:center;
  5572. padding:2px 2px 2px 2px;
  5573. box-sizing:border-box;
  5574. width:100%;
  5575. }
  5576. #u18954_text {
  5577. border-width:0px;
  5578. word-wrap:break-word;
  5579. text-transform:none;
  5580. visibility:hidden;
  5581. }
  5582. #u18955_img {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:134px;
  5588. height:30px;
  5589. }
  5590. #u18955 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:68px;
  5594. top:396px;
  5595. width:134px;
  5596. height:30px;
  5597. display:flex;
  5598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5599. font-weight:400;
  5600. font-style:normal;
  5601. font-size:14px;
  5602. }
  5603. #u18955 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 2px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u18955_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u18956_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:135px;
  5622. height:30px;
  5623. }
  5624. #u18956 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:202px;
  5628. top:396px;
  5629. width:135px;
  5630. height:30px;
  5631. display:flex;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:14px;
  5636. }
  5637. #u18956 .text {
  5638. position:absolute;
  5639. align-self:center;
  5640. padding:2px 2px 2px 2px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u18956_text {
  5645. border-width:0px;
  5646. word-wrap:break-word;
  5647. text-transform:none;
  5648. visibility:hidden;
  5649. }
  5650. #u18957_img {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:0px;
  5654. top:0px;
  5655. width:134px;
  5656. height:30px;
  5657. }
  5658. #u18957 {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:337px;
  5662. top:396px;
  5663. width:134px;
  5664. height:30px;
  5665. display:flex;
  5666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5667. font-weight:400;
  5668. font-style:normal;
  5669. font-size:14px;
  5670. }
  5671. #u18957 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u18957_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u18958_img {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:162px;
  5690. height:30px;
  5691. }
  5692. #u18958 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:471px;
  5696. top:396px;
  5697. width:162px;
  5698. height:30px;
  5699. display:flex;
  5700. font-size:14px;
  5701. }
  5702. #u18958 .text {
  5703. position:absolute;
  5704. align-self:center;
  5705. padding:2px 2px 2px 2px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u18958_text {
  5710. border-width:0px;
  5711. word-wrap:break-word;
  5712. text-transform:none;
  5713. visibility:hidden;
  5714. }
  5715. #u18959_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:162px;
  5721. height:30px;
  5722. }
  5723. #u18959 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:633px;
  5727. top:396px;
  5728. width:162px;
  5729. height:30px;
  5730. display:flex;
  5731. font-size:14px;
  5732. }
  5733. #u18959 .text {
  5734. position:absolute;
  5735. align-self:center;
  5736. padding:2px 2px 2px 2px;
  5737. box-sizing:border-box;
  5738. width:100%;
  5739. }
  5740. #u18959_text {
  5741. border-width:0px;
  5742. word-wrap:break-word;
  5743. text-transform:none;
  5744. visibility:hidden;
  5745. }
  5746. #u18960_img {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:145px;
  5752. height:30px;
  5753. }
  5754. #u18960 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:795px;
  5758. top:396px;
  5759. width:145px;
  5760. height:30px;
  5761. display:flex;
  5762. font-size:14px;
  5763. }
  5764. #u18960 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 2px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u18960_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u18961_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:135px;
  5783. height:30px;
  5784. }
  5785. #u18961 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:940px;
  5789. top:396px;
  5790. width:135px;
  5791. height:30px;
  5792. display:flex;
  5793. font-size:14px;
  5794. }
  5795. #u18961 .text {
  5796. position:absolute;
  5797. align-self:center;
  5798. padding:2px 2px 2px 2px;
  5799. box-sizing:border-box;
  5800. width:100%;
  5801. }
  5802. #u18961_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. visibility:hidden;
  5807. }
  5808. #u18962_img {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:144px;
  5814. height:30px;
  5815. }
  5816. #u18962 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:1075px;
  5820. top:396px;
  5821. width:144px;
  5822. height:30px;
  5823. display:flex;
  5824. font-size:14px;
  5825. }
  5826. #u18962 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 2px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u18962_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u18963_div {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:80px;
  5845. height:30px;
  5846. background:inherit;
  5847. background-color:rgba(24, 144, 255, 1);
  5848. border:none;
  5849. border-radius:4px;
  5850. -moz-box-shadow:none;
  5851. -webkit-box-shadow:none;
  5852. box-shadow:none;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. color:#FFFFFF;
  5858. }
  5859. #u18963 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:353px;
  5863. top:190px;
  5864. width:80px;
  5865. height:30px;
  5866. display:flex;
  5867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:14px;
  5871. color:#FFFFFF;
  5872. }
  5873. #u18963 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:2px 2px 2px 2px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u18963_text {
  5881. border-width:0px;
  5882. word-wrap:break-word;
  5883. text-transform:none;
  5884. }
  5885. #u18964_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:100px;
  5891. height:30px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 1);
  5894. box-sizing:border-box;
  5895. border-width:1px;
  5896. border-style:solid;
  5897. border-color:rgba(170, 170, 170, 1);
  5898. border-radius:4px;
  5899. -moz-box-shadow:none;
  5900. -webkit-box-shadow:none;
  5901. box-shadow:none;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. }
  5907. #u18964 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:443px;
  5911. top:190px;
  5912. width:100px;
  5913. height:30px;
  5914. display:flex;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:14px;
  5919. }
  5920. #u18964 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:2px 2px 2px 2px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u18964_text {
  5928. border-width:0px;
  5929. word-wrap:break-word;
  5930. text-transform:none;
  5931. }
  5932. #u18965 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:0px;
  5938. height:0px;
  5939. }
  5940. #u18966_div {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:140px;
  5946. height:30px;
  5947. background:inherit;
  5948. background-color:rgba(255, 255, 255, 1);
  5949. box-sizing:border-box;
  5950. border-width:1px;
  5951. border-style:solid;
  5952. border-color:rgba(215, 215, 215, 1);
  5953. border-radius:4px;
  5954. -moz-box-shadow:none;
  5955. -webkit-box-shadow:none;
  5956. box-shadow:none;
  5957. font-size:14px;
  5958. }
  5959. #u18966 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:503px;
  5963. top:140px;
  5964. width:140px;
  5965. height:30px;
  5966. display:flex;
  5967. font-size:14px;
  5968. }
  5969. #u18966 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 2px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u18966_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u18967_input {
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:134px;
  5987. height:23px;
  5988. padding:2px 2px 2px 2px;
  5989. font-family:'ArialMT', 'Arial', sans-serif;
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:14px;
  5993. letter-spacing:normal;
  5994. color:#AAAAAA;
  5995. vertical-align:none;
  5996. text-align:left;
  5997. text-transform:none;
  5998. background-color:transparent;
  5999. border-color:transparent;
  6000. }
  6001. #u18967_input.disabled {
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:134px;
  6006. height:23px;
  6007. padding:2px 2px 2px 2px;
  6008. font-family:'ArialMT', 'Arial', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:14px;
  6012. letter-spacing:normal;
  6013. color:#AAAAAA;
  6014. vertical-align:none;
  6015. text-align:left;
  6016. text-transform:none;
  6017. background-color:transparent;
  6018. border-color:transparent;
  6019. }
  6020. #u18967_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:134px;
  6026. height:23px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 1);
  6029. border:none;
  6030. border-radius:0px;
  6031. -moz-box-shadow:none;
  6032. -webkit-box-shadow:none;
  6033. box-shadow:none;
  6034. font-size:14px;
  6035. color:#AAAAAA;
  6036. }
  6037. #u18967 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:507px;
  6041. top:142px;
  6042. width:134px;
  6043. height:23px;
  6044. display:flex;
  6045. font-size:14px;
  6046. color:#AAAAAA;
  6047. }
  6048. #u18967 .text {
  6049. position:absolute;
  6050. align-self:flex-start;
  6051. padding:2px 2px 2px 2px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u18967_div.disabled {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:134px;
  6061. height:23px;
  6062. background:inherit;
  6063. background-color:rgba(240, 240, 240, 1);
  6064. border:none;
  6065. border-radius:0px;
  6066. -moz-box-shadow:none;
  6067. -webkit-box-shadow:none;
  6068. box-shadow:none;
  6069. font-size:14px;
  6070. color:#AAAAAA;
  6071. }
  6072. #u18967.disabled {
  6073. }
  6074. .u18967_input_option {
  6075. font-size:14px;
  6076. }
  6077. #u18968 label {
  6078. left:0px;
  6079. width:100%;
  6080. }
  6081. #u18968_img {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:12px;
  6087. height:12px;
  6088. }
  6089. #u18968 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:367px;
  6093. top:247px;
  6094. width:42px;
  6095. height:16px;
  6096. display:flex;
  6097. }
  6098. #u18968 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:0px 2px 0px 2px;
  6102. box-sizing:border-box;
  6103. }
  6104. #u18968_img.selected {
  6105. }
  6106. #u18968.selected {
  6107. }
  6108. #u18968_img.disabled {
  6109. }
  6110. #u18968.disabled {
  6111. }
  6112. #u18968_img.selectedDisabled {
  6113. }
  6114. #u18968.selectedDisabled {
  6115. }
  6116. #u18968_text {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:14px;
  6120. top:0px;
  6121. width:26px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. visibility:hidden;
  6125. }
  6126. #u18968_input {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:0px;
  6132. height:0px;
  6133. opacity:0;
  6134. }
  6135. #u18969 label {
  6136. left:0px;
  6137. width:100%;
  6138. }
  6139. #u18969_img {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:12px;
  6145. height:12px;
  6146. }
  6147. #u18969 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:367px;
  6151. top:283px;
  6152. width:42px;
  6153. height:16px;
  6154. display:flex;
  6155. }
  6156. #u18969 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:0px 2px 0px 2px;
  6160. box-sizing:border-box;
  6161. }
  6162. #u18969_img.selected {
  6163. }
  6164. #u18969.selected {
  6165. }
  6166. #u18969_img.disabled {
  6167. }
  6168. #u18969.disabled {
  6169. }
  6170. #u18969_img.selectedDisabled {
  6171. }
  6172. #u18969.selectedDisabled {
  6173. }
  6174. #u18969_text {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:14px;
  6178. top:0px;
  6179. width:26px;
  6180. word-wrap:break-word;
  6181. text-transform:none;
  6182. visibility:hidden;
  6183. }
  6184. #u18969_input {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:0px;
  6190. height:0px;
  6191. opacity:0;
  6192. }
  6193. #u18970 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:0px;
  6197. top:0px;
  6198. width:0px;
  6199. height:0px;
  6200. }
  6201. #u18971_div {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:140px;
  6207. height:30px;
  6208. background:inherit;
  6209. background-color:rgba(255, 255, 255, 1);
  6210. box-sizing:border-box;
  6211. border-width:1px;
  6212. border-style:solid;
  6213. border-color:rgba(215, 215, 215, 1);
  6214. border-radius:4px;
  6215. -moz-box-shadow:none;
  6216. -webkit-box-shadow:none;
  6217. box-shadow:none;
  6218. font-size:14px;
  6219. }
  6220. #u18971 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:803px;
  6224. top:140px;
  6225. width:140px;
  6226. height:30px;
  6227. display:flex;
  6228. font-size:14px;
  6229. }
  6230. #u18971 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 2px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u18971_text {
  6238. border-width:0px;
  6239. word-wrap:break-word;
  6240. text-transform:none;
  6241. visibility:hidden;
  6242. }
  6243. #u18972_input {
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:134px;
  6248. height:23px;
  6249. padding:2px 2px 2px 2px;
  6250. font-family:'ArialMT', 'Arial', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:14px;
  6254. letter-spacing:normal;
  6255. color:#AAAAAA;
  6256. vertical-align:none;
  6257. text-align:left;
  6258. text-transform:none;
  6259. background-color:transparent;
  6260. border-color:transparent;
  6261. }
  6262. #u18972_input.disabled {
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:134px;
  6267. height:23px;
  6268. padding:2px 2px 2px 2px;
  6269. font-family:'ArialMT', 'Arial', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:14px;
  6273. letter-spacing:normal;
  6274. color:#AAAAAA;
  6275. vertical-align:none;
  6276. text-align:left;
  6277. text-transform:none;
  6278. background-color:transparent;
  6279. border-color:transparent;
  6280. }
  6281. #u18972_div {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:134px;
  6287. height:23px;
  6288. background:inherit;
  6289. background-color:rgba(255, 255, 255, 1);
  6290. border:none;
  6291. border-radius:0px;
  6292. -moz-box-shadow:none;
  6293. -webkit-box-shadow:none;
  6294. box-shadow:none;
  6295. font-size:14px;
  6296. color:#AAAAAA;
  6297. }
  6298. #u18972 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:807px;
  6302. top:142px;
  6303. width:134px;
  6304. height:23px;
  6305. display:flex;
  6306. font-size:14px;
  6307. color:#AAAAAA;
  6308. }
  6309. #u18972 .text {
  6310. position:absolute;
  6311. align-self:flex-start;
  6312. padding:2px 2px 2px 2px;
  6313. box-sizing:border-box;
  6314. width:100%;
  6315. }
  6316. #u18972_div.disabled {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:134px;
  6322. height:23px;
  6323. background:inherit;
  6324. background-color:rgba(240, 240, 240, 1);
  6325. border:none;
  6326. border-radius:0px;
  6327. -moz-box-shadow:none;
  6328. -webkit-box-shadow:none;
  6329. box-shadow:none;
  6330. font-size:14px;
  6331. color:#AAAAAA;
  6332. }
  6333. #u18972.disabled {
  6334. }
  6335. .u18972_input_option {
  6336. font-size:14px;
  6337. }
  6338. #u18973 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:0px;
  6344. height:0px;
  6345. }
  6346. #u18974_div {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:60px;
  6352. height:30px;
  6353. background:inherit;
  6354. background-color:rgba(24, 144, 255, 1);
  6355. border:none;
  6356. border-radius:4px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:14px;
  6364. color:#FFFFFF;
  6365. }
  6366. #u18974 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1113px;
  6370. top:140px;
  6371. width:60px;
  6372. height:30px;
  6373. display:flex;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. color:#FFFFFF;
  6379. }
  6380. #u18974 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u18974_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. }
  6392. #u18975_div {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:0px;
  6396. top:0px;
  6397. width:60px;
  6398. height:30px;
  6399. background:inherit;
  6400. background-color:rgba(255, 255, 255, 1);
  6401. box-sizing:border-box;
  6402. border-width:1px;
  6403. border-style:solid;
  6404. border-color:rgba(170, 170, 170, 1);
  6405. border-radius:4px;
  6406. -moz-box-shadow:none;
  6407. -webkit-box-shadow:none;
  6408. box-shadow:none;
  6409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6410. font-weight:400;
  6411. font-style:normal;
  6412. font-size:14px;
  6413. }
  6414. #u18975 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:1183px;
  6418. top:140px;
  6419. width:60px;
  6420. height:30px;
  6421. display:flex;
  6422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:14px;
  6426. }
  6427. #u18975 .text {
  6428. position:absolute;
  6429. align-self:center;
  6430. padding:2px 2px 2px 2px;
  6431. box-sizing:border-box;
  6432. width:100%;
  6433. }
  6434. #u18975_text {
  6435. border-width:0px;
  6436. word-wrap:break-word;
  6437. text-transform:none;
  6438. }
  6439. #u18976_div {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:751px;
  6445. height:50px;
  6446. background:inherit;
  6447. background-color:rgba(255, 255, 255, 0);
  6448. border:none;
  6449. border-radius:0px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:18px;
  6457. color:#D9001B;
  6458. }
  6459. #u18976 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:409px;
  6463. top:709px;
  6464. width:751px;
  6465. height:50px;
  6466. display:flex;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:18px;
  6471. color:#D9001B;
  6472. }
  6473. #u18976 .text {
  6474. position:absolute;
  6475. align-self:flex-start;
  6476. padding:0px 0px 0px 0px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u18976_text {
  6481. border-width:0px;
  6482. white-space:nowrap;
  6483. text-transform:none;
  6484. }
  6485. #u18978_div {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:200px;
  6491. height:1180px;
  6492. background:inherit;
  6493. background-color:rgba(255, 255, 255, 1);
  6494. border:none;
  6495. border-radius:0px;
  6496. -moz-box-shadow:none;
  6497. -webkit-box-shadow:none;
  6498. box-shadow:none;
  6499. }
  6500. #u18978 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:120px;
  6504. top:50px;
  6505. width:200px;
  6506. height:1180px;
  6507. display:flex;
  6508. }
  6509. #u18978 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:2px 2px 2px 2px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u18978_text {
  6517. border-width:0px;
  6518. word-wrap:break-word;
  6519. text-transform:none;
  6520. visibility:hidden;
  6521. }
  6522. #u18979_div {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:200px;
  6528. height:60px;
  6529. background:inherit;
  6530. background-color:rgba(224, 231, 247, 1);
  6531. border:none;
  6532. border-radius:0px;
  6533. -moz-box-shadow:none;
  6534. -webkit-box-shadow:none;
  6535. box-shadow:none;
  6536. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6537. font-weight:500;
  6538. font-style:normal;
  6539. font-size:18px;
  6540. }
  6541. #u18979 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:120px;
  6545. top:50px;
  6546. width:200px;
  6547. height:60px;
  6548. display:flex;
  6549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6550. font-weight:500;
  6551. font-style:normal;
  6552. font-size:18px;
  6553. }
  6554. #u18979 .text {
  6555. position:absolute;
  6556. align-self:center;
  6557. padding:0px 0px 0px 20px;
  6558. box-sizing:border-box;
  6559. width:100%;
  6560. }
  6561. #u18979_text {
  6562. border-width:0px;
  6563. word-wrap:break-word;
  6564. text-transform:none;
  6565. }
  6566. #u18980_div {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:65px;
  6572. height:22px;
  6573. background:inherit;
  6574. background-color:rgba(255, 255, 255, 0);
  6575. border:none;
  6576. border-radius:0px;
  6577. -moz-box-shadow:none;
  6578. -webkit-box-shadow:none;
  6579. box-shadow:none;
  6580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:16px;
  6584. }
  6585. #u18980 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:143px;
  6589. top:163px;
  6590. width:65px;
  6591. height:22px;
  6592. display:flex;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:16px;
  6597. }
  6598. #u18980 .text {
  6599. position:absolute;
  6600. align-self:flex-start;
  6601. padding:0px 0px 0px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u18980_text {
  6606. border-width:0px;
  6607. white-space:nowrap;
  6608. text-transform:none;
  6609. }
  6610. #u18981_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:49px;
  6616. height:17px;
  6617. background:inherit;
  6618. background-color:rgba(255, 255, 255, 0);
  6619. border:none;
  6620. border-radius:0px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. font-size:12px;
  6628. color:#AAAAAA;
  6629. }
  6630. #u18981 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:143px;
  6634. top:130px;
  6635. width:49px;
  6636. height:17px;
  6637. display:flex;
  6638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6639. font-weight:400;
  6640. font-style:normal;
  6641. font-size:12px;
  6642. color:#AAAAAA;
  6643. }
  6644. #u18981 .text {
  6645. position:absolute;
  6646. align-self:flex-start;
  6647. padding:0px 0px 0px 0px;
  6648. box-sizing:border-box;
  6649. width:100%;
  6650. }
  6651. #u18981_text {
  6652. border-width:0px;
  6653. white-space:nowrap;
  6654. text-transform:none;
  6655. }
  6656. #u18982_div {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:65px;
  6662. height:22px;
  6663. background:inherit;
  6664. background-color:rgba(255, 255, 255, 0);
  6665. border:none;
  6666. border-radius:0px;
  6667. -moz-box-shadow:none;
  6668. -webkit-box-shadow:none;
  6669. box-shadow:none;
  6670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:16px;
  6674. }
  6675. #u18982 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:143px;
  6679. top:205px;
  6680. width:65px;
  6681. height:22px;
  6682. display:flex;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:16px;
  6687. }
  6688. #u18982 .text {
  6689. position:absolute;
  6690. align-self:flex-start;
  6691. padding:0px 0px 0px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u18982_text {
  6696. border-width:0px;
  6697. white-space:nowrap;
  6698. text-transform:none;
  6699. }
  6700. #u18983_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:65px;
  6706. height:22px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 0);
  6709. border:none;
  6710. border-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:16px;
  6718. }
  6719. #u18983 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:143px;
  6723. top:357px;
  6724. width:65px;
  6725. height:22px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:16px;
  6731. }
  6732. #u18983 .text {
  6733. position:absolute;
  6734. align-self:flex-start;
  6735. padding:0px 0px 0px 0px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u18983_text {
  6740. border-width:0px;
  6741. white-space:nowrap;
  6742. text-transform:none;
  6743. }
  6744. #u18984_div {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:65px;
  6750. height:22px;
  6751. background:inherit;
  6752. background-color:rgba(255, 255, 255, 0);
  6753. border:none;
  6754. border-radius:0px;
  6755. -moz-box-shadow:none;
  6756. -webkit-box-shadow:none;
  6757. box-shadow:none;
  6758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:16px;
  6762. }
  6763. #u18984 {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:143px;
  6767. top:452px;
  6768. width:65px;
  6769. height:22px;
  6770. display:flex;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:16px;
  6775. }
  6776. #u18984 .text {
  6777. position:absolute;
  6778. align-self:flex-start;
  6779. padding:0px 0px 0px 0px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u18984_text {
  6784. border-width:0px;
  6785. white-space:nowrap;
  6786. text-transform:none;
  6787. }
  6788. #u18985_img {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:201px;
  6794. height:2px;
  6795. }
  6796. #u18985 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:120px;
  6800. top:399px;
  6801. width:200px;
  6802. height:1px;
  6803. display:flex;
  6804. }
  6805. #u18985 .text {
  6806. position:absolute;
  6807. align-self:center;
  6808. padding:2px 2px 2px 2px;
  6809. box-sizing:border-box;
  6810. width:100%;
  6811. }
  6812. #u18985_text {
  6813. border-width:0px;
  6814. word-wrap:break-word;
  6815. text-transform:none;
  6816. visibility:hidden;
  6817. }
  6818. #u18986_div {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:49px;
  6824. height:17px;
  6825. background:inherit;
  6826. background-color:rgba(255, 255, 255, 0);
  6827. border:none;
  6828. border-radius:0px;
  6829. -moz-box-shadow:none;
  6830. -webkit-box-shadow:none;
  6831. box-shadow:none;
  6832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:12px;
  6836. color:#AAAAAA;
  6837. }
  6838. #u18986 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:143px;
  6842. top:419px;
  6843. width:49px;
  6844. height:17px;
  6845. display:flex;
  6846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#AAAAAA;
  6851. }
  6852. #u18986 .text {
  6853. position:absolute;
  6854. align-self:flex-start;
  6855. padding:0px 0px 0px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u18986_text {
  6860. border-width:0px;
  6861. white-space:nowrap;
  6862. text-transform:none;
  6863. }
  6864. #u18987_div {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:0px;
  6868. top:0px;
  6869. width:65px;
  6870. height:22px;
  6871. background:inherit;
  6872. background-color:rgba(255, 255, 255, 0);
  6873. border:none;
  6874. border-radius:0px;
  6875. -moz-box-shadow:none;
  6876. -webkit-box-shadow:none;
  6877. box-shadow:none;
  6878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6879. font-weight:400;
  6880. font-style:normal;
  6881. font-size:16px;
  6882. }
  6883. #u18987 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:143px;
  6887. top:494px;
  6888. width:65px;
  6889. height:22px;
  6890. display:flex;
  6891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:16px;
  6895. }
  6896. #u18987 .text {
  6897. position:absolute;
  6898. align-self:flex-start;
  6899. padding:0px 0px 0px 0px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u18987_text {
  6904. border-width:0px;
  6905. white-space:nowrap;
  6906. text-transform:none;
  6907. }
  6908. #u18988_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:65px;
  6914. height:22px;
  6915. background:inherit;
  6916. background-color:rgba(255, 255, 255, 0);
  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-Regular', 'PingFang SC', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:16px;
  6926. }
  6927. #u18988 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:143px;
  6931. top:247px;
  6932. width:65px;
  6933. height:22px;
  6934. display:flex;
  6935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6936. font-weight:400;
  6937. font-style:normal;
  6938. font-size:16px;
  6939. }
  6940. #u18988 .text {
  6941. position:absolute;
  6942. align-self:flex-start;
  6943. padding:0px 0px 0px 0px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u18988_text {
  6948. border-width:0px;
  6949. white-space:nowrap;
  6950. text-transform:none;
  6951. }
  6952. #u18989_div {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:73px;
  6958. height:17px;
  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:12px;
  6970. color:#AAAAAA;
  6971. }
  6972. #u18989 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:143px;
  6976. top:316px;
  6977. width:73px;
  6978. height:17px;
  6979. display:flex;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:12px;
  6984. color:#AAAAAA;
  6985. }
  6986. #u18989 .text {
  6987. position:absolute;
  6988. align-self:flex-start;
  6989. padding:0px 0px 0px 0px;
  6990. box-sizing:border-box;
  6991. width:100%;
  6992. }
  6993. #u18989_text {
  6994. border-width:0px;
  6995. white-space:nowrap;
  6996. text-transform:none;
  6997. }
  6998. #u18990_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:201px;
  7004. height:2px;
  7005. }
  7006. #u18990 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:120px;
  7010. top:296px;
  7011. width:200px;
  7012. height:1px;
  7013. display:flex;
  7014. }
  7015. #u18990 .text {
  7016. position:absolute;
  7017. align-self:center;
  7018. padding:2px 2px 2px 2px;
  7019. box-sizing:border-box;
  7020. width:100%;
  7021. }
  7022. #u18990_text {
  7023. border-width:0px;
  7024. word-wrap:break-word;
  7025. text-transform:none;
  7026. visibility:hidden;
  7027. }
  7028. #u18991_div {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:1116px;
  7034. height:80px;
  7035. background:inherit;
  7036. background-color:rgba(255, 255, 255, 0);
  7037. border:none;
  7038. border-left:0px;
  7039. border-top:0px;
  7040. border-right:0px;
  7041. border-radius:0px;
  7042. border-bottom-right-radius:0px;
  7043. border-bottom-left-radius:0px;
  7044. -moz-box-shadow:none;
  7045. -webkit-box-shadow:none;
  7046. box-shadow:none;
  7047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:18px;
  7051. color:#1890FF;
  7052. line-height:40px;
  7053. }
  7054. #u18991 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:375px;
  7058. top:859px;
  7059. width:1116px;
  7060. height:80px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:18px;
  7066. color:#1890FF;
  7067. line-height:40px;
  7068. }
  7069. #u18991 .text {
  7070. position:absolute;
  7071. align-self:center;
  7072. padding:0px 0px 0px 0px;
  7073. box-sizing:border-box;
  7074. width:100%;
  7075. }
  7076. #u18991_text {
  7077. border-width:0px;
  7078. word-wrap:break-word;
  7079. text-transform:none;
  7080. }
  7081. #u18992 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:0px;
  7087. height:0px;
  7088. }
  7089. #u18993_div {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:140px;
  7095. height:30px;
  7096. background:inherit;
  7097. background-color:rgba(255, 255, 255, 1);
  7098. box-sizing:border-box;
  7099. border-width:1px;
  7100. border-style:solid;
  7101. border-color:rgba(215, 215, 215, 1);
  7102. border-radius:4px;
  7103. -moz-box-shadow:none;
  7104. -webkit-box-shadow:none;
  7105. box-shadow:none;
  7106. font-size:14px;
  7107. }
  7108. #u18993 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:353px;
  7112. top:140px;
  7113. width:140px;
  7114. height:30px;
  7115. display:flex;
  7116. font-size:14px;
  7117. }
  7118. #u18993 .text {
  7119. position:absolute;
  7120. align-self:center;
  7121. padding:2px 2px 2px 2px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u18993_text {
  7126. border-width:0px;
  7127. word-wrap:break-word;
  7128. text-transform:none;
  7129. visibility:hidden;
  7130. }
  7131. #u18994_input {
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:134px;
  7136. height:23px;
  7137. padding:2px 2px 2px 2px;
  7138. font-family:'ArialMT', 'Arial', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:14px;
  7142. letter-spacing:normal;
  7143. color:#AAAAAA;
  7144. vertical-align:none;
  7145. text-align:left;
  7146. text-transform:none;
  7147. background-color:transparent;
  7148. border-color:transparent;
  7149. }
  7150. #u18994_input.disabled {
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:134px;
  7155. height:23px;
  7156. padding:2px 2px 2px 2px;
  7157. font-family:'ArialMT', 'Arial', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:14px;
  7161. letter-spacing:normal;
  7162. color:#AAAAAA;
  7163. vertical-align:none;
  7164. text-align:left;
  7165. text-transform:none;
  7166. background-color:transparent;
  7167. border-color:transparent;
  7168. }
  7169. #u18994_div {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:134px;
  7175. height:23px;
  7176. background:inherit;
  7177. background-color:rgba(255, 255, 255, 1);
  7178. border:none;
  7179. border-radius:0px;
  7180. -moz-box-shadow:none;
  7181. -webkit-box-shadow:none;
  7182. box-shadow:none;
  7183. font-size:14px;
  7184. color:#AAAAAA;
  7185. }
  7186. #u18994 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:357px;
  7190. top:142px;
  7191. width:134px;
  7192. height:23px;
  7193. display:flex;
  7194. font-size:14px;
  7195. color:#AAAAAA;
  7196. }
  7197. #u18994 .text {
  7198. position:absolute;
  7199. align-self:flex-start;
  7200. padding:2px 2px 2px 2px;
  7201. box-sizing:border-box;
  7202. width:100%;
  7203. }
  7204. #u18994_div.disabled {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:134px;
  7210. height:23px;
  7211. background:inherit;
  7212. background-color:rgba(240, 240, 240, 1);
  7213. border:none;
  7214. border-radius:0px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-size:14px;
  7219. color:#AAAAAA;
  7220. }
  7221. #u18994.disabled {
  7222. }
  7223. .u18994_input_option {
  7224. font-size:14px;
  7225. }
  7226. #u18995_div {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:379px;
  7232. height:20px;
  7233. background:inherit;
  7234. background-color:rgba(255, 255, 255, 0);
  7235. border:none;
  7236. border-left:0px;
  7237. border-top:0px;
  7238. border-right:0px;
  7239. border-radius:0px;
  7240. border-bottom-right-radius:0px;
  7241. border-bottom-left-radius:0px;
  7242. -moz-box-shadow:none;
  7243. -webkit-box-shadow:none;
  7244. box-shadow:none;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:14px;
  7249. color:#7F7F7F;
  7250. }
  7251. #u18995 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:352px;
  7255. top:100px;
  7256. width:379px;
  7257. height:20px;
  7258. display:flex;
  7259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:14px;
  7263. color:#7F7F7F;
  7264. }
  7265. #u18995 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:0px 0px 0px 0px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u18995_text {
  7273. border-width:0px;
  7274. white-space:nowrap;
  7275. text-transform:none;
  7276. }
  7277. #u18997 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:0px;
  7283. height:0px;
  7284. }
  7285. #u18998_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:30px;
  7291. height:30px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 1);
  7294. box-sizing:border-box;
  7295. border-width:1px;
  7296. border-style:solid;
  7297. border-color:rgba(228, 228, 228, 1);
  7298. border-radius:4px;
  7299. -moz-box-shadow:none;
  7300. -webkit-box-shadow:none;
  7301. box-shadow:none;
  7302. font-family:'Microsoft YaHei', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:14px;
  7306. }
  7307. #u18998 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:996px;
  7311. top:1183px;
  7312. width:30px;
  7313. height:30px;
  7314. display:flex;
  7315. font-family:'Microsoft YaHei', sans-serif;
  7316. font-weight:400;
  7317. font-style:normal;
  7318. font-size:14px;
  7319. }
  7320. #u18998 .text {
  7321. position:absolute;
  7322. align-self:center;
  7323. padding:2px 2px 2px 2px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u18998_text {
  7328. border-width:0px;
  7329. word-wrap:break-word;
  7330. text-transform:none;
  7331. }
  7332. #u18999_div {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:49px;
  7338. height:30px;
  7339. background:inherit;
  7340. background-color:rgba(255, 255, 255, 0);
  7341. box-sizing:border-box;
  7342. border-width:1px;
  7343. border-style:solid;
  7344. border-color:rgba(188, 188, 188, 1);
  7345. border-radius:4px;
  7346. -moz-box-shadow:none;
  7347. -webkit-box-shadow:none;
  7348. box-shadow:none;
  7349. font-family:'Microsoft YaHei', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:14px;
  7353. color:#1E1E1E;
  7354. }
  7355. #u18999 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:1512px;
  7359. top:1183px;
  7360. width:49px;
  7361. height:30px;
  7362. display:flex;
  7363. font-family:'Microsoft YaHei', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:14px;
  7367. color:#1E1E1E;
  7368. }
  7369. #u18999 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:5px 10px 5px 10px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u18999_text {
  7377. border-width:0px;
  7378. white-space:nowrap;
  7379. text-transform:none;
  7380. }
  7381. #u19000 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:0px;
  7387. height:0px;
  7388. }
  7389. #u19001_div {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:33px;
  7395. height:24px;
  7396. background:inherit;
  7397. background-color:rgba(255, 255, 255, 1);
  7398. border:none;
  7399. border-radius:0px;
  7400. -moz-box-shadow:none;
  7401. -webkit-box-shadow:none;
  7402. box-shadow:none;
  7403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:14px;
  7407. color:#BCBCBC;
  7408. text-align:left;
  7409. }
  7410. #u19001 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:1280px;
  7414. top:1186px;
  7415. width:33px;
  7416. height:24px;
  7417. display:flex;
  7418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7419. font-weight:400;
  7420. font-style:normal;
  7421. font-size:14px;
  7422. color:#BCBCBC;
  7423. text-align:left;
  7424. }
  7425. #u19001 .text {
  7426. position:absolute;
  7427. align-self:center;
  7428. padding:2px 2px 2px 2px;
  7429. box-sizing:border-box;
  7430. width:100%;
  7431. }
  7432. #u19001_text {
  7433. border-width:0px;
  7434. white-space:nowrap;
  7435. text-transform:none;
  7436. }
  7437. #u19002_div {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:40px;
  7443. height:30px;
  7444. background:inherit;
  7445. background-color:rgba(255, 255, 255, 1);
  7446. box-sizing:border-box;
  7447. border-width:1px;
  7448. border-style:solid;
  7449. border-color:rgba(228, 228, 228, 1);
  7450. border-radius:4px;
  7451. -moz-box-shadow:none;
  7452. -webkit-box-shadow:none;
  7453. box-shadow:none;
  7454. font-family:'Microsoft YaHei', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. }
  7459. #u19002 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:1315px;
  7463. top:1183px;
  7464. width:40px;
  7465. height:30px;
  7466. display:flex;
  7467. font-family:'Microsoft YaHei', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:14px;
  7471. }
  7472. #u19002 .text {
  7473. position:absolute;
  7474. align-self:center;
  7475. padding:2px 2px 2px 2px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u19002_text {
  7480. border-width:0px;
  7481. word-wrap:break-word;
  7482. text-transform:none;
  7483. visibility:hidden;
  7484. }
  7485. #u19003_div {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:19px;
  7491. height:24px;
  7492. background:inherit;
  7493. background-color:rgba(255, 255, 255, 1);
  7494. border:none;
  7495. border-radius:0px;
  7496. -moz-box-shadow:none;
  7497. -webkit-box-shadow:none;
  7498. box-shadow:none;
  7499. font-family:'Microsoft YaHei', sans-serif;
  7500. font-weight:400;
  7501. font-style:normal;
  7502. font-size:14px;
  7503. color:#BCBCBC;
  7504. text-align:left;
  7505. }
  7506. #u19003 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:1357px;
  7510. top:1187px;
  7511. width:19px;
  7512. height:24px;
  7513. display:flex;
  7514. font-family:'Microsoft YaHei', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:14px;
  7518. color:#BCBCBC;
  7519. text-align:left;
  7520. }
  7521. #u19003 .text {
  7522. position:absolute;
  7523. align-self:center;
  7524. padding:2px 2px 2px 2px;
  7525. box-sizing:border-box;
  7526. width:100%;
  7527. }
  7528. #u19003_text {
  7529. border-width:0px;
  7530. white-space:nowrap;
  7531. text-transform:none;
  7532. }
  7533. #u19004_input {
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:34px;
  7538. height:25px;
  7539. padding:2px 2px 2px 2px;
  7540. font-family:'Microsoft YaHei', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:13px;
  7544. letter-spacing:normal;
  7545. color:#000000;
  7546. vertical-align:none;
  7547. text-align:left;
  7548. text-transform:none;
  7549. background-color:transparent;
  7550. border-color:transparent;
  7551. }
  7552. #u19004_input.disabled {
  7553. position:absolute;
  7554. left:0px;
  7555. top:0px;
  7556. width:34px;
  7557. height:25px;
  7558. padding:2px 2px 2px 2px;
  7559. font-family:'Microsoft YaHei', sans-serif;
  7560. font-weight:400;
  7561. font-style:normal;
  7562. font-size:13px;
  7563. letter-spacing:normal;
  7564. color:#000000;
  7565. vertical-align:none;
  7566. text-align:left;
  7567. text-transform:none;
  7568. background-color:transparent;
  7569. border-color:transparent;
  7570. }
  7571. #u19004_div {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:34px;
  7577. height:25px;
  7578. background:inherit;
  7579. background-color:rgba(255, 255, 255, 1);
  7580. border:none;
  7581. border-radius:0px;
  7582. -moz-box-shadow:none;
  7583. -webkit-box-shadow:none;
  7584. box-shadow:none;
  7585. font-family:'Microsoft YaHei', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. }
  7589. #u19004 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:1318px;
  7593. top:1185px;
  7594. width:34px;
  7595. height:25px;
  7596. display:flex;
  7597. font-family:'Microsoft YaHei', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. }
  7601. #u19004 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 2px 2px 2px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u19004_div.disabled {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:34px;
  7614. height:25px;
  7615. background:inherit;
  7616. background-color:rgba(240, 240, 240, 1);
  7617. border:none;
  7618. border-radius:0px;
  7619. -moz-box-shadow:none;
  7620. -webkit-box-shadow:none;
  7621. box-shadow:none;
  7622. font-family:'Microsoft YaHei', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. }
  7626. #u19004.disabled {
  7627. }
  7628. #u19005_div {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:30px;
  7634. height:30px;
  7635. background:inherit;
  7636. background-color:rgba(41, 143, 255, 1);
  7637. border:none;
  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. color:#FFFFFF;
  7647. }
  7648. #u19005 {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:1030px;
  7652. top:1183px;
  7653. width:30px;
  7654. height:30px;
  7655. display:flex;
  7656. font-family:'Microsoft YaHei', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:14px;
  7660. color:#FFFFFF;
  7661. }
  7662. #u19005 .text {
  7663. position:absolute;
  7664. align-self:center;
  7665. padding:2px 2px 2px 2px;
  7666. box-sizing:border-box;
  7667. width:100%;
  7668. }
  7669. #u19005_text {
  7670. border-width:0px;
  7671. word-wrap:break-word;
  7672. text-transform:none;
  7673. }
  7674. #u19006_div {
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:0px;
  7678. top:0px;
  7679. width:30px;
  7680. height:30px;
  7681. background:inherit;
  7682. background-color:rgba(255, 255, 255, 1);
  7683. box-sizing:border-box;
  7684. border-width:1px;
  7685. border-style:solid;
  7686. border-color:rgba(228, 228, 228, 1);
  7687. border-radius:4px;
  7688. -moz-box-shadow:none;
  7689. -webkit-box-shadow:none;
  7690. box-shadow:none;
  7691. font-family:'Microsoft YaHei', sans-serif;
  7692. font-weight:400;
  7693. font-style:normal;
  7694. font-size:14px;
  7695. }
  7696. #u19006 {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:1064px;
  7700. top:1183px;
  7701. width:30px;
  7702. height:30px;
  7703. display:flex;
  7704. font-family:'Microsoft YaHei', sans-serif;
  7705. font-weight:400;
  7706. font-style:normal;
  7707. font-size:14px;
  7708. }
  7709. #u19006 .text {
  7710. position:absolute;
  7711. align-self:center;
  7712. padding:2px 2px 2px 2px;
  7713. box-sizing:border-box;
  7714. width:100%;
  7715. }
  7716. #u19006_text {
  7717. border-width:0px;
  7718. word-wrap:break-word;
  7719. text-transform:none;
  7720. }
  7721. #u19007_div {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:30px;
  7727. height:30px;
  7728. background:inherit;
  7729. background-color:rgba(255, 255, 255, 1);
  7730. box-sizing:border-box;
  7731. border-width:1px;
  7732. border-style:solid;
  7733. border-color:rgba(228, 228, 228, 1);
  7734. border-radius:4px;
  7735. -moz-box-shadow:none;
  7736. -webkit-box-shadow:none;
  7737. box-shadow:none;
  7738. font-family:'Microsoft YaHei', sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:14px;
  7742. }
  7743. #u19007 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:1098px;
  7747. top:1183px;
  7748. width:30px;
  7749. height:30px;
  7750. display:flex;
  7751. font-family:'Microsoft YaHei', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:14px;
  7755. }
  7756. #u19007 .text {
  7757. position:absolute;
  7758. align-self:center;
  7759. padding:2px 2px 2px 2px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u19007_text {
  7764. border-width:0px;
  7765. word-wrap:break-word;
  7766. text-transform:none;
  7767. }
  7768. #u19008_div {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:0px;
  7772. top:0px;
  7773. width:30px;
  7774. height:30px;
  7775. background:inherit;
  7776. background-color:rgba(255, 255, 255, 1);
  7777. border:none;
  7778. border-radius:4px;
  7779. -moz-box-shadow:none;
  7780. -webkit-box-shadow:none;
  7781. box-shadow:none;
  7782. font-family:'Microsoft YaHei', sans-serif;
  7783. font-weight:400;
  7784. font-style:normal;
  7785. font-size:14px;
  7786. }
  7787. #u19008 {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:1128px;
  7791. top:1183px;
  7792. width:30px;
  7793. height:30px;
  7794. display:flex;
  7795. font-family:'Microsoft YaHei', sans-serif;
  7796. font-weight:400;
  7797. font-style:normal;
  7798. font-size:14px;
  7799. }
  7800. #u19008 .text {
  7801. position:absolute;
  7802. align-self:center;
  7803. padding:2px 2px 2px 2px;
  7804. box-sizing:border-box;
  7805. width:100%;
  7806. }
  7807. #u19008_text {
  7808. border-width:0px;
  7809. word-wrap:break-word;
  7810. text-transform:none;
  7811. }
  7812. #u19009_div {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:30px;
  7818. height:30px;
  7819. background:inherit;
  7820. background-color:rgba(255, 255, 255, 1);
  7821. box-sizing:border-box;
  7822. border-width:1px;
  7823. border-style:solid;
  7824. border-color:rgba(228, 228, 228, 1);
  7825. border-radius:4px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'Microsoft YaHei', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:14px;
  7833. }
  7834. #u19009 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:1162px;
  7838. top:1183px;
  7839. width:30px;
  7840. height:30px;
  7841. display:flex;
  7842. font-family:'Microsoft YaHei', sans-serif;
  7843. font-weight:400;
  7844. font-style:normal;
  7845. font-size:14px;
  7846. }
  7847. #u19009 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 2px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u19009_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. }
  7859. #u19010_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:32px;
  7865. height:21px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. border:none;
  7869. border-radius:15px;
  7870. -moz-box-shadow:none;
  7871. -webkit-box-shadow:none;
  7872. box-shadow:none;
  7873. font-family:'Microsoft YaHei', sans-serif;
  7874. font-weight:400;
  7875. font-style:normal;
  7876. font-size:14px;
  7877. color:#1E1E1E;
  7878. }
  7879. #u19010 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:1236px;
  7883. top:1188px;
  7884. width:32px;
  7885. height:21px;
  7886. display:flex;
  7887. font-family:'Microsoft YaHei', sans-serif;
  7888. font-weight:400;
  7889. font-style:normal;
  7890. font-size:14px;
  7891. color:#1E1E1E;
  7892. }
  7893. #u19010 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:2px 2px 2px 2px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u19010_text {
  7901. border-width:0px;
  7902. white-space:nowrap;
  7903. text-transform:none;
  7904. }
  7905. #u19011 {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:0px;
  7911. height:0px;
  7912. }
  7913. #u19012_div {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:31px;
  7919. height:30px;
  7920. background:inherit;
  7921. background-color:rgba(255, 255, 255, 1);
  7922. box-sizing:border-box;
  7923. border-width:1px;
  7924. border-style:solid;
  7925. border-color:rgba(228, 228, 228, 1);
  7926. border-radius:4px;
  7927. -moz-box-shadow:none;
  7928. -webkit-box-shadow:none;
  7929. box-shadow:none;
  7930. font-family:'Microsoft YaHei', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:12px;
  7934. }
  7935. #u19012 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:961px;
  7939. top:1183px;
  7940. width:31px;
  7941. height:30px;
  7942. display:flex;
  7943. font-family:'Microsoft YaHei', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:12px;
  7947. }
  7948. #u19012 .text {
  7949. position:absolute;
  7950. align-self:center;
  7951. padding:2px 2px 2px 2px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u19012_text {
  7956. border-width:0px;
  7957. word-wrap:break-word;
  7958. text-transform:none;
  7959. visibility:hidden;
  7960. }
  7961. #u19013_img {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:8px;
  7967. height:14px;
  7968. }
  7969. #u19013 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:973px;
  7973. top:1191px;
  7974. width:8px;
  7975. height:14px;
  7976. display:flex;
  7977. font-family:'Microsoft YaHei', sans-serif;
  7978. font-weight:400;
  7979. font-style:normal;
  7980. font-size:12px;
  7981. }
  7982. #u19013 .text {
  7983. position:absolute;
  7984. align-self:center;
  7985. padding:2px 2px 2px 2px;
  7986. box-sizing:border-box;
  7987. width:100%;
  7988. }
  7989. #u19013_text {
  7990. border-width:0px;
  7991. word-wrap:break-word;
  7992. text-transform:none;
  7993. visibility:hidden;
  7994. }
  7995. #u19014 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:0px;
  7999. top:0px;
  8000. width:0px;
  8001. height:0px;
  8002. }
  8003. #u19015_div {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:31px;
  8009. height:30px;
  8010. background:inherit;
  8011. background-color:rgba(255, 255, 255, 1);
  8012. box-sizing:border-box;
  8013. border-width:1px;
  8014. border-style:solid;
  8015. border-color:rgba(228, 228, 228, 1);
  8016. border-radius:4px;
  8017. -moz-box-shadow:none;
  8018. -webkit-box-shadow:none;
  8019. box-shadow:none;
  8020. font-family:'Microsoft YaHei', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. font-size:12px;
  8024. }
  8025. #u19015 {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:1195px;
  8029. top:1183px;
  8030. width:31px;
  8031. height:30px;
  8032. display:flex;
  8033. font-family:'Microsoft YaHei', sans-serif;
  8034. font-weight:400;
  8035. font-style:normal;
  8036. font-size:12px;
  8037. }
  8038. #u19015 .text {
  8039. position:absolute;
  8040. align-self:center;
  8041. padding:2px 2px 2px 2px;
  8042. box-sizing:border-box;
  8043. width:100%;
  8044. }
  8045. #u19015_text {
  8046. border-width:0px;
  8047. word-wrap:break-word;
  8048. text-transform:none;
  8049. visibility:hidden;
  8050. }
  8051. #u19016_img {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:8px;
  8057. height:14px;
  8058. }
  8059. #u19016 {
  8060. border-width:0px;
  8061. position:absolute;
  8062. left:1208px;
  8063. top:1191px;
  8064. width:8px;
  8065. height:14px;
  8066. display:flex;
  8067. font-family:'Microsoft YaHei', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:12px;
  8071. }
  8072. #u19016 .text {
  8073. position:absolute;
  8074. align-self:center;
  8075. padding:2px 2px 2px 2px;
  8076. box-sizing:border-box;
  8077. width:100%;
  8078. }
  8079. #u19016_text {
  8080. border-width:0px;
  8081. word-wrap:break-word;
  8082. text-transform:none;
  8083. visibility:hidden;
  8084. }
  8085. #u19017 {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:0px;
  8091. height:0px;
  8092. }
  8093. #u19018_div {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:33px;
  8099. height:24px;
  8100. background:inherit;
  8101. background-color:rgba(255, 255, 255, 1);
  8102. border:none;
  8103. border-radius:0px;
  8104. -moz-box-shadow:none;
  8105. -webkit-box-shadow:none;
  8106. box-shadow:none;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:14px;
  8111. color:#BCBCBC;
  8112. text-align:left;
  8113. }
  8114. #u19018 {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:1396px;
  8118. top:1186px;
  8119. width:33px;
  8120. height:24px;
  8121. display:flex;
  8122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8123. font-weight:400;
  8124. font-style:normal;
  8125. font-size:14px;
  8126. color:#BCBCBC;
  8127. text-align:left;
  8128. }
  8129. #u19018 .text {
  8130. position:absolute;
  8131. align-self:center;
  8132. padding:2px 2px 2px 2px;
  8133. box-sizing:border-box;
  8134. width:100%;
  8135. }
  8136. #u19018_text {
  8137. border-width:0px;
  8138. white-space:nowrap;
  8139. text-transform:none;
  8140. }
  8141. #u19019_div {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:40px;
  8147. height:30px;
  8148. background:inherit;
  8149. background-color:rgba(255, 255, 255, 1);
  8150. box-sizing:border-box;
  8151. border-width:1px;
  8152. border-style:solid;
  8153. border-color:rgba(228, 228, 228, 1);
  8154. border-radius:4px;
  8155. -moz-box-shadow:none;
  8156. -webkit-box-shadow:none;
  8157. box-shadow:none;
  8158. font-family:'Microsoft YaHei', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:14px;
  8162. }
  8163. #u19019 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:1431px;
  8167. top:1183px;
  8168. width:40px;
  8169. height:30px;
  8170. display:flex;
  8171. font-family:'Microsoft YaHei', sans-serif;
  8172. font-weight:400;
  8173. font-style:normal;
  8174. font-size:14px;
  8175. }
  8176. #u19019 .text {
  8177. position:absolute;
  8178. align-self:center;
  8179. padding:2px 2px 2px 2px;
  8180. box-sizing:border-box;
  8181. width:100%;
  8182. }
  8183. #u19019_text {
  8184. border-width:0px;
  8185. word-wrap:break-word;
  8186. text-transform:none;
  8187. visibility:hidden;
  8188. }
  8189. #u19020_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:19px;
  8195. height:24px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 1);
  8198. border:none;
  8199. border-radius:0px;
  8200. -moz-box-shadow:none;
  8201. -webkit-box-shadow:none;
  8202. box-shadow:none;
  8203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8204. font-weight:400;
  8205. font-style:normal;
  8206. font-size:14px;
  8207. color:#BCBCBC;
  8208. text-align:left;
  8209. }
  8210. #u19020 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:1473px;
  8214. top:1187px;
  8215. width:19px;
  8216. height:24px;
  8217. display:flex;
  8218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:14px;
  8222. color:#BCBCBC;
  8223. text-align:left;
  8224. }
  8225. #u19020 .text {
  8226. position:absolute;
  8227. align-self:center;
  8228. padding:2px 2px 2px 2px;
  8229. box-sizing:border-box;
  8230. width:100%;
  8231. }
  8232. #u19020_text {
  8233. border-width:0px;
  8234. white-space:nowrap;
  8235. text-transform:none;
  8236. }
  8237. #u19021_input {
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:34px;
  8242. height:25px;
  8243. padding:2px 2px 2px 2px;
  8244. font-family:'Microsoft YaHei', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:13px;
  8248. letter-spacing:normal;
  8249. color:#000000;
  8250. vertical-align:none;
  8251. text-align:left;
  8252. text-transform:none;
  8253. background-color:transparent;
  8254. border-color:transparent;
  8255. }
  8256. #u19021_input.disabled {
  8257. position:absolute;
  8258. left:0px;
  8259. top:0px;
  8260. width:34px;
  8261. height:25px;
  8262. padding:2px 2px 2px 2px;
  8263. font-family:'Microsoft YaHei', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:13px;
  8267. letter-spacing:normal;
  8268. color:#000000;
  8269. vertical-align:none;
  8270. text-align:left;
  8271. text-transform:none;
  8272. background-color:transparent;
  8273. border-color:transparent;
  8274. }
  8275. #u19021_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:34px;
  8281. height:25px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 1);
  8284. border:none;
  8285. border-radius:0px;
  8286. -moz-box-shadow:none;
  8287. -webkit-box-shadow:none;
  8288. box-shadow:none;
  8289. font-family:'Microsoft YaHei', sans-serif;
  8290. font-weight:400;
  8291. font-style:normal;
  8292. }
  8293. #u19021 {
  8294. border-width:0px;
  8295. position:absolute;
  8296. left:1434px;
  8297. top:1185px;
  8298. width:34px;
  8299. height:25px;
  8300. display:flex;
  8301. font-family:'Microsoft YaHei', sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. }
  8305. #u19021 .text {
  8306. position:absolute;
  8307. align-self:center;
  8308. padding:2px 2px 2px 2px;
  8309. box-sizing:border-box;
  8310. width:100%;
  8311. }
  8312. #u19021_div.disabled {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:34px;
  8318. height:25px;
  8319. background:inherit;
  8320. background-color:rgba(240, 240, 240, 1);
  8321. border:none;
  8322. border-radius:0px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-family:'Microsoft YaHei', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. }
  8330. #u19021.disabled {
  8331. }
  8332. #u19022_div {
  8333. border-width:0px;
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:55px;
  8338. height:30px;
  8339. background:inherit;
  8340. background-color:rgba(255, 255, 255, 1);
  8341. box-sizing:border-box;
  8342. border-width:1px;
  8343. border-style:solid;
  8344. border-color:rgba(170, 170, 170, 1);
  8345. border-radius:4px;
  8346. -moz-box-shadow:none;
  8347. -webkit-box-shadow:none;
  8348. box-shadow:none;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:12px;
  8353. color:#555555;
  8354. }
  8355. #u19022 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:622px;
  8359. top:190px;
  8360. width:55px;
  8361. height:30px;
  8362. display:flex;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:12px;
  8367. color:#555555;
  8368. }
  8369. #u19022 .text {
  8370. position:absolute;
  8371. align-self:center;
  8372. padding:5px 15px 5px 15px;
  8373. box-sizing:border-box;
  8374. width:100%;
  8375. }
  8376. #u19022_text {
  8377. border-width:0px;
  8378. white-space:nowrap;
  8379. text-transform:none;
  8380. }
  8381. #u19023_div {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:59px;
  8387. height:30px;
  8388. background:inherit;
  8389. background-color:rgba(255, 255, 255, 1);
  8390. box-sizing:border-box;
  8391. border-width:1px;
  8392. border-style:solid;
  8393. border-color:rgba(170, 170, 170, 1);
  8394. border-radius:4px;
  8395. -moz-box-shadow:none;
  8396. -webkit-box-shadow:none;
  8397. box-shadow:none;
  8398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8399. font-weight:400;
  8400. font-style:normal;
  8401. font-size:14px;
  8402. color:#555555;
  8403. }
  8404. #u19023 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:553px;
  8408. top:190px;
  8409. width:59px;
  8410. height:30px;
  8411. display:flex;
  8412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:14px;
  8416. color:#555555;
  8417. }
  8418. #u19023 .text {
  8419. position:absolute;
  8420. align-self:center;
  8421. padding:5px 15px 5px 15px;
  8422. box-sizing:border-box;
  8423. width:100%;
  8424. }
  8425. #u19023_text {
  8426. border-width:0px;
  8427. white-space:nowrap;
  8428. text-transform:none;
  8429. }
  8430. #u19024 {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:0px;
  8436. height:0px;
  8437. }
  8438. #u19025_div {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:140px;
  8444. height:30px;
  8445. background:inherit;
  8446. background-color:rgba(255, 255, 255, 1);
  8447. box-sizing:border-box;
  8448. border-width:1px;
  8449. border-style:solid;
  8450. border-color:rgba(215, 215, 215, 1);
  8451. border-radius:4px;
  8452. -moz-box-shadow:none;
  8453. -webkit-box-shadow:none;
  8454. box-shadow:none;
  8455. font-size:14px;
  8456. }
  8457. #u19025 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:953px;
  8461. top:140px;
  8462. width:140px;
  8463. height:30px;
  8464. display:flex;
  8465. font-size:14px;
  8466. }
  8467. #u19025 .text {
  8468. position:absolute;
  8469. align-self:center;
  8470. padding:2px 2px 2px 2px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u19025_text {
  8475. border-width:0px;
  8476. word-wrap:break-word;
  8477. text-transform:none;
  8478. visibility:hidden;
  8479. }
  8480. #u19026_input {
  8481. position:absolute;
  8482. left:0px;
  8483. top:0px;
  8484. width:134px;
  8485. height:23px;
  8486. padding:2px 2px 2px 2px;
  8487. font-family:'ArialMT', 'Arial', sans-serif;
  8488. font-weight:400;
  8489. font-style:normal;
  8490. font-size:14px;
  8491. letter-spacing:normal;
  8492. color:#AAAAAA;
  8493. vertical-align:none;
  8494. text-align:left;
  8495. text-transform:none;
  8496. background-color:transparent;
  8497. border-color:transparent;
  8498. }
  8499. #u19026_input.disabled {
  8500. position:absolute;
  8501. left:0px;
  8502. top:0px;
  8503. width:134px;
  8504. height:23px;
  8505. padding:2px 2px 2px 2px;
  8506. font-family:'ArialMT', 'Arial', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:14px;
  8510. letter-spacing:normal;
  8511. color:#AAAAAA;
  8512. vertical-align:none;
  8513. text-align:left;
  8514. text-transform:none;
  8515. background-color:transparent;
  8516. border-color:transparent;
  8517. }
  8518. #u19026_div {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:0px;
  8522. top:0px;
  8523. width:134px;
  8524. height:23px;
  8525. background:inherit;
  8526. background-color:rgba(255, 255, 255, 1);
  8527. border:none;
  8528. border-radius:0px;
  8529. -moz-box-shadow:none;
  8530. -webkit-box-shadow:none;
  8531. box-shadow:none;
  8532. font-size:14px;
  8533. color:#AAAAAA;
  8534. }
  8535. #u19026 {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:957px;
  8539. top:142px;
  8540. width:134px;
  8541. height:23px;
  8542. display:flex;
  8543. font-size:14px;
  8544. color:#AAAAAA;
  8545. }
  8546. #u19026 .text {
  8547. position:absolute;
  8548. align-self:flex-start;
  8549. padding:2px 2px 2px 2px;
  8550. box-sizing:border-box;
  8551. width:100%;
  8552. }
  8553. #u19026_div.disabled {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:0px;
  8557. top:0px;
  8558. width:134px;
  8559. height:23px;
  8560. background:inherit;
  8561. background-color:rgba(240, 240, 240, 1);
  8562. border:none;
  8563. border-radius:0px;
  8564. -moz-box-shadow:none;
  8565. -webkit-box-shadow:none;
  8566. box-shadow:none;
  8567. font-size:14px;
  8568. color:#AAAAAA;
  8569. }
  8570. #u19026.disabled {
  8571. }
  8572. .u19026_input_option {
  8573. font-size:14px;
  8574. }
  8575. #u19027_div {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:80px;
  8581. height:30px;
  8582. background:inherit;
  8583. background-color:rgba(24, 144, 255, 1);
  8584. border:none;
  8585. border-radius:4px;
  8586. -moz-box-shadow:none;
  8587. -webkit-box-shadow:none;
  8588. box-shadow:none;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:14px;
  8593. color:#FFFFFF;
  8594. }
  8595. #u19027 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:1666px;
  8599. top:201px;
  8600. width:80px;
  8601. height:30px;
  8602. display:flex;
  8603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8604. font-weight:400;
  8605. font-style:normal;
  8606. font-size:14px;
  8607. color:#FFFFFF;
  8608. }
  8609. #u19027 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u19027_text {
  8617. border-width:0px;
  8618. word-wrap:break-word;
  8619. text-transform:none;
  8620. }
  8621. #u19028_div {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:100px;
  8627. height:30px;
  8628. background:inherit;
  8629. background-color:rgba(255, 255, 255, 1);
  8630. box-sizing:border-box;
  8631. border-width:1px;
  8632. border-style:solid;
  8633. border-color:rgba(170, 170, 170, 1);
  8634. border-radius:4px;
  8635. -moz-box-shadow:none;
  8636. -webkit-box-shadow:none;
  8637. box-shadow:none;
  8638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8639. font-weight:400;
  8640. font-style:normal;
  8641. font-size:14px;
  8642. }
  8643. #u19028 {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:1822px;
  8647. top:201px;
  8648. width:100px;
  8649. height:30px;
  8650. display:flex;
  8651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:14px;
  8655. }
  8656. #u19028 .text {
  8657. position:absolute;
  8658. align-self:center;
  8659. padding:2px 2px 2px 2px;
  8660. box-sizing:border-box;
  8661. width:100%;
  8662. }
  8663. #u19028_text {
  8664. border-width:0px;
  8665. word-wrap:break-word;
  8666. text-transform:none;
  8667. }
  8668. #u19029_div {
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:0px;
  8672. top:0px;
  8673. width:129px;
  8674. height:22px;
  8675. background:inherit;
  8676. background-color:rgba(51, 51, 51, 1);
  8677. border:none;
  8678. border-radius:59px;
  8679. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8680. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8681. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8683. font-weight:400;
  8684. font-style:normal;
  8685. font-size:12px;
  8686. color:#FFFFFF;
  8687. }
  8688. #u19029 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:1822px;
  8692. top:179px;
  8693. width:129px;
  8694. height:22px;
  8695. display:flex;
  8696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:12px;
  8700. color:#FFFFFF;
  8701. }
  8702. #u19029 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 2px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u19029_text {
  8710. border-width:0px;
  8711. word-wrap:break-word;
  8712. text-transform:none;
  8713. }
  8714. #u19030_div {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:129px;
  8720. height:22px;
  8721. background:inherit;
  8722. background-color:rgba(51, 51, 51, 1);
  8723. border:none;
  8724. border-radius:59px;
  8725. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8726. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8727. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:12px;
  8732. color:#FFFFFF;
  8733. }
  8734. #u19030 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:1666px;
  8738. top:179px;
  8739. width:129px;
  8740. height:22px;
  8741. display:flex;
  8742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8743. font-weight:400;
  8744. font-style:normal;
  8745. font-size:12px;
  8746. color:#FFFFFF;
  8747. }
  8748. #u19030 .text {
  8749. position:absolute;
  8750. align-self:center;
  8751. padding:2px 2px 2px 2px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u19030_text {
  8756. border-width:0px;
  8757. word-wrap:break-word;
  8758. text-transform:none;
  8759. }
  8760. #u19031 {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:0px;
  8766. height:0px;
  8767. }
  8768. #u19032_div {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:140px;
  8774. height:30px;
  8775. background:inherit;
  8776. background-color:rgba(255, 255, 255, 1);
  8777. box-sizing:border-box;
  8778. border-width:1px;
  8779. border-style:solid;
  8780. border-color:rgba(215, 215, 215, 1);
  8781. border-radius:4px;
  8782. -moz-box-shadow:none;
  8783. -webkit-box-shadow:none;
  8784. box-shadow:none;
  8785. font-size:14px;
  8786. }
  8787. #u19032 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:650px;
  8791. top:140px;
  8792. width:140px;
  8793. height:30px;
  8794. display:flex;
  8795. font-size:14px;
  8796. }
  8797. #u19032 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u19032_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. visibility:hidden;
  8809. }
  8810. #u19033_input {
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:134px;
  8815. height:23px;
  8816. padding:2px 2px 2px 2px;
  8817. font-family:'ArialMT', 'Arial', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:14px;
  8821. letter-spacing:normal;
  8822. color:#AAAAAA;
  8823. vertical-align:none;
  8824. text-align:left;
  8825. text-transform:none;
  8826. background-color:transparent;
  8827. border-color:transparent;
  8828. }
  8829. #u19033_input.disabled {
  8830. position:absolute;
  8831. left:0px;
  8832. top:0px;
  8833. width:134px;
  8834. height:23px;
  8835. padding:2px 2px 2px 2px;
  8836. font-family:'ArialMT', 'Arial', sans-serif;
  8837. font-weight:400;
  8838. font-style:normal;
  8839. font-size:14px;
  8840. letter-spacing:normal;
  8841. color:#AAAAAA;
  8842. vertical-align:none;
  8843. text-align:left;
  8844. text-transform:none;
  8845. background-color:transparent;
  8846. border-color:transparent;
  8847. }
  8848. #u19033_div {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:134px;
  8854. height:23px;
  8855. background:inherit;
  8856. background-color:rgba(255, 255, 255, 1);
  8857. border:none;
  8858. border-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-size:14px;
  8863. color:#AAAAAA;
  8864. }
  8865. #u19033 {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:654px;
  8869. top:142px;
  8870. width:134px;
  8871. height:23px;
  8872. display:flex;
  8873. font-size:14px;
  8874. color:#AAAAAA;
  8875. }
  8876. #u19033 .text {
  8877. position:absolute;
  8878. align-self:flex-start;
  8879. padding:2px 2px 2px 2px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u19033_div.disabled {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:134px;
  8889. height:23px;
  8890. background:inherit;
  8891. background-color:rgba(240, 240, 240, 1);
  8892. border:none;
  8893. border-radius:0px;
  8894. -moz-box-shadow:none;
  8895. -webkit-box-shadow:none;
  8896. box-shadow:none;
  8897. font-size:14px;
  8898. color:#AAAAAA;
  8899. }
  8900. #u19033.disabled {
  8901. }
  8902. .u19033_input_option {
  8903. font-size:14px;
  8904. }