styles.css 132 KB

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