styles.css 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  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. #u88505_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. #u88505 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u88505 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u88505_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u88506_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. #u88506 {
  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. #u88506 .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. #u88506_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u88507_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. #u88507 {
  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. #u88507 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u88507_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u88508 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u88509_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u88509 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u88509 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u88509_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u88510_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. #u88510 {
  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. #u88510 .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. #u88510_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u88511_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. #u88511 {
  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. #u88511 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u88511_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u88512 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u88513_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. #u88513_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. #u88513_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. #u88513 {
  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. #u88513 .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. #u88513_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. #u88513.disabled {
  356. }
  357. .u88513_input_option {
  358. font-size:14px;
  359. }
  360. #u88514_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u88514 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u88514 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u88514_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u88515_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. #u88515 {
  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. #u88515 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u88515_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u88516_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. #u88516 {
  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. #u88516 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u88516_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u88517 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u88518_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. #u88518 {
  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. #u88518 .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. #u88518_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u88519_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u88519 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u88519 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u88519_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u88520 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u88521_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. #u88521 {
  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. #u88521 .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. #u88521_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u88522_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u88522 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u88522 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u88522_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u88523 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u88524_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. #u88524 {
  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. #u88524 .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. #u88524_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u88525_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u88525 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u88525 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u88525_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u88526 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u88527_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. #u88527 {
  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. #u88527 .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. #u88527_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u88528_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u88528 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u88528 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u88528_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u88529 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u88530_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. #u88530 {
  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. #u88530 .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. #u88530_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u88531_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u88531 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u88531 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u88531_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u88532 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u88533_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. #u88533 {
  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. #u88533 .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. #u88533_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u88534_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u88534 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u88534 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u88534_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u88535 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u88536_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. #u88536 {
  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. #u88536 .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. #u88536_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u88537_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u88537 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u88537 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u88537_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u88538 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u88539_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. #u88539 {
  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. #u88539 .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. #u88539_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u88540_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u88540 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u88540 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u88540_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u88541 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u88542_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. #u88542 {
  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. #u88542 .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. #u88542_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u88543_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u88543 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u88543 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u88543_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u88544 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u88545_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. #u88545 {
  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. #u88545 .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. #u88545_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u88546_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u88546 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u88546 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u88546_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u88547_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. #u88547 {
  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. #u88547 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u88547_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u88548_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u88548 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u88548 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u88548_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u88549_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. #u88549 {
  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. #u88549 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u88549_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u88550_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u88550 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u88550 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u88550_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u88551 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u88552_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. #u88552 {
  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. #u88552 .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. #u88552_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u88553_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u88553 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u88553 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u88553_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u88554 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u88555_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. #u88555 {
  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. #u88555 .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. #u88555_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u88556_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u88556 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u88556 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u88556_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u88557_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u88557 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u88557 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u88557_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u88558_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:109px;
  1696. height:50px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-left:0px;
  1701. border-top:0px;
  1702. border-right:0px;
  1703. border-radius:0px;
  1704. border-bottom-right-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u88558 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:350px;
  1718. top:50px;
  1719. width:109px;
  1720. height:50px;
  1721. display:flex;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u88558 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u88558_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u88559 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:351px;
  1743. top:271px;
  1744. width:1340px;
  1745. height:322px;
  1746. }
  1747. #u88560_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:194px;
  1753. height:38px;
  1754. }
  1755. #u88560 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:194px;
  1761. height:38px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#FFFFFF;
  1768. }
  1769. #u88560 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 0px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u88560_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. }
  1781. #u88561_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:194px;
  1787. height:38px;
  1788. }
  1789. #u88561 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:194px;
  1793. top:0px;
  1794. width:194px;
  1795. height:38px;
  1796. display:flex;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. color:#FFFFFF;
  1802. }
  1803. #u88561 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u88561_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u88562_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:194px;
  1821. height:38px;
  1822. }
  1823. #u88562 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:388px;
  1827. top:0px;
  1828. width:194px;
  1829. height:38px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u88562 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u88562_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u88563_img {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:194px;
  1855. height:38px;
  1856. }
  1857. #u88563 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:582px;
  1861. top:0px;
  1862. width:194px;
  1863. height:38px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#FFFFFF;
  1870. }
  1871. #u88563 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u88563_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u88564_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:173px;
  1889. height:38px;
  1890. }
  1891. #u88564 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:776px;
  1895. top:0px;
  1896. width:173px;
  1897. height:38px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#FFFFFF;
  1904. }
  1905. #u88564 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u88564_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u88565_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:224px;
  1923. height:38px;
  1924. }
  1925. #u88565 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:949px;
  1929. top:0px;
  1930. width:224px;
  1931. height:38px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:12px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u88565 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u88565_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u88566_img {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:167px;
  1957. height:38px;
  1958. }
  1959. #u88566 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:1173px;
  1963. top:0px;
  1964. width:167px;
  1965. height:38px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:12px;
  1971. color:#FFFFFF;
  1972. }
  1973. #u88566 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u88566_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u88567_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:194px;
  1991. height:38px;
  1992. }
  1993. #u88567 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:38px;
  1998. width:194px;
  1999. height:38px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#333333;
  2006. }
  2007. #u88567 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u88567_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u88568_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:194px;
  2026. height:38px;
  2027. }
  2028. #u88568 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:194px;
  2032. top:38px;
  2033. width:194px;
  2034. height:38px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#333333;
  2041. }
  2042. #u88568 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u88568_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. visibility:hidden;
  2054. }
  2055. #u88569_img {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:194px;
  2061. height:38px;
  2062. }
  2063. #u88569 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:388px;
  2067. top:38px;
  2068. width:194px;
  2069. height:38px;
  2070. display:flex;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#333333;
  2076. }
  2077. #u88569 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u88569_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. visibility:hidden;
  2089. }
  2090. #u88570_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:194px;
  2096. height:38px;
  2097. }
  2098. #u88570 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:582px;
  2102. top:38px;
  2103. width:194px;
  2104. height:38px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#333333;
  2111. }
  2112. #u88570 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u88570_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. visibility:hidden;
  2124. }
  2125. #u88571_img {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:173px;
  2131. height:38px;
  2132. }
  2133. #u88571 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:776px;
  2137. top:38px;
  2138. width:173px;
  2139. height:38px;
  2140. display:flex;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#333333;
  2146. }
  2147. #u88571 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u88571_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. visibility:hidden;
  2159. }
  2160. #u88572_img {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:224px;
  2166. height:38px;
  2167. }
  2168. #u88572 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:949px;
  2172. top:38px;
  2173. width:224px;
  2174. height:38px;
  2175. display:flex;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#333333;
  2181. }
  2182. #u88572 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u88572_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u88573_img {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:167px;
  2201. height:38px;
  2202. }
  2203. #u88573 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:1173px;
  2207. top:38px;
  2208. width:167px;
  2209. height:38px;
  2210. display:flex;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:12px;
  2215. color:#0089FE;
  2216. }
  2217. #u88573 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u88573_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u88574_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:194px;
  2235. height:38px;
  2236. }
  2237. #u88574 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:76px;
  2242. width:194px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. color:#333333;
  2250. }
  2251. #u88574 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u88574_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u88575_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:194px;
  2270. height:38px;
  2271. }
  2272. #u88575 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:194px;
  2276. top:76px;
  2277. width:194px;
  2278. height:38px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:12px;
  2284. color:#333333;
  2285. }
  2286. #u88575 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u88575_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u88576_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:194px;
  2305. height:38px;
  2306. }
  2307. #u88576 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:388px;
  2311. top:76px;
  2312. width:194px;
  2313. height:38px;
  2314. display:flex;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. color:#333333;
  2320. }
  2321. #u88576 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u88576_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u88577_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:194px;
  2340. height:38px;
  2341. }
  2342. #u88577 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:582px;
  2346. top:76px;
  2347. width:194px;
  2348. height:38px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. color:#333333;
  2355. }
  2356. #u88577 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u88577_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. visibility:hidden;
  2368. }
  2369. #u88578_img {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:173px;
  2375. height:38px;
  2376. }
  2377. #u88578 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:776px;
  2381. top:76px;
  2382. width:173px;
  2383. height:38px;
  2384. display:flex;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:12px;
  2389. color:#333333;
  2390. }
  2391. #u88578 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 0px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u88578_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. visibility:hidden;
  2403. }
  2404. #u88579_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:224px;
  2410. height:38px;
  2411. }
  2412. #u88579 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:949px;
  2416. top:76px;
  2417. width:224px;
  2418. height:38px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:12px;
  2424. color:#333333;
  2425. }
  2426. #u88579 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 0px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u88579_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. visibility:hidden;
  2438. }
  2439. #u88580_img {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:167px;
  2445. height:38px;
  2446. }
  2447. #u88580 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:1173px;
  2451. top:76px;
  2452. width:167px;
  2453. height:38px;
  2454. display:flex;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:12px;
  2459. color:#0089FE;
  2460. }
  2461. #u88580 .text {
  2462. position:absolute;
  2463. align-self:center;
  2464. padding:2px 2px 2px 0px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u88580_text {
  2469. border-width:0px;
  2470. word-wrap:break-word;
  2471. text-transform:none;
  2472. visibility:hidden;
  2473. }
  2474. #u88581_img {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:194px;
  2480. height:38px;
  2481. }
  2482. #u88581 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:114px;
  2487. width:194px;
  2488. height:38px;
  2489. display:flex;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:12px;
  2494. color:#333333;
  2495. }
  2496. #u88581 .text {
  2497. position:absolute;
  2498. align-self:center;
  2499. padding:2px 2px 2px 0px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u88581_text {
  2504. border-width:0px;
  2505. word-wrap:break-word;
  2506. text-transform:none;
  2507. visibility:hidden;
  2508. }
  2509. #u88582_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:194px;
  2515. height:38px;
  2516. }
  2517. #u88582 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:194px;
  2521. top:114px;
  2522. width:194px;
  2523. height:38px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. color:#333333;
  2530. }
  2531. #u88582 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u88582_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. visibility:hidden;
  2543. }
  2544. #u88583_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:194px;
  2550. height:38px;
  2551. }
  2552. #u88583 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:388px;
  2556. top:114px;
  2557. width:194px;
  2558. height:38px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. color:#333333;
  2565. }
  2566. #u88583 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u88583_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u88584_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:194px;
  2585. height:38px;
  2586. }
  2587. #u88584 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:582px;
  2591. top:114px;
  2592. width:194px;
  2593. height:38px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#333333;
  2600. }
  2601. #u88584 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u88584_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. visibility:hidden;
  2613. }
  2614. #u88585_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:173px;
  2620. height:38px;
  2621. }
  2622. #u88585 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:776px;
  2626. top:114px;
  2627. width:173px;
  2628. height:38px;
  2629. display:flex;
  2630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:12px;
  2634. color:#333333;
  2635. }
  2636. #u88585 .text {
  2637. position:absolute;
  2638. align-self:center;
  2639. padding:2px 2px 2px 0px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u88585_text {
  2644. border-width:0px;
  2645. word-wrap:break-word;
  2646. text-transform:none;
  2647. visibility:hidden;
  2648. }
  2649. #u88586_img {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:224px;
  2655. height:38px;
  2656. }
  2657. #u88586 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:949px;
  2661. top:114px;
  2662. width:224px;
  2663. height:38px;
  2664. display:flex;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. color:#333333;
  2670. }
  2671. #u88586 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u88586_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. visibility:hidden;
  2683. }
  2684. #u88587_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:167px;
  2690. height:38px;
  2691. }
  2692. #u88587 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:1173px;
  2696. top:114px;
  2697. width:167px;
  2698. height:38px;
  2699. display:flex;
  2700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:12px;
  2704. color:#0089FE;
  2705. }
  2706. #u88587 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 2px 2px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u88587_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. visibility:hidden;
  2718. }
  2719. #u88588_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:194px;
  2725. height:38px;
  2726. }
  2727. #u88588 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:152px;
  2732. width:194px;
  2733. height:38px;
  2734. display:flex;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:12px;
  2739. color:#333333;
  2740. }
  2741. #u88588 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 0px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u88588_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. visibility:hidden;
  2753. }
  2754. #u88589_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:194px;
  2760. height:38px;
  2761. }
  2762. #u88589 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:194px;
  2766. top:152px;
  2767. width:194px;
  2768. height:38px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#333333;
  2775. }
  2776. #u88589 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u88589_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. visibility:hidden;
  2788. }
  2789. #u88590_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:194px;
  2795. height:38px;
  2796. }
  2797. #u88590 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:388px;
  2801. top:152px;
  2802. width:194px;
  2803. height:38px;
  2804. display:flex;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:12px;
  2809. color:#333333;
  2810. }
  2811. #u88590 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u88590_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u88591_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:194px;
  2830. height:38px;
  2831. }
  2832. #u88591 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:582px;
  2836. top:152px;
  2837. width:194px;
  2838. height:38px;
  2839. display:flex;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. font-size:12px;
  2844. color:#333333;
  2845. }
  2846. #u88591 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u88591_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u88592_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:173px;
  2865. height:38px;
  2866. }
  2867. #u88592 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:776px;
  2871. top:152px;
  2872. width:173px;
  2873. height:38px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. color:#333333;
  2880. }
  2881. #u88592 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u88592_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u88593_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:224px;
  2900. height:38px;
  2901. }
  2902. #u88593 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:949px;
  2906. top:152px;
  2907. width:224px;
  2908. height:38px;
  2909. display:flex;
  2910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:12px;
  2914. color:#333333;
  2915. }
  2916. #u88593 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 0px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u88593_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u88594_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:167px;
  2935. height:38px;
  2936. }
  2937. #u88594 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:1173px;
  2941. top:152px;
  2942. width:167px;
  2943. height:38px;
  2944. display:flex;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. color:#AAAAAA;
  2950. }
  2951. #u88594 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u88594_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u88595_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:194px;
  2970. height:35px;
  2971. }
  2972. #u88595 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:190px;
  2977. width:194px;
  2978. height:35px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. color:#333333;
  2985. }
  2986. #u88595 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u88595_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u88596_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:194px;
  3005. height:35px;
  3006. }
  3007. #u88596 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:194px;
  3011. top:190px;
  3012. width:194px;
  3013. height:35px;
  3014. display:flex;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#333333;
  3020. }
  3021. #u88596 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u88596_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u88597_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:194px;
  3040. height:35px;
  3041. }
  3042. #u88597 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:388px;
  3046. top:190px;
  3047. width:194px;
  3048. height:35px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:12px;
  3054. color:#333333;
  3055. }
  3056. #u88597 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u88597_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u88598_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:194px;
  3075. height:35px;
  3076. }
  3077. #u88598 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:582px;
  3081. top:190px;
  3082. width:194px;
  3083. height:35px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#333333;
  3090. }
  3091. #u88598 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u88598_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u88599_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:173px;
  3110. height:35px;
  3111. }
  3112. #u88599 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:776px;
  3116. top:190px;
  3117. width:173px;
  3118. height:35px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#333333;
  3125. }
  3126. #u88599 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u88599_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u88600_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:224px;
  3145. height:35px;
  3146. }
  3147. #u88600 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:949px;
  3151. top:190px;
  3152. width:224px;
  3153. height:35px;
  3154. display:flex;
  3155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:12px;
  3159. color:#333333;
  3160. }
  3161. #u88600 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u88600_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u88601_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:167px;
  3180. height:35px;
  3181. }
  3182. #u88601 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:1173px;
  3186. top:190px;
  3187. width:167px;
  3188. height:35px;
  3189. display:flex;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. color:#AAAAAA;
  3195. }
  3196. #u88601 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 2px 2px 0px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u88601_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. visibility:hidden;
  3208. }
  3209. #u88602_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:194px;
  3215. height:35px;
  3216. }
  3217. #u88602 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:225px;
  3222. width:194px;
  3223. height:35px;
  3224. display:flex;
  3225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:12px;
  3229. color:#333333;
  3230. }
  3231. #u88602 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u88602_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u88603_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:194px;
  3250. height:35px;
  3251. }
  3252. #u88603 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:194px;
  3256. top:225px;
  3257. width:194px;
  3258. height:35px;
  3259. display:flex;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:12px;
  3264. color:#333333;
  3265. }
  3266. #u88603 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 0px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u88603_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. visibility:hidden;
  3278. }
  3279. #u88604_img {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:194px;
  3285. height:35px;
  3286. }
  3287. #u88604 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:388px;
  3291. top:225px;
  3292. width:194px;
  3293. height:35px;
  3294. display:flex;
  3295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:12px;
  3299. color:#333333;
  3300. }
  3301. #u88604 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u88604_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u88605_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:194px;
  3320. height:35px;
  3321. }
  3322. #u88605 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:582px;
  3326. top:225px;
  3327. width:194px;
  3328. height:35px;
  3329. display:flex;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:12px;
  3334. color:#333333;
  3335. }
  3336. #u88605 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:2px 2px 2px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u88605_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. visibility:hidden;
  3348. }
  3349. #u88606_img {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:173px;
  3355. height:35px;
  3356. }
  3357. #u88606 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:776px;
  3361. top:225px;
  3362. width:173px;
  3363. height:35px;
  3364. display:flex;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:12px;
  3369. color:#333333;
  3370. }
  3371. #u88606 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 2px 2px 0px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u88606_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u88607_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:224px;
  3390. height:35px;
  3391. }
  3392. #u88607 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:949px;
  3396. top:225px;
  3397. width:224px;
  3398. height:35px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:12px;
  3404. color:#333333;
  3405. }
  3406. #u88607 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u88607_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u88608_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:167px;
  3425. height:35px;
  3426. }
  3427. #u88608 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:1173px;
  3431. top:225px;
  3432. width:167px;
  3433. height:35px;
  3434. display:flex;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. color:#333333;
  3440. }
  3441. #u88608 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u88608_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u88609_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:194px;
  3460. height:32px;
  3461. }
  3462. #u88609 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:260px;
  3467. width:194px;
  3468. height:32px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. color:#333333;
  3475. }
  3476. #u88609 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 0px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u88609_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u88610_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:194px;
  3495. height:32px;
  3496. }
  3497. #u88610 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:194px;
  3501. top:260px;
  3502. width:194px;
  3503. height:32px;
  3504. display:flex;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:12px;
  3509. color:#333333;
  3510. }
  3511. #u88610 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u88610_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u88611_img {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:194px;
  3530. height:32px;
  3531. }
  3532. #u88611 {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:388px;
  3536. top:260px;
  3537. width:194px;
  3538. height:32px;
  3539. display:flex;
  3540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. font-size:12px;
  3544. color:#333333;
  3545. }
  3546. #u88611 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 0px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u88611_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u88612_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:194px;
  3565. height:32px;
  3566. }
  3567. #u88612 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:582px;
  3571. top:260px;
  3572. width:194px;
  3573. height:32px;
  3574. display:flex;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:12px;
  3579. color:#333333;
  3580. }
  3581. #u88612 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 0px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u88612_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u88613_img {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:173px;
  3600. height:32px;
  3601. }
  3602. #u88613 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:776px;
  3606. top:260px;
  3607. width:173px;
  3608. height:32px;
  3609. display:flex;
  3610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:12px;
  3614. color:#333333;
  3615. }
  3616. #u88613 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:2px 2px 2px 0px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u88613_text {
  3624. border-width:0px;
  3625. word-wrap:break-word;
  3626. text-transform:none;
  3627. visibility:hidden;
  3628. }
  3629. #u88614_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:224px;
  3635. height:32px;
  3636. }
  3637. #u88614 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:949px;
  3641. top:260px;
  3642. width:224px;
  3643. height:32px;
  3644. display:flex;
  3645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. font-size:12px;
  3649. color:#333333;
  3650. }
  3651. #u88614 .text {
  3652. position:absolute;
  3653. align-self:center;
  3654. padding:2px 2px 2px 0px;
  3655. box-sizing:border-box;
  3656. width:100%;
  3657. }
  3658. #u88614_text {
  3659. border-width:0px;
  3660. word-wrap:break-word;
  3661. text-transform:none;
  3662. visibility:hidden;
  3663. }
  3664. #u88615_img {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:167px;
  3670. height:32px;
  3671. }
  3672. #u88615 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:1173px;
  3676. top:260px;
  3677. width:167px;
  3678. height:32px;
  3679. display:flex;
  3680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:12px;
  3684. color:#333333;
  3685. }
  3686. #u88615 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u88615_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u88616_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:194px;
  3705. height:30px;
  3706. }
  3707. #u88616 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:292px;
  3712. width:194px;
  3713. height:30px;
  3714. display:flex;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:12px;
  3719. color:#333333;
  3720. }
  3721. #u88616 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u88616_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u88617_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:194px;
  3740. height:30px;
  3741. }
  3742. #u88617 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:194px;
  3746. top:292px;
  3747. width:194px;
  3748. height:30px;
  3749. display:flex;
  3750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:12px;
  3754. color:#333333;
  3755. }
  3756. #u88617 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 0px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u88617_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u88618_img {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:194px;
  3775. height:30px;
  3776. }
  3777. #u88618 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:388px;
  3781. top:292px;
  3782. width:194px;
  3783. height:30px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:#333333;
  3790. }
  3791. #u88618 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u88618_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u88619_img {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:194px;
  3810. height:30px;
  3811. }
  3812. #u88619 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:582px;
  3816. top:292px;
  3817. width:194px;
  3818. height:30px;
  3819. display:flex;
  3820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:12px;
  3824. color:#333333;
  3825. }
  3826. #u88619 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u88619_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u88620_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:173px;
  3845. height:30px;
  3846. }
  3847. #u88620 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:776px;
  3851. top:292px;
  3852. width:173px;
  3853. height:30px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:12px;
  3859. color:#333333;
  3860. }
  3861. #u88620 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 0px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u88620_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. visibility:hidden;
  3873. }
  3874. #u88621_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:224px;
  3880. height:30px;
  3881. }
  3882. #u88621 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:949px;
  3886. top:292px;
  3887. width:224px;
  3888. height:30px;
  3889. display:flex;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:12px;
  3894. color:#333333;
  3895. }
  3896. #u88621 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u88621_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. visibility:hidden;
  3908. }
  3909. #u88622_img {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:167px;
  3915. height:30px;
  3916. }
  3917. #u88622 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:1173px;
  3921. top:292px;
  3922. width:167px;
  3923. height:30px;
  3924. display:flex;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:12px;
  3929. color:#333333;
  3930. }
  3931. #u88622 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 0px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u88622_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u88623 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:0px;
  3950. height:0px;
  3951. }
  3952. #u88624_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:59px;
  3958. height:30px;
  3959. background:inherit;
  3960. background-color:rgba(24, 144, 255, 1);
  3961. box-sizing:border-box;
  3962. border-width:1px;
  3963. border-style:solid;
  3964. border-color:rgba(0, 153, 255, 1);
  3965. border-radius:4px;
  3966. -moz-box-shadow:none;
  3967. -webkit-box-shadow:none;
  3968. box-shadow:none;
  3969. font-family:'Microsoft YaHei', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. color:#FFFFFF;
  3974. }
  3975. #u88624 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:351px;
  3979. top:181px;
  3980. width:59px;
  3981. height:30px;
  3982. display:flex;
  3983. font-family:'Microsoft YaHei', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:14px;
  3987. color:#FFFFFF;
  3988. }
  3989. #u88624 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:5px 15px 5px 15px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u88624_text {
  3997. border-width:0px;
  3998. white-space:nowrap;
  3999. text-transform:none;
  4000. }
  4001. #u88625_div {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:55px;
  4007. height:30px;
  4008. background:inherit;
  4009. background-color:rgba(255, 255, 255, 1);
  4010. box-sizing:border-box;
  4011. border-width:1px;
  4012. border-style:solid;
  4013. border-color:rgba(170, 170, 170, 1);
  4014. border-radius:4px;
  4015. -moz-box-shadow:none;
  4016. -webkit-box-shadow:none;
  4017. box-shadow:none;
  4018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4019. font-weight:400;
  4020. font-style:normal;
  4021. font-size:12px;
  4022. color:#555555;
  4023. }
  4024. #u88625 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:420px;
  4028. top:181px;
  4029. width:55px;
  4030. height:30px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:12px;
  4036. color:#555555;
  4037. }
  4038. #u88625 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:5px 15px 5px 15px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u88625_text {
  4046. border-width:0px;
  4047. white-space:nowrap;
  4048. text-transform:none;
  4049. }
  4050. #u88627 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:0px;
  4056. height:0px;
  4057. }
  4058. #u88628_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:30px;
  4064. height:30px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 1);
  4067. box-sizing:border-box;
  4068. border-width:1px;
  4069. border-style:solid;
  4070. border-color:rgba(228, 228, 228, 1);
  4071. border-radius:4px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. font-family:'Microsoft YaHei', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:14px;
  4079. }
  4080. #u88628 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1126px;
  4084. top:602px;
  4085. width:30px;
  4086. height:30px;
  4087. display:flex;
  4088. font-family:'Microsoft YaHei', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:14px;
  4092. }
  4093. #u88628 .text {
  4094. position:absolute;
  4095. align-self:center;
  4096. padding:2px 2px 2px 2px;
  4097. box-sizing:border-box;
  4098. width:100%;
  4099. }
  4100. #u88628_text {
  4101. border-width:0px;
  4102. word-wrap:break-word;
  4103. text-transform:none;
  4104. }
  4105. #u88629_div {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:49px;
  4111. height:30px;
  4112. background:inherit;
  4113. background-color:rgba(255, 255, 255, 0);
  4114. box-sizing:border-box;
  4115. border-width:1px;
  4116. border-style:solid;
  4117. border-color:rgba(188, 188, 188, 1);
  4118. border-radius:4px;
  4119. -moz-box-shadow:none;
  4120. -webkit-box-shadow:none;
  4121. box-shadow:none;
  4122. font-family:'Microsoft YaHei', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:14px;
  4126. color:#1E1E1E;
  4127. }
  4128. #u88629 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:1642px;
  4132. top:602px;
  4133. width:49px;
  4134. height:30px;
  4135. display:flex;
  4136. font-family:'Microsoft YaHei', sans-serif;
  4137. font-weight:400;
  4138. font-style:normal;
  4139. font-size:14px;
  4140. color:#1E1E1E;
  4141. }
  4142. #u88629 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:5px 10px 5px 10px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u88629_text {
  4150. border-width:0px;
  4151. white-space:nowrap;
  4152. text-transform:none;
  4153. }
  4154. #u88630 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:0px;
  4160. height:0px;
  4161. }
  4162. #u88631_div {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:33px;
  4168. height:24px;
  4169. background:inherit;
  4170. background-color:rgba(255, 255, 255, 1);
  4171. border:none;
  4172. border-radius:0px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:14px;
  4180. color:#BCBCBC;
  4181. text-align:left;
  4182. }
  4183. #u88631 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:1410px;
  4187. top:605px;
  4188. width:33px;
  4189. height:24px;
  4190. display:flex;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:14px;
  4195. color:#BCBCBC;
  4196. text-align:left;
  4197. }
  4198. #u88631 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 2px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u88631_text {
  4206. border-width:0px;
  4207. white-space:nowrap;
  4208. text-transform:none;
  4209. }
  4210. #u88632_div {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:40px;
  4216. height:30px;
  4217. background:inherit;
  4218. background-color:rgba(255, 255, 255, 1);
  4219. box-sizing:border-box;
  4220. border-width:1px;
  4221. border-style:solid;
  4222. border-color:rgba(228, 228, 228, 1);
  4223. border-radius:4px;
  4224. -moz-box-shadow:none;
  4225. -webkit-box-shadow:none;
  4226. box-shadow:none;
  4227. font-family:'Microsoft YaHei', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:14px;
  4231. }
  4232. #u88632 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:1445px;
  4236. top:602px;
  4237. width:40px;
  4238. height:30px;
  4239. display:flex;
  4240. font-family:'Microsoft YaHei', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:14px;
  4244. }
  4245. #u88632 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 2px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u88632_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u88633_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:19px;
  4264. height:24px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 1);
  4267. border:none;
  4268. border-radius:0px;
  4269. -moz-box-shadow:none;
  4270. -webkit-box-shadow:none;
  4271. box-shadow:none;
  4272. font-family:'Microsoft YaHei', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:14px;
  4276. color:#BCBCBC;
  4277. text-align:left;
  4278. }
  4279. #u88633 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1487px;
  4283. top:606px;
  4284. width:19px;
  4285. height:24px;
  4286. display:flex;
  4287. font-family:'Microsoft YaHei', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:14px;
  4291. color:#BCBCBC;
  4292. text-align:left;
  4293. }
  4294. #u88633 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 2px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u88633_text {
  4302. border-width:0px;
  4303. white-space:nowrap;
  4304. text-transform:none;
  4305. }
  4306. #u88634_input {
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:34px;
  4311. height:25px;
  4312. padding:2px 2px 2px 2px;
  4313. font-family:'Microsoft YaHei', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:13px;
  4317. letter-spacing:normal;
  4318. color:#000000;
  4319. vertical-align:none;
  4320. text-align:left;
  4321. text-transform:none;
  4322. background-color:transparent;
  4323. border-color:transparent;
  4324. }
  4325. #u88634_input.disabled {
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:34px;
  4330. height:25px;
  4331. padding:2px 2px 2px 2px;
  4332. font-family:'Microsoft YaHei', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:13px;
  4336. letter-spacing:normal;
  4337. color:#000000;
  4338. vertical-align:none;
  4339. text-align:left;
  4340. text-transform:none;
  4341. background-color:transparent;
  4342. border-color:transparent;
  4343. }
  4344. #u88634_div {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:34px;
  4350. height:25px;
  4351. background:inherit;
  4352. background-color:rgba(255, 255, 255, 1);
  4353. border:none;
  4354. border-radius:0px;
  4355. -moz-box-shadow:none;
  4356. -webkit-box-shadow:none;
  4357. box-shadow:none;
  4358. font-family:'Microsoft YaHei', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. }
  4362. #u88634 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:1448px;
  4366. top:604px;
  4367. width:34px;
  4368. height:25px;
  4369. display:flex;
  4370. font-family:'Microsoft YaHei', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. }
  4374. #u88634 .text {
  4375. position:absolute;
  4376. align-self:center;
  4377. padding:2px 2px 2px 2px;
  4378. box-sizing:border-box;
  4379. width:100%;
  4380. }
  4381. #u88634_div.disabled {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:34px;
  4387. height:25px;
  4388. background:inherit;
  4389. background-color:rgba(240, 240, 240, 1);
  4390. border:none;
  4391. border-radius:0px;
  4392. -moz-box-shadow:none;
  4393. -webkit-box-shadow:none;
  4394. box-shadow:none;
  4395. font-family:'Microsoft YaHei', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. }
  4399. #u88634.disabled {
  4400. }
  4401. #u88635_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:30px;
  4407. height:30px;
  4408. background:inherit;
  4409. background-color:rgba(41, 143, 255, 1);
  4410. border:none;
  4411. border-radius:4px;
  4412. -moz-box-shadow:none;
  4413. -webkit-box-shadow:none;
  4414. box-shadow:none;
  4415. font-family:'Microsoft YaHei', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:14px;
  4419. color:#FFFFFF;
  4420. }
  4421. #u88635 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:1160px;
  4425. top:602px;
  4426. width:30px;
  4427. height:30px;
  4428. display:flex;
  4429. font-family:'Microsoft YaHei', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:14px;
  4433. color:#FFFFFF;
  4434. }
  4435. #u88635 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:2px 2px 2px 2px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u88635_text {
  4443. border-width:0px;
  4444. word-wrap:break-word;
  4445. text-transform:none;
  4446. }
  4447. #u88636_div {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:30px;
  4453. height:30px;
  4454. background:inherit;
  4455. background-color:rgba(255, 255, 255, 1);
  4456. box-sizing:border-box;
  4457. border-width:1px;
  4458. border-style:solid;
  4459. border-color:rgba(228, 228, 228, 1);
  4460. border-radius:4px;
  4461. -moz-box-shadow:none;
  4462. -webkit-box-shadow:none;
  4463. box-shadow:none;
  4464. font-family:'Microsoft YaHei', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:14px;
  4468. }
  4469. #u88636 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:1194px;
  4473. top:602px;
  4474. width:30px;
  4475. height:30px;
  4476. display:flex;
  4477. font-family:'Microsoft YaHei', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:14px;
  4481. }
  4482. #u88636 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 2px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u88636_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. }
  4494. #u88637_div {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:30px;
  4500. height:30px;
  4501. background:inherit;
  4502. background-color:rgba(255, 255, 255, 1);
  4503. box-sizing:border-box;
  4504. border-width:1px;
  4505. border-style:solid;
  4506. border-color:rgba(228, 228, 228, 1);
  4507. border-radius:4px;
  4508. -moz-box-shadow:none;
  4509. -webkit-box-shadow:none;
  4510. box-shadow:none;
  4511. font-family:'Microsoft YaHei', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:14px;
  4515. }
  4516. #u88637 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:1228px;
  4520. top:602px;
  4521. width:30px;
  4522. height:30px;
  4523. display:flex;
  4524. font-family:'Microsoft YaHei', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:14px;
  4528. }
  4529. #u88637 .text {
  4530. position:absolute;
  4531. align-self:center;
  4532. padding:2px 2px 2px 2px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u88637_text {
  4537. border-width:0px;
  4538. word-wrap:break-word;
  4539. text-transform:none;
  4540. }
  4541. #u88638_div {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:30px;
  4547. height:30px;
  4548. background:inherit;
  4549. background-color:rgba(255, 255, 255, 1);
  4550. border:none;
  4551. border-radius:4px;
  4552. -moz-box-shadow:none;
  4553. -webkit-box-shadow:none;
  4554. box-shadow:none;
  4555. font-family:'Microsoft YaHei', sans-serif;
  4556. font-weight:400;
  4557. font-style:normal;
  4558. font-size:14px;
  4559. }
  4560. #u88638 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:1258px;
  4564. top:602px;
  4565. width:30px;
  4566. height:30px;
  4567. display:flex;
  4568. font-family:'Microsoft YaHei', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. }
  4573. #u88638 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u88638_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. }
  4585. #u88639_div {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:30px;
  4591. height:30px;
  4592. background:inherit;
  4593. background-color:rgba(255, 255, 255, 1);
  4594. box-sizing:border-box;
  4595. border-width:1px;
  4596. border-style:solid;
  4597. border-color:rgba(228, 228, 228, 1);
  4598. border-radius:4px;
  4599. -moz-box-shadow:none;
  4600. -webkit-box-shadow:none;
  4601. box-shadow:none;
  4602. font-family:'Microsoft YaHei', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. }
  4607. #u88639 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:1292px;
  4611. top:602px;
  4612. width:30px;
  4613. height:30px;
  4614. display:flex;
  4615. font-family:'Microsoft YaHei', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. font-size:14px;
  4619. }
  4620. #u88639 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 2px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u88639_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. }
  4632. #u88640_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:32px;
  4638. height:21px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 1);
  4641. border:none;
  4642. border-radius:15px;
  4643. -moz-box-shadow:none;
  4644. -webkit-box-shadow:none;
  4645. box-shadow:none;
  4646. font-family:'Microsoft YaHei', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:14px;
  4650. color:#1E1E1E;
  4651. }
  4652. #u88640 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:1366px;
  4656. top:607px;
  4657. width:32px;
  4658. height:21px;
  4659. display:flex;
  4660. font-family:'Microsoft YaHei', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:14px;
  4664. color:#1E1E1E;
  4665. }
  4666. #u88640 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u88640_text {
  4674. border-width:0px;
  4675. white-space:nowrap;
  4676. text-transform:none;
  4677. }
  4678. #u88641 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:0px;
  4684. height:0px;
  4685. }
  4686. #u88642_div {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:31px;
  4692. height:30px;
  4693. background:inherit;
  4694. background-color:rgba(255, 255, 255, 1);
  4695. box-sizing:border-box;
  4696. border-width:1px;
  4697. border-style:solid;
  4698. border-color:rgba(228, 228, 228, 1);
  4699. border-radius:4px;
  4700. -moz-box-shadow:none;
  4701. -webkit-box-shadow:none;
  4702. box-shadow:none;
  4703. font-family:'Microsoft YaHei', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:12px;
  4707. }
  4708. #u88642 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:1091px;
  4712. top:602px;
  4713. width:31px;
  4714. height:30px;
  4715. display:flex;
  4716. font-family:'Microsoft YaHei', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:12px;
  4720. }
  4721. #u88642 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 2px 2px 2px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u88642_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. visibility:hidden;
  4733. }
  4734. #u88643_img {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:8px;
  4740. height:14px;
  4741. }
  4742. #u88643 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:1103px;
  4746. top:610px;
  4747. width:8px;
  4748. height:14px;
  4749. display:flex;
  4750. font-family:'Microsoft YaHei', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:12px;
  4754. }
  4755. #u88643 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:2px 2px 2px 2px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u88643_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u88644 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:0px;
  4774. height:0px;
  4775. }
  4776. #u88645_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:31px;
  4782. height:30px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 1);
  4785. box-sizing:border-box;
  4786. border-width:1px;
  4787. border-style:solid;
  4788. border-color:rgba(228, 228, 228, 1);
  4789. border-radius:4px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'Microsoft YaHei', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:12px;
  4797. }
  4798. #u88645 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:1325px;
  4802. top:602px;
  4803. width:31px;
  4804. height:30px;
  4805. display:flex;
  4806. font-family:'Microsoft YaHei', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:12px;
  4810. }
  4811. #u88645 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 2px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u88645_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u88646_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:8px;
  4830. height:14px;
  4831. }
  4832. #u88646 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:1338px;
  4836. top:610px;
  4837. width:8px;
  4838. height:14px;
  4839. display:flex;
  4840. font-family:'Microsoft YaHei', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. }
  4845. #u88646 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 2px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u88646_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u88647 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:0px;
  4864. height:0px;
  4865. }
  4866. #u88648_div {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:33px;
  4872. height:24px;
  4873. background:inherit;
  4874. background-color:rgba(255, 255, 255, 1);
  4875. border:none;
  4876. border-radius:0px;
  4877. -moz-box-shadow:none;
  4878. -webkit-box-shadow:none;
  4879. box-shadow:none;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:14px;
  4884. color:#BCBCBC;
  4885. text-align:left;
  4886. }
  4887. #u88648 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:1526px;
  4891. top:605px;
  4892. width:33px;
  4893. height:24px;
  4894. display:flex;
  4895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4896. font-weight:400;
  4897. font-style:normal;
  4898. font-size:14px;
  4899. color:#BCBCBC;
  4900. text-align:left;
  4901. }
  4902. #u88648 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:2px 2px 2px 2px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u88648_text {
  4910. border-width:0px;
  4911. white-space:nowrap;
  4912. text-transform:none;
  4913. }
  4914. #u88649_div {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:40px;
  4920. height:30px;
  4921. background:inherit;
  4922. background-color:rgba(255, 255, 255, 1);
  4923. box-sizing:border-box;
  4924. border-width:1px;
  4925. border-style:solid;
  4926. border-color:rgba(228, 228, 228, 1);
  4927. border-radius:4px;
  4928. -moz-box-shadow:none;
  4929. -webkit-box-shadow:none;
  4930. box-shadow:none;
  4931. font-family:'Microsoft YaHei', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:14px;
  4935. }
  4936. #u88649 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:1561px;
  4940. top:602px;
  4941. width:40px;
  4942. height:30px;
  4943. display:flex;
  4944. font-family:'Microsoft YaHei', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:14px;
  4948. }
  4949. #u88649 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 2px 2px 2px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u88649_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u88650_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:19px;
  4968. height:24px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 1);
  4971. border:none;
  4972. border-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:14px;
  4980. color:#BCBCBC;
  4981. text-align:left;
  4982. }
  4983. #u88650 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:1603px;
  4987. top:606px;
  4988. width:19px;
  4989. height:24px;
  4990. display:flex;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:14px;
  4995. color:#BCBCBC;
  4996. text-align:left;
  4997. }
  4998. #u88650 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 2px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u88650_text {
  5006. border-width:0px;
  5007. white-space:nowrap;
  5008. text-transform:none;
  5009. }
  5010. #u88651_input {
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:34px;
  5015. height:25px;
  5016. padding:2px 2px 2px 2px;
  5017. font-family:'Microsoft YaHei', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:13px;
  5021. letter-spacing:normal;
  5022. color:#000000;
  5023. vertical-align:none;
  5024. text-align:left;
  5025. text-transform:none;
  5026. background-color:transparent;
  5027. border-color:transparent;
  5028. }
  5029. #u88651_input.disabled {
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:34px;
  5034. height:25px;
  5035. padding:2px 2px 2px 2px;
  5036. font-family:'Microsoft YaHei', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:13px;
  5040. letter-spacing:normal;
  5041. color:#000000;
  5042. vertical-align:none;
  5043. text-align:left;
  5044. text-transform:none;
  5045. background-color:transparent;
  5046. border-color:transparent;
  5047. }
  5048. #u88651_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:34px;
  5054. height:25px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 1);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-family:'Microsoft YaHei', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. }
  5066. #u88651 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:1564px;
  5070. top:604px;
  5071. width:34px;
  5072. height:25px;
  5073. display:flex;
  5074. font-family:'Microsoft YaHei', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. }
  5078. #u88651 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 2px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u88651_div.disabled {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:34px;
  5091. height:25px;
  5092. background:inherit;
  5093. background-color:rgba(240, 240, 240, 1);
  5094. border:none;
  5095. border-radius:0px;
  5096. -moz-box-shadow:none;
  5097. -webkit-box-shadow:none;
  5098. box-shadow:none;
  5099. font-family:'Microsoft YaHei', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. }
  5103. #u88651.disabled {
  5104. }
  5105. #u88652 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:0px;
  5111. height:0px;
  5112. }
  5113. #u88653_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:140px;
  5119. height:28px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 1);
  5122. box-sizing:border-box;
  5123. border-width:1px;
  5124. border-style:solid;
  5125. border-color:rgba(201, 201, 201, 1);
  5126. border-radius:4px;
  5127. -moz-box-shadow:none;
  5128. -webkit-box-shadow:none;
  5129. box-shadow:none;
  5130. font-family:'Microsoft YaHei', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:14px;
  5134. color:#CCCCCC;
  5135. text-align:left;
  5136. }
  5137. #u88653 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:651px;
  5141. top:101px;
  5142. width:140px;
  5143. height:28px;
  5144. display:flex;
  5145. font-family:'Microsoft YaHei', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:14px;
  5149. color:#CCCCCC;
  5150. text-align:left;
  5151. }
  5152. #u88653 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 8px 2px 8px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u88653_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u88654_input {
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:114px;
  5170. height:26px;
  5171. padding:2px 2px 2px 2px;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. letter-spacing:normal;
  5177. color:#000000;
  5178. vertical-align:none;
  5179. text-align:left;
  5180. text-transform:none;
  5181. background-color:transparent;
  5182. border-color:transparent;
  5183. }
  5184. #u88654_input.disabled {
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:114px;
  5189. height:26px;
  5190. padding:2px 2px 2px 2px;
  5191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5192. font-weight:400;
  5193. font-style:normal;
  5194. font-size:14px;
  5195. letter-spacing:normal;
  5196. color:#000000;
  5197. vertical-align:none;
  5198. text-align:left;
  5199. text-transform:none;
  5200. background-color:transparent;
  5201. border-color:transparent;
  5202. }
  5203. #u88654_div {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:114px;
  5209. height:26px;
  5210. background:inherit;
  5211. background-color:rgba(255, 255, 255, 1);
  5212. border:none;
  5213. border-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. }
  5222. #u88654 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:657px;
  5226. top:102px;
  5227. width:114px;
  5228. height:26px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:14px;
  5234. }
  5235. #u88654 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 2px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u88654_div.disabled {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:114px;
  5248. height:26px;
  5249. background:inherit;
  5250. background-color:rgba(240, 240, 240, 1);
  5251. border:none;
  5252. border-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. }
  5261. #u88654.disabled {
  5262. }
  5263. #u88655_img {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:13px;
  5269. height:15px;
  5270. }
  5271. #u88655 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:771px;
  5275. top:108px;
  5276. width:13px;
  5277. height:15px;
  5278. display:flex;
  5279. }
  5280. #u88655 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 2px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u88655_text {
  5288. border-width:0px;
  5289. word-wrap:break-word;
  5290. text-transform:none;
  5291. visibility:hidden;
  5292. }
  5293. #u88656 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:0px;
  5299. height:0px;
  5300. }
  5301. #u88657_div {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:140px;
  5307. height:30px;
  5308. background:inherit;
  5309. background-color:rgba(255, 255, 255, 1);
  5310. box-sizing:border-box;
  5311. border-width:1px;
  5312. border-style:solid;
  5313. border-color:rgba(201, 201, 201, 1);
  5314. border-radius:4px;
  5315. -moz-box-shadow:none;
  5316. -webkit-box-shadow:none;
  5317. box-shadow:none;
  5318. font-family:'Microsoft YaHei', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:14px;
  5322. color:#CCCCCC;
  5323. text-align:left;
  5324. }
  5325. #u88657 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:501px;
  5329. top:100px;
  5330. width:140px;
  5331. height:30px;
  5332. display:flex;
  5333. font-family:'Microsoft YaHei', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:14px;
  5337. color:#CCCCCC;
  5338. text-align:left;
  5339. }
  5340. #u88657 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 8px 2px 8px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u88657_text {
  5348. border-width:0px;
  5349. word-wrap:break-word;
  5350. text-transform:none;
  5351. visibility:hidden;
  5352. }
  5353. #u88658_input {
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:127px;
  5358. height:25px;
  5359. padding:2px 2px 2px 2px;
  5360. font-family:'Microsoft YaHei', sans-serif;
  5361. font-weight:400;
  5362. font-style:normal;
  5363. font-size:10px;
  5364. letter-spacing:normal;
  5365. color:#000000;
  5366. vertical-align:none;
  5367. text-align:left;
  5368. text-transform:none;
  5369. background-color:transparent;
  5370. border-color:transparent;
  5371. }
  5372. #u88658_input.disabled {
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:127px;
  5377. height:25px;
  5378. padding:2px 2px 2px 2px;
  5379. font-family:'Microsoft YaHei', sans-serif;
  5380. font-weight:400;
  5381. font-style:normal;
  5382. font-size:10px;
  5383. letter-spacing:normal;
  5384. color:#000000;
  5385. vertical-align:none;
  5386. text-align:left;
  5387. text-transform:none;
  5388. background-color:transparent;
  5389. border-color:transparent;
  5390. }
  5391. #u88658_div {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:127px;
  5397. height:25px;
  5398. background:inherit;
  5399. background-color:rgba(255, 255, 255, 1);
  5400. border:none;
  5401. border-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. font-family:'Microsoft YaHei', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:10px;
  5409. }
  5410. #u88658 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:509px;
  5414. top:101px;
  5415. width:127px;
  5416. height:25px;
  5417. display:flex;
  5418. font-family:'Microsoft YaHei', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:10px;
  5422. }
  5423. #u88658 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 2px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u88658_div.disabled {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:127px;
  5436. height:25px;
  5437. background:inherit;
  5438. background-color:rgba(240, 240, 240, 1);
  5439. border:none;
  5440. border-radius:0px;
  5441. -moz-box-shadow:none;
  5442. -webkit-box-shadow:none;
  5443. box-shadow:none;
  5444. font-family:'Microsoft YaHei', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:10px;
  5448. }
  5449. #u88658.disabled {
  5450. }
  5451. #u88659 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:0px;
  5457. height:0px;
  5458. }
  5459. #u88660_div {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:0px;
  5463. top:0px;
  5464. width:140px;
  5465. height:30px;
  5466. background:inherit;
  5467. background-color:rgba(255, 255, 255, 1);
  5468. box-sizing:border-box;
  5469. border-width:1px;
  5470. border-style:solid;
  5471. border-color:rgba(215, 215, 215, 1);
  5472. border-radius:4px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. font-size:11px;
  5477. }
  5478. #u88660 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:351px;
  5482. top:101px;
  5483. width:140px;
  5484. height:30px;
  5485. display:flex;
  5486. font-size:11px;
  5487. }
  5488. #u88660 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 2px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u88660_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. visibility:hidden;
  5500. }
  5501. #u88661_input {
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:126px;
  5506. height:23px;
  5507. padding:2px 2px 2px 2px;
  5508. font-family:'ArialMT', 'Arial', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:11px;
  5512. letter-spacing:normal;
  5513. color:#AAAAAA;
  5514. vertical-align:none;
  5515. text-align:left;
  5516. text-transform:none;
  5517. background-color:transparent;
  5518. border-color:transparent;
  5519. }
  5520. #u88661_input.disabled {
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:126px;
  5525. height:23px;
  5526. padding:2px 2px 2px 2px;
  5527. font-family:'ArialMT', 'Arial', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:11px;
  5531. letter-spacing:normal;
  5532. color:#AAAAAA;
  5533. vertical-align:none;
  5534. text-align:left;
  5535. text-transform:none;
  5536. background-color:transparent;
  5537. border-color:transparent;
  5538. }
  5539. #u88661_div {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:126px;
  5545. height:23px;
  5546. background:inherit;
  5547. background-color:rgba(255, 255, 255, 1);
  5548. border:none;
  5549. border-radius:0px;
  5550. -moz-box-shadow:none;
  5551. -webkit-box-shadow:none;
  5552. box-shadow:none;
  5553. font-size:11px;
  5554. color:#AAAAAA;
  5555. }
  5556. #u88661 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:358px;
  5560. top:103px;
  5561. width:126px;
  5562. height:23px;
  5563. display:flex;
  5564. font-size:11px;
  5565. color:#AAAAAA;
  5566. }
  5567. #u88661 .text {
  5568. position:absolute;
  5569. align-self:flex-start;
  5570. padding:2px 2px 2px 2px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u88661_div.disabled {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:126px;
  5580. height:23px;
  5581. background:inherit;
  5582. background-color:rgba(240, 240, 240, 1);
  5583. border:none;
  5584. border-radius:0px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-size:11px;
  5589. color:#AAAAAA;
  5590. }
  5591. #u88661.disabled {
  5592. }
  5593. .u88661_input_option {
  5594. font-size:11px;
  5595. }
  5596. #u88662 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:0px;
  5602. height:0px;
  5603. }
  5604. #u88663_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:140px;
  5610. height:30px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 1);
  5613. box-sizing:border-box;
  5614. border-width:1px;
  5615. border-style:solid;
  5616. border-color:rgba(201, 201, 201, 1);
  5617. border-radius:4px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. font-family:'Microsoft YaHei', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:14px;
  5625. color:#CCCCCC;
  5626. text-align:left;
  5627. }
  5628. #u88663 {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:801px;
  5632. top:100px;
  5633. width:140px;
  5634. height:30px;
  5635. display:flex;
  5636. font-family:'Microsoft YaHei', sans-serif;
  5637. font-weight:400;
  5638. font-style:normal;
  5639. font-size:14px;
  5640. color:#CCCCCC;
  5641. text-align:left;
  5642. }
  5643. #u88663 .text {
  5644. position:absolute;
  5645. align-self:center;
  5646. padding:2px 8px 2px 8px;
  5647. box-sizing:border-box;
  5648. width:100%;
  5649. }
  5650. #u88663_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. visibility:hidden;
  5655. }
  5656. #u88664_input {
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:127px;
  5661. height:25px;
  5662. padding:2px 2px 2px 2px;
  5663. font-family:'Microsoft YaHei', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:10px;
  5667. letter-spacing:normal;
  5668. color:#000000;
  5669. vertical-align:none;
  5670. text-align:left;
  5671. text-transform:none;
  5672. background-color:transparent;
  5673. border-color:transparent;
  5674. }
  5675. #u88664_input.disabled {
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:127px;
  5680. height:25px;
  5681. padding:2px 2px 2px 2px;
  5682. font-family:'Microsoft YaHei', sans-serif;
  5683. font-weight:400;
  5684. font-style:normal;
  5685. font-size:10px;
  5686. letter-spacing:normal;
  5687. color:#000000;
  5688. vertical-align:none;
  5689. text-align:left;
  5690. text-transform:none;
  5691. background-color:transparent;
  5692. border-color:transparent;
  5693. }
  5694. #u88664_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:127px;
  5700. height:25px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 1);
  5703. border:none;
  5704. border-radius:0px;
  5705. -moz-box-shadow:none;
  5706. -webkit-box-shadow:none;
  5707. box-shadow:none;
  5708. font-family:'Microsoft YaHei', sans-serif;
  5709. font-weight:400;
  5710. font-style:normal;
  5711. font-size:10px;
  5712. }
  5713. #u88664 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:809px;
  5717. top:101px;
  5718. width:127px;
  5719. height:25px;
  5720. display:flex;
  5721. font-family:'Microsoft YaHei', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:10px;
  5725. }
  5726. #u88664 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 2px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u88664_div.disabled {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:127px;
  5739. height:25px;
  5740. background:inherit;
  5741. background-color:rgba(240, 240, 240, 1);
  5742. border:none;
  5743. border-radius:0px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. font-family:'Microsoft YaHei', sans-serif;
  5748. font-weight:400;
  5749. font-style:normal;
  5750. font-size:10px;
  5751. }
  5752. #u88664.disabled {
  5753. }
  5754. #u88665 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:0px;
  5760. height:0px;
  5761. }
  5762. #u88666_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:140px;
  5768. height:30px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 1);
  5771. box-sizing:border-box;
  5772. border-width:1px;
  5773. border-style:solid;
  5774. border-color:rgba(201, 201, 201, 1);
  5775. border-radius:4px;
  5776. -moz-box-shadow:none;
  5777. -webkit-box-shadow:none;
  5778. box-shadow:none;
  5779. font-family:'Microsoft YaHei', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:14px;
  5783. color:#CCCCCC;
  5784. text-align:left;
  5785. }
  5786. #u88666 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:1401px;
  5790. top:102px;
  5791. width:140px;
  5792. height:30px;
  5793. display:flex;
  5794. font-family:'Microsoft YaHei', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:14px;
  5798. color:#CCCCCC;
  5799. text-align:left;
  5800. }
  5801. #u88666 .text {
  5802. position:absolute;
  5803. align-self:center;
  5804. padding:2px 8px 2px 8px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u88666_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. visibility:hidden;
  5813. }
  5814. #u88667_input {
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:127px;
  5819. height:25px;
  5820. padding:2px 2px 2px 2px;
  5821. font-family:'Microsoft YaHei', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:10px;
  5825. letter-spacing:normal;
  5826. color:#000000;
  5827. vertical-align:none;
  5828. text-align:left;
  5829. text-transform:none;
  5830. background-color:transparent;
  5831. border-color:transparent;
  5832. }
  5833. #u88667_input.disabled {
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:127px;
  5838. height:25px;
  5839. padding:2px 2px 2px 2px;
  5840. font-family:'Microsoft YaHei', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:10px;
  5844. letter-spacing:normal;
  5845. color:#000000;
  5846. vertical-align:none;
  5847. text-align:left;
  5848. text-transform:none;
  5849. background-color:transparent;
  5850. border-color:transparent;
  5851. }
  5852. #u88667_div {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:127px;
  5858. height:25px;
  5859. background:inherit;
  5860. background-color:rgba(255, 255, 255, 1);
  5861. border:none;
  5862. border-radius:0px;
  5863. -moz-box-shadow:none;
  5864. -webkit-box-shadow:none;
  5865. box-shadow:none;
  5866. font-family:'Microsoft YaHei', sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:10px;
  5870. }
  5871. #u88667 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:1409px;
  5875. top:103px;
  5876. width:127px;
  5877. height:25px;
  5878. display:flex;
  5879. font-family:'Microsoft YaHei', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:10px;
  5883. }
  5884. #u88667 .text {
  5885. position:absolute;
  5886. align-self:center;
  5887. padding:2px 2px 2px 2px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u88667_div.disabled {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:127px;
  5897. height:25px;
  5898. background:inherit;
  5899. background-color:rgba(240, 240, 240, 1);
  5900. border:none;
  5901. border-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. font-family:'Microsoft YaHei', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:10px;
  5909. }
  5910. #u88667.disabled {
  5911. }
  5912. #u88668 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:0px;
  5918. height:0px;
  5919. }
  5920. #u88669_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:140px;
  5926. height:30px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 1);
  5929. box-sizing:border-box;
  5930. border-width:1px;
  5931. border-style:solid;
  5932. border-color:rgba(215, 215, 215, 1);
  5933. border-radius:4px;
  5934. -moz-box-shadow:none;
  5935. -webkit-box-shadow:none;
  5936. box-shadow:none;
  5937. font-size:11px;
  5938. }
  5939. #u88669 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:951px;
  5943. top:101px;
  5944. width:140px;
  5945. height:30px;
  5946. display:flex;
  5947. font-size:11px;
  5948. }
  5949. #u88669 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u88669_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. visibility:hidden;
  5961. }
  5962. #u88670_input {
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:126px;
  5967. height:23px;
  5968. padding:2px 2px 2px 2px;
  5969. font-family:'ArialMT', 'Arial', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:11px;
  5973. letter-spacing:normal;
  5974. color:#AAAAAA;
  5975. vertical-align:none;
  5976. text-align:left;
  5977. text-transform:none;
  5978. background-color:transparent;
  5979. border-color:transparent;
  5980. }
  5981. #u88670_input.disabled {
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:126px;
  5986. height:23px;
  5987. padding:2px 2px 2px 2px;
  5988. font-family:'ArialMT', 'Arial', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:11px;
  5992. letter-spacing:normal;
  5993. color:#AAAAAA;
  5994. vertical-align:none;
  5995. text-align:left;
  5996. text-transform:none;
  5997. background-color:transparent;
  5998. border-color:transparent;
  5999. }
  6000. #u88670_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:126px;
  6006. height:23px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 1);
  6009. border:none;
  6010. border-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. font-size:11px;
  6015. color:#AAAAAA;
  6016. }
  6017. #u88670 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:958px;
  6021. top:103px;
  6022. width:126px;
  6023. height:23px;
  6024. display:flex;
  6025. font-size:11px;
  6026. color:#AAAAAA;
  6027. }
  6028. #u88670 .text {
  6029. position:absolute;
  6030. align-self:flex-start;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u88670_div.disabled {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:126px;
  6041. height:23px;
  6042. background:inherit;
  6043. background-color:rgba(240, 240, 240, 1);
  6044. border:none;
  6045. border-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-size:11px;
  6050. color:#AAAAAA;
  6051. }
  6052. #u88670.disabled {
  6053. }
  6054. .u88670_input_option {
  6055. font-size:11px;
  6056. }
  6057. #u88671_div {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:55px;
  6063. height:30px;
  6064. background:inherit;
  6065. background-color:rgba(255, 255, 255, 1);
  6066. box-sizing:border-box;
  6067. border-width:1px;
  6068. border-style:solid;
  6069. border-color:rgba(170, 170, 170, 1);
  6070. border-radius:4px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. color:#555555;
  6079. }
  6080. #u88671 {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:424px;
  6084. top:231px;
  6085. width:55px;
  6086. height:30px;
  6087. display:flex;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:12px;
  6092. color:#555555;
  6093. }
  6094. #u88671 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:5px 15px 5px 15px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u88671_text {
  6102. border-width:0px;
  6103. white-space:nowrap;
  6104. text-transform:none;
  6105. }
  6106. #u88672 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:0px;
  6112. height:0px;
  6113. }
  6114. #u88673_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:140px;
  6120. height:30px;
  6121. background:inherit;
  6122. background-color:rgba(255, 255, 255, 1);
  6123. box-sizing:border-box;
  6124. border-width:1px;
  6125. border-style:solid;
  6126. border-color:rgba(201, 201, 201, 1);
  6127. border-radius:4px;
  6128. -moz-box-shadow:none;
  6129. -webkit-box-shadow:none;
  6130. box-shadow:none;
  6131. font-family:'Microsoft YaHei', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:14px;
  6135. color:#CCCCCC;
  6136. text-align:left;
  6137. }
  6138. #u88673 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:1551px;
  6142. top:101px;
  6143. width:140px;
  6144. height:30px;
  6145. display:flex;
  6146. font-family:'Microsoft YaHei', sans-serif;
  6147. font-weight:400;
  6148. font-style:normal;
  6149. font-size:14px;
  6150. color:#CCCCCC;
  6151. text-align:left;
  6152. }
  6153. #u88673 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 8px 2px 8px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u88673_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u88674_input {
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:127px;
  6171. height:25px;
  6172. padding:2px 2px 2px 2px;
  6173. font-family:'Microsoft YaHei', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:10px;
  6177. letter-spacing:normal;
  6178. color:#000000;
  6179. vertical-align:none;
  6180. text-align:left;
  6181. text-transform:none;
  6182. background-color:transparent;
  6183. border-color:transparent;
  6184. }
  6185. #u88674_input.disabled {
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:127px;
  6190. height:25px;
  6191. padding:2px 2px 2px 2px;
  6192. font-family:'Microsoft YaHei', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:10px;
  6196. letter-spacing:normal;
  6197. color:#000000;
  6198. vertical-align:none;
  6199. text-align:left;
  6200. text-transform:none;
  6201. background-color:transparent;
  6202. border-color:transparent;
  6203. }
  6204. #u88674_div {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:127px;
  6210. height:25px;
  6211. background:inherit;
  6212. background-color:rgba(255, 255, 255, 1);
  6213. border:none;
  6214. border-radius:0px;
  6215. -moz-box-shadow:none;
  6216. -webkit-box-shadow:none;
  6217. box-shadow:none;
  6218. font-family:'Microsoft YaHei', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:10px;
  6222. }
  6223. #u88674 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:1559px;
  6227. top:102px;
  6228. width:127px;
  6229. height:25px;
  6230. display:flex;
  6231. font-family:'Microsoft YaHei', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:10px;
  6235. }
  6236. #u88674 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:2px 2px 2px 2px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u88674_div.disabled {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:127px;
  6249. height:25px;
  6250. background:inherit;
  6251. background-color:rgba(240, 240, 240, 1);
  6252. border:none;
  6253. border-radius:0px;
  6254. -moz-box-shadow:none;
  6255. -webkit-box-shadow:none;
  6256. box-shadow:none;
  6257. font-family:'Microsoft YaHei', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:10px;
  6261. }
  6262. #u88674.disabled {
  6263. }
  6264. #u88675 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:0px;
  6270. height:0px;
  6271. }
  6272. #u88676_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:140px;
  6278. height:30px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 1);
  6281. box-sizing:border-box;
  6282. border-width:1px;
  6283. border-style:solid;
  6284. border-color:rgba(201, 201, 201, 1);
  6285. border-radius:4px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'Microsoft YaHei', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:14px;
  6293. color:#CCCCCC;
  6294. text-align:left;
  6295. }
  6296. #u88676 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:501px;
  6300. top:141px;
  6301. width:140px;
  6302. height:30px;
  6303. display:flex;
  6304. font-family:'Microsoft YaHei', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. color:#CCCCCC;
  6309. text-align:left;
  6310. }
  6311. #u88676 .text {
  6312. position:absolute;
  6313. align-self:center;
  6314. padding:2px 8px 2px 8px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u88676_text {
  6319. border-width:0px;
  6320. word-wrap:break-word;
  6321. text-transform:none;
  6322. visibility:hidden;
  6323. }
  6324. #u88677_input {
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:127px;
  6329. height:25px;
  6330. padding:2px 2px 2px 2px;
  6331. font-family:'Microsoft YaHei', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:10px;
  6335. letter-spacing:normal;
  6336. color:#000000;
  6337. vertical-align:none;
  6338. text-align:left;
  6339. text-transform:none;
  6340. background-color:transparent;
  6341. border-color:transparent;
  6342. }
  6343. #u88677_input.disabled {
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:127px;
  6348. height:25px;
  6349. padding:2px 2px 2px 2px;
  6350. font-family:'Microsoft YaHei', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:10px;
  6354. letter-spacing:normal;
  6355. color:#000000;
  6356. vertical-align:none;
  6357. text-align:left;
  6358. text-transform:none;
  6359. background-color:transparent;
  6360. border-color:transparent;
  6361. }
  6362. #u88677_div {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:127px;
  6368. height:25px;
  6369. background:inherit;
  6370. background-color:rgba(255, 255, 255, 1);
  6371. border:none;
  6372. border-radius:0px;
  6373. -moz-box-shadow:none;
  6374. -webkit-box-shadow:none;
  6375. box-shadow:none;
  6376. font-family:'Microsoft YaHei', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:10px;
  6380. }
  6381. #u88677 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:509px;
  6385. top:142px;
  6386. width:127px;
  6387. height:25px;
  6388. display:flex;
  6389. font-family:'Microsoft YaHei', sans-serif;
  6390. font-weight:400;
  6391. font-style:normal;
  6392. font-size:10px;
  6393. }
  6394. #u88677 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 2px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u88677_div.disabled {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:127px;
  6407. height:25px;
  6408. background:inherit;
  6409. background-color:rgba(240, 240, 240, 1);
  6410. border:none;
  6411. border-radius:0px;
  6412. -moz-box-shadow:none;
  6413. -webkit-box-shadow:none;
  6414. box-shadow:none;
  6415. font-family:'Microsoft YaHei', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:10px;
  6419. }
  6420. #u88677.disabled {
  6421. }
  6422. #u88678 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:0px;
  6428. height:0px;
  6429. }
  6430. #u88679_div {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:140px;
  6436. height:30px;
  6437. background:inherit;
  6438. background-color:rgba(255, 255, 255, 1);
  6439. box-sizing:border-box;
  6440. border-width:1px;
  6441. border-style:solid;
  6442. border-color:rgba(215, 215, 215, 1);
  6443. border-radius:4px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. font-size:11px;
  6448. }
  6449. #u88679 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:951px;
  6453. top:141px;
  6454. width:140px;
  6455. height:30px;
  6456. display:flex;
  6457. font-size:11px;
  6458. }
  6459. #u88679 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:2px 2px 2px 2px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u88679_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u88680_input {
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:126px;
  6477. height:23px;
  6478. padding:2px 2px 2px 2px;
  6479. font-family:'ArialMT', 'Arial', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:11px;
  6483. letter-spacing:normal;
  6484. color:#AAAAAA;
  6485. vertical-align:none;
  6486. text-align:left;
  6487. text-transform:none;
  6488. background-color:transparent;
  6489. border-color:transparent;
  6490. }
  6491. #u88680_input.disabled {
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:126px;
  6496. height:23px;
  6497. padding:2px 2px 2px 2px;
  6498. font-family:'ArialMT', 'Arial', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:11px;
  6502. letter-spacing:normal;
  6503. color:#AAAAAA;
  6504. vertical-align:none;
  6505. text-align:left;
  6506. text-transform:none;
  6507. background-color:transparent;
  6508. border-color:transparent;
  6509. }
  6510. #u88680_div {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:126px;
  6516. height:23px;
  6517. background:inherit;
  6518. background-color:rgba(255, 255, 255, 1);
  6519. border:none;
  6520. border-radius:0px;
  6521. -moz-box-shadow:none;
  6522. -webkit-box-shadow:none;
  6523. box-shadow:none;
  6524. font-size:11px;
  6525. color:#AAAAAA;
  6526. }
  6527. #u88680 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:958px;
  6531. top:143px;
  6532. width:126px;
  6533. height:23px;
  6534. display:flex;
  6535. font-size:11px;
  6536. color:#AAAAAA;
  6537. }
  6538. #u88680 .text {
  6539. position:absolute;
  6540. align-self:flex-start;
  6541. padding:2px 2px 2px 2px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u88680_div.disabled {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:126px;
  6551. height:23px;
  6552. background:inherit;
  6553. background-color:rgba(240, 240, 240, 1);
  6554. border:none;
  6555. border-radius:0px;
  6556. -moz-box-shadow:none;
  6557. -webkit-box-shadow:none;
  6558. box-shadow:none;
  6559. font-size:11px;
  6560. color:#AAAAAA;
  6561. }
  6562. #u88680.disabled {
  6563. }
  6564. .u88680_input_option {
  6565. font-size:11px;
  6566. }
  6567. #u88681_div {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:60px;
  6573. height:30px;
  6574. background:inherit;
  6575. background-color:rgba(24, 144, 255, 1);
  6576. box-sizing:border-box;
  6577. border-width:1px;
  6578. border-style:solid;
  6579. border-color:rgba(0, 153, 255, 1);
  6580. border-radius:4px;
  6581. -moz-box-shadow:none;
  6582. -webkit-box-shadow:none;
  6583. box-shadow:none;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:14px;
  6588. color:#FFFFFF;
  6589. }
  6590. #u88681 {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:354px;
  6594. top:231px;
  6595. width:60px;
  6596. height:30px;
  6597. display:flex;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:14px;
  6602. color:#FFFFFF;
  6603. }
  6604. #u88681 .text {
  6605. position:absolute;
  6606. align-self:center;
  6607. padding:5px 0px 5px 0px;
  6608. box-sizing:border-box;
  6609. width:100%;
  6610. }
  6611. #u88681_text {
  6612. border-width:0px;
  6613. word-wrap:break-word;
  6614. text-transform:none;
  6615. }
  6616. #u88682 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:0px;
  6622. height:0px;
  6623. }
  6624. #u88683_div {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:140px;
  6630. height:30px;
  6631. background:inherit;
  6632. background-color:rgba(255, 255, 255, 1);
  6633. box-sizing:border-box;
  6634. border-width:1px;
  6635. border-style:solid;
  6636. border-color:rgba(215, 215, 215, 1);
  6637. border-radius:4px;
  6638. -moz-box-shadow:none;
  6639. -webkit-box-shadow:none;
  6640. box-shadow:none;
  6641. font-size:11px;
  6642. }
  6643. #u88683 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:1101px;
  6647. top:141px;
  6648. width:140px;
  6649. height:30px;
  6650. display:flex;
  6651. font-size:11px;
  6652. }
  6653. #u88683 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 2px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u88683_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u88684_input {
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:126px;
  6671. height:23px;
  6672. padding:2px 2px 2px 2px;
  6673. font-family:'ArialMT', 'Arial', sans-serif;
  6674. font-weight:400;
  6675. font-style:normal;
  6676. font-size:11px;
  6677. letter-spacing:normal;
  6678. color:#AAAAAA;
  6679. vertical-align:none;
  6680. text-align:left;
  6681. text-transform:none;
  6682. background-color:transparent;
  6683. border-color:transparent;
  6684. }
  6685. #u88684_input.disabled {
  6686. position:absolute;
  6687. left:0px;
  6688. top:0px;
  6689. width:126px;
  6690. height:23px;
  6691. padding:2px 2px 2px 2px;
  6692. font-family:'ArialMT', 'Arial', sans-serif;
  6693. font-weight:400;
  6694. font-style:normal;
  6695. font-size:11px;
  6696. letter-spacing:normal;
  6697. color:#AAAAAA;
  6698. vertical-align:none;
  6699. text-align:left;
  6700. text-transform:none;
  6701. background-color:transparent;
  6702. border-color:transparent;
  6703. }
  6704. #u88684_div {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:126px;
  6710. height:23px;
  6711. background:inherit;
  6712. background-color:rgba(255, 255, 255, 1);
  6713. border:none;
  6714. border-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-size:11px;
  6719. color:#AAAAAA;
  6720. }
  6721. #u88684 {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:1108px;
  6725. top:143px;
  6726. width:126px;
  6727. height:23px;
  6728. display:flex;
  6729. font-size:11px;
  6730. color:#AAAAAA;
  6731. }
  6732. #u88684 .text {
  6733. position:absolute;
  6734. align-self:flex-start;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u88684_div.disabled {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:126px;
  6745. height:23px;
  6746. background:inherit;
  6747. background-color:rgba(240, 240, 240, 1);
  6748. border:none;
  6749. border-radius:0px;
  6750. -moz-box-shadow:none;
  6751. -webkit-box-shadow:none;
  6752. box-shadow:none;
  6753. font-size:11px;
  6754. color:#AAAAAA;
  6755. }
  6756. #u88684.disabled {
  6757. }
  6758. .u88684_input_option {
  6759. font-size:11px;
  6760. }
  6761. #u88685 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:0px;
  6767. height:0px;
  6768. }
  6769. #u88686_div {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:140px;
  6775. height:30px;
  6776. background:inherit;
  6777. background-color:rgba(255, 255, 255, 1);
  6778. box-sizing:border-box;
  6779. border-width:1px;
  6780. border-style:solid;
  6781. border-color:rgba(215, 215, 215, 1);
  6782. border-radius:4px;
  6783. -moz-box-shadow:none;
  6784. -webkit-box-shadow:none;
  6785. box-shadow:none;
  6786. font-size:11px;
  6787. }
  6788. #u88686 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:1251px;
  6792. top:141px;
  6793. width:140px;
  6794. height:30px;
  6795. display:flex;
  6796. font-size:11px;
  6797. }
  6798. #u88686 .text {
  6799. position:absolute;
  6800. align-self:center;
  6801. padding:2px 2px 2px 2px;
  6802. box-sizing:border-box;
  6803. width:100%;
  6804. }
  6805. #u88686_text {
  6806. border-width:0px;
  6807. word-wrap:break-word;
  6808. text-transform:none;
  6809. visibility:hidden;
  6810. }
  6811. #u88687_input {
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:126px;
  6816. height:23px;
  6817. padding:2px 2px 2px 2px;
  6818. font-family:'ArialMT', 'Arial', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:11px;
  6822. letter-spacing:normal;
  6823. color:#AAAAAA;
  6824. vertical-align:none;
  6825. text-align:left;
  6826. text-transform:none;
  6827. background-color:transparent;
  6828. border-color:transparent;
  6829. }
  6830. #u88687_input.disabled {
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:126px;
  6835. height:23px;
  6836. padding:2px 2px 2px 2px;
  6837. font-family:'ArialMT', 'Arial', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:11px;
  6841. letter-spacing:normal;
  6842. color:#AAAAAA;
  6843. vertical-align:none;
  6844. text-align:left;
  6845. text-transform:none;
  6846. background-color:transparent;
  6847. border-color:transparent;
  6848. }
  6849. #u88687_div {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:126px;
  6855. height:23px;
  6856. background:inherit;
  6857. background-color:rgba(255, 255, 255, 1);
  6858. border:none;
  6859. border-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-size:11px;
  6864. color:#AAAAAA;
  6865. }
  6866. #u88687 {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:1258px;
  6870. top:143px;
  6871. width:126px;
  6872. height:23px;
  6873. display:flex;
  6874. font-size:11px;
  6875. color:#AAAAAA;
  6876. }
  6877. #u88687 .text {
  6878. position:absolute;
  6879. align-self:flex-start;
  6880. padding:2px 2px 2px 2px;
  6881. box-sizing:border-box;
  6882. width:100%;
  6883. }
  6884. #u88687_div.disabled {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:126px;
  6890. height:23px;
  6891. background:inherit;
  6892. background-color:rgba(240, 240, 240, 1);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-size:11px;
  6899. color:#AAAAAA;
  6900. }
  6901. #u88687.disabled {
  6902. }
  6903. .u88687_input_option {
  6904. font-size:11px;
  6905. }
  6906. #u88688 {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:0px;
  6912. height:0px;
  6913. }
  6914. #u88689_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:140px;
  6920. height:30px;
  6921. background:inherit;
  6922. background-color:rgba(255, 255, 255, 1);
  6923. box-sizing:border-box;
  6924. border-width:1px;
  6925. border-style:solid;
  6926. border-color:rgba(215, 215, 215, 1);
  6927. border-radius:4px;
  6928. -moz-box-shadow:none;
  6929. -webkit-box-shadow:none;
  6930. box-shadow:none;
  6931. font-size:11px;
  6932. }
  6933. #u88689 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:1401px;
  6937. top:140px;
  6938. width:140px;
  6939. height:30px;
  6940. display:flex;
  6941. font-size:11px;
  6942. }
  6943. #u88689 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 2px 2px 2px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u88689_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u88690_input {
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:126px;
  6961. height:23px;
  6962. padding:2px 2px 2px 2px;
  6963. font-family:'ArialMT', 'Arial', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:11px;
  6967. letter-spacing:normal;
  6968. color:#AAAAAA;
  6969. vertical-align:none;
  6970. text-align:left;
  6971. text-transform:none;
  6972. background-color:transparent;
  6973. border-color:transparent;
  6974. }
  6975. #u88690_input.disabled {
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:126px;
  6980. height:23px;
  6981. padding:2px 2px 2px 2px;
  6982. font-family:'ArialMT', 'Arial', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:11px;
  6986. letter-spacing:normal;
  6987. color:#AAAAAA;
  6988. vertical-align:none;
  6989. text-align:left;
  6990. text-transform:none;
  6991. background-color:transparent;
  6992. border-color:transparent;
  6993. }
  6994. #u88690_div {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:126px;
  7000. height:23px;
  7001. background:inherit;
  7002. background-color:rgba(255, 255, 255, 1);
  7003. border:none;
  7004. border-radius:0px;
  7005. -moz-box-shadow:none;
  7006. -webkit-box-shadow:none;
  7007. box-shadow:none;
  7008. font-size:11px;
  7009. color:#AAAAAA;
  7010. }
  7011. #u88690 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:1408px;
  7015. top:142px;
  7016. width:126px;
  7017. height:23px;
  7018. display:flex;
  7019. font-size:11px;
  7020. color:#AAAAAA;
  7021. }
  7022. #u88690 .text {
  7023. position:absolute;
  7024. align-self:flex-start;
  7025. padding:2px 2px 2px 2px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u88690_div.disabled {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:126px;
  7035. height:23px;
  7036. background:inherit;
  7037. background-color:rgba(240, 240, 240, 1);
  7038. border:none;
  7039. border-radius:0px;
  7040. -moz-box-shadow:none;
  7041. -webkit-box-shadow:none;
  7042. box-shadow:none;
  7043. font-size:11px;
  7044. color:#AAAAAA;
  7045. }
  7046. #u88690.disabled {
  7047. }
  7048. .u88690_input_option {
  7049. font-size:11px;
  7050. }
  7051. #u88691 {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:0px;
  7057. height:0px;
  7058. }
  7059. #u88692_div {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:140px;
  7065. height:30px;
  7066. background:inherit;
  7067. background-color:rgba(255, 255, 255, 1);
  7068. box-sizing:border-box;
  7069. border-width:1px;
  7070. border-style:solid;
  7071. border-color:rgba(215, 215, 215, 1);
  7072. border-radius:4px;
  7073. -moz-box-shadow:none;
  7074. -webkit-box-shadow:none;
  7075. box-shadow:none;
  7076. font-size:11px;
  7077. }
  7078. #u88692 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:1101px;
  7082. top:101px;
  7083. width:140px;
  7084. height:30px;
  7085. display:flex;
  7086. font-size:11px;
  7087. }
  7088. #u88692 .text {
  7089. position:absolute;
  7090. align-self:center;
  7091. padding:2px 2px 2px 2px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u88692_text {
  7096. border-width:0px;
  7097. word-wrap:break-word;
  7098. text-transform:none;
  7099. visibility:hidden;
  7100. }
  7101. #u88693_input {
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:126px;
  7106. height:23px;
  7107. padding:2px 2px 2px 2px;
  7108. font-family:'ArialMT', 'Arial', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:11px;
  7112. letter-spacing:normal;
  7113. color:#AAAAAA;
  7114. vertical-align:none;
  7115. text-align:left;
  7116. text-transform:none;
  7117. background-color:transparent;
  7118. border-color:transparent;
  7119. }
  7120. #u88693_input.disabled {
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:126px;
  7125. height:23px;
  7126. padding:2px 2px 2px 2px;
  7127. font-family:'ArialMT', 'Arial', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:11px;
  7131. letter-spacing:normal;
  7132. color:#AAAAAA;
  7133. vertical-align:none;
  7134. text-align:left;
  7135. text-transform:none;
  7136. background-color:transparent;
  7137. border-color:transparent;
  7138. }
  7139. #u88693_div {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:126px;
  7145. height:23px;
  7146. background:inherit;
  7147. background-color:rgba(255, 255, 255, 1);
  7148. border:none;
  7149. border-radius:0px;
  7150. -moz-box-shadow:none;
  7151. -webkit-box-shadow:none;
  7152. box-shadow:none;
  7153. font-size:11px;
  7154. color:#AAAAAA;
  7155. }
  7156. #u88693 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:1108px;
  7160. top:103px;
  7161. width:126px;
  7162. height:23px;
  7163. display:flex;
  7164. font-size:11px;
  7165. color:#AAAAAA;
  7166. }
  7167. #u88693 .text {
  7168. position:absolute;
  7169. align-self:flex-start;
  7170. padding:2px 2px 2px 2px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u88693_div.disabled {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:126px;
  7180. height:23px;
  7181. background:inherit;
  7182. background-color:rgba(240, 240, 240, 1);
  7183. border:none;
  7184. border-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. font-size:11px;
  7189. color:#AAAAAA;
  7190. }
  7191. #u88693.disabled {
  7192. }
  7193. .u88693_input_option {
  7194. font-size:11px;
  7195. }
  7196. #u88694 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:0px;
  7202. height:0px;
  7203. }
  7204. #u88695_div {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:140px;
  7210. height:30px;
  7211. background:inherit;
  7212. background-color:rgba(255, 255, 255, 1);
  7213. box-sizing:border-box;
  7214. border-width:1px;
  7215. border-style:solid;
  7216. border-color:rgba(215, 215, 215, 1);
  7217. border-radius:4px;
  7218. -moz-box-shadow:none;
  7219. -webkit-box-shadow:none;
  7220. box-shadow:none;
  7221. font-size:11px;
  7222. }
  7223. #u88695 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:351px;
  7227. top:141px;
  7228. width:140px;
  7229. height:30px;
  7230. display:flex;
  7231. font-size:11px;
  7232. }
  7233. #u88695 .text {
  7234. position:absolute;
  7235. align-self:center;
  7236. padding:2px 2px 2px 2px;
  7237. box-sizing:border-box;
  7238. width:100%;
  7239. }
  7240. #u88695_text {
  7241. border-width:0px;
  7242. word-wrap:break-word;
  7243. text-transform:none;
  7244. visibility:hidden;
  7245. }
  7246. #u88696_input {
  7247. position:absolute;
  7248. left:0px;
  7249. top:0px;
  7250. width:126px;
  7251. height:23px;
  7252. padding:2px 2px 2px 2px;
  7253. font-family:'ArialMT', 'Arial', sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:11px;
  7257. letter-spacing:normal;
  7258. color:#AAAAAA;
  7259. vertical-align:none;
  7260. text-align:left;
  7261. text-transform:none;
  7262. background-color:transparent;
  7263. border-color:transparent;
  7264. }
  7265. #u88696_input.disabled {
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:126px;
  7270. height:23px;
  7271. padding:2px 2px 2px 2px;
  7272. font-family:'ArialMT', 'Arial', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:11px;
  7276. letter-spacing:normal;
  7277. color:#AAAAAA;
  7278. vertical-align:none;
  7279. text-align:left;
  7280. text-transform:none;
  7281. background-color:transparent;
  7282. border-color:transparent;
  7283. }
  7284. #u88696_div {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:126px;
  7290. height:23px;
  7291. background:inherit;
  7292. background-color:rgba(255, 255, 255, 1);
  7293. border:none;
  7294. border-radius:0px;
  7295. -moz-box-shadow:none;
  7296. -webkit-box-shadow:none;
  7297. box-shadow:none;
  7298. font-size:11px;
  7299. color:#AAAAAA;
  7300. }
  7301. #u88696 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:358px;
  7305. top:143px;
  7306. width:126px;
  7307. height:23px;
  7308. display:flex;
  7309. font-size:11px;
  7310. color:#AAAAAA;
  7311. }
  7312. #u88696 .text {
  7313. position:absolute;
  7314. align-self:flex-start;
  7315. padding:2px 2px 2px 2px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u88696_div.disabled {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:126px;
  7325. height:23px;
  7326. background:inherit;
  7327. background-color:rgba(240, 240, 240, 1);
  7328. border:none;
  7329. border-radius:0px;
  7330. -moz-box-shadow:none;
  7331. -webkit-box-shadow:none;
  7332. box-shadow:none;
  7333. font-size:11px;
  7334. color:#AAAAAA;
  7335. }
  7336. #u88696.disabled {
  7337. }
  7338. .u88696_input_option {
  7339. font-size:11px;
  7340. }
  7341. #u88697 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:0px;
  7345. top:0px;
  7346. width:0px;
  7347. height:0px;
  7348. }
  7349. #u88698_div {
  7350. border-width:0px;
  7351. position:absolute;
  7352. left:0px;
  7353. top:0px;
  7354. width:140px;
  7355. height:30px;
  7356. background:inherit;
  7357. background-color:rgba(255, 255, 255, 1);
  7358. box-sizing:border-box;
  7359. border-width:1px;
  7360. border-style:solid;
  7361. border-color:rgba(201, 201, 201, 1);
  7362. border-radius:4px;
  7363. -moz-box-shadow:none;
  7364. -webkit-box-shadow:none;
  7365. box-shadow:none;
  7366. font-family:'Microsoft YaHei', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:14px;
  7370. color:#CCCCCC;
  7371. text-align:left;
  7372. }
  7373. #u88698 {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:651px;
  7377. top:141px;
  7378. width:140px;
  7379. height:30px;
  7380. display:flex;
  7381. font-family:'Microsoft YaHei', sans-serif;
  7382. font-weight:400;
  7383. font-style:normal;
  7384. font-size:14px;
  7385. color:#CCCCCC;
  7386. text-align:left;
  7387. }
  7388. #u88698 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 8px 2px 8px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u88698_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u88699_input {
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:127px;
  7406. height:25px;
  7407. padding:2px 2px 2px 2px;
  7408. font-family:'Microsoft YaHei', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:10px;
  7412. letter-spacing:normal;
  7413. color:#000000;
  7414. vertical-align:none;
  7415. text-align:left;
  7416. text-transform:none;
  7417. background-color:transparent;
  7418. border-color:transparent;
  7419. }
  7420. #u88699_input.disabled {
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:127px;
  7425. height:25px;
  7426. padding:2px 2px 2px 2px;
  7427. font-family:'Microsoft YaHei', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:10px;
  7431. letter-spacing:normal;
  7432. color:#000000;
  7433. vertical-align:none;
  7434. text-align:left;
  7435. text-transform:none;
  7436. background-color:transparent;
  7437. border-color:transparent;
  7438. }
  7439. #u88699_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:127px;
  7445. height:25px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 1);
  7448. border:none;
  7449. border-radius:0px;
  7450. -moz-box-shadow:none;
  7451. -webkit-box-shadow:none;
  7452. box-shadow:none;
  7453. font-family:'Microsoft YaHei', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:10px;
  7457. }
  7458. #u88699 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:659px;
  7462. top:142px;
  7463. width:127px;
  7464. height:25px;
  7465. display:flex;
  7466. font-family:'Microsoft YaHei', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:10px;
  7470. }
  7471. #u88699 .text {
  7472. position:absolute;
  7473. align-self:center;
  7474. padding:2px 2px 2px 2px;
  7475. box-sizing:border-box;
  7476. width:100%;
  7477. }
  7478. #u88699_div.disabled {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:127px;
  7484. height:25px;
  7485. background:inherit;
  7486. background-color:rgba(240, 240, 240, 1);
  7487. border:none;
  7488. border-radius:0px;
  7489. -moz-box-shadow:none;
  7490. -webkit-box-shadow:none;
  7491. box-shadow:none;
  7492. font-family:'Microsoft YaHei', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:10px;
  7496. }
  7497. #u88699.disabled {
  7498. }
  7499. #u88700 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:0px;
  7505. height:0px;
  7506. }
  7507. #u88701_div {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:140px;
  7513. height:30px;
  7514. background:inherit;
  7515. background-color:rgba(255, 255, 255, 1);
  7516. box-sizing:border-box;
  7517. border-width:1px;
  7518. border-style:solid;
  7519. border-color:rgba(201, 201, 201, 1);
  7520. border-radius:4px;
  7521. -moz-box-shadow:none;
  7522. -webkit-box-shadow:none;
  7523. box-shadow:none;
  7524. font-family:'Microsoft YaHei', sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. font-size:14px;
  7528. color:#CCCCCC;
  7529. text-align:left;
  7530. }
  7531. #u88701 {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:801px;
  7535. top:141px;
  7536. width:140px;
  7537. height:30px;
  7538. display:flex;
  7539. font-family:'Microsoft YaHei', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:14px;
  7543. color:#CCCCCC;
  7544. text-align:left;
  7545. }
  7546. #u88701 .text {
  7547. position:absolute;
  7548. align-self:center;
  7549. padding:2px 8px 2px 8px;
  7550. box-sizing:border-box;
  7551. width:100%;
  7552. }
  7553. #u88701_text {
  7554. border-width:0px;
  7555. word-wrap:break-word;
  7556. text-transform:none;
  7557. visibility:hidden;
  7558. }
  7559. #u88702_input {
  7560. position:absolute;
  7561. left:0px;
  7562. top:0px;
  7563. width:127px;
  7564. height:25px;
  7565. padding:2px 2px 2px 2px;
  7566. font-family:'Microsoft YaHei', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:10px;
  7570. letter-spacing:normal;
  7571. color:#000000;
  7572. vertical-align:none;
  7573. text-align:left;
  7574. text-transform:none;
  7575. background-color:transparent;
  7576. border-color:transparent;
  7577. }
  7578. #u88702_input.disabled {
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:127px;
  7583. height:25px;
  7584. padding:2px 2px 2px 2px;
  7585. font-family:'Microsoft YaHei', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:10px;
  7589. letter-spacing:normal;
  7590. color:#000000;
  7591. vertical-align:none;
  7592. text-align:left;
  7593. text-transform:none;
  7594. background-color:transparent;
  7595. border-color:transparent;
  7596. }
  7597. #u88702_div {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:127px;
  7603. height:25px;
  7604. background:inherit;
  7605. background-color:rgba(255, 255, 255, 1);
  7606. border:none;
  7607. border-radius:0px;
  7608. -moz-box-shadow:none;
  7609. -webkit-box-shadow:none;
  7610. box-shadow:none;
  7611. font-family:'Microsoft YaHei', sans-serif;
  7612. font-weight:400;
  7613. font-style:normal;
  7614. font-size:10px;
  7615. }
  7616. #u88702 {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:809px;
  7620. top:142px;
  7621. width:127px;
  7622. height:25px;
  7623. display:flex;
  7624. font-family:'Microsoft YaHei', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:10px;
  7628. }
  7629. #u88702 .text {
  7630. position:absolute;
  7631. align-self:center;
  7632. padding:2px 2px 2px 2px;
  7633. box-sizing:border-box;
  7634. width:100%;
  7635. }
  7636. #u88702_div.disabled {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:127px;
  7642. height:25px;
  7643. background:inherit;
  7644. background-color:rgba(240, 240, 240, 1);
  7645. border:none;
  7646. border-radius:0px;
  7647. -moz-box-shadow:none;
  7648. -webkit-box-shadow:none;
  7649. box-shadow:none;
  7650. font-family:'Microsoft YaHei', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:10px;
  7654. }
  7655. #u88702.disabled {
  7656. }
  7657. #u88703 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:0px;
  7661. top:0px;
  7662. width:0px;
  7663. height:0px;
  7664. }
  7665. #u88704_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:140px;
  7671. height:30px;
  7672. background:inherit;
  7673. background-color:rgba(255, 255, 255, 1);
  7674. box-sizing:border-box;
  7675. border-width:1px;
  7676. border-style:solid;
  7677. border-color:rgba(215, 215, 215, 1);
  7678. border-radius:4px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. font-size:11px;
  7683. }
  7684. #u88704 {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:1551px;
  7688. top:140px;
  7689. width:140px;
  7690. height:30px;
  7691. display:flex;
  7692. font-size:11px;
  7693. }
  7694. #u88704 .text {
  7695. position:absolute;
  7696. align-self:center;
  7697. padding:2px 2px 2px 2px;
  7698. box-sizing:border-box;
  7699. width:100%;
  7700. }
  7701. #u88704_text {
  7702. border-width:0px;
  7703. word-wrap:break-word;
  7704. text-transform:none;
  7705. visibility:hidden;
  7706. }
  7707. #u88705_input {
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:126px;
  7712. height:23px;
  7713. padding:2px 2px 2px 2px;
  7714. font-family:'ArialMT', 'Arial', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:11px;
  7718. letter-spacing:normal;
  7719. color:#AAAAAA;
  7720. vertical-align:none;
  7721. text-align:left;
  7722. text-transform:none;
  7723. background-color:transparent;
  7724. border-color:transparent;
  7725. }
  7726. #u88705_input.disabled {
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:126px;
  7731. height:23px;
  7732. padding:2px 2px 2px 2px;
  7733. font-family:'ArialMT', 'Arial', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:11px;
  7737. letter-spacing:normal;
  7738. color:#AAAAAA;
  7739. vertical-align:none;
  7740. text-align:left;
  7741. text-transform:none;
  7742. background-color:transparent;
  7743. border-color:transparent;
  7744. }
  7745. #u88705_div {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:0px;
  7749. top:0px;
  7750. width:126px;
  7751. height:23px;
  7752. background:inherit;
  7753. background-color:rgba(255, 255, 255, 1);
  7754. border:none;
  7755. border-radius:0px;
  7756. -moz-box-shadow:none;
  7757. -webkit-box-shadow:none;
  7758. box-shadow:none;
  7759. font-size:11px;
  7760. color:#AAAAAA;
  7761. }
  7762. #u88705 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:1558px;
  7766. top:142px;
  7767. width:126px;
  7768. height:23px;
  7769. display:flex;
  7770. font-size:11px;
  7771. color:#AAAAAA;
  7772. }
  7773. #u88705 .text {
  7774. position:absolute;
  7775. align-self:flex-start;
  7776. padding:2px 2px 2px 2px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u88705_div.disabled {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:126px;
  7786. height:23px;
  7787. background:inherit;
  7788. background-color:rgba(240, 240, 240, 1);
  7789. border:none;
  7790. border-radius:0px;
  7791. -moz-box-shadow:none;
  7792. -webkit-box-shadow:none;
  7793. box-shadow:none;
  7794. font-size:11px;
  7795. color:#AAAAAA;
  7796. }
  7797. #u88705.disabled {
  7798. }
  7799. .u88705_input_option {
  7800. font-size:11px;
  7801. }
  7802. #u88706 {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:0px;
  7808. height:0px;
  7809. }
  7810. #u88707_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:140px;
  7816. height:30px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 1);
  7819. box-sizing:border-box;
  7820. border-width:1px;
  7821. border-style:solid;
  7822. border-color:rgba(201, 201, 201, 1);
  7823. border-radius:4px;
  7824. -moz-box-shadow:none;
  7825. -webkit-box-shadow:none;
  7826. box-shadow:none;
  7827. font-family:'Microsoft YaHei', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:14px;
  7831. color:#CCCCCC;
  7832. text-align:left;
  7833. }
  7834. #u88707 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:1251px;
  7838. top:100px;
  7839. width:140px;
  7840. height:30px;
  7841. display:flex;
  7842. font-family:'Microsoft YaHei', sans-serif;
  7843. font-weight:400;
  7844. font-style:normal;
  7845. font-size:14px;
  7846. color:#CCCCCC;
  7847. text-align:left;
  7848. }
  7849. #u88707 .text {
  7850. position:absolute;
  7851. align-self:center;
  7852. padding:2px 8px 2px 8px;
  7853. box-sizing:border-box;
  7854. width:100%;
  7855. }
  7856. #u88707_text {
  7857. border-width:0px;
  7858. word-wrap:break-word;
  7859. text-transform:none;
  7860. visibility:hidden;
  7861. }
  7862. #u88708_input {
  7863. position:absolute;
  7864. left:0px;
  7865. top:0px;
  7866. width:127px;
  7867. height:25px;
  7868. padding:2px 2px 2px 2px;
  7869. font-family:'Microsoft YaHei', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:10px;
  7873. letter-spacing:normal;
  7874. color:#000000;
  7875. vertical-align:none;
  7876. text-align:left;
  7877. text-transform:none;
  7878. background-color:transparent;
  7879. border-color:transparent;
  7880. }
  7881. #u88708_input.disabled {
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:127px;
  7886. height:25px;
  7887. padding:2px 2px 2px 2px;
  7888. font-family:'Microsoft YaHei', sans-serif;
  7889. font-weight:400;
  7890. font-style:normal;
  7891. font-size:10px;
  7892. letter-spacing:normal;
  7893. color:#000000;
  7894. vertical-align:none;
  7895. text-align:left;
  7896. text-transform:none;
  7897. background-color:transparent;
  7898. border-color:transparent;
  7899. }
  7900. #u88708_div {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:127px;
  7906. height:25px;
  7907. background:inherit;
  7908. background-color:rgba(255, 255, 255, 1);
  7909. border:none;
  7910. border-radius:0px;
  7911. -moz-box-shadow:none;
  7912. -webkit-box-shadow:none;
  7913. box-shadow:none;
  7914. font-family:'Microsoft YaHei', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:10px;
  7918. }
  7919. #u88708 {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:1259px;
  7923. top:101px;
  7924. width:127px;
  7925. height:25px;
  7926. display:flex;
  7927. font-family:'Microsoft YaHei', sans-serif;
  7928. font-weight:400;
  7929. font-style:normal;
  7930. font-size:10px;
  7931. }
  7932. #u88708 .text {
  7933. position:absolute;
  7934. align-self:center;
  7935. padding:2px 2px 2px 2px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u88708_div.disabled {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:127px;
  7945. height:25px;
  7946. background:inherit;
  7947. background-color:rgba(240, 240, 240, 1);
  7948. border:none;
  7949. border-radius:0px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'Microsoft YaHei', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:10px;
  7957. }
  7958. #u88708.disabled {
  7959. }
  7960. #u88709_div {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:1305px;
  7966. height:120px;
  7967. background:inherit;
  7968. background-color:rgba(255, 255, 255, 0);
  7969. box-sizing:border-box;
  7970. border-width:1px;
  7971. border-style:solid;
  7972. border-color:rgba(217, 0, 27, 1);
  7973. border-radius:3px;
  7974. -moz-box-shadow:none;
  7975. -webkit-box-shadow:none;
  7976. box-shadow:none;
  7977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7978. font-weight:400;
  7979. font-style:normal;
  7980. color:#D9001B;
  7981. line-height:25px;
  7982. }
  7983. #u88709 {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:370px;
  7987. top:678px;
  7988. width:1305px;
  7989. height:120px;
  7990. display:flex;
  7991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7992. font-weight:400;
  7993. font-style:normal;
  7994. color:#D9001B;
  7995. line-height:25px;
  7996. }
  7997. #u88709 .text {
  7998. position:absolute;
  7999. align-self:flex-start;
  8000. padding:10px 10px 10px 10px;
  8001. box-sizing:border-box;
  8002. width:100%;
  8003. }
  8004. #u88709_text {
  8005. border-width:0px;
  8006. word-wrap:break-word;
  8007. text-transform:none;
  8008. }
  8009. #u88710_div {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:0px;
  8013. top:0px;
  8014. width:79px;
  8015. height:30px;
  8016. background:inherit;
  8017. background-color:rgba(255, 255, 255, 1);
  8018. box-sizing:border-box;
  8019. border-width:1px;
  8020. border-style:solid;
  8021. border-color:rgba(170, 170, 170, 1);
  8022. border-radius:4px;
  8023. -moz-box-shadow:none;
  8024. -webkit-box-shadow:none;
  8025. box-shadow:none;
  8026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8027. font-weight:400;
  8028. font-style:normal;
  8029. font-size:12px;
  8030. color:#555555;
  8031. }
  8032. #u88710 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:1612px;
  8036. top:232px;
  8037. width:79px;
  8038. height:30px;
  8039. display:flex;
  8040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8041. font-weight:400;
  8042. font-style:normal;
  8043. font-size:12px;
  8044. color:#555555;
  8045. }
  8046. #u88710 .text {
  8047. position:absolute;
  8048. align-self:center;
  8049. padding:5px 15px 5px 15px;
  8050. box-sizing:border-box;
  8051. width:100%;
  8052. }
  8053. #u88710_text {
  8054. border-width:0px;
  8055. white-space:nowrap;
  8056. text-transform:none;
  8057. }
  8058. #u88711 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:0px;
  8064. height:0px;
  8065. }
  8066. #u88712_div {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:200px;
  8072. height:1702px;
  8073. background:inherit;
  8074. background-color:rgba(255, 255, 255, 1);
  8075. box-sizing:border-box;
  8076. border-width:1px;
  8077. border-style:solid;
  8078. border-color:rgba(215, 215, 215, 1);
  8079. border-radius:0px;
  8080. -moz-box-shadow:none;
  8081. -webkit-box-shadow:none;
  8082. box-shadow:none;
  8083. }
  8084. #u88712 {
  8085. border-width:0px;
  8086. position:absolute;
  8087. left:120px;
  8088. top:50px;
  8089. width:200px;
  8090. height:1702px;
  8091. display:flex;
  8092. }
  8093. #u88712 .text {
  8094. position:absolute;
  8095. align-self:center;
  8096. padding:2px 2px 2px 2px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u88712_text {
  8101. border-width:0px;
  8102. word-wrap:break-word;
  8103. text-transform:none;
  8104. visibility:hidden;
  8105. }
  8106. #u88713_div {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:200px;
  8112. height:60px;
  8113. background:inherit;
  8114. background-color:rgba(224, 231, 247, 1);
  8115. border:none;
  8116. border-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8121. font-weight:500;
  8122. font-style:normal;
  8123. font-size:18px;
  8124. }
  8125. #u88713 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:120px;
  8129. top:50px;
  8130. width:200px;
  8131. height:60px;
  8132. display:flex;
  8133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8134. font-weight:500;
  8135. font-style:normal;
  8136. font-size:18px;
  8137. }
  8138. #u88713 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:0px 0px 0px 20px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u88713_text {
  8146. border-width:0px;
  8147. word-wrap:break-word;
  8148. text-transform:none;
  8149. }
  8150. #u88714_img {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:201px;
  8156. height:2px;
  8157. }
  8158. #u88714 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:120px;
  8162. top:1180px;
  8163. width:200px;
  8164. height:1px;
  8165. display:flex;
  8166. }
  8167. #u88714 .text {
  8168. position:absolute;
  8169. align-self:center;
  8170. padding:2px 2px 2px 2px;
  8171. box-sizing:border-box;
  8172. width:100%;
  8173. }
  8174. #u88714_text {
  8175. border-width:0px;
  8176. word-wrap:break-word;
  8177. text-transform:none;
  8178. visibility:hidden;
  8179. }
  8180. #u88715_div {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:0px;
  8184. top:0px;
  8185. width:97px;
  8186. height:22px;
  8187. background:inherit;
  8188. background-color:rgba(255, 255, 255, 0);
  8189. border:none;
  8190. border-radius:0px;
  8191. -moz-box-shadow:none;
  8192. -webkit-box-shadow:none;
  8193. box-shadow:none;
  8194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. font-size:16px;
  8198. }
  8199. #u88715 {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:147px;
  8203. top:1459px;
  8204. width:97px;
  8205. height:22px;
  8206. display:flex;
  8207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8208. font-weight:400;
  8209. font-style:normal;
  8210. font-size:16px;
  8211. }
  8212. #u88715 .text {
  8213. position:absolute;
  8214. align-self:flex-start;
  8215. padding:0px 0px 0px 0px;
  8216. box-sizing:border-box;
  8217. width:100%;
  8218. }
  8219. #u88715_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. }
  8224. #u88716_div {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:49px;
  8230. height:17px;
  8231. background:inherit;
  8232. background-color:rgba(255, 255, 255, 0);
  8233. border:none;
  8234. border-radius:0px;
  8235. -moz-box-shadow:none;
  8236. -webkit-box-shadow:none;
  8237. box-shadow:none;
  8238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8239. font-weight:400;
  8240. font-style:normal;
  8241. font-size:12px;
  8242. color:#AAAAAA;
  8243. }
  8244. #u88716 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:147px;
  8248. top:1423px;
  8249. width:49px;
  8250. height:17px;
  8251. display:flex;
  8252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:12px;
  8256. color:#AAAAAA;
  8257. }
  8258. #u88716 .text {
  8259. position:absolute;
  8260. align-self:flex-start;
  8261. padding:0px 0px 0px 0px;
  8262. box-sizing:border-box;
  8263. width:100%;
  8264. }
  8265. #u88716_text {
  8266. border-width:0px;
  8267. white-space:nowrap;
  8268. text-transform:none;
  8269. }
  8270. #u88717_div {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:0px;
  8274. top:0px;
  8275. width:97px;
  8276. height:22px;
  8277. background:inherit;
  8278. background-color:rgba(255, 255, 255, 0);
  8279. border:none;
  8280. border-radius:0px;
  8281. -moz-box-shadow:none;
  8282. -webkit-box-shadow:none;
  8283. box-shadow:none;
  8284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8285. font-weight:400;
  8286. font-style:normal;
  8287. font-size:16px;
  8288. }
  8289. #u88717 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:147px;
  8293. top:340px;
  8294. width:97px;
  8295. height:22px;
  8296. display:flex;
  8297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:16px;
  8301. }
  8302. #u88717 .text {
  8303. position:absolute;
  8304. align-self:flex-start;
  8305. padding:0px 0px 0px 0px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u88717_text {
  8310. border-width:0px;
  8311. word-wrap:break-word;
  8312. text-transform:none;
  8313. }
  8314. #u88718_div {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:0px;
  8318. top:0px;
  8319. width:97px;
  8320. height:22px;
  8321. background:inherit;
  8322. background-color:rgba(255, 255, 255, 0);
  8323. border:none;
  8324. border-radius:0px;
  8325. -moz-box-shadow:none;
  8326. -webkit-box-shadow:none;
  8327. box-shadow:none;
  8328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8329. font-weight:400;
  8330. font-style:normal;
  8331. font-size:16px;
  8332. }
  8333. #u88718 {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:147px;
  8337. top:424px;
  8338. width:97px;
  8339. height:22px;
  8340. display:flex;
  8341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8342. font-weight:400;
  8343. font-style:normal;
  8344. font-size:16px;
  8345. }
  8346. #u88718 .text {
  8347. position:absolute;
  8348. align-self:flex-start;
  8349. padding:0px 0px 0px 0px;
  8350. box-sizing:border-box;
  8351. width:100%;
  8352. }
  8353. #u88718_text {
  8354. border-width:0px;
  8355. word-wrap:break-word;
  8356. text-transform:none;
  8357. }
  8358. #u88719_div {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:97px;
  8364. height:22px;
  8365. background:inherit;
  8366. background-color:rgba(255, 255, 255, 0);
  8367. border:none;
  8368. border-radius:0px;
  8369. -moz-box-shadow:none;
  8370. -webkit-box-shadow:none;
  8371. box-shadow:none;
  8372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. font-size:16px;
  8376. }
  8377. #u88719 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:147px;
  8381. top:1501px;
  8382. width:97px;
  8383. height:22px;
  8384. display:flex;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:16px;
  8389. }
  8390. #u88719 .text {
  8391. position:absolute;
  8392. align-self:flex-start;
  8393. padding:0px 0px 0px 0px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u88719_text {
  8398. border-width:0px;
  8399. word-wrap:break-word;
  8400. text-transform:none;
  8401. }
  8402. #u88720_div {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:129px;
  8408. height:22px;
  8409. background:inherit;
  8410. background-color:rgba(255, 255, 255, 0);
  8411. border:none;
  8412. border-radius:0px;
  8413. -moz-box-shadow:none;
  8414. -webkit-box-shadow:none;
  8415. box-shadow:none;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:16px;
  8420. }
  8421. #u88720 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:147px;
  8425. top:1543px;
  8426. width:129px;
  8427. height:22px;
  8428. display:flex;
  8429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8430. font-weight:400;
  8431. font-style:normal;
  8432. font-size:16px;
  8433. }
  8434. #u88720 .text {
  8435. position:absolute;
  8436. align-self:flex-start;
  8437. padding:0px 0px 0px 0px;
  8438. box-sizing:border-box;
  8439. width:100%;
  8440. }
  8441. #u88720_text {
  8442. border-width:0px;
  8443. white-space:nowrap;
  8444. text-transform:none;
  8445. }
  8446. #u88721_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:49px;
  8452. height:17px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 0);
  8455. border:none;
  8456. border-radius:0px;
  8457. -moz-box-shadow:none;
  8458. -webkit-box-shadow:none;
  8459. box-shadow:none;
  8460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8461. font-weight:400;
  8462. font-style:normal;
  8463. font-size:12px;
  8464. color:#AAAAAA;
  8465. }
  8466. #u88721 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:147px;
  8470. top:120px;
  8471. width:49px;
  8472. height:17px;
  8473. display:flex;
  8474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8475. font-weight:400;
  8476. font-style:normal;
  8477. font-size:12px;
  8478. color:#AAAAAA;
  8479. }
  8480. #u88721 .text {
  8481. position:absolute;
  8482. align-self:flex-start;
  8483. padding:0px 0px 0px 0px;
  8484. box-sizing:border-box;
  8485. width:100%;
  8486. }
  8487. #u88721_text {
  8488. border-width:0px;
  8489. white-space:nowrap;
  8490. text-transform:none;
  8491. }
  8492. #u88722_div {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:0px;
  8496. top:0px;
  8497. width:97px;
  8498. height:22px;
  8499. background:inherit;
  8500. background-color:rgba(255, 255, 255, 0);
  8501. border:none;
  8502. border-radius:0px;
  8503. -moz-box-shadow:none;
  8504. -webkit-box-shadow:none;
  8505. box-shadow:none;
  8506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:16px;
  8510. }
  8511. #u88722 {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:147px;
  8515. top:157px;
  8516. width:97px;
  8517. height:22px;
  8518. display:flex;
  8519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:16px;
  8523. }
  8524. #u88722 .text {
  8525. position:absolute;
  8526. align-self:flex-start;
  8527. padding:0px 0px 0px 0px;
  8528. box-sizing:border-box;
  8529. width:100%;
  8530. }
  8531. #u88722_text {
  8532. border-width:0px;
  8533. word-wrap:break-word;
  8534. text-transform:none;
  8535. }
  8536. #u88723_img {
  8537. border-width:0px;
  8538. position:absolute;
  8539. left:0px;
  8540. top:0px;
  8541. width:201px;
  8542. height:2px;
  8543. }
  8544. #u88723 {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:120px;
  8548. top:241px;
  8549. width:200px;
  8550. height:1px;
  8551. display:flex;
  8552. }
  8553. #u88723 .text {
  8554. position:absolute;
  8555. align-self:center;
  8556. padding:2px 2px 2px 2px;
  8557. box-sizing:border-box;
  8558. width:100%;
  8559. }
  8560. #u88723_text {
  8561. border-width:0px;
  8562. word-wrap:break-word;
  8563. text-transform:none;
  8564. visibility:hidden;
  8565. }
  8566. #u88724_div {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:0px;
  8570. top:0px;
  8571. width:49px;
  8572. height:17px;
  8573. background:inherit;
  8574. background-color:rgba(255, 255, 255, 0);
  8575. border:none;
  8576. border-radius:0px;
  8577. -moz-box-shadow:none;
  8578. -webkit-box-shadow:none;
  8579. box-shadow:none;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:12px;
  8584. color:#AAAAAA;
  8585. }
  8586. #u88724 {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:147px;
  8590. top:261px;
  8591. width:49px;
  8592. height:17px;
  8593. display:flex;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:12px;
  8598. color:#AAAAAA;
  8599. }
  8600. #u88724 .text {
  8601. position:absolute;
  8602. align-self:flex-start;
  8603. padding:0px 0px 0px 0px;
  8604. box-sizing:border-box;
  8605. width:100%;
  8606. }
  8607. #u88724_text {
  8608. border-width:0px;
  8609. white-space:nowrap;
  8610. text-transform:none;
  8611. }
  8612. #u88725_div {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:97px;
  8618. height:22px;
  8619. background:inherit;
  8620. background-color:rgba(255, 255, 255, 0);
  8621. border:none;
  8622. border-radius:0px;
  8623. -moz-box-shadow:none;
  8624. -webkit-box-shadow:none;
  8625. box-shadow:none;
  8626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:16px;
  8630. }
  8631. #u88725 {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:147px;
  8635. top:298px;
  8636. width:97px;
  8637. height:22px;
  8638. display:flex;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:16px;
  8643. }
  8644. #u88725 .text {
  8645. position:absolute;
  8646. align-self:flex-start;
  8647. padding:0px 0px 0px 0px;
  8648. box-sizing:border-box;
  8649. width:100%;
  8650. }
  8651. #u88725_text {
  8652. border-width:0px;
  8653. word-wrap:break-word;
  8654. text-transform:none;
  8655. }
  8656. #u88726_div {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:97px;
  8662. height:22px;
  8663. background:inherit;
  8664. background-color:rgba(255, 255, 255, 0);
  8665. border:none;
  8666. border-radius:0px;
  8667. -moz-box-shadow:none;
  8668. -webkit-box-shadow:none;
  8669. box-shadow:none;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:16px;
  8674. }
  8675. #u88726 {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:147px;
  8679. top:199px;
  8680. width:97px;
  8681. height:22px;
  8682. display:flex;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:16px;
  8687. }
  8688. #u88726 .text {
  8689. position:absolute;
  8690. align-self:flex-start;
  8691. padding:0px 0px 0px 0px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u88726_text {
  8696. border-width:0px;
  8697. word-wrap:break-word;
  8698. text-transform:none;
  8699. }
  8700. #u88727_div {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:97px;
  8706. height:22px;
  8707. background:inherit;
  8708. background-color:rgba(255, 255, 255, 0);
  8709. border:none;
  8710. border-radius:0px;
  8711. -moz-box-shadow:none;
  8712. -webkit-box-shadow:none;
  8713. box-shadow:none;
  8714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:16px;
  8718. }
  8719. #u88727 {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:147px;
  8723. top:382px;
  8724. width:97px;
  8725. height:22px;
  8726. display:flex;
  8727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8728. font-weight:400;
  8729. font-style:normal;
  8730. font-size:16px;
  8731. }
  8732. #u88727 .text {
  8733. position:absolute;
  8734. align-self:flex-start;
  8735. padding:0px 0px 0px 0px;
  8736. box-sizing:border-box;
  8737. width:100%;
  8738. }
  8739. #u88727_text {
  8740. border-width:0px;
  8741. word-wrap:break-word;
  8742. text-transform:none;
  8743. }
  8744. #u88728_div {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:0px;
  8749. width:97px;
  8750. height:22px;
  8751. background:inherit;
  8752. background-color:rgba(255, 255, 255, 0);
  8753. border:none;
  8754. border-radius:0px;
  8755. -moz-box-shadow:none;
  8756. -webkit-box-shadow:none;
  8757. box-shadow:none;
  8758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8759. font-weight:400;
  8760. font-style:normal;
  8761. font-size:16px;
  8762. }
  8763. #u88728 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:147px;
  8767. top:466px;
  8768. width:97px;
  8769. height:22px;
  8770. display:flex;
  8771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8772. font-weight:400;
  8773. font-style:normal;
  8774. font-size:16px;
  8775. }
  8776. #u88728 .text {
  8777. position:absolute;
  8778. align-self:flex-start;
  8779. padding:0px 0px 0px 0px;
  8780. box-sizing:border-box;
  8781. width:100%;
  8782. }
  8783. #u88728_text {
  8784. border-width:0px;
  8785. word-wrap:break-word;
  8786. text-transform:none;
  8787. }
  8788. #u88729_div {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:97px;
  8794. height:22px;
  8795. background:inherit;
  8796. background-color:rgba(255, 255, 255, 0);
  8797. border:none;
  8798. border-radius:0px;
  8799. -moz-box-shadow:none;
  8800. -webkit-box-shadow:none;
  8801. box-shadow:none;
  8802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8803. font-weight:400;
  8804. font-style:normal;
  8805. font-size:16px;
  8806. }
  8807. #u88729 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:147px;
  8811. top:508px;
  8812. width:97px;
  8813. height:22px;
  8814. display:flex;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. font-size:16px;
  8819. }
  8820. #u88729 .text {
  8821. position:absolute;
  8822. align-self:flex-start;
  8823. padding:0px 0px 0px 0px;
  8824. box-sizing:border-box;
  8825. width:100%;
  8826. }
  8827. #u88729_text {
  8828. border-width:0px;
  8829. word-wrap:break-word;
  8830. text-transform:none;
  8831. }
  8832. #u88730_div {
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:0px;
  8836. top:0px;
  8837. width:97px;
  8838. height:22px;
  8839. background:inherit;
  8840. background-color:rgba(255, 255, 255, 0);
  8841. border:none;
  8842. border-radius:0px;
  8843. -moz-box-shadow:none;
  8844. -webkit-box-shadow:none;
  8845. box-shadow:none;
  8846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8847. font-weight:400;
  8848. font-style:normal;
  8849. font-size:16px;
  8850. }
  8851. #u88730 {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:147px;
  8855. top:550px;
  8856. width:97px;
  8857. height:22px;
  8858. display:flex;
  8859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8860. font-weight:400;
  8861. font-style:normal;
  8862. font-size:16px;
  8863. }
  8864. #u88730 .text {
  8865. position:absolute;
  8866. align-self:flex-start;
  8867. padding:0px 0px 0px 0px;
  8868. box-sizing:border-box;
  8869. width:100%;
  8870. }
  8871. #u88730_text {
  8872. border-width:0px;
  8873. word-wrap:break-word;
  8874. text-transform:none;
  8875. }
  8876. #u88731_div {
  8877. border-width:0px;
  8878. position:absolute;
  8879. left:0px;
  8880. top:0px;
  8881. width:97px;
  8882. height:22px;
  8883. background:inherit;
  8884. background-color:rgba(255, 255, 255, 0);
  8885. border:none;
  8886. border-radius:0px;
  8887. -moz-box-shadow:none;
  8888. -webkit-box-shadow:none;
  8889. box-shadow:none;
  8890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8891. font-weight:400;
  8892. font-style:normal;
  8893. font-size:16px;
  8894. }
  8895. #u88731 {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:147px;
  8899. top:592px;
  8900. width:97px;
  8901. height:22px;
  8902. display:flex;
  8903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8904. font-weight:400;
  8905. font-style:normal;
  8906. font-size:16px;
  8907. }
  8908. #u88731 .text {
  8909. position:absolute;
  8910. align-self:flex-start;
  8911. padding:0px 0px 0px 0px;
  8912. box-sizing:border-box;
  8913. width:100%;
  8914. }
  8915. #u88731_text {
  8916. border-width:0px;
  8917. word-wrap:break-word;
  8918. text-transform:none;
  8919. }
  8920. #u88732_div {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:0px;
  8924. top:0px;
  8925. width:97px;
  8926. height:22px;
  8927. background:inherit;
  8928. background-color:rgba(255, 255, 255, 0);
  8929. border:none;
  8930. border-radius:0px;
  8931. -moz-box-shadow:none;
  8932. -webkit-box-shadow:none;
  8933. box-shadow:none;
  8934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8935. font-weight:400;
  8936. font-style:normal;
  8937. font-size:16px;
  8938. }
  8939. #u88732 {
  8940. border-width:0px;
  8941. position:absolute;
  8942. left:147px;
  8943. top:634px;
  8944. width:97px;
  8945. height:22px;
  8946. display:flex;
  8947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:16px;
  8951. }
  8952. #u88732 .text {
  8953. position:absolute;
  8954. align-self:flex-start;
  8955. padding:0px 0px 0px 0px;
  8956. box-sizing:border-box;
  8957. width:100%;
  8958. }
  8959. #u88732_text {
  8960. border-width:0px;
  8961. word-wrap:break-word;
  8962. text-transform:none;
  8963. }
  8964. #u88733_img {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:0px;
  8968. top:0px;
  8969. width:201px;
  8970. height:2px;
  8971. }
  8972. #u88733 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:120px;
  8976. top:680px;
  8977. width:200px;
  8978. height:1px;
  8979. display:flex;
  8980. }
  8981. #u88733 .text {
  8982. position:absolute;
  8983. align-self:center;
  8984. padding:2px 2px 2px 2px;
  8985. box-sizing:border-box;
  8986. width:100%;
  8987. }
  8988. #u88733_text {
  8989. border-width:0px;
  8990. word-wrap:break-word;
  8991. text-transform:none;
  8992. visibility:hidden;
  8993. }
  8994. #u88734_div {
  8995. border-width:0px;
  8996. position:absolute;
  8997. left:0px;
  8998. top:0px;
  8999. width:49px;
  9000. height:17px;
  9001. background:inherit;
  9002. background-color:rgba(255, 255, 255, 0);
  9003. border:none;
  9004. border-radius:0px;
  9005. -moz-box-shadow:none;
  9006. -webkit-box-shadow:none;
  9007. box-shadow:none;
  9008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9009. font-weight:400;
  9010. font-style:normal;
  9011. font-size:12px;
  9012. color:#AAAAAA;
  9013. }
  9014. #u88734 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:147px;
  9018. top:886px;
  9019. width:49px;
  9020. height:17px;
  9021. display:flex;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:12px;
  9026. color:#AAAAAA;
  9027. }
  9028. #u88734 .text {
  9029. position:absolute;
  9030. align-self:flex-start;
  9031. padding:0px 0px 0px 0px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u88734_text {
  9036. border-width:0px;
  9037. white-space:nowrap;
  9038. text-transform:none;
  9039. }
  9040. #u88735_div {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:113px;
  9046. height:22px;
  9047. background:inherit;
  9048. background-color:rgba(255, 255, 255, 0);
  9049. border:none;
  9050. border-radius:0px;
  9051. -moz-box-shadow:none;
  9052. -webkit-box-shadow:none;
  9053. box-shadow:none;
  9054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9055. font-weight:400;
  9056. font-style:normal;
  9057. font-size:16px;
  9058. }
  9059. #u88735 {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:147px;
  9063. top:923px;
  9064. width:113px;
  9065. height:22px;
  9066. display:flex;
  9067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9068. font-weight:400;
  9069. font-style:normal;
  9070. font-size:16px;
  9071. }
  9072. #u88735 .text {
  9073. position:absolute;
  9074. align-self:flex-start;
  9075. padding:0px 0px 0px 0px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u88735_text {
  9080. border-width:0px;
  9081. white-space:nowrap;
  9082. text-transform:none;
  9083. }
  9084. #u88736_div {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:0px;
  9088. top:0px;
  9089. width:145px;
  9090. height:22px;
  9091. background:inherit;
  9092. background-color:rgba(255, 255, 255, 0);
  9093. border:none;
  9094. border-radius:0px;
  9095. -moz-box-shadow:none;
  9096. -webkit-box-shadow:none;
  9097. box-shadow:none;
  9098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9099. font-weight:400;
  9100. font-style:normal;
  9101. font-size:16px;
  9102. }
  9103. #u88736 {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:147px;
  9107. top:965px;
  9108. width:145px;
  9109. height:22px;
  9110. display:flex;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:16px;
  9115. }
  9116. #u88736 .text {
  9117. position:absolute;
  9118. align-self:flex-start;
  9119. padding:0px 0px 0px 0px;
  9120. box-sizing:border-box;
  9121. width:100%;
  9122. }
  9123. #u88736_text {
  9124. border-width:0px;
  9125. white-space:nowrap;
  9126. text-transform:none;
  9127. }
  9128. #u88737_div {
  9129. border-width:0px;
  9130. position:absolute;
  9131. left:0px;
  9132. top:0px;
  9133. width:145px;
  9134. height:22px;
  9135. background:inherit;
  9136. background-color:rgba(255, 255, 255, 0);
  9137. border:none;
  9138. border-radius:0px;
  9139. -moz-box-shadow:none;
  9140. -webkit-box-shadow:none;
  9141. box-shadow:none;
  9142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9143. font-weight:400;
  9144. font-style:normal;
  9145. font-size:16px;
  9146. }
  9147. #u88737 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:147px;
  9151. top:1007px;
  9152. width:145px;
  9153. height:22px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. font-size:16px;
  9159. }
  9160. #u88737 .text {
  9161. position:absolute;
  9162. align-self:flex-start;
  9163. padding:0px 0px 0px 0px;
  9164. box-sizing:border-box;
  9165. width:100%;
  9166. }
  9167. #u88737_text {
  9168. border-width:0px;
  9169. white-space:nowrap;
  9170. text-transform:none;
  9171. }
  9172. #u88738_div {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:0px;
  9176. top:0px;
  9177. width:145px;
  9178. height:22px;
  9179. background:inherit;
  9180. background-color:rgba(255, 255, 255, 0);
  9181. border:none;
  9182. border-radius:0px;
  9183. -moz-box-shadow:none;
  9184. -webkit-box-shadow:none;
  9185. box-shadow:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:16px;
  9190. }
  9191. #u88738 {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:147px;
  9195. top:1049px;
  9196. width:145px;
  9197. height:22px;
  9198. display:flex;
  9199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:16px;
  9203. }
  9204. #u88738 .text {
  9205. position:absolute;
  9206. align-self:flex-start;
  9207. padding:0px 0px 0px 0px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u88738_text {
  9212. border-width:0px;
  9213. white-space:nowrap;
  9214. text-transform:none;
  9215. }
  9216. #u88739_div {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:145px;
  9222. height:22px;
  9223. background:inherit;
  9224. background-color:rgba(255, 255, 255, 0);
  9225. border:none;
  9226. border-radius:0px;
  9227. -moz-box-shadow:none;
  9228. -webkit-box-shadow:none;
  9229. box-shadow:none;
  9230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9231. font-weight:400;
  9232. font-style:normal;
  9233. font-size:16px;
  9234. }
  9235. #u88739 {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:147px;
  9239. top:1091px;
  9240. width:145px;
  9241. height:22px;
  9242. display:flex;
  9243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:16px;
  9247. }
  9248. #u88739 .text {
  9249. position:absolute;
  9250. align-self:flex-start;
  9251. padding:0px 0px 0px 0px;
  9252. box-sizing:border-box;
  9253. width:100%;
  9254. }
  9255. #u88739_text {
  9256. border-width:0px;
  9257. white-space:nowrap;
  9258. text-transform:none;
  9259. }
  9260. #u88740_div {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:0px;
  9264. top:0px;
  9265. width:113px;
  9266. height:22px;
  9267. background:inherit;
  9268. background-color:rgba(255, 255, 255, 0);
  9269. border:none;
  9270. border-radius:0px;
  9271. -moz-box-shadow:none;
  9272. -webkit-box-shadow:none;
  9273. box-shadow:none;
  9274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9275. font-weight:400;
  9276. font-style:normal;
  9277. font-size:16px;
  9278. }
  9279. #u88740 {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:147px;
  9283. top:1133px;
  9284. width:113px;
  9285. height:22px;
  9286. display:flex;
  9287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9288. font-weight:400;
  9289. font-style:normal;
  9290. font-size:16px;
  9291. }
  9292. #u88740 .text {
  9293. position:absolute;
  9294. align-self:flex-start;
  9295. padding:0px 0px 0px 0px;
  9296. box-sizing:border-box;
  9297. width:100%;
  9298. }
  9299. #u88740_text {
  9300. border-width:0px;
  9301. white-space:nowrap;
  9302. text-transform:none;
  9303. }
  9304. #u88741_div {
  9305. border-width:0px;
  9306. position:absolute;
  9307. left:0px;
  9308. top:0px;
  9309. width:97px;
  9310. height:22px;
  9311. background:inherit;
  9312. background-color:rgba(255, 255, 255, 0);
  9313. border:none;
  9314. border-radius:0px;
  9315. -moz-box-shadow:none;
  9316. -webkit-box-shadow:none;
  9317. box-shadow:none;
  9318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9319. font-weight:400;
  9320. font-style:normal;
  9321. font-size:16px;
  9322. }
  9323. #u88741 {
  9324. border-width:0px;
  9325. position:absolute;
  9326. left:147px;
  9327. top:1585px;
  9328. width:97px;
  9329. height:22px;
  9330. display:flex;
  9331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9332. font-weight:400;
  9333. font-style:normal;
  9334. font-size:16px;
  9335. }
  9336. #u88741 .text {
  9337. position:absolute;
  9338. align-self:flex-start;
  9339. padding:0px 0px 0px 0px;
  9340. box-sizing:border-box;
  9341. width:100%;
  9342. }
  9343. #u88741_text {
  9344. border-width:0px;
  9345. white-space:nowrap;
  9346. text-transform:none;
  9347. }
  9348. #u88742_div {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:97px;
  9354. height:22px;
  9355. background:inherit;
  9356. background-color:rgba(255, 255, 255, 0);
  9357. border:none;
  9358. border-radius:0px;
  9359. -moz-box-shadow:none;
  9360. -webkit-box-shadow:none;
  9361. box-shadow:none;
  9362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9363. font-weight:400;
  9364. font-style:normal;
  9365. font-size:16px;
  9366. }
  9367. #u88742 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:147px;
  9371. top:1627px;
  9372. width:97px;
  9373. height:22px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:16px;
  9379. }
  9380. #u88742 .text {
  9381. position:absolute;
  9382. align-self:flex-start;
  9383. padding:0px 0px 0px 0px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u88742_text {
  9388. border-width:0px;
  9389. white-space:nowrap;
  9390. text-transform:none;
  9391. }
  9392. #u88743_div {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:0px;
  9396. top:0px;
  9397. width:97px;
  9398. height:22px;
  9399. background:inherit;
  9400. background-color:rgba(255, 255, 255, 0);
  9401. border:none;
  9402. border-radius:0px;
  9403. -moz-box-shadow:none;
  9404. -webkit-box-shadow:none;
  9405. box-shadow:none;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:16px;
  9410. }
  9411. #u88743 {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:147px;
  9415. top:1669px;
  9416. width:97px;
  9417. height:22px;
  9418. display:flex;
  9419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9420. font-weight:400;
  9421. font-style:normal;
  9422. font-size:16px;
  9423. }
  9424. #u88743 .text {
  9425. position:absolute;
  9426. align-self:flex-start;
  9427. padding:0px 0px 0px 0px;
  9428. box-sizing:border-box;
  9429. width:100%;
  9430. }
  9431. #u88743_text {
  9432. border-width:0px;
  9433. white-space:nowrap;
  9434. text-transform:none;
  9435. }
  9436. #u88744_div {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:0px;
  9440. top:0px;
  9441. width:97px;
  9442. height:22px;
  9443. background:inherit;
  9444. background-color:rgba(255, 255, 255, 0);
  9445. border:none;
  9446. border-radius:0px;
  9447. -moz-box-shadow:none;
  9448. -webkit-box-shadow:none;
  9449. box-shadow:none;
  9450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9451. font-weight:400;
  9452. font-style:normal;
  9453. font-size:16px;
  9454. }
  9455. #u88744 {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:147px;
  9459. top:1711px;
  9460. width:97px;
  9461. height:22px;
  9462. display:flex;
  9463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9464. font-weight:400;
  9465. font-style:normal;
  9466. font-size:16px;
  9467. }
  9468. #u88744 .text {
  9469. position:absolute;
  9470. align-self:flex-start;
  9471. padding:0px 0px 0px 0px;
  9472. box-sizing:border-box;
  9473. width:100%;
  9474. }
  9475. #u88744_text {
  9476. border-width:0px;
  9477. white-space:nowrap;
  9478. text-transform:none;
  9479. }
  9480. #u88745_div {
  9481. border-width:0px;
  9482. position:absolute;
  9483. left:0px;
  9484. top:0px;
  9485. width:97px;
  9486. height:22px;
  9487. background:inherit;
  9488. background-color:rgba(255, 255, 255, 0);
  9489. border:none;
  9490. border-radius:0px;
  9491. -moz-box-shadow:none;
  9492. -webkit-box-shadow:none;
  9493. box-shadow:none;
  9494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9495. font-weight:400;
  9496. font-style:normal;
  9497. font-size:16px;
  9498. }
  9499. #u88745 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:147px;
  9503. top:824px;
  9504. width:97px;
  9505. height:22px;
  9506. display:flex;
  9507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9508. font-weight:400;
  9509. font-style:normal;
  9510. font-size:16px;
  9511. }
  9512. #u88745 .text {
  9513. position:absolute;
  9514. align-self:flex-start;
  9515. padding:0px 0px 0px 0px;
  9516. box-sizing:border-box;
  9517. width:100%;
  9518. }
  9519. #u88745_text {
  9520. border-width:0px;
  9521. word-wrap:break-word;
  9522. text-transform:none;
  9523. }
  9524. #u88746_div {
  9525. border-width:0px;
  9526. position:absolute;
  9527. left:0px;
  9528. top:0px;
  9529. width:97px;
  9530. height:22px;
  9531. background:inherit;
  9532. background-color:rgba(255, 255, 255, 0);
  9533. border:none;
  9534. border-radius:0px;
  9535. -moz-box-shadow:none;
  9536. -webkit-box-shadow:none;
  9537. box-shadow:none;
  9538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. font-size:16px;
  9542. }
  9543. #u88746 {
  9544. border-width:0px;
  9545. position:absolute;
  9546. left:147px;
  9547. top:738px;
  9548. width:97px;
  9549. height:22px;
  9550. display:flex;
  9551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9552. font-weight:400;
  9553. font-style:normal;
  9554. font-size:16px;
  9555. }
  9556. #u88746 .text {
  9557. position:absolute;
  9558. align-self:flex-start;
  9559. padding:0px 0px 0px 0px;
  9560. box-sizing:border-box;
  9561. width:100%;
  9562. }
  9563. #u88746_text {
  9564. border-width:0px;
  9565. word-wrap:break-word;
  9566. text-transform:none;
  9567. }
  9568. #u88747_div {
  9569. border-width:0px;
  9570. position:absolute;
  9571. left:0px;
  9572. top:0px;
  9573. width:49px;
  9574. height:17px;
  9575. background:inherit;
  9576. background-color:rgba(255, 255, 255, 0);
  9577. border:none;
  9578. border-radius:0px;
  9579. -moz-box-shadow:none;
  9580. -webkit-box-shadow:none;
  9581. box-shadow:none;
  9582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9583. font-weight:400;
  9584. font-style:normal;
  9585. font-size:12px;
  9586. color:#AAAAAA;
  9587. }
  9588. #u88747 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:147px;
  9592. top:701px;
  9593. width:49px;
  9594. height:17px;
  9595. display:flex;
  9596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:12px;
  9600. color:#AAAAAA;
  9601. }
  9602. #u88747 .text {
  9603. position:absolute;
  9604. align-self:flex-start;
  9605. padding:0px 0px 0px 0px;
  9606. box-sizing:border-box;
  9607. width:100%;
  9608. }
  9609. #u88747_text {
  9610. border-width:0px;
  9611. white-space:nowrap;
  9612. text-transform:none;
  9613. }
  9614. #u88748_div {
  9615. border-width:0px;
  9616. position:absolute;
  9617. left:0px;
  9618. top:0px;
  9619. width:97px;
  9620. height:22px;
  9621. background:inherit;
  9622. background-color:rgba(255, 255, 255, 0);
  9623. border:none;
  9624. border-radius:0px;
  9625. -moz-box-shadow:none;
  9626. -webkit-box-shadow:none;
  9627. box-shadow:none;
  9628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9629. font-weight:400;
  9630. font-style:normal;
  9631. font-size:16px;
  9632. }
  9633. #u88748 {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:147px;
  9637. top:780px;
  9638. width:97px;
  9639. height:22px;
  9640. display:flex;
  9641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:16px;
  9645. }
  9646. #u88748 .text {
  9647. position:absolute;
  9648. align-self:flex-start;
  9649. padding:0px 0px 0px 0px;
  9650. box-sizing:border-box;
  9651. width:100%;
  9652. }
  9653. #u88748_text {
  9654. border-width:0px;
  9655. word-wrap:break-word;
  9656. text-transform:none;
  9657. }
  9658. #u88749_img {
  9659. border-width:0px;
  9660. position:absolute;
  9661. left:0px;
  9662. top:0px;
  9663. width:201px;
  9664. height:2px;
  9665. }
  9666. #u88749 {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:120px;
  9670. top:866px;
  9671. width:200px;
  9672. height:1px;
  9673. display:flex;
  9674. }
  9675. #u88749 .text {
  9676. position:absolute;
  9677. align-self:center;
  9678. padding:2px 2px 2px 2px;
  9679. box-sizing:border-box;
  9680. width:100%;
  9681. }
  9682. #u88749_text {
  9683. border-width:0px;
  9684. word-wrap:break-word;
  9685. text-transform:none;
  9686. visibility:hidden;
  9687. }
  9688. #u88750_div {
  9689. border-width:0px;
  9690. position:absolute;
  9691. left:0px;
  9692. top:0px;
  9693. width:97px;
  9694. height:22px;
  9695. background:inherit;
  9696. background-color:rgba(255, 255, 255, 0);
  9697. border:none;
  9698. border-radius:0px;
  9699. -moz-box-shadow:none;
  9700. -webkit-box-shadow:none;
  9701. box-shadow:none;
  9702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9703. font-weight:400;
  9704. font-style:normal;
  9705. font-size:16px;
  9706. }
  9707. #u88750 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:147px;
  9711. top:1237px;
  9712. width:97px;
  9713. height:22px;
  9714. display:flex;
  9715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9716. font-weight:400;
  9717. font-style:normal;
  9718. font-size:16px;
  9719. }
  9720. #u88750 .text {
  9721. position:absolute;
  9722. align-self:flex-start;
  9723. padding:0px 0px 0px 0px;
  9724. box-sizing:border-box;
  9725. width:100%;
  9726. }
  9727. #u88750_text {
  9728. border-width:0px;
  9729. word-wrap:break-word;
  9730. text-transform:none;
  9731. }
  9732. #u88751_div {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:0px;
  9736. top:0px;
  9737. width:49px;
  9738. height:17px;
  9739. background:inherit;
  9740. background-color:rgba(255, 255, 255, 0);
  9741. border:none;
  9742. border-radius:0px;
  9743. -moz-box-shadow:none;
  9744. -webkit-box-shadow:none;
  9745. box-shadow:none;
  9746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9747. font-weight:400;
  9748. font-style:normal;
  9749. font-size:12px;
  9750. color:#AAAAAA;
  9751. }
  9752. #u88751 {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:147px;
  9756. top:1201px;
  9757. width:49px;
  9758. height:17px;
  9759. display:flex;
  9760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9761. font-weight:400;
  9762. font-style:normal;
  9763. font-size:12px;
  9764. color:#AAAAAA;
  9765. }
  9766. #u88751 .text {
  9767. position:absolute;
  9768. align-self:flex-start;
  9769. padding:0px 0px 0px 0px;
  9770. box-sizing:border-box;
  9771. width:100%;
  9772. }
  9773. #u88751_text {
  9774. border-width:0px;
  9775. white-space:nowrap;
  9776. text-transform:none;
  9777. }
  9778. #u88752_div {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:0px;
  9782. top:0px;
  9783. width:97px;
  9784. height:22px;
  9785. background:inherit;
  9786. background-color:rgba(255, 255, 255, 0);
  9787. border:none;
  9788. border-radius:0px;
  9789. -moz-box-shadow:none;
  9790. -webkit-box-shadow:none;
  9791. box-shadow:none;
  9792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9793. font-weight:400;
  9794. font-style:normal;
  9795. font-size:16px;
  9796. }
  9797. #u88752 {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:147px;
  9801. top:1279px;
  9802. width:97px;
  9803. height:22px;
  9804. display:flex;
  9805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9806. font-weight:400;
  9807. font-style:normal;
  9808. font-size:16px;
  9809. }
  9810. #u88752 .text {
  9811. position:absolute;
  9812. align-self:flex-start;
  9813. padding:0px 0px 0px 0px;
  9814. box-sizing:border-box;
  9815. width:100%;
  9816. }
  9817. #u88752_text {
  9818. border-width:0px;
  9819. word-wrap:break-word;
  9820. text-transform:none;
  9821. }
  9822. #u88753_div {
  9823. border-width:0px;
  9824. position:absolute;
  9825. left:0px;
  9826. top:0px;
  9827. width:97px;
  9828. height:22px;
  9829. background:inherit;
  9830. background-color:rgba(255, 255, 255, 0);
  9831. border:none;
  9832. border-radius:0px;
  9833. -moz-box-shadow:none;
  9834. -webkit-box-shadow:none;
  9835. box-shadow:none;
  9836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9837. font-weight:400;
  9838. font-style:normal;
  9839. font-size:16px;
  9840. }
  9841. #u88753 {
  9842. border-width:0px;
  9843. position:absolute;
  9844. left:147px;
  9845. top:1321px;
  9846. width:97px;
  9847. height:22px;
  9848. display:flex;
  9849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9850. font-weight:400;
  9851. font-style:normal;
  9852. font-size:16px;
  9853. }
  9854. #u88753 .text {
  9855. position:absolute;
  9856. align-self:flex-start;
  9857. padding:0px 0px 0px 0px;
  9858. box-sizing:border-box;
  9859. width:100%;
  9860. }
  9861. #u88753_text {
  9862. border-width:0px;
  9863. word-wrap:break-word;
  9864. text-transform:none;
  9865. }
  9866. #u88754_div {
  9867. border-width:0px;
  9868. position:absolute;
  9869. left:0px;
  9870. top:0px;
  9871. width:97px;
  9872. height:22px;
  9873. background:inherit;
  9874. background-color:rgba(255, 255, 255, 0);
  9875. border:none;
  9876. border-radius:0px;
  9877. -moz-box-shadow:none;
  9878. -webkit-box-shadow:none;
  9879. box-shadow:none;
  9880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9881. font-weight:400;
  9882. font-style:normal;
  9883. font-size:16px;
  9884. }
  9885. #u88754 {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:147px;
  9889. top:1363px;
  9890. width:97px;
  9891. height:22px;
  9892. display:flex;
  9893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9894. font-weight:400;
  9895. font-style:normal;
  9896. font-size:16px;
  9897. }
  9898. #u88754 .text {
  9899. position:absolute;
  9900. align-self:flex-start;
  9901. padding:0px 0px 0px 0px;
  9902. box-sizing:border-box;
  9903. width:100%;
  9904. }
  9905. #u88754_text {
  9906. border-width:0px;
  9907. word-wrap:break-word;
  9908. text-transform:none;
  9909. }
  9910. #u88755_img {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:201px;
  9916. height:2px;
  9917. }
  9918. #u88755 {
  9919. border-width:0px;
  9920. position:absolute;
  9921. left:120px;
  9922. top:1403px;
  9923. width:200px;
  9924. height:1px;
  9925. display:flex;
  9926. }
  9927. #u88755 .text {
  9928. position:absolute;
  9929. align-self:center;
  9930. padding:2px 2px 2px 2px;
  9931. box-sizing:border-box;
  9932. width:100%;
  9933. }
  9934. #u88755_text {
  9935. border-width:0px;
  9936. word-wrap:break-word;
  9937. text-transform:none;
  9938. visibility:hidden;
  9939. }